From: Dan Nicolaescu Date: Fri, 1 Oct 2010 13:06:44 +0000 (-0700) Subject: * src/callproc.c (SIGCHLD): Remove conditional definition, syssignal.h defines it. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~46^2~265 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0781e7abcfa6e470f97b53f75c6b633f541d844f;p=emacs.git * src/callproc.c (SIGCHLD): Remove conditional definition, syssignal.h defines it. --- diff --git a/src/ChangeLog b/src/ChangeLog index 007abc4b343..dc8b4e554e2 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2010-10-01 Dan Nicolaescu + * callproc.c (SIGCHLD): Remove conditional definition, syssignal.h defines it. + * process.c: Move #include earlier. (SIGCHLD): Remove conditional definition, syssignal.h defines it. (pty_name): Move definition later. diff --git a/src/callproc.c b/src/callproc.c index 6f70631a484..e1ffd0c0cf6 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -24,13 +24,6 @@ along with GNU Emacs. If not, see . */ #include #include #include - -/* Define SIGCHLD as an alias for SIGCLD. */ - -#if !defined (SIGCHLD) && defined (SIGCLD) -#define SIGCHLD SIGCLD -#endif /* SIGCLD */ - #include #ifdef HAVE_UNISTD_H