summaryrefslogtreecommitdiff
path: root/alloca.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1996-03-20 01:07:36 +0000
committerRoland McGrath <roland@redhat.com>1996-03-20 01:07:36 +0000
commit4603f9f8c61ecbc12e83e4d0721e4414a30f1f4b (patch)
tree25fe9dffe97a22e9c79e410461b3a6941a6601fb /alloca.c
parentb2a22df72142a2e2b4f35a96a5316b3117326e0e (diff)
downloadgunmake-4603f9f8c61ecbc12e83e4d0721e4414a30f1f4b.tar.gz
[HAVE_STRING_H]: Include string.h.
[HAVE_STDLIB_H]: Include stdlib.h.
Diffstat (limited to 'alloca.c')
-rw-r--r--alloca.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/alloca.c b/alloca.c
index 7061cec..12c1122 100644
--- a/alloca.c
+++ b/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