diff options
author | 2014-06-30 00:26:22 +0000 | |
---|---|---|
committer | 2014-06-30 00:26:22 +0000 | |
commit | 429b3653566f89b7c674ac8c4c2ede979e170406 (patch) | |
tree | 106eb1729910e9e051b9fea0623847f6c47ad26d /lib/libutil/getrawpartition.c | |
parent | sort includes much more sensibly (diff) | |
download | wireguard-openbsd-429b3653566f89b7c674ac8c4c2ede979e170406.tar.xz wireguard-openbsd-429b3653566f89b7c674ac8c4c2ede979e170406.zip |
sys/types.h rather than sys/param.h, where applicable. avoid overreach.
Diffstat (limited to 'lib/libutil/getrawpartition.c')
-rw-r--r-- | lib/libutil/getrawpartition.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libutil/getrawpartition.c b/lib/libutil/getrawpartition.c index 363cec9a475..1363804cb6e 100644 --- a/lib/libutil/getrawpartition.c +++ b/lib/libutil/getrawpartition.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getrawpartition.c,v 1.7 2008/06/26 05:42:05 ray Exp $ */ +/* $OpenBSD: getrawpartition.c,v 1.8 2014/06/30 00:26:22 deraadt Exp $ */ /* $NetBSD: getrawpartition.c,v 1.1 1996/05/16 07:03:33 thorpej Exp $ */ /*- @@ -30,7 +30,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#include <sys/param.h> +#include <sys/types.h> #include <sys/sysctl.h> #include "util.h" |