]> git.eshelyaron.com Git - emacs.git/commitdiff
Undo last change and define _GNU_SOURCE before config.h.
authorDave Love <fx@gnu.org>
Tue, 2 Nov 1999 22:44:28 +0000 (22:44 +0000)
committerDave Love <fx@gnu.org>
Tue, 2 Nov 1999 22:44:28 +0000 (22:44 +0000)
src/ChangeLog
src/process.c

index 3f1019ea3628d7e2214d9430947888f1257ba4d1..94d9be178da755826c54bebb7541937cf0f154bb 100644 (file)
@@ -1,6 +1,7 @@
 1999-11-02  Dave Love  <fx@gnu.org>
 
-       * process.c: Use string.h for strsignal.
+       * process.c: Define _GNU_SOURCE before config.h to get strsignal
+       declared with glibc2.
 
 1999-11-02  Gerd Moellmann  <gerd@gnu.org>
 
index e201ca45914b83d86e9e69d50572fecb429e65d2..463dc44be2f51ec92dc33e5c5faba810ecc2664b 100644 (file)
@@ -20,8 +20,8 @@ the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.  */
 
 
+#define _GNU_SOURCE            /* to get strsignal declared with glibc 2 */
 #include <config.h>
-
 #include <signal.h>
 
 /* This file is split into two parts by the following preprocessor
@@ -43,9 +43,6 @@ 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>
@@ -62,7 +59,7 @@ Boston, MA 02111-1307, USA.  */
 #endif /* NEED_NET_ERRNO_H */
 #endif /* HAVE_SOCKETS */
 
-/* TERM is a poor-man's SLIP, used on Linux.  */
+/* TERM is a poor-man's SLIP, used on GNU/Linux.  */
 #ifdef TERM
 #include <client.h>
 #endif