aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorDave Love1999-11-02 22:44:28 +0000
committerDave Love1999-11-02 22:44:28 +0000
commit827a1788e0696a249c0affa70e0026d937ffb361 (patch)
tree303df4863f06385f10e3f5211929ed98323f8841 /src/process.c
parentb5540f0dc6e5bc532f26238465676a3f133fa9b9 (diff)
downloademacs-827a1788e0696a249c0affa70e0026d937ffb361.tar.gz
emacs-827a1788e0696a249c0affa70e0026d937ffb361.zip
Undo last change and define _GNU_SOURCE before config.h.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/process.c b/src/process.c
index e201ca45914..463dc44be2f 100644
--- a/src/process.c
+++ b/src/process.c
@@ -20,8 +20,8 @@ the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */ 20Boston, MA 02111-1307, USA. */
21 21
22 22
23#define _GNU_SOURCE /* to get strsignal declared with glibc 2 */
23#include <config.h> 24#include <config.h>
24
25#include <signal.h> 25#include <signal.h>
26 26
27/* This file is split into two parts by the following preprocessor 27/* This file is split into two parts by the following preprocessor
@@ -43,9 +43,6 @@ 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
49 46
50#ifdef WINDOWSNT 47#ifdef WINDOWSNT
51#include <stdlib.h> 48#include <stdlib.h>
@@ -62,7 +59,7 @@ Boston, MA 02111-1307, USA. */
62#endif /* NEED_NET_ERRNO_H */ 59#endif /* NEED_NET_ERRNO_H */
63#endif /* HAVE_SOCKETS */ 60#endif /* HAVE_SOCKETS */
64 61
65/* TERM is a poor-man's SLIP, used on Linux. */ 62/* TERM is a poor-man's SLIP, used on GNU/Linux. */
66#ifdef TERM 63#ifdef TERM
67#include <client.h> 64#include <client.h>
68#endif 65#endif