mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-30 13:47:12 +09:00
Freestanding WebAssembly is enough, and WASI has always been a pain to support.
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
|