summaryrefslogtreecommitdiff
path: root/ddb
diff options
context:
space:
mode:
Diffstat (limited to 'ddb')
-rw-r--r--ddb/db_command.c1
-rw-r--r--ddb/db_cond.c1
-rw-r--r--ddb/db_output.c2
3 files changed, 3 insertions, 1 deletions
diff --git a/ddb/db_command.c b/ddb/db_command.c
index b6927e6..56bde0d 100644
--- a/ddb/db_command.c
+++ b/ddb/db_command.c
@@ -44,6 +44,7 @@
#include <ddb/db_task_thread.h>
#include <machine/setjmp.h>
+#include <kern/debug.h> /* for panic() */
#include <kern/thread.h>
#include <ipc/ipc_pset.h> /* 4proto */
#include <ipc/ipc_port.h> /* 4proto */
diff --git a/ddb/db_cond.c b/ddb/db_cond.c
index cbaf5a4..e968c5c 100644
--- a/ddb/db_cond.c
+++ b/ddb/db_cond.c
@@ -33,6 +33,7 @@
#include <ddb/db_break.h>
#include <ddb/db_command.h>
+#include <kern/debug.h> /* for panic() */
#define DB_MAX_COND 10 /* maximum conditions to be set */
diff --git a/ddb/db_output.c b/ddb/db_output.c
index 1506bcd..6433901 100644
--- a/ddb/db_output.c
+++ b/ddb/db_output.c
@@ -34,7 +34,7 @@
* Printf and character output for debugger.
*/
-#include <printf.h>
+#include <kern/printf.h>
#include <stdarg.h>
#include <mach/boolean.h>
#include <machine/db_machdep.h>