
The magic runtime library is now built as part of the regular build, if the MKMAGIC=yes flag is passed to the build system. The library has been renamed from "magic" to "magicrt" to resolve a name clash with BSD file(1)'s libmagic. All its level-5 LLVM warnings have been resolved. The final library, "libmagicrt.bcc", is now stored in the destination library directory rather than in the source tree. Change-Id: Iebd4b93a2cafbb59f95d938ad1edb8b4f6e729f6
12 lines
391 B
C
12 lines
391 B
C
#ifndef ST_SPECIAL_H
|
|
#define ST_SPECIAL_H
|
|
|
|
/* Public functions for special types and regions. */
|
|
PUBLIC void st_register_typename_key(const char *key);
|
|
PUBLIC void st_register_typename_keys(const char **keys);
|
|
PUBLIC int st_add_special_mmapped_region(void *address, size_t size,
|
|
const char* name);
|
|
PUBLIC int st_del_special_mmapped_region_by_addr(void *address);
|
|
|
|
#endif /* ST_SPECIAL_H */
|