Include include "opt_atalk.h" so that the NETATALK support can work.

Removed unused includes.

Removed used includes of <sys/queue.h> and <sys/time.h>, since these are
standard pollution (especially the latter).

Reviewed by:	sobomax
This commit is contained in:
Bruce Evans 2002-09-16 10:10:18 +00:00
parent 38c8f73ed0
commit 127686220a
1 changed files with 1 additions and 17 deletions

View File

@ -49,6 +49,7 @@
#include <sys/cdefs.h>
__RCSID("@(#) $FreeBSD$");
#include "opt_atalk.h"
#include "opt_inet.h"
#include "opt_ns.h"
#include "bpf.h"
@ -57,20 +58,15 @@ __RCSID("@(#) $FreeBSD$");
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
#include <sys/proc.h>
#include <sys/protosw.h>
#include <sys/socket.h>
#include <sys/sockio.h>
#include <sys/queue.h>
#include <sys/sysctl.h>
#include <sys/systm.h>
#include <machine/cpu.h>
#include <net/ethernet.h>
#include <net/if.h>
#include <net/if_types.h>
#include <net/netisr.h>
#include <net/route.h>
#ifdef INET
@ -85,19 +81,7 @@ __RCSID("@(#) $FreeBSD$");
#error "Huh? if_gre without inet?"
#endif
#ifdef NS
#include <netns/ns.h>
#include <netns/ns_if.h>
#endif
#ifdef NETATALK
#include <netatalk/at.h>
#include <netatalk/at_var.h>
#include <netatalk/at_extern.h>
#endif
#if NBPF > 0
#include <sys/time.h>
#include <net/bpf.h>
#endif