summaryrefslogtreecommitdiff
path: root/networking/inetd.c
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2003-02-11 07:06:06 +0000
committerManuel Novoa III <mjn3@codepoet.org>2003-02-11 07:06:06 +0000
commitc2843563f326e09249b3eff270ba6ffb8a19e90a (patch)
treec1a3a2f985cbeeac3aba2be8f2656d37b75a2203 /networking/inetd.c
parentae494a90864e923ade44e8656693d8d72503c574 (diff)
downloadbusybox-w32-c2843563f326e09249b3eff270ba6ffb8a19e90a.tar.gz
busybox-w32-c2843563f326e09249b3eff270ba6ffb8a19e90a.tar.bz2
busybox-w32-c2843563f326e09249b3eff270ba6ffb8a19e90a.zip
Fix compile error... header problems.
Diffstat (limited to 'networking/inetd.c')
-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"