From 0a558d647aac7c57ee04b1782da2b387a9526923 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 19 Sep 1993 11:33:12 -0400 Subject: [PATCH] Add extern declaration for alloca. From-SVN: r5358 --- gcc/config/alpha/xm-alpha.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" -- 2.30.2