summaryrefslogtreecommitdiff
path: root/05/musl-0.6.0/include/alloca.h
diff options
context:
space:
mode:
Diffstat (limited to '05/musl-0.6.0/include/alloca.h')
-rw-r--r--05/musl-0.6.0/include/alloca.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/05/musl-0.6.0/include/alloca.h b/05/musl-0.6.0/include/alloca.h
new file mode 100644
index 0000000..ac78e46
--- /dev/null
+++ b/05/musl-0.6.0/include/alloca.h
@@ -0,0 +1,9 @@
+#ifndef _ALLOCA_H
+#define _ALLOCA_H
+
+#define __NEED_size_t
+#include <bits/alltypes.h>
+
+void *alloca(size_t);
+
+#endif