]> git.eshelyaron.com Git - emacs.git/commitdiff
Use string.h for strsignal.
authorDave Love <fx@gnu.org>
Tue, 2 Nov 1999 14:23:20 +0000 (14:23 +0000)
committerDave Love <fx@gnu.org>
Tue, 2 Nov 1999 14:23:20 +0000 (14:23 +0000)
src/ChangeLog
src/process.c

index aca01812d4f36337dfa0f922f715a4abc1ceabe6..3f1019ea3628d7e2214d9430947888f1257ba4d1 100644 (file)
@@ -1,3 +1,7 @@
+1999-11-02  Dave Love  <fx@gnu.org>
+
+       * process.c: Use string.h for strsignal.
+
 1999-11-02  Gerd Moellmann  <gerd@gnu.org>
 
        * lisp.h (QUIT): Give it statement form.
index 144e69af7c61be52a812757db025ffbbfa7f9da8..e201ca45914b83d86e9e69d50572fecb429e65d2 100644 (file)
@@ -43,6 +43,9 @@ Boston, MA 02111-1307, USA.  */
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif
+#ifdef HAVE_STRING_H
+#include <string.h>
+#endif
 
 #ifdef WINDOWSNT
 #include <stdlib.h>