ref: 8b3b797a2474a56c72f4c0f190910aeb320943be
dir: /include/assert.h/
extern void __assert(char *exp, char *file, long line); #undef assert #ifndef NDEBUG # define assert(exp) ((exp) ? (void) 0 : __assert(#exp, __FILE__, __LINE__)) #else # define assert(exp) ((void)0) #endif