shithub: scc

ref: c2f5b177c6ada717746917581b5d3d98e1ab91a0
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