Remove the definition of alloca(), it does not belong here.

This commit is contained in:
Dag-Erling Smørgrav 2003-06-15 10:59:44 +00:00
parent b77aeb1292
commit 070d61acdc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=116396

View File

@ -142,11 +142,6 @@
#define __section(x) __attribute__((__section__(x)))
#endif
#endif
#ifdef __GNUC__
#define alloca(sz) __builtin_alloca(sz)
#else
#error FreeBSD alloca support needed for this compiler
#endif
/* XXX: should use `#if __STDC_VERSION__ < 199901'. */
#if !(__GNUC__ == 2 && __GNUC_MINOR__ >= 7 || __GNUC__ >= 3)