summaryrefslogtreecommitdiff
path: root/klibc/include/alloca.h
diff options
context:
space:
mode:
Diffstat (limited to 'klibc/include/alloca.h')
-rw-r--r--klibc/include/alloca.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/klibc/include/alloca.h b/klibc/include/alloca.h
new file mode 100644
index 0000000000..41a4d94d44
--- /dev/null
+++ b/klibc/include/alloca.h
@@ -0,0 +1,13 @@
+/*
+ * alloca.h
+ *
+ * Just call the builtin alloca() function
+ */
+
+#ifndef _ALLOCA_H
+#define _ALLOCA_H
+
+#define alloca(size) __builtin_alloca(size)
+
+#endif /* _ALLOCA_H */
+