summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>1995-09-26 19:24:26 +0000
committerthorpej <thorpej@NetBSD.org>1995-09-26 19:24:26 +0000
commitdd2f3dddef8478adc68654fd488c712239d68a3d (patch)
tree97ad6adf79678300684e071139a656d1333073e5 /sys/dev
parent65c53f255c20529bd74594881e1ecf2736b02ef5 (diff)
Don't declare Debugger(). It's handled in <sys/systm.h>
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ic/ncr5380var.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/dev/ic/ncr5380var.h b/sys/dev/ic/ncr5380var.h
index 8e10c53b920..df0cb788df8 100644
--- a/sys/dev/ic/ncr5380var.h
+++ b/sys/dev/ic/ncr5380var.h
@@ -1,4 +1,4 @@
-/* $NetBSD: ncr5380var.h,v 1.2 1995/09/03 22:26:04 pk Exp $ */
+/* $NetBSD: ncr5380var.h,v 1.3 1995/09/26 19:24:26 thorpej Exp $ */
/*
* Copyright (C) 1994 Adam Glass, Gordon W. Ross
@@ -77,12 +77,10 @@
#define ARBITRATION_RETRIES 1000
-#ifdef DDB
-int Debugger();
-#else
+#ifndef DDB
#define Debugger() panic("Should call Debugger here %s:%d", \
__FILE__, __LINE__)
-#endif
+#endif /* ! DDB */
struct ncr5380_softc {
struct device sc_dev;