mirror of git://git.musl-libc.org/musl
18 lines
285 B
C
18 lines
285 B
C
|
#undef assert
|
||
|
|
||
|
#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
|
||
|
|
||
|
void __assert_fail (const char *, const char *, int, const char *);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|