musl/include/assert.h

24 lines
428 B
C
Raw Normal View History

#include <features.h>
2011-02-12 05:22:29 +00:00
#undef assert
2011-02-12 05:22:29 +00:00
#ifdef NDEBUG
#define assert(x) (void)0
#else
2012-10-17 06:47:11 +00:00
#define assert(x) ((void)((x) || (__assert_fail(#x, __FILE__, __LINE__, __func__),0)))
2011-02-12 05:22:29 +00:00
#endif
#if __STDC_VERSION__ >= 201112L && !defined(__cplusplus)
#define static_assert _Static_assert
#endif
2011-02-12 05:22:29 +00:00
#ifdef __cplusplus
extern "C" {
#endif
_Noreturn void __assert_fail (const char *, const char *, int, const char *);
2011-02-12 05:22:29 +00:00
#ifdef __cplusplus
}
#endif