mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-29 05:07:13 +09:00
8 lines
132 B
C
8 lines
132 B
C
#undef assert
|
|
|
|
#ifdef NDEBUG
|
|
#define assert(cond) ((void)0)
|
|
#else
|
|
#define assert(cond) ((cond) ? (void)0 : __builtin_trap())
|
|
#endif
|