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