diff options
author | Roland McGrath <roland@gnu.org> | 1996-03-20 01:07:36 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-03-20 01:07:36 +0000 |
commit | 029c99a369e8dfedc3055f0af3ded863c37fc1e6 (patch) | |
tree | 2996f8724d3d570228acff1fc152a0393a0d8032 /src/alloca.c | |
parent | 501ebe0e349c6ae4e642a2661695734d051481bd (diff) | |
download | emacs-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.c | 7 |
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 |