ref: b3e06559475b0130a7a2fb56ac4d131d13d2012f
dir: /sys/include/ape/assert.h/
#pragma lib "/$M/lib/ape/libap.a" #undef assert #ifdef NDEBUG #define assert(ignore) ((void)0) #else #ifdef __cplusplus extern "C" { #endif extern void _assert(char *, unsigned); #ifdef __cplusplus } #endif #define assert(e) ((e) ? (void)0 : _assert(__FILE__, __LINE__)) #endif /* NDEBUG */