summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Jackson <ericj@cvs.openbsd.org>2002-01-23 07:14:42 +0000
committerEric Jackson <ericj@cvs.openbsd.org>2002-01-23 07:14:42 +0000
commit160fb92e8402a51f12e3259dc79f601ec5410e45 (patch)
treed6a6d89e1a8a7dd69a2811c01de6972a658cceb0
parente5b689b0ae925afd324cc75008127025426acea8 (diff)
oops, make the kgdb var's non-static
-rw-r--r--sys/dev/ic/com.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ic/com.c b/sys/dev/ic/com.c
index bcf130b4b64..b0a04b68f6c 100644
--- a/sys/dev/ic/com.c
+++ b/sys/dev/ic/com.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: com.c,v 1.77 2002/01/23 06:45:32 ericj Exp $ */
+/* $OpenBSD: com.c,v 1.78 2002/01/23 07:14:41 ericj Exp $ */
/* $NetBSD: com.c,v 1.82.4.1 1996/06/02 09:08:00 mrg Exp $ */
/*
@@ -127,9 +127,9 @@ int commajor;
#ifdef KGDB
#include <sys/kgdb.h>
-static int com_kgdb_addr;
-static bus_space_tag_t com_kgdb_iot;
-static bus_space_handle_t com_kgdb_ioh;
+int com_kgdb_addr;
+bus_space_tag_t com_kgdb_iot;
+bus_space_handle_t com_kgdb_ioh;
int com_kgdb_getc __P((void *));
void com_kgdb_putc __P((void *, int));