aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/finger/net.c
diff options
context:
space:
mode:
authorPhilippe Charnier <charnier@FreeBSD.org>2001-02-06 20:13:48 +0000
committerPhilippe Charnier <charnier@FreeBSD.org>2001-02-06 20:13:48 +0000
commit4c86f3ad84e2482a236c19d96c0422a5717d532a (patch)
treea4a8d17a1221f16e9a4140b3b561664350caaf62 /usr.bin/finger/net.c
parent39e21a1b648f5b4f781990615bd373e46deb8b61 (diff)
downloadsrc-4c86f3ad84e2482a236c19d96c0422a5717d532a.tar.gz
src-4c86f3ad84e2482a236c19d96c0422a5717d532a.zip
Spelling
Remove unused #includes
Notes
Notes: svn path=/head/; revision=72109
Diffstat (limited to 'usr.bin/finger/net.c')
-rw-r--r--usr.bin/finger/net.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/usr.bin/finger/net.c b/usr.bin/finger/net.c
index 388ea332b984..3f93a8a55d53 100644
--- a/usr.bin/finger/net.c
+++ b/usr.bin/finger/net.c
@@ -37,29 +37,23 @@
#ifndef lint
#if 0
static char sccsid[] = "@(#)net.c 8.4 (Berkeley) 4/28/95";
-#else
+#endif
static const char rcsid[] =
"$FreeBSD$";
-#endif
#endif /* not lint */
-#include <sys/types.h>
#include <sys/param.h>
#include <sys/socket.h>
-#include <netinet/in.h>
-#include <arpa/inet.h>
-#include <netdb.h>
+#include <sys/uio.h>
+#include <ctype.h>
#include <db.h>
#include <err.h>
-#include <unistd.h>
+#include <netdb.h>
#include <pwd.h>
-#include <utmp.h>
#include <stdio.h>
-#include <ctype.h>
#include <string.h>
-#include <sys/uio.h>
-#include <signal.h>
-#include <limits.h>
+#include <unistd.h>
+#include <utmp.h>
#include "finger.h"
extern int lflag; /* XXX finger.h? */