diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-05-13 02:09:48 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-05-13 02:09:48 +0000 |
commit | 496650d3371eebe17ca07f04b691b85bafafd1a4 (patch) | |
tree | cecf745b413e64943e1265472aae88fc0d8d5e99 /sys/kern/subr_prf.c | |
parent | e71bd5e5b27af827fec91c9a5fcf9d877570b49c (diff) |
Kill a bunch more commons (very few left =)
Diffstat (limited to 'sys/kern/subr_prf.c')
-rw-r--r-- | sys/kern/subr_prf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_prf.c b/sys/kern/subr_prf.c index 1ee17c7d8de..6765daa2685 100644 --- a/sys/kern/subr_prf.c +++ b/sys/kern/subr_prf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_prf.c,v 1.48 2003/05/10 21:44:53 deraadt Exp $ */ +/* $OpenBSD: subr_prf.c,v 1.49 2003/05/13 02:09:46 jason Exp $ */ /* $NetBSD: subr_prf.c,v 1.45 1997/10/24 18:14:25 chuck Exp $ */ /*- @@ -105,7 +105,7 @@ void kputchar(int, int, struct tty *); * globals */ -struct tty *constty; /* pointer to console "window" tty */ +extern struct tty *constty; /* pointer to console "window" tty */ int consintr = 1; /* ok to handle console interrupts? */ extern int log_open; /* subr_log: is /dev/klog open? */ const char *panicstr; /* arg to first call to panic (used as a flag |