aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb/db_trap.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/ddb/db_trap.c')
-rw-r--r--sys/ddb/db_trap.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/ddb/db_trap.c b/sys/ddb/db_trap.c
index bcdc4f47f48a..abfa770d358c 100644
--- a/sys/ddb/db_trap.c
+++ b/sys/ddb/db_trap.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id$
+ * $Id: db_trap.c,v 1.2 1993/10/16 16:47:28 rgrimes Exp $
*/
/*
@@ -35,7 +35,9 @@
* Trap entry point to kernel debugger.
*/
#include "param.h"
+#include "systm.h"
#include "proc.h"
+#include "ddb/ddb.h"
#include <ddb/db_command.h>
#include <ddb/db_break.h>
@@ -46,6 +48,7 @@ extern int db_inst_count;
extern int db_load_count;
extern int db_store_count;
+void
db_trap(type, code)
int type, code;
{