From: Richard Kenner Date: Sun, 19 Sep 1993 15:33:12 +0000 (-0400) Subject: Add extern declaration for alloca. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0a558d647aac7c57ee04b1782da2b387a9526923;p=gcc.git Add extern declaration for alloca. From-SVN: r5358 --- diff --git a/gcc/config/alpha/xm-alpha.h b/gcc/config/alpha/xm-alpha.h index 0a0f3a17086..61919ce54d5 100644 --- a/gcc/config/alpha/xm-alpha.h +++ b/gcc/config/alpha/xm-alpha.h @@ -58,9 +58,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ differently. */ #ifdef __STDC__ -extern void *malloc (), *realloc (), *sbrk (), *calloc (); +extern void *malloc (), *realloc (), *sbrk (), *calloc (), *alloca (); #else -extern char *malloc (), *realloc (), *sbrk (), *calloc (); +extern char *malloc (), *realloc (), *sbrk (), *calloc (), *alloca (); #endif #include "string.h"