shithub: scc

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