diff options
author | 2015-01-20 18:26:57 +0000 | |
---|---|---|
committer | 2015-01-20 18:26:57 +0000 | |
commit | 52a421fc3f8fc8f10bb794f9e4883e5dcce4fa22 (patch) | |
tree | 4b6f74b7a950006117a05d18ec579e71f270645a /usr.bin/netstat/unix.c | |
parent | Adjust <sys/param.h> comments regarding use of use of MAXFRAG, or (diff) | |
download | wireguard-openbsd-52a421fc3f8fc8f10bb794f9e4883e5dcce4fa22.tar.xz wireguard-openbsd-52a421fc3f8fc8f10bb794f9e4883e5dcce4fa22.zip |
Adjust <sys/param.h> comments regarding use of use of MSIZE, or
delete <sys/param.h> if now possible
ok guenther
Diffstat (limited to 'usr.bin/netstat/unix.c')
-rw-r--r-- | usr.bin/netstat/unix.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/netstat/unix.c b/usr.bin/netstat/unix.c index c422a30b6b6..27ed2816812 100644 --- a/usr.bin/netstat/unix.c +++ b/usr.bin/netstat/unix.c @@ -1,4 +1,4 @@ -/* $OpenBSD: unix.c,v 1.24 2015/01/16 06:40:10 deraadt Exp $ */ +/* $OpenBSD: unix.c,v 1.25 2015/01/20 18:26:57 deraadt Exp $ */ /* $NetBSD: unix.c,v 1.13 1995/10/03 21:42:48 thorpej Exp $ */ /*- @@ -33,10 +33,9 @@ /* * Display protocol blocks in the unix domain. */ -#include <sys/param.h> /* MSIZE */ -#include <sys/protosw.h> #include <sys/socket.h> #include <sys/socketvar.h> +#include <sys/protosw.h> #include <sys/mbuf.h> #include <sys/sysctl.h> #include <sys/un.h> |