fix broken fallocate syscall in posix_fallocate
[musl] / include / assert.h
index bad2ccd..b0dc692 100644 (file)
@@ -1,3 +1,5 @@
+#include <features.h>
+
 #undef assert
 
 #ifdef NDEBUG
@@ -10,7 +12,7 @@
 extern "C" {
 #endif
 
-void __assert_fail (const char *, const char *, int, const char *);
+_Noreturn void __assert_fail (const char *, const char *, int, const char *);
 
 #ifdef __cplusplus
 }