Go to the documentation of this file.
27 #define _assert(e) assert(e)
31 # define assert(e) ((void)0)
32 # define assert_msg(e, m) ((void)0)
45 # define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__, #e, NULL, __FUNCTION__))
56 # define assert_msg(e, m) ((e) ? (void)0 : __assert(__FILE__, __LINE__, #e, m, __FUNCTION__))
61 void __assert(
const char *file,
int line,
const char *expr,
62 const char *msg,
const char *func);
80 const char * msg,
const char * func);