aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2004-02-22 04:58:36 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2004-02-22 04:58:36 +0000
commit34e1469f2483ebf0c2177c44e8b9e2354bae7643 (patch)
tree6b3d00aa31142dbcc4147e0e4c5a0e9dfde25da7 /networking
parent9079ad0cab687a60e7ea179beb9875ba1e739318 (diff)
downloadbusybox-34e1469f2483ebf0c2177c44e8b9e2354bae7643.tar.gz
remove duplicate header declarations
Diffstat (limited to 'networking')
-rw-r--r--networking/inetd.c20
1 files changed, 6 insertions, 14 deletions
diff --git a/networking/inetd.c b/networking/inetd.c
index 896a9978f..c930a892c 100644
--- a/networking/inetd.c
+++ b/networking/inetd.c
@@ -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>