58#define BFT_MALLOC(_ptr, _ni, _type) \
59_ptr = (_type *) cs_mem_malloc(_ni, sizeof(_type), \
60 #_ptr, __FILE__, __LINE__)
74#define BFT_REALLOC(_ptr, _ni, _type) \
75_ptr = (_type *) cs_mem_realloc(_ptr, _ni, sizeof(_type), \
76 #_ptr, __FILE__, __LINE__)
90#define BFT_FREE(_ptr) \
91cs_mem_free(_ptr, #_ptr, __FILE__, __LINE__), _ptr = NULL
#define BEGIN_C_DECLS
Definition: cs_defs.h:542
#define END_C_DECLS
Definition: cs_defs.h:543