fix type issues in stdint.h so underlying types of 64-bit types match ABI
[musl] / include / alloca.h
index f61b817..d2e6f1c 100644 (file)
@@ -10,6 +10,10 @@ extern "C" {
 
 void *alloca(size_t);
 
+#ifdef __GNUC__
+#define alloca __builtin_alloca
+#endif
+
 #ifdef __cplusplus
 }
 #endif