diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-03-24 18:43:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-03-24 18:43:48 +0000 |
commit | c0f3025e7cea13a35f6a19c0caa727aca97d6b16 (patch) | |
tree | 5a5db8493a18a2ac1ca39ead035990bef8286706 /sys/arch | |
parent | fc0db8e2da4095df1283d605c88920576fc261d3 (diff) |
use sys/param.h instead of machine/param.h
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/socppc/stand/boot/wd.c | 5 | ||||
-rw-r--r-- | sys/arch/socppc/stand/boot/wdc.c | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/sys/arch/socppc/stand/boot/wd.c b/sys/arch/socppc/stand/boot/wd.c index cabebd4dd5c..d381508abc2 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.5 2011/03/13 00:13:53 deraadt Exp $ */ +/* $OpenBSD: wd.c,v 1.6 2013/03/24 18:43:47 deraadt Exp $ */ /* $NetBSD: wd.c,v 1.5 2005/12/11 12:17:06 christos Exp $ */ /*- @@ -30,11 +30,10 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/param.h> #include <sys/types.h> #include <sys/stdint.h> -#include <machine/param.h> - #include "libsa.h" #include "wdvar.h" diff --git a/sys/arch/socppc/stand/boot/wdc.c b/sys/arch/socppc/stand/boot/wdc.c index 3a10c107a06..e584d55ce84 100644 --- a/sys/arch/socppc/stand/boot/wdc.c +++ b/sys/arch/socppc/stand/boot/wdc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wdc.c,v 1.4 2011/03/13 00:13:53 deraadt Exp $ */ +/* $OpenBSD: wdc.c,v 1.5 2013/03/24 18:43:47 deraadt Exp $ */ /* $NetBSD: wdc.c,v 1.7 2005/12/11 12:17:06 christos Exp $ */ /*- @@ -30,8 +30,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#include <sys/types.h> -#include <machine/param.h> +#include <sys/param.h> #include "libsa.h" #include "wdvar.h" |