summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroland <roland@138bc75d-0d04-0410-961f-82ee72b054a4>1996-03-20 01:07:36 +0000
committerroland <roland@138bc75d-0d04-0410-961f-82ee72b054a4>1996-03-20 01:07:36 +0000
commit6fba24642fa4ad0c3661454f6edf8916868725f3 (patch)
tree400f9f1d59d143138df8b0eac3b675dcd2ae386d
parent98328a39469c5e0d457d8628ba82659289d86bf2 (diff)
downloadgcc-6fba24642fa4ad0c3661454f6edf8916868725f3.tar.gz
[HAVE_STRING_H]: Include string.h.
[HAVE_STDLIB_H]: Include stdlib.h. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@11568 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/alloca.c7
1 files changed, 7 insertions, 0 deletions
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 <config.h>
#endif
+#ifdef HAVE_STRING_H
+#include <string.h>
+#endif
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
+
#ifdef emacs
#include "blockinput.h"
#endif