diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2018-05-27 08:11:14 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2018-05-27 08:11:14 +0000 |
commit | bd7dc672de0df4419bd201bd8bd476c1b28a1743 (patch) | |
tree | 24b584bb5723e73cd8fb937916cfd206d5a327e3 | |
parent | 4addc070b6c057c4a9beba8aa8020e03cb15fc84 (diff) |
Add missing #include "audio.h" needed for the NAUDIO macro.
suggested by jsg, ok sthen.
-rw-r--r-- | sys/kern/kern_sysctl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/kern/kern_sysctl.c b/sys/kern/kern_sysctl.c index 25facde0166..896783f836f 100644 --- a/sys/kern/kern_sysctl.c +++ b/sys/kern/kern_sysctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_sysctl.c,v 1.339 2018/05/26 14:36:35 sthen Exp $ */ +/* $OpenBSD: kern_sysctl.c,v 1.340 2018/05/27 08:11:13 ratchov Exp $ */ /* $NetBSD: kern_sysctl.c,v 1.17 1996/05/20 17:49:05 mrg Exp $ */ /*- @@ -113,6 +113,8 @@ #include <sys/shm.h> #endif +#include "audio.h" + extern struct forkstat forkstat; extern struct nchstats nchstats; extern int nselcoll, fscale; |