summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfgsch <fgsch@openbsd.org>2007-10-19 18:11:18 +0000
committerfgsch <fgsch@openbsd.org>2007-10-19 18:11:18 +0000
commitbd9fed8d47bcb38926eaf2d43b1ede51e86b2bb3 (patch)
tree566c7601f8338dd6cf2e51fb347ee599dc702d51
parentprint system error when fopen fails. (diff)
downloadwireguard-openbsd-bd9fed8d47bcb38926eaf2d43b1ede51e86b2bb3.tar.xz
wireguard-openbsd-bd9fed8d47bcb38926eaf2d43b1ede51e86b2bb3.zip
remove vars from some prototypes.
-rw-r--r--sys/arch/amd64/include/db_machdep.h6
-rw-r--r--sys/arch/i386/include/db_machdep.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/amd64/include/db_machdep.h b/sys/arch/amd64/include/db_machdep.h
index 3ddbe67c75e..57da262af56 100644
--- a/sys/arch/amd64/include/db_machdep.h
+++ b/sys/arch/amd64/include/db_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_machdep.h,v 1.6 2006/03/15 15:50:41 mickey Exp $ */
+/* $OpenBSD: db_machdep.h,v 1.7 2007/10/19 18:11:18 fgsch Exp $ */
/* $NetBSD: db_machdep.h,v 1.2 2003/04/29 17:06:04 scw Exp $ */
/*
@@ -104,8 +104,8 @@ int kdb_trap(int, int, db_regs_t *);
void db_machine_init(void);
int db_enter_ddb(void);
-void db_startcpu(int cpu);
-void db_stopcpu(int cpu);
+void db_startcpu(int);
+void db_stopcpu(int);
void x86_ipi_db(struct cpu_info *);
extern struct mutex ddb_mp_mutex;
diff --git a/sys/arch/i386/include/db_machdep.h b/sys/arch/i386/include/db_machdep.h
index 26679bb1493..485a924ec22 100644
--- a/sys/arch/i386/include/db_machdep.h
+++ b/sys/arch/i386/include/db_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_machdep.h,v 1.17 2006/11/29 22:40:13 miod Exp $ */
+/* $OpenBSD: db_machdep.h,v 1.18 2007/10/19 18:11:18 fgsch Exp $ */
/* $NetBSD: db_machdep.h,v 1.9 1996/05/03 19:23:59 christos Exp $ */
/*
@@ -105,8 +105,8 @@ int kdb_trap(int, int, db_regs_t *);
void db_machine_init(void);
int db_enter_ddb(void);
-void db_startcpu(int cpu);
-void db_stopcpu(int cpu);
+void db_startcpu(int);
+void db_stopcpu(int);
void i386_ipi_db(struct cpu_info *);
extern struct mutex ddb_mp_mutex;