ref: 4bec4d5e37d09aeeb32dc583261a31f4f9675d3b
dir: /lib/c/include/assert.h/
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