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, 0 insertions, 13 deletions
diff --git a/klibc/include/alloca.h b/klibc/include/alloca.h
deleted file mode 100644
index 41a4d94d44..0000000000
--- a/klibc/include/alloca.h
+++ /dev/null
@@ -1,13 +0,0 @@
-/*
- * alloca.h
- *
- * Just call the builtin alloca() function
- */
-
-#ifndef _ALLOCA_H
-#define _ALLOCA_H
-
-#define alloca(size) __builtin_alloca(size)
-
-#endif /* _ALLOCA_H */
-