freebsd-dev/gnu/usr.bin/gdb/libiberty/alloca-conf.h
Gary Jennejohn 9d5922197f Changes required in directory libiberty to make gdb from the sources in
/usr/src/contrib/gdb.

This is based on /usr/ports/devel/gdb.

2.2 candidate ?
1997-01-15 22:43:15 +00:00

17 lines
382 B
C

/* "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__ */