From 86a0a7b3d70bc39b282ca285e397319d580e968e Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 20 Mar 1996 01:07:36 +0000 Subject: [PATCH] [HAVE_STRING_H]: Include string.h. [HAVE_STDLIB_H]: Include stdlib.h. From-SVN: r11568 --- gcc/alloca.c | 7 +++++++ 1 file changed, 7 insertions(+) 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