aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb/db_break.c
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1993-11-25 01:38:01 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1993-11-25 01:38:01 +0000
commit381fe1aaf4d3cb1ad62f758c15ace6cb07eea97a (patch)
tree5f254571daeb319e5d462e9932f7aff4e6b7ee40 /sys/ddb/db_break.c
parent0f81714b346ecbc9651220ce3465d5dc75b38875 (diff)
downloadsrc-381fe1aaf4d3cb1ad62f758c15ace6cb07eea97a.tar.gz
src-381fe1aaf4d3cb1ad62f758c15ace6cb07eea97a.zip
Make the LINT kernel compile with -W -Wreturn-type -Wcomment -Werror, and
add same (sans -Werror) to Makefile for future compilations.
Notes
Notes: svn path=/head/; revision=798
Diffstat (limited to 'sys/ddb/db_break.c')
-rw-r--r--sys/ddb/db_break.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/ddb/db_break.c b/sys/ddb/db_break.c
index b4d0bbcb3ec9..41761e818b1b 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.2 1993/10/16 16:47:07 rgrimes Exp $
*/
/*
@@ -34,8 +34,9 @@
* Breakpoints.
*/
#include "param.h"
+#include "systm.h"
#include "proc.h"
-#include <machine/db_machdep.h> /* type definitions */
+#include "ddb/ddb.h"
#include <ddb/db_lex.h>
#include <ddb/db_break.h>
@@ -291,7 +292,7 @@ db_breakpoint_cmd(addr, have_addr, count, modif)
/* list breakpoints */
void
-db_listbreak_cmd()
+db_listbreak_cmd(db_expr_t dummy1, int dummy2, db_expr_t dummy3, char *dummy4)
{
db_list_breakpoints();
}