Add extern declaration for alloca.
authorRichard Kenner <kenner@gcc.gnu.org>
Sun, 19 Sep 1993 15:33:12 +0000 (11:33 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Sun, 19 Sep 1993 15:33:12 +0000 (11:33 -0400)
From-SVN: r5358

gcc/config/alpha/xm-alpha.h

index 0a0f3a170862615952d7a9fafc8c83193813bec8..61919ce54d597207e1c7c5c73a0f1e5c07e3fc7c 100644 (file)
@@ -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"