diff options
author | 2014-07-09 08:34:49 +0000 | |
---|---|---|
committer | 2014-07-09 08:34:49 +0000 | |
commit | 4a100a2e77d2a09add5bcff297c3ebd06456e53e (patch) | |
tree | 5d39f7a25b31b34e70827dc3b989b0e4edc3ec52 | |
parent | if you use sysctl, you need sysctl.h (diff) | |
download | wireguard-openbsd-4a100a2e77d2a09add5bcff297c3ebd06456e53e.tar.xz wireguard-openbsd-4a100a2e77d2a09add5bcff297c3ebd06456e53e.zip |
obvious need for systm.h, which no longer comes in from something user.h includes
-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> |