diff options
Diffstat (limited to 'gnu/usr.bin/gdb/libiberty/alloca-conf.h')
-rw-r--r-- | gnu/usr.bin/gdb/libiberty/alloca-conf.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gnu/usr.bin/gdb/libiberty/alloca-conf.h b/gnu/usr.bin/gdb/libiberty/alloca-conf.h deleted file mode 100644 index 8d91b5a..0000000 --- a/gnu/usr.bin/gdb/libiberty/alloca-conf.h +++ /dev/null @@ -1,16 +0,0 @@ -/* "Normal" configuration for alloca. */ - -#ifdef __GNUC__ -#define alloca __builtin_alloca -#else /* not __GNUC__ */ -#ifdef sparc -#include <alloca.h> -extern char *__builtin_alloca(); /* Stupid include file doesn't declare it */ -#else -#ifdef __STDC__ -PTR alloca (size_t); -#else -PTR alloca (); /* must agree with functions.def */ -#endif -#endif /* sparc */ -#endif /* not __GNUC__ */ |