shithub: scc

ref: b75c7d2fa8b3f9a8ba96e5a3035efa68b8d8cf85
dir: /include/assert.h/

View raw version
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