Pull in opt_ktrace.h (and sys/ktrace.h) so that the ktrace-related code

is compiled when enabled.  You know, preprocessor hell...
This commit is contained in:
jmmv 2006-11-13 17:01:06 +00:00
parent 870dd91500
commit c963ce01ee
1 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: darwin_iohidsystem.c,v 1.35 2006/10/22 18:18:08 christos Exp $ */
/* $NetBSD: darwin_iohidsystem.c,v 1.36 2006/11/13 17:01:06 jmmv Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@ -37,7 +37,9 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: darwin_iohidsystem.c,v 1.35 2006/10/22 18:18:08 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: darwin_iohidsystem.c,v 1.36 2006/11/13 17:01:06 jmmv Exp $");
#include "opt_ktrace.h"
#include "ioconf.h"
#include "wsmux.h"
@ -55,6 +57,7 @@ __KERNEL_RCSID(0, "$NetBSD: darwin_iohidsystem.c,v 1.35 2006/10/22 18:18:08 chri
#include <sys/conf.h>
#include <sys/device.h>
#include <sys/kthread.h>
#include <sys/ktrace.h>
#include <dev/wscons/wsconsio.h>
#include <dev/wscons/wseventvar.h>