diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-07-09 08:34:50 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-07-09 08:34:50 +0000 |
commit | c8038d8fad862d9cf9b94b5d7e1b3af5f05cf1e5 (patch) | |
tree | 8bd32b53100c354e14f42f99455db561036ffd36 /sys/arch/powerpc | |
parent | c13128865f8a91b02faded193ae60e4311413039 (diff) |
obvious need for systm.h, which no longer comes in from something user.h includes
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r-- | sys/arch/powerpc/powerpc/fpu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/powerpc/powerpc/fpu.c b/sys/arch/powerpc/powerpc/fpu.c index fc90fc8f12a..ff4eee04ee7 100644 --- a/sys/arch/powerpc/powerpc/fpu.c +++ b/sys/arch/powerpc/powerpc/fpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fpu.c,v 1.13 2014/05/09 18:16:15 miod Exp $ */ +/* $OpenBSD: fpu.c,v 1.14 2014/07/09 08:34:49 deraadt Exp $ */ /* $NetBSD: fpu.c,v 1.1 1996/09/30 16:34:44 ws Exp $ */ /* @@ -32,6 +32,7 @@ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include <sys/param.h> +#include <sys/systm.h> #include <sys/proc.h> #include <sys/user.h> |