shithub: scc

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

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