Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/sys/linux/include/alloca.h')
-rw-r--r--newlib/libc/sys/linux/include/alloca.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/newlib/libc/sys/linux/include/alloca.h b/newlib/libc/sys/linux/include/alloca.h
deleted file mode 100644
index ba542627d..000000000
--- a/newlib/libc/sys/linux/include/alloca.h
+++ /dev/null
@@ -1,13 +0,0 @@
-/* libc/sys/linux/include/alloca.h - Allocate memory on stack */
-
-/* Written 2000 by Werner Almesberger */
-
-
-#ifndef _NEWLIB_ALLOCA_H
-#define _NEWLIB_ALLOCA_H
-
-/* Simple, since we know that we use gcc */
-
-#define alloca(size) __builtin_alloca(size)
-
-#endif