summaryrefslogtreecommitdiff
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
commit78cdc55bf37bf593d42e4b91a58f88053ec83e95 (patch)
treeb0a57d6fc58b7f11286246bc04ec91b85b333430
parentdbc0e9d93e6f40f865076a3199503dc2a6b8cd33 (diff)
downloademacs-78cdc55bf37bf593d42e4b91a58f88053ec83e95.tar.gz
[HAVE_STRING_H]: Include string.h.
[HAVE_STDLIB_H]: Include stdlib.h.
-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