cosmopolitan/libc/assert.h

20 lines
511 B
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
#ifndef COSMOPOLITAN_LIBC_ASSERT_H_
#define COSMOPOLITAN_LIBC_ASSERT_H_
#if !(__ASSEMBLER__ + __LINKER__ + 0)
COSMOPOLITAN_C_START_
void __assert_fail(const char *, const char *, int) hidden wontreturn relegated;
2020-06-15 14:18:57 +00:00
#ifdef NDEBUG
#define assert(EXPR) ((void)0)
2020-06-15 14:18:57 +00:00
#else
#define assert(EXPR) \
((void)((EXPR) || (__assert_fail(#EXPR, __FILE__, __LINE__), 0)))
2020-06-15 14:18:57 +00:00
#endif
2021-03-06 04:32:25 +00:00
#define static_assert _Static_assert
2020-06-15 14:18:57 +00:00
COSMOPOLITAN_C_END_
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
#endif /* COSMOPOLITAN_LIBC_ASSERT_H_ */