musl/include/assert.h

25 lines
431 B
C
Raw Normal View History

2011-02-12 05:22:29 +00:00
#undef assert
#if __STDC_VERSION__ >= 201112L
#elif defined(__GNUC__)
#define _Noreturn __attribute__((__noreturn__))
#else
#define _Noreturn
#endif
2011-02-12 05:22:29 +00:00
#ifdef NDEBUG
#define assert(x) (void)0
#else
#define assert(x) ((x) || (__assert_fail(#x, __FILE__, __LINE__, __func__),0))
#endif
#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