diff options
| author | eeh <eeh@NetBSD.org> | 2000-05-30 20:54:26 +0000 |
|---|---|---|
| committer | eeh <eeh@NetBSD.org> | 2000-05-30 20:54:26 +0000 |
| commit | 7a92eda0219ca37b3dfe8fd489635b3cc41cb0bb (patch) | |
| tree | 22ce3c1a495f9f49085ea5bac185497038f8f4df /sys | |
| parent | 719d6db0e24e3417e3a8c895cffb3839f7e4aa1a (diff) | |
Include "opt_DDB.h" to enable the DDB sysctls.
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/compat/netbsd32/netbsd32_netbsd.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/compat/netbsd32/netbsd32_netbsd.c b/sys/compat/netbsd32/netbsd32_netbsd.c index 00c3a9c0120..c1c20cc8fa8 100644 --- a/sys/compat/netbsd32/netbsd32_netbsd.c +++ b/sys/compat/netbsd32/netbsd32_netbsd.c @@ -1,4 +1,4 @@ -/* $NetBSD: netbsd32_netbsd.c,v 1.27 2000/05/27 04:52:34 thorpej Exp $ */ +/* $NetBSD: netbsd32_netbsd.c,v 1.28 2000/05/30 20:54:26 eeh Exp $ */ /* * Copyright (c) 1998 Matthew R. Green @@ -28,6 +28,7 @@ * SUCH DAMAGE. */ +#include "opt_ddb.h" #include "opt_ktrace.h" #include "opt_ntp.h" #include "opt_compat_netbsd.h" @@ -89,6 +90,10 @@ #include <machine/frame.h> +#if defined(DDB) +#include <ddb/ddbvar.h> +#endif + static __inline void netbsd32_from_timeval __P((struct timeval *, struct netbsd32_timeval *)); static __inline void netbsd32_to_timeval __P((struct netbsd32_timeval *, struct timeval *)); static __inline void netbsd32_from_itimerval __P((struct itimerval *, struct netbsd32_itimerval *)); |
