diff options
author | 2020-06-17 16:16:05 +0000 | |
---|---|---|
committer | 2020-06-17 16:16:05 +0000 | |
commit | e80e43fc0876077814e0cf40c04e86b34c3f7b39 (patch) | |
tree | d5c998173ec73090ae2280b9fd2e3f1c856968df /sys/dev/acpi/acpiutil.c | |
parent | Document that rand() returns non-deterministic random numbers unless a (diff) | |
download | wireguard-openbsd-e80e43fc0876077814e0cf40c04e86b34c3f7b39.tar.xz wireguard-openbsd-e80e43fc0876077814e0cf40c04e86b34c3f7b39.zip |
needs param.h, not types.h
Diffstat (limited to 'sys/dev/acpi/acpiutil.c')
-rw-r--r-- | sys/dev/acpi/acpiutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpiutil.c b/sys/dev/acpi/acpiutil.c index 0fb21a3450b..2c34fe502e7 100644 --- a/sys/dev/acpi/acpiutil.c +++ b/sys/dev/acpi/acpiutil.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpiutil.c,v 1.8 2015/03/14 03:38:47 jsg Exp $ */ +/* $OpenBSD: acpiutil.c,v 1.9 2020/06/17 16:16:05 deraadt Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * @@ -15,7 +15,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include <sys/types.h> +#include <sys/param.h> #include <sys/systm.h> #include <sys/device.h> |