diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2013-03-28 16:45:17 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2013-03-28 16:45:17 +0000 |
commit | 790854fc3969b4dc1105915a4009f802424b68fb (patch) | |
tree | 9b30fd816d14a1b1d42275a3bab27642c53640fc /sys/netinet/if_ether.c | |
parent | 811f86757c475318d1797df83c9d2ec239db219c (diff) |
no need for a lot of code to include proc.h
Diffstat (limited to 'sys/netinet/if_ether.c')
-rw-r--r-- | sys/netinet/if_ether.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index d1d849be42b..a892ea42a87 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ether.c,v 1.99 2013/03/28 00:32:11 bluhm Exp $ */ +/* $OpenBSD: if_ether.c,v 1.100 2013/03/28 16:45:16 tedu Exp $ */ /* $NetBSD: if_ether.c,v 1.31 1996/05/11 12:59:58 mycroft Exp $ */ /* @@ -49,7 +49,6 @@ #include <sys/socket.h> #include <sys/kernel.h> #include <sys/syslog.h> -#include <sys/proc.h> #include <net/if.h> #include <net/if_dl.h> @@ -105,7 +104,6 @@ struct ifnet *revarp_ifp; #endif /* NFSCLIENT */ #ifdef DDB -#include <uvm/uvm_extern.h> void db_print_sa(struct sockaddr *); void db_print_ifa(struct ifaddr *); |