fix spurious errors from pwd/grp functions when nscd backend is absent
[musl] / include / assert.h
index ab745db..1ee02a4 100644 (file)
@@ -8,6 +8,10 @@
 #define assert(x) ((void)((x) || (__assert_fail(#x, __FILE__, __LINE__, __func__),0)))
 #endif
 
+#ifndef __cplusplus
+#define static_assert _Static_assert
+#endif
+
 #ifdef __cplusplus
 extern "C" {
 #endif