diff options
author | Roland McGrath <roland@redhat.com> | 1996-03-20 01:07:36 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1996-03-20 01:07:36 +0000 |
commit | 4603f9f8c61ecbc12e83e4d0721e4414a30f1f4b (patch) | |
tree | 25fe9dffe97a22e9c79e410461b3a6941a6601fb /alloca.c | |
parent | b2a22df72142a2e2b4f35a96a5316b3117326e0e (diff) | |
download | gunmake-4603f9f8c61ecbc12e83e4d0721e4414a30f1f4b.tar.gz |
[HAVE_STRING_H]: Include string.h.
[HAVE_STDLIB_H]: Include stdlib.h.
Diffstat (limited to 'alloca.c')
-rw-r--r-- | alloca.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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 |