diff options
| author | yamt <yamt@NetBSD.org> | 2007-06-02 13:16:19 +0000 |
|---|---|---|
| committer | yamt <yamt@NetBSD.org> | 2007-06-02 13:16:19 +0000 |
| commit | a15e4b5b1b56abb286d0e9c16006dfc8c67cd63d (patch) | |
| tree | 117ed04806ce388d5e85cb3ac20b20ffdc6dfcac /sys/compat/linux/common/linux_socketcall.c | |
| parent | a5879e58450209bf07a4601a71316253a054a9ad (diff) | |
wrap #include "opt_ktrace.h" by #ifdef _KERNEL_OPT.
Diffstat (limited to 'sys/compat/linux/common/linux_socketcall.c')
| -rw-r--r-- | sys/compat/linux/common/linux_socketcall.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/compat/linux/common/linux_socketcall.c b/sys/compat/linux/common/linux_socketcall.c index 97ca3128c0d..6b0a7d7386c 100644 --- a/sys/compat/linux/common/linux_socketcall.c +++ b/sys/compat/linux/common/linux_socketcall.c @@ -1,4 +1,4 @@ -/* $NetBSD: linux_socketcall.c,v 1.33 2007/06/01 22:42:47 dsl Exp $ */ +/* $NetBSD: linux_socketcall.c,v 1.34 2007/06/02 13:16:19 yamt Exp $ */ /*- * Copyright (c) 1995, 1998 The NetBSD Foundation, Inc. @@ -37,9 +37,12 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: linux_socketcall.c,v 1.33 2007/06/01 22:42:47 dsl Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux_socketcall.c,v 1.34 2007/06/02 13:16:19 yamt Exp $"); +#if defined(_KERNEL_OPT) #include "opt_ktrace.h" +#endif /* defined(_KERNEL_OPT) */ + #include <sys/param.h> #include <sys/kernel.h> #include <sys/systm.h> |
