Files
libsodium/builds/wasm32-freestanding/include/assert.h
T
Frank Denis ee2972b83e Remove support for WASI
Freestanding WebAssembly is enough, and WASI has always been a
pain to support.
2026-08-26 14:25:41 +02:00

8 lines
132 B
C

#undef assert
#ifdef NDEBUG
#define assert(cond) ((void)0)
#else
#define assert(cond) ((cond) ? (void)0 : __builtin_trap())
#endif