assert.h (178B)
1 #ifndef ASSERT_H 2 #define ASSERT_H 3 4 #ifdef NDEBUG 5 # define ASSERT(cond) 6 #else 7 # define ASSERT(cond) do { if (!(cond)) __builtin_trap(); } while (0); 8 #endif 9 10 #endif /* ASSERT_H */
![]() | toystoys.git |
git clone git://git.lenczewski.org/toys.git | |
Log | Files | Refs | README | LICENSE |