diff options
author | peter <peter@FreeBSD.org> | 1998-06-12 12:55:46 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-06-12 12:55:46 +0000 |
commit | 0b9db54b14d20dd5b0d9d814fcf585c1da3ff9d0 (patch) | |
tree | 400c3f5bf752d49303915485f7397fd60044c4b9 /usr.bin/whois | |
parent | 33df921953fd1f12415a1f829836d2567e42b497 (diff) | |
download | FreeBSD-src-0b9db54b14d20dd5b0d9d814fcf585c1da3ff9d0.zip FreeBSD-src-0b9db54b14d20dd5b0d9d814fcf585c1da3ff9d0.tar.gz |
#include <arpa/inet.h>
Diffstat (limited to 'usr.bin/whois')
-rw-r--r-- | usr.bin/whois/whois.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/whois/whois.c b/usr.bin/whois/whois.c index fc13f26..ed5e5bc 100644 --- a/usr.bin/whois/whois.c +++ b/usr.bin/whois/whois.c @@ -42,12 +42,13 @@ static const char copyright[] = static char sccsid[] = "@(#)whois.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: whois.c,v 1.4 1997/08/26 11:16:08 charnier Exp $"; + "$Id: whois.c,v 1.5 1998/02/19 19:07:50 wollman Exp $"; #endif /* not lint */ #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> +#include <arpa/inet.h> #include <err.h> #include <netdb.h> #include <stdio.h> |