diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-09-08 05:36:54 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-09-08 05:36:54 +0000 |
commit | d57c7d7b30add2ecd463f68aef3651ef7bca7eb7 (patch) | |
tree | 57cbf3ade2a9c95a25842cb657179cb4f8c78a82 /sys/arch/socppc/stand | |
parent | 52b7fef1a1e427e7790b90eb2733372c2c8575ba (diff) |
If you use sys/param.h, you don't need sys/types.h
Diffstat (limited to 'sys/arch/socppc/stand')
-rw-r--r-- | sys/arch/socppc/stand/boot/fdt.c | 3 | ||||
-rw-r--r-- | sys/arch/socppc/stand/boot/wd.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/socppc/stand/boot/fdt.c b/sys/arch/socppc/stand/boot/fdt.c index 788257c7b10..f788e3d5094 100644 --- a/sys/arch/socppc/stand/boot/fdt.c +++ b/sys/arch/socppc/stand/boot/fdt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fdt.c,v 1.6 2016/11/14 09:21:41 mpi Exp $ */ +/* $OpenBSD: fdt.c,v 1.7 2017/09/08 05:36:52 deraadt Exp $ */ /* * Copyright (c) 2009 Dariusz Swiderski <sfires@sfires.net> @@ -17,7 +17,6 @@ */ -#include <sys/types.h> #include <sys/param.h> #include "fdt.h" diff --git a/sys/arch/socppc/stand/boot/wd.c b/sys/arch/socppc/stand/boot/wd.c index c55e550eddc..1a5369aafda 100644 --- a/sys/arch/socppc/stand/boot/wd.c +++ b/sys/arch/socppc/stand/boot/wd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wd.c,v 1.9 2015/10/01 20:28:12 krw Exp $ */ +/* $OpenBSD: wd.c,v 1.10 2017/09/08 05:36:52 deraadt Exp $ */ /* $NetBSD: wd.c,v 1.5 2005/12/11 12:17:06 christos Exp $ */ /*- @@ -31,7 +31,6 @@ */ #include <sys/param.h> -#include <sys/types.h> #include <sys/stdint.h> #include "libsa.h" |