diff options
| author | Dave Love | 1999-11-02 14:23:20 +0000 |
|---|---|---|
| committer | Dave Love | 1999-11-02 14:23:20 +0000 |
| commit | b5540f0dc6e5bc532f26238465676a3f133fa9b9 (patch) | |
| tree | 85bc0127a61da5ea368c9112514d481fc106bd75 /src | |
| parent | a69a6e61d4d9f9ce354034ccce5d64d466723769 (diff) | |
| download | emacs-b5540f0dc6e5bc532f26238465676a3f133fa9b9.tar.gz emacs-b5540f0dc6e5bc532f26238465676a3f133fa9b9.zip | |
Use string.h for strsignal.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/process.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index aca01812d4f..3f1019ea362 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 1999-11-02 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * process.c: Use string.h for strsignal. | ||
| 4 | |||
| 1 | 1999-11-02 Gerd Moellmann <gerd@gnu.org> | 5 | 1999-11-02 Gerd Moellmann <gerd@gnu.org> |
| 2 | 6 | ||
| 3 | * lisp.h (QUIT): Give it statement form. | 7 | * lisp.h (QUIT): Give it statement form. |
diff --git a/src/process.c b/src/process.c index 144e69af7c6..e201ca45914 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -43,6 +43,9 @@ Boston, MA 02111-1307, USA. */ | |||
| 43 | #ifdef HAVE_UNISTD_H | 43 | #ifdef HAVE_UNISTD_H |
| 44 | #include <unistd.h> | 44 | #include <unistd.h> |
| 45 | #endif | 45 | #endif |
| 46 | #ifdef HAVE_STRING_H | ||
| 47 | #include <string.h> | ||
| 48 | #endif | ||
| 46 | 49 | ||
| 47 | #ifdef WINDOWSNT | 50 | #ifdef WINDOWSNT |
| 48 | #include <stdlib.h> | 51 | #include <stdlib.h> |