diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2011-01-02 13:16:54 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2011-01-02 13:16:54 +0000 |
commit | 8e5869b3e96ec1d14c26833511d16008ead7c580 (patch) | |
tree | 50d06cd81000d5eee888b0ddf59d945ea902de56 /sys | |
parent | f10617709fa6f98ed40b50a9a5a54ae8f3c8223b (diff) |
We need db_machdep.h even when TRAPDEBUG is enabled.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hppa64/hppa64/trap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hppa64/hppa64/trap.c b/sys/arch/hppa64/hppa64/trap.c index 02cdc09cc05..eb12c1cb2e1 100644 --- a/sys/arch/hppa64/hppa64/trap.c +++ b/sys/arch/hppa64/hppa64/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.12 2010/12/21 14:56:23 claudio Exp $ */ +/* $OpenBSD: trap.c,v 1.13 2011/01/02 13:16:53 jsing Exp $ */ /* * Copyright (c) 2005 Michael Shalayeff @@ -36,11 +36,11 @@ #include <machine/psl.h> #ifdef DDB -#ifdef TRAPDEBUG -#include <ddb/db_output.h> -#else #include <machine/db_machdep.h> #endif + +#ifdef TRAPDEBUG +#include <ddb/db_output.h> #endif static __inline int inst_store(u_int ins) { |