shithub: scc

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