diff options
author | 2013-04-21 20:49:39 +0000 | |
---|---|---|
committer | 2013-04-21 20:49:39 +0000 | |
commit | fd939635aa82bdecbc4ada1f2ad71e2f8f745612 (patch) | |
tree | ba14b2e2f1698d197b697c7862e5757d81836ece | |
parent | sync (diff) | |
download | wireguard-openbsd-fd939635aa82bdecbc4ada1f2ad71e2f8f745612.tar.xz wireguard-openbsd-fd939635aa82bdecbc4ada1f2ad71e2f8f745612.zip |
Tweak #include order to work during the big time_t transition
noted by matthieu@
-rw-r--r-- | usr.sbin/pstat/pstat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c index cb8ff495bda..998ce4035d3 100644 --- a/usr.sbin/pstat/pstat.c +++ b/usr.sbin/pstat/pstat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pstat.c,v 1.83 2013/03/24 15:09:12 deraadt Exp $ */ +/* $OpenBSD: pstat.c,v 1.84 2013/04/21 20:49:39 guenther Exp $ */ /* $NetBSD: pstat.c,v 1.27 1996/10/23 22:50:06 cgd Exp $ */ /*- @@ -36,13 +36,13 @@ #include <sys/buf.h> #include <sys/vnode.h> #include <sys/ucred.h> +#include <sys/stat.h> #define _KERNEL #include <sys/file.h> #include <ufs/ufs/quota.h> #include <ufs/ufs/inode.h> #include <sys/mount.h> #undef _KERNEL -#include <sys/stat.h> #include <nfs/nfsproto.h> #include <nfs/rpcv2.h> #include <nfs/nfsnode.h> |