diff options
| author | Roland McGrath | 1996-03-20 01:07:36 +0000 |
|---|---|---|
| committer | Roland McGrath | 1996-03-20 01:07:36 +0000 |
| commit | 029c99a369e8dfedc3055f0af3ded863c37fc1e6 (patch) | |
| tree | 2996f8724d3d570228acff1fc152a0393a0d8032 /src | |
| parent | 501ebe0e349c6ae4e642a2661695734d051481bd (diff) | |
| download | emacs-029c99a369e8dfedc3055f0af3ded863c37fc1e6.tar.gz emacs-029c99a369e8dfedc3055f0af3ded863c37fc1e6.zip | |
[HAVE_STRING_H]: Include string.h.
[HAVE_STDLIB_H]: Include stdlib.h.
Diffstat (limited to 'src')
| -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 @@ | |||
| 25 | #include <config.h> | 25 | #include <config.h> |
| 26 | #endif | 26 | #endif |
| 27 | 27 | ||
| 28 | #ifdef HAVE_STRING_H | ||
| 29 | #include <string.h> | ||
| 30 | #endif | ||
| 31 | #ifdef HAVE_STDLIB_H | ||
| 32 | #include <stdlib.h> | ||
| 33 | #endif | ||
| 34 | |||
| 28 | #ifdef emacs | 35 | #ifdef emacs |
| 29 | #include "blockinput.h" | 36 | #include "blockinput.h" |
| 30 | #endif | 37 | #endif |