assert.h (196B)
1 extern void __assert(char *, char *, long); 2 3 #undef assert 4 #ifndef NDEBUG 5 # define assert(exp) ((exp) ? (void) 0 : __assert(#exp, __FILE__, __LINE__)) 6 #else 7 # define assert(exp) ((void) 0) 8 #endif
![]() | sccsimple c99 compiler |
git clone git://git.simple-cc.org/scc | |
Log | Files | Refs | Submodules | README | LICENSE |