summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorEric Jackson <ericj@cvs.openbsd.org>2002-01-23 06:46:10 +0000
committerEric Jackson <ericj@cvs.openbsd.org>2002-01-23 06:46:10 +0000
commitfb1398c85ecfdb8d0167f91ae78cce5bef6199f8 (patch)
tree056922929d36642e92555db73e4056fbfd582218 /sys
parente525ccf92c0dcb24bc575d25f7ac0f8124e8f152 (diff)
declare a few var's extern for KGDB
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/isa/com_isa.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/isa/com_isa.c b/sys/dev/isa/com_isa.c
index bc98941daa1..72903106c88 100644
--- a/sys/dev/isa/com_isa.c
+++ b/sys/dev/isa/com_isa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: com_isa.c,v 1.1 2001/09/29 23:26:07 art Exp $ */
+/* $OpenBSD: com_isa.c,v 1.2 2002/01/23 06:46:09 ericj Exp $ */
/*
* Copyright (c) 1997 - 1999, Jason Downs. All rights reserved.
*
@@ -76,6 +76,11 @@
#include <dev/isa/isavar.h>
+#ifdef KGDB
+extern int com_kgdb_addr;
+static bus_space_handle_t com_kgdb_ioh;
+#endif
+
int com_isa_probe(struct device *, void *, void *);
void com_isa_attach(struct device *, struct device *, void *);