diff options
author | 2002-08-13 03:44:48 +0000 | |
---|---|---|
committer | 2002-08-13 03:44:48 +0000 | |
commit | 06984e97d28fb9ba5418d56bd799eaf6233ca765 (patch) | |
tree | 553be28471bd5cb3d712fd1435c0ad1b8c2b19cf | |
parent | Update bsd_glob.c with fixes from perl 5.8.0 that are based on our glob.c. (diff) | |
download | wireguard-openbsd-06984e97d28fb9ba5418d56bd799eaf6233ca765.tar.xz wireguard-openbsd-06984e97d28fb9ba5418d56bd799eaf6233ca765.zip |
remove a bogus extern, move another into another scope
-rw-r--r-- | sys/arch/hppa/hppa/db_interface.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/hppa/hppa/db_interface.c b/sys/arch/hppa/hppa/db_interface.c index 0298d8687a5..f235af135ce 100644 --- a/sys/arch/hppa/hppa/db_interface.c +++ b/sys/arch/hppa/hppa/db_interface.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_interface.c,v 1.23 2002/07/25 04:51:40 mickey Exp $ */ +/* $OpenBSD: db_interface.c,v 1.24 2002/08/13 03:44:48 mickey Exp $ */ /* * Copyright (c) 1999-2000 Michael Shalayeff @@ -53,8 +53,6 @@ void kdbprinttrap(int, int); -extern label_t *db_recover; -extern int db_active; extern char *trap_type[]; extern int trap_types; @@ -191,6 +189,7 @@ kdb_trap(type, code, regs) int type, code; db_regs_t *regs; { + extern label_t *db_recover; int s; switch (type) { |