add missing protocols to protoent lookup functions
[musl.git] / include / assert.h
blob1ee02a4a5fb095d0cffacba1cc05a36a94633138
1 #include <features.h>
3 #undef assert
5 #ifdef NDEBUG
6 #define assert(x) (void)0
7 #else
8 #define assert(x) ((void)((x) || (__assert_fail(#x, __FILE__, __LINE__, __func__),0)))
9 #endif
11 #ifndef __cplusplus
12 #define static_assert _Static_assert
13 #endif
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
19 void __assert_fail (const char *, const char *, int, const char *);
21 #ifdef __cplusplus
23 #endif