shithub: scc

ref: 4bf1a97b6f21f2728afe47c7a9f59909b9eb84c7
dir: /lib/c/include/assert.h/

View raw version

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