changeset 110681:3d4521b949df

* src/callproc.c (SIGCHLD): Remove conditional definition, syssignal.h defines it.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 01 Oct 2010 06:06:44 -0700
parents 3bc79f337a57
children ba6a1c230532
files src/ChangeLog src/callproc.c
diffstat 2 files changed, 2 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Fri Oct 01 06:04:07 2010 -0700
+++ b/src/ChangeLog	Fri Oct 01 06:06:44 2010 -0700
@@ -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.
--- a/src/callproc.c	Fri Oct 01 06:04:07 2010 -0700
+++ b/src/callproc.c	Fri Oct 01 06:06:44 2010 -0700
@@ -24,13 +24,6 @@
 #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