2012-09-08 03:13:55 +00:00
|
|
|
#include <features.h>
|
2011-02-12 05:22:29 +00:00
|
|
|
|
2012-09-08 03:13:55 +00:00
|
|
|
#undef assert
|
further use of _Noreturn, for non-plain-C functions
note that POSIX does not specify these functions as _Noreturn, because
POSIX is aligned with C99, not the new C11 standard. when POSIX is
eventually updated to C11, it will almost surely give these functions
the _Noreturn attribute. for now, the actual _Noreturn keyword is not
used anyway when compiling with a c99 compiler, which is what POSIX
requires; the GCC __attribute__ is used instead if it's available,
however.
in a few places, I've added infinite for loops at the end of _Noreturn
functions to silence compiler warnings. presumably
__buildin_unreachable could achieve the same thing, but it would only
work on newer GCCs and would not be portable. the loops should have
near-zero code size cost anyway.
like the previous _Noreturn commit, this one is based on patches
contributed by philomath.
2012-09-07 03:34:10 +00:00
|
|
|
|
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
|
|
|
|
|
2014-08-26 15:42:15 +00:00
|
|
|
#ifndef __cplusplus
|
|
|
|
#define static_assert _Static_assert
|
|
|
|
#endif
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-01-01 06:59:11 +00:00
|
|
|
void __assert_fail (const char *, const char *, int, const char *);
|
2011-02-12 05:22:29 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|