diff options
author | Garrett Wollman <wollman@FreeBSD.org> | 1996-12-10 17:11:53 +0000 |
---|---|---|
committer | Garrett Wollman <wollman@FreeBSD.org> | 1996-12-10 17:11:53 +0000 |
commit | 628d2ac1b093f48f6fb98b17308acacc929876d8 (patch) | |
tree | 1bb2cd09b3e27a462e04923aa2922608ee5ea899 /libexec/bootpd/lookup.c | |
parent | fc43f97826e798ad4e3534b59f3b8d3aac1c4abe (diff) |
Fix up programs which expect <net/if.h> to include <sys/time.h> to instead
do it themselves. (Some of these programs actually depended on this
beyond compiling the definition of struct ifinfo!) Also fix up some
other #include messes while we're at it.
Notes
Notes:
svn path=/head/; revision=20287
Diffstat (limited to 'libexec/bootpd/lookup.c')
-rw-r--r-- | libexec/bootpd/lookup.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libexec/bootpd/lookup.c b/libexec/bootpd/lookup.c index ed1a27cbe2cf..b5b51b547cbc 100644 --- a/libexec/bootpd/lookup.c +++ b/libexec/bootpd/lookup.c @@ -1,15 +1,13 @@ /* * lookup.c - Lookup IP address, HW address, netmask * - * $Id$ + * $Id: lookup.c,v 1.2 1996/09/22 21:52:21 wosch Exp $ */ #include <sys/types.h> #include <sys/socket.h> -#ifdef _AIX32 #include <sys/time.h> /* for struct timeval in net/if.h */ -#endif #include <net/if.h> #include <netinet/in.h> |