summaryrefslogtreecommitdiff
path: root/src/alloca.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-03-20 01:07:36 +0000
committerRoland McGrath <roland@gnu.org>1996-03-20 01:07:36 +0000
commit029c99a369e8dfedc3055f0af3ded863c37fc1e6 (patch)
tree2996f8724d3d570228acff1fc152a0393a0d8032 /src/alloca.c
parent501ebe0e349c6ae4e642a2661695734d051481bd (diff)
downloademacs-029c99a369e8dfedc3055f0af3ded863c37fc1e6.tar.gz
[HAVE_STRING_H]: Include string.h.
[HAVE_STDLIB_H]: Include stdlib.h.
Diffstat (limited to 'src/alloca.c')
-rw-r--r--src/alloca.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/alloca.c b/src/alloca.c
index 7061cec2d31..12c1122981c 100644
--- a/src/alloca.c
+++ b/src/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