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 | 78cdc55bf37bf593d42e4b91a58f88053ec83e95 (patch) | |
tree | b0a57d6fc58b7f11286246bc04ec91b85b333430 /src/alloca.c | |
parent | dbc0e9d93e6f40f865076a3199503dc2a6b8cd33 (diff) | |
download | emacs-78cdc55bf37bf593d42e4b91a58f88053ec83e95.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 |