From: Roland McGrath Date: Wed, 20 Mar 1996 01:07:36 +0000 (+0000) Subject: [HAVE_STRING_H]: Include string.h. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=86a0a7b3d70bc39b282ca285e397319d580e968e;p=gcc.git [HAVE_STRING_H]: Include string.h. [HAVE_STDLIB_H]: Include stdlib.h. From-SVN: r11568 --- diff --git a/gcc/alloca.c b/gcc/alloca.c index 7061cec2d31..12c1122981c 100644 --- a/gcc/alloca.c +++ b/gcc/alloca.c @@ -25,6 +25,13 @@ #include #endif +#ifdef HAVE_STRING_H +#include +#endif +#ifdef HAVE_STDLIB_H +#include +#endif + #ifdef emacs #include "blockinput.h" #endif