diff options
author | 1997-06-25 13:22:25 +0000 | |
---|---|---|
committer | 1997-06-25 13:22:25 +0000 | |
commit | bedb54a38aea8869161a9748b70781ecb93d34c5 (patch) | |
tree | 825a85f38059eb33b4c47e098904dd47d217835a | |
parent | Add netinet/in.h for in_cksum() proto. (diff) | |
download | wireguard-openbsd-bedb54a38aea8869161a9748b70781ecb93d34c5.tar.xz wireguard-openbsd-bedb54a38aea8869161a9748b70781ecb93d34c5.zip |
Add power.h for powerdown() proto.
-rw-r--r-- | sys/arch/sparc/sparc/machdep.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/sparc/sparc/machdep.c b/sys/arch/sparc/sparc/machdep.c index e3751a8dd08..5d458945fb6 100644 --- a/sys/arch/sparc/sparc/machdep.c +++ b/sys/arch/sparc/sparc/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.24 1997/06/22 23:54:24 downsj Exp $ */ +/* $OpenBSD: machdep.c,v 1.25 1997/06/25 13:22:25 downsj Exp $ */ /* $NetBSD: machdep.c,v 1.64 1996/05/19 04:12:56 mrg Exp $ */ /* @@ -91,6 +91,10 @@ #include <sparc/sparc/cache.h> #include <sparc/sparc/vaddrs.h> +#ifdef SUN4M +#include <sparc/dev/power.h> +#endif + vm_map_t buffer_map; extern vm_offset_t avail_end; |