FS#8961 - Anti-Aliased Fonts.
[kugel-rb.git] / firmware / include / assert.h
blobba22a9777bd5739afae3af0db121bf65b1e82d24
1 /*
2 assert.h
3 */
5 #undef assert
7 #ifdef NDEBUG /* required by ANSI standard */
8 #define assert(p) ((void)0)
9 #else
11 #ifdef __STDC__
12 #define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__, #e))
13 #else /* PCC */
14 #define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__, "e"))
15 #endif
17 #endif /* NDEBUG */
19 void _EXFUN(__assert,(const char *, int, const char *));