Add extern declaration for alloca.

From-SVN: r5358
This commit is contained in:
Richard Kenner 1993-09-19 11:33:12 -04:00
parent de9f6f432f
commit 0a558d647a
1 changed files with 2 additions and 2 deletions

View 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"