diff options
author | 2010-04-20 22:08:17 +0000 | |
---|---|---|
committer | 2010-04-20 22:08:17 +0000 | |
commit | aa02321b155e593be8271d1e16e37dcaf1bd6762 (patch) | |
tree | 9a761273c43bdb94067cc47395088c2c8a6903f6 | |
parent | remove proc.h include from uvm_map.h. This has far reaching effects, as (diff) | |
download | wireguard-openbsd-aa02321b155e593be8271d1e16e37dcaf1bd6762.tar.xz wireguard-openbsd-aa02321b155e593be8271d1e16e37dcaf1bd6762.zip |
need proc.h before user.h
-rw-r--r-- | sys/arch/amd64/amd64/acpi_machdep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/amd64/amd64/acpi_machdep.c b/sys/arch/amd64/amd64/acpi_machdep.c index bfba94bb8ec..9412801b8c9 100644 --- a/sys/arch/amd64/amd64/acpi_machdep.c +++ b/sys/arch/amd64/amd64/acpi_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpi_machdep.c,v 1.34 2010/04/07 06:33:06 kettenis Exp $ */ +/* $OpenBSD: acpi_machdep.c,v 1.35 2010/04/20 22:08:17 tedu Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * @@ -21,6 +21,7 @@ #include <sys/device.h> #include <sys/malloc.h> #include <sys/memrange.h> +#include <sys/proc.h> #include <sys/user.h> #include <uvm/uvm_extern.h> |