* src/callproc.c (SIGCHLD): Remove conditional definition, syssignal.h defines it.
authorDan Nicolaescu <dann@ics.uci.edu>
Fri, 1 Oct 2010 13:06:44 +0000 (06:06 -0700)
committerDan Nicolaescu <dann@ics.uci.edu>
Fri, 1 Oct 2010 13:06:44 +0000 (06:06 -0700)
src/ChangeLog
src/callproc.c

index 007abc4..dc8b4e5 100644 (file)
@@ -1,5 +1,7 @@
 2010-10-01  Dan Nicolaescu  <dann@ics.uci.edu>
 
+       * callproc.c (SIGCHLD): Remove conditional definition, syssignal.h defines it.
+
        * process.c: Move #include <pty.h> earlier.
        (SIGCHLD): Remove conditional definition, syssignal.h defines it.
        (pty_name): Move definition later.
index 6f70631..e1ffd0c 100644 (file)
@@ -24,13 +24,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <errno.h>
 #include <stdio.h>
 #include <setjmp.h>
-
-/* Define SIGCHLD as an alias for SIGCLD.  */
-
-#if !defined (SIGCHLD) && defined (SIGCLD)
-#define SIGCHLD SIGCLD
-#endif /* SIGCLD */
-
 #include <sys/types.h>
 
 #ifdef HAVE_UNISTD_H