summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1997-06-14 11:52:37 +0000
committerbde <bde@FreeBSD.org>1997-06-14 11:52:37 +0000
commit302a2f962e617a03450c714ca6b3e74e2dfd95c1 (patch)
treeba97f4e3a24b2fbd11267ea3be2ebf4a935d2a90 /sys
parent551134d4e84a3e97c3805bb214738df5a81d66d6 (diff)
downloadFreeBSD-src-302a2f962e617a03450c714ca6b3e74e2dfd95c1.zip
FreeBSD-src-302a2f962e617a03450c714ca6b3e74e2dfd95c1.tar.gz
Removed unused #includes.
Diffstat (limited to 'sys')
-rw-r--r--sys/ddb/db_access.c3
-rw-r--r--sys/ddb/db_break.c4
-rw-r--r--sys/ddb/db_expr.c3
-rw-r--r--sys/ddb/db_lex.c3
-rw-r--r--sys/ddb/db_print.c4
-rw-r--r--sys/ddb/db_run.c4
-rw-r--r--sys/ddb/db_trap.c6
-rw-r--r--sys/ddb/db_variables.c3
-rw-r--r--sys/ddb/db_watch.c6
-rw-r--r--sys/ddb/db_write_cmd.c4
10 files changed, 10 insertions, 30 deletions
diff --git a/sys/ddb/db_access.c b/sys/ddb/db_access.c
index 2f4f906..511f978 100644
--- a/sys/ddb/db_access.c
+++ b/sys/ddb/db_access.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id$
+ * $Id: db_access.c,v 1.13 1997/02/22 09:28:18 peter Exp $
*/
/*
@@ -31,7 +31,6 @@
* Date: 7/90
*/
#include <sys/param.h>
-#include <sys/systm.h>
#include <ddb/ddb.h>
#include <ddb/db_access.h>
diff --git a/sys/ddb/db_break.c b/sys/ddb/db_break.c
index a404a3b..6f7776b 100644
--- a/sys/ddb/db_break.c
+++ b/sys/ddb/db_break.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id$
+ * $Id: db_break.c,v 1.13 1997/02/22 09:28:20 peter Exp $
*/
/*
@@ -34,13 +34,11 @@
* Breakpoints.
*/
#include <sys/param.h>
-#include <sys/systm.h>
#include <vm/vm.h>
#include <vm/vm_kern.h>
#include <ddb/ddb.h>
-#include <ddb/db_lex.h>
#include <ddb/db_break.h>
#include <ddb/db_access.h>
#include <ddb/db_sym.h>
diff --git a/sys/ddb/db_expr.c b/sys/ddb/db_expr.c
index 4372e71..0603d9d 100644
--- a/sys/ddb/db_expr.c
+++ b/sys/ddb/db_expr.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id$
+ * $Id: db_expr.c,v 1.11 1997/02/22 09:28:23 peter Exp $
*/
/*
@@ -31,7 +31,6 @@
* Date: 7/90
*/
#include <sys/param.h>
-#include <sys/systm.h>
#include <ddb/ddb.h>
#include <ddb/db_lex.h>
diff --git a/sys/ddb/db_lex.c b/sys/ddb/db_lex.c
index 62f86eb..edcaa0c 100644
--- a/sys/ddb/db_lex.c
+++ b/sys/ddb/db_lex.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id$
+ * $Id: db_lex.c,v 1.13 1997/02/22 09:28:25 peter Exp $
*/
/*
@@ -34,7 +34,6 @@
* Lexical analyzer.
*/
#include <sys/param.h>
-#include <sys/systm.h>
#include <ddb/ddb.h>
#include <ddb/db_lex.h>
diff --git a/sys/ddb/db_print.c b/sys/ddb/db_print.c
index cbc5ab1..8f7528f 100644
--- a/sys/ddb/db_print.c
+++ b/sys/ddb/db_print.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id$
+ * $Id: db_print.c,v 1.13 1997/02/22 09:28:27 peter Exp $
*/
/*
@@ -35,10 +35,8 @@
* Miscellaneous printing.
*/
#include <sys/param.h>
-#include <sys/systm.h>
#include <ddb/ddb.h>
-#include <ddb/db_lex.h>
#include <ddb/db_variables.h>
#include <ddb/db_sym.h>
diff --git a/sys/ddb/db_run.c b/sys/ddb/db_run.c
index dfd4f12..598a117 100644
--- a/sys/ddb/db_run.c
+++ b/sys/ddb/db_run.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id$
+ * $Id: db_run.c,v 1.12 1997/02/22 09:28:29 peter Exp $
*/
/*
@@ -35,12 +35,10 @@
* Commands to run process.
*/
#include <sys/param.h>
-#include <sys/systm.h>
#include <vm/vm.h>
#include <ddb/ddb.h>
-#include <ddb/db_lex.h>
#include <ddb/db_break.h>
#include <ddb/db_access.h>
diff --git a/sys/ddb/db_trap.c b/sys/ddb/db_trap.c
index 5a9317c..f4da0f8 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: db_trap.c,v 1.11 1997/02/22 09:28:31 peter Exp $
+ * $Id: db_trap.c,v 1.12 1997/03/28 12:39:43 bde Exp $
*/
/*
@@ -35,13 +35,9 @@
* Trap entry point to kernel debugger.
*/
#include <sys/param.h>
-#include <sys/systm.h>
-
-#include <vm/vm.h>
#include <ddb/ddb.h>
#include <ddb/db_command.h>
-#include <ddb/db_break.h>
#include <setjmp.h>
diff --git a/sys/ddb/db_variables.c b/sys/ddb/db_variables.c
index 2bb58c7..0cab001 100644
--- a/sys/ddb/db_variables.c
+++ b/sys/ddb/db_variables.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id$
+ * $Id: db_variables.c,v 1.13 1997/02/22 09:28:31 peter Exp $
*/
/*
@@ -32,7 +32,6 @@
*/
#include <sys/param.h>
-#include <sys/systm.h>
#include <ddb/ddb.h>
#include <ddb/db_lex.h>
diff --git a/sys/ddb/db_watch.c b/sys/ddb/db_watch.c
index 8846ad0..c0f951e 100644
--- a/sys/ddb/db_watch.c
+++ b/sys/ddb/db_watch.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id$
+ * $Id: db_watch.c,v 1.14 1997/02/22 09:28:33 peter Exp $
*/
/*
@@ -32,7 +32,6 @@
*/
#include <sys/param.h>
-#include <sys/systm.h>
#include <vm/vm.h>
#include <sys/lock.h>
@@ -41,10 +40,7 @@
#include <vm/vm_prot.h>
#include <ddb/ddb.h>
-#include <ddb/db_lex.h>
#include <ddb/db_watch.h>
-#include <ddb/db_access.h>
-#include <ddb/db_sym.h>
/*
* Watchpoints.
diff --git a/sys/ddb/db_write_cmd.c b/sys/ddb/db_write_cmd.c
index 0900066..9881234 100644
--- a/sys/ddb/db_write_cmd.c
+++ b/sys/ddb/db_write_cmd.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id$
+ * $Id: db_write_cmd.c,v 1.9 1997/02/22 09:28:34 peter Exp $
*/
/*
@@ -32,10 +32,8 @@
*/
#include <sys/param.h>
-#include <sys/systm.h>
#include <ddb/ddb.h>
-#include <ddb/db_lex.h>
#include <ddb/db_access.h>
#include <ddb/db_command.h>
#include <ddb/db_sym.h>
OpenPOWER on IntegriCloud