aboutsummaryrefslogtreecommitdiff
path: root/networking/inetd.c
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-02-22 04:58:36 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-02-22 04:58:36 +0000
commit770d35aa421693a0aed643442eead9033875c95f (patch)
tree6b3d00aa31142dbcc4147e0e4c5a0e9dfde25da7 /networking/inetd.c
parent5285edeccd20fc2ef17defe99aa817e94369337d (diff)
downloadbusybox-w32-770d35aa421693a0aed643442eead9033875c95f.tar.gz
busybox-w32-770d35aa421693a0aed643442eead9033875c95f.tar.bz2
busybox-w32-770d35aa421693a0aed643442eead9033875c95f.zip
remove duplicate header declarations
git-svn-id: svn://busybox.net/trunk/busybox@8538 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'networking/inetd.c')
-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 @@
90 90
91#include "busybox.h" 91#include "busybox.h"
92 92
93#include <sys/param.h>
94#include <sys/stat.h>
95#include <sys/ioctl.h>
96#include <sys/socket.h>
97#include <sys/un.h>
98#include <sys/file.h>
99#include <sys/wait.h>
100#include <sys/time.h>
101#include <sys/resource.h>
102 93
103#ifndef __linux__ 94#ifndef __linux__
104#ifndef RLIMIT_NOFILE 95#ifndef RLIMIT_NOFILE
@@ -106,14 +97,15 @@
106#endif 97#endif
107#endif 98#endif
108 99
109#include <sys/param.h> 100#include <sys/file.h>
110#include <sys/stat.h>
111#include <sys/ioctl.h> 101#include <sys/ioctl.h>
102#include <sys/param.h>
103#include <sys/resource.h>
112#include <sys/socket.h> 104#include <sys/socket.h>
113#include <sys/file.h> 105#include <sys/stat.h>
114#include <sys/wait.h>
115#include <sys/time.h> 106#include <sys/time.h>
116#include <sys/resource.h> 107#include <sys/un.h>
108#include <sys/wait.h>
117 109
118#include <netinet/in.h> 110#include <netinet/in.h>
119#include <netinet/ip.h> 111#include <netinet/ip.h>