svn commit: trunk/busybox: e2fsprogs loginutils networking

vapier at busybox.net vapier at busybox.net
Wed Mar 22 00:25:18 UTC 2006


Author: vapier
Date: 2006-03-21 16:25:07 -0800 (Tue, 21 Mar 2006)
New Revision: 14595

Log:
2006-03-21  Shaun Jackman  <sjackman at gmail.com>: Include signal.h instead of sys/signal.h.


Modified:
   trunk/busybox/e2fsprogs/fsck.c
   trunk/busybox/loginutils/getty.c
   trunk/busybox/networking/arping.c
   trunk/busybox/networking/ping.c
   trunk/busybox/networking/ping6.c


Changeset:
Modified: trunk/busybox/e2fsprogs/fsck.c
===================================================================
--- trunk/busybox/e2fsprogs/fsck.c	2006-03-21 19:54:34 UTC (rev 14594)
+++ trunk/busybox/e2fsprogs/fsck.c	2006-03-22 00:25:07 UTC (rev 14595)
@@ -27,7 +27,6 @@
 
 #include <sys/types.h>
 #include <sys/wait.h>
-#include <sys/signal.h>
 #include <sys/stat.h>
 #include <limits.h>
 #include <stdio.h>

Modified: trunk/busybox/loginutils/getty.c
===================================================================
--- trunk/busybox/loginutils/getty.c	2006-03-21 19:54:34 UTC (rev 14594)
+++ trunk/busybox/loginutils/getty.c	2006-03-22 00:25:07 UTC (rev 14595)
@@ -21,7 +21,7 @@
 #include <sys/ioctl.h>
 #include <errno.h>
 #include <sys/stat.h>
-#include <sys/signal.h>
+#include <signal.h>
 #include <fcntl.h>
 #include <stdarg.h>
 #include <ctype.h>

Modified: trunk/busybox/networking/arping.c
===================================================================
--- trunk/busybox/networking/arping.c	2006-03-21 19:54:34 UTC (rev 14594)
+++ trunk/busybox/networking/arping.c	2006-03-22 00:25:07 UTC (rev 14595)
@@ -11,7 +11,7 @@
  */
 
 #include <sys/ioctl.h>
-#include <sys/signal.h>
+#include <signal.h>
 #include <sys/time.h>
 
 #include <errno.h>

Modified: trunk/busybox/networking/ping.c
===================================================================
--- trunk/busybox/networking/ping.c	2006-03-21 19:54:34 UTC (rev 14594)
+++ trunk/busybox/networking/ping.c	2006-03-22 00:25:07 UTC (rev 14595)
@@ -17,7 +17,7 @@
 #include <sys/file.h>
 #include <sys/time.h>
 #include <sys/times.h>
-#include <sys/signal.h>
+#include <signal.h>
 
 #include <netinet/in.h>
 #include <netinet/ip.h>

Modified: trunk/busybox/networking/ping6.c
===================================================================
--- trunk/busybox/networking/ping6.c	2006-03-21 19:54:34 UTC (rev 14594)
+++ trunk/busybox/networking/ping6.c	2006-03-22 00:25:07 UTC (rev 14595)
@@ -39,7 +39,7 @@
 #include <sys/file.h>
 #include <sys/time.h>
 #include <sys/times.h>
-#include <sys/signal.h>
+#include <signal.h>
 
 #include <netinet/in.h>
 #include <netinet/ip6.h>




More information about the busybox-cvs mailing list