aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-02-11 07:06:06 +0000
committermjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-02-11 07:06:06 +0000
commitbd6f94b865d29767a001e0e94231100db7e97122 (patch)
treec1a3a2f985cbeeac3aba2be8f2656d37b75a2203
parentbee3b84ca4a42c46aae927cb90de8f26a517e1af (diff)
downloadbusybox-w32-bd6f94b865d29767a001e0e94231100db7e97122.tar.gz
busybox-w32-bd6f94b865d29767a001e0e94231100db7e97122.tar.bz2
busybox-w32-bd6f94b865d29767a001e0e94231100db7e97122.zip
Fix compile error... header problems.
git-svn-id: svn://busybox.net/trunk/busybox@6560 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--networking/inetd.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/networking/inetd.c b/networking/inetd.c
index 0b8075249..2769c01b7 100644
--- a/networking/inetd.c
+++ b/networking/inetd.c
@@ -123,14 +123,13 @@
123#include <signal.h> 123#include <signal.h>
124#include <netdb.h> 124#include <netdb.h>
125#include <syslog.h> 125#include <syslog.h>
126#include <pwd.h>
127#include <grp.h>
128#include <stdio.h> 126#include <stdio.h>
129#include <stdlib.h> 127#include <stdlib.h>
130#include <string.h> 128#include <string.h>
131#include <getopt.h> 129#include <getopt.h>
132#include <unistd.h> 130#include <unistd.h>
133#include <stdarg.h> 131#include <stdarg.h>
132#include <time.h>
134 133
135#define _PATH_INETDCONF "/etc/inetd.conf" 134#define _PATH_INETDCONF "/etc/inetd.conf"
136#define _PATH_INETDPID "/var/run/inetd.pid" 135#define _PATH_INETDPID "/var/run/inetd.pid"