aboutsummaryrefslogtreecommitdiff
path: root/gcc/alloca.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gcc.gnu.org>1996-03-20 01:07:36 +0000
committerRoland McGrath <roland@gcc.gnu.org>1996-03-20 01:07:36 +0000
commit86a0a7b3d70bc39b282ca285e397319d580e968e (patch)
tree400f9f1d59d143138df8b0eac3b675dcd2ae386d /gcc/alloca.c
parentd6e35c2d3466101b23d072cf65ea5fc4b25f3700 (diff)
downloadgcc-86a0a7b3d70bc39b282ca285e397319d580e968e.zip
gcc-86a0a7b3d70bc39b282ca285e397319d580e968e.tar.gz
gcc-86a0a7b3d70bc39b282ca285e397319d580e968e.tar.bz2
[HAVE_STRING_H]: Include string.h.
[HAVE_STDLIB_H]: Include stdlib.h. From-SVN: r11568
Diffstat (limited to 'gcc/alloca.c')
-rw-r--r--gcc/alloca.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/alloca.c b/gcc/alloca.c
index 7061cec..12c1122 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