nckernel  0.1
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
assert.h
Go to the documentation of this file.
1 
14 #if defined(NDEBUG)
15 #define ASSERT(ignore) assert(ignore)
16 #define assert(ignore) ((void)0)
17 #else
18 #define ASSERT(cond) _assert(#cond, (cond))
19 #define assert(cond) _assert(__func__, __LINE__, #cond, (int)(cond))
20 extern void _assert(const char *func, int line, const char *str, int cond);
21 #endif
22