Go to the documentation of this file.
17 #ifndef ECONAIS_EC19D_MEM_H_
18 #define ECONAIS_EC19D_MEM_H_
20 #include <sndc_mem_api.h>
23 #define __KAA_MALLOC(S) sndc_mem_malloc(S)
27 #define __KAA_CALLOC(N,S) sndc_mem_calloc(N, S)
31 #define __KAA_REALLOC(P, S) sndc_mem_realloc(P, S)
35 #define __KAA_FREE(P) sndc_mem_free(P)