Go to the documentation of this file.
7 #ifndef OM_MALLOC_SYSTEM_H
8 #define OM_MALLOC_SYSTEM_H
11 #define OM_MALLOC_MALLOC malloc
12 #define OM_MALLOC_REALLOC realloc
13 #define OM_MALLOC_FREE free
14 #define OM_MALLOC_VALLOC valloc
15 #define OM_MALLOC_VFREE(addr, size) OM_MALLOC_FREE(addr)
17 #define OM_MALLOC_SIZEOF_ADDR(addr) (malloc_size(addr))