Go to the documentation of this file.
17 #ifndef SRC_KAA_PLATFORM_IMPL_POSIX_MEM_H_
18 #define SRC_KAA_PLATFORM_IMPL_POSIX_MEM_H_
23 #define __KAA_MALLOC(S) malloc(S)
27 #define __KAA_CALLOC(N,S) calloc(N, S)
31 #define __KAA_REALLOC(P, S) realloc(P, S)
35 #define __KAA_FREE(P) free(P)