1 #include <stdlib.h>
2 
3 #ifndef __cplusplus
4 #define static_assert _Static_assert
5 #endif
6 
7 #define assert(x) ((void)((x) || (abort(), 0)))
8