assert.h 129 B

12345
  1. #ifndef NDEBUG
  2. #define assert(p) ((p)?(void)0:__assertion_failed(#p,__FILE__,__LINE__))
  3. #else
  4. #define assert(p) ((void)0)
  5. #endif