mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-08 07:42:09 +03:00
assert() is supposed to have type void
This commit is contained in:
parent
c86f2974e2
commit
858df113bf
@ -5,7 +5,7 @@
|
||||
#ifdef NDEBUG
|
||||
#define assert(x) (void)0
|
||||
#else
|
||||
#define assert(x) ((x) || (__assert_fail(#x, __FILE__, __LINE__, __func__),0))
|
||||
#define assert(x) ((void)((x) || (__assert_fail(#x, __FILE__, __LINE__, __func__),0)))
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
Loading…
Reference in New Issue
Block a user