mirror of git://git.musl-libc.org/musl
assert() is supposed to have type void
This commit is contained in:
parent
c86f2974e2
commit
858df113bf
|
@ -5,7 +5,7 @@
|
||||||
#ifdef NDEBUG
|
#ifdef NDEBUG
|
||||||
#define assert(x) (void)0
|
#define assert(x) (void)0
|
||||||
#else
|
#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
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
Loading…
Reference in New Issue