[BusyBox-cvs] busybox/networking inetd.c,1.18,1.19
Glenn McGrath
bug1 at busybox.net
Sun Feb 22 04:58:38 UTC 2004
Update of /var/cvs/busybox/networking
In directory nail:/tmp/cvs-serv30598/networking
Modified Files:
inetd.c
Log Message:
remove duplicate header declarations
Index: inetd.c
===================================================================
RCS file: /var/cvs/busybox/networking/inetd.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- a/inetd.c 18 Feb 2004 13:19:58 -0000 1.18
+++ b/inetd.c 22 Feb 2004 04:58:36 -0000 1.19
@@ -90,15 +90,6 @@
#include "busybox.h"
-#include <sys/param.h>
-#include <sys/stat.h>
-#include <sys/ioctl.h>
-#include <sys/socket.h>
-#include <sys/un.h>
-#include <sys/file.h>
-#include <sys/wait.h>
-#include <sys/time.h>
-#include <sys/resource.h>
#ifndef __linux__
#ifndef RLIMIT_NOFILE
@@ -106,14 +97,15 @@
#endif
#endif
-#include <sys/param.h>
-#include <sys/stat.h>
+#include <sys/file.h>
#include <sys/ioctl.h>
+#include <sys/param.h>
+#include <sys/resource.h>
#include <sys/socket.h>
-#include <sys/file.h>
-#include <sys/wait.h>
+#include <sys/stat.h>
#include <sys/time.h>
-#include <sys/resource.h>
+#include <sys/un.h>
+#include <sys/wait.h>
#include <netinet/in.h>
#include <netinet/ip.h>
More information about the busybox-cvs
mailing list