diff options
author | Roland McGrath <roland@gcc.gnu.org> | 1996-03-20 01:07:36 +0000 |
---|---|---|
committer | Roland McGrath <roland@gcc.gnu.org> | 1996-03-20 01:07:36 +0000 |
commit | 86a0a7b3d70bc39b282ca285e397319d580e968e (patch) | |
tree | 400f9f1d59d143138df8b0eac3b675dcd2ae386d /gcc/alloca.c | |
parent | d6e35c2d3466101b23d072cf65ea5fc4b25f3700 (diff) | |
download | gcc-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.c | 7 |
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 |