diff options
author | wollman <wollman@FreeBSD.org> | 1996-12-10 17:11:53 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1996-12-10 17:11:53 +0000 |
commit | d3ecee07b35f58cb9d8e5e3c25e923af0c1c5056 (patch) | |
tree | 1bb2cd09b3e27a462e04923aa2922608ee5ea899 /sbin/ipfw | |
parent | 3f5b5465d429055a8f42863b35d3d19ec28dcd9b (diff) | |
download | FreeBSD-src-d3ecee07b35f58cb9d8e5e3c25e923af0c1c5056.zip FreeBSD-src-d3ecee07b35f58cb9d8e5e3c25e923af0c1c5056.tar.gz |
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.
Diffstat (limited to 'sbin/ipfw')
-rw-r--r-- | sbin/ipfw/ipfw.c | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/sbin/ipfw/ipfw.c b/sbin/ipfw/ipfw.c index b97d38f..7487b21 100644 --- a/sbin/ipfw/ipfw.c +++ b/sbin/ipfw/ipfw.c @@ -16,22 +16,26 @@ * * NEW command line interface for IP firewall facility * - * $Id: ipfw.c,v 1.33 1996/08/31 17:58:23 nate Exp $ + * $Id: ipfw.c,v 1.34 1996/10/17 01:05:03 alex Exp $ * */ -#include <stdio.h> +#include <sys/types.h> +#include <sys/queue.h> +#include <sys/socket.h> +#include <sys/sockio.h> +#include <sys/time.h> + #include <ctype.h> #include <err.h> -#include <unistd.h> -#include <string.h> -#include <stdlib.h> -#include <netdb.h> #include <limits.h> +#include <netdb.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> #include <time.h> -#include <sys/queue.h> -#include <sys/socket.h> -#include <sys/sockio.h> +#include <unistd.h> + #include <net/if.h> #include <netinet/in.h> #include <netinet/ip_fw.h> |