diff options
| author | Eivind Eklund <eivind@FreeBSD.org> | 1998-01-08 23:42:31 +0000 |
|---|---|---|
| committer | Eivind Eklund <eivind@FreeBSD.org> | 1998-01-08 23:42:31 +0000 |
| commit | 1d5e9e2255b72657dba67926ac2c254fd2156698 (patch) | |
| tree | 13ea282d9bdb0c5cac926cf5b20b310b41db6e81 /sys/net/if_ethersubr.c | |
| parent | 89d224d4156fa88b8c9b8e1d88a679756b0fdd99 (diff) | |
Notes
Diffstat (limited to 'sys/net/if_ethersubr.c')
| -rw-r--r-- | sys/net/if_ethersubr.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c index e6fc61771e57..eef535761f2c 100644 --- a/sys/net/if_ethersubr.c +++ b/sys/net/if_ethersubr.c @@ -31,9 +31,10 @@ * SUCH DAMAGE. * * @(#)if_ethersubr.c 8.1 (Berkeley) 6/10/93 - * $Id: if_ethersubr.c,v 1.40 1997/12/15 20:30:59 eivind Exp $ + * $Id: if_ethersubr.c,v 1.41 1997/12/20 00:07:02 bde Exp $ */ +#include "opt_inet.h" #include "opt_ipx.h" #include <sys/param.h> @@ -52,11 +53,14 @@ #include <net/if_dl.h> #include <net/if_types.h> +#include <net/ethernet.h> +#include <net/if_arp.h> + #ifdef INET #include <netinet/in.h> #include <netinet/in_var.h> -#endif #include <netinet/if_ether.h> +#endif #ifdef IPX #include <netipx/ipx.h> |
