diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-06-26 16:18:46 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-06-26 16:18:46 +0000 |
commit | c9163dc9e49a982b316a7948eeff53932a59cb0d (patch) | |
tree | 64a392ae4ddf8c7e61949ea88e6798210ab6ff71 /sys/arch/hppa/stand/boot | |
parent | c89def33ca28d213deb1abf55623f82a7e110412 (diff) |
do not assume that sys/param.h is pulling in the world; pull in what is
needed by hand.
Diffstat (limited to 'sys/arch/hppa/stand/boot')
-rw-r--r-- | sys/arch/hppa/stand/boot/exec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/hppa/stand/boot/exec.c b/sys/arch/hppa/stand/boot/exec.c index 8dd0c20771f..a6e9896dde1 100644 --- a/sys/arch/hppa/stand/boot/exec.c +++ b/sys/arch/hppa/stand/boot/exec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exec.c,v 1.4 2004/06/14 00:32:31 deraadt Exp $ */ +/* $OpenBSD: exec.c,v 1.5 2012/06/26 16:18:43 deraadt Exp $ */ /* * Copyright (c) 2002-2004 Michael Shalayeff @@ -27,6 +27,7 @@ */ #include <sys/param.h> +#include <machine/cpu.h> #include <machine/pdc.h> #include "libsa.h" #include <lib/libsa/loadfile.h> |