diff options
| author | 2002-07-03 21:19:05 +0000 | |
|---|---|---|
| committer | 2002-07-03 21:19:05 +0000 | |
| commit | 4c366c49483bea72f8be132af77834ba3cb0b576 (patch) | |
| tree | 9162c1cbc4b642675c3bee61aa743ea9e8263111 /sys/kern/tty.c | |
| parent | Another missing call to AMI_UNLOCK_API(). Fixes SPL NOT LOWERED errors seen (diff) | |
| download | wireguard-openbsd-4c366c49483bea72f8be132af77834ba3cb0b576.tar.xz wireguard-openbsd-4c366c49483bea72f8be132af77834ba3cb0b576.zip | |
Change all variables definitions (int foo) in sys/sys/*.h to variable
declarations (extern int foo), and compensate in the appropriate locations.
Diffstat (limited to 'sys/kern/tty.c')
| -rw-r--r-- | sys/kern/tty.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c index 40b64ae5116..4092140d961 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.52 2002/06/11 05:06:18 art Exp $ */ +/* $OpenBSD: tty.c,v 1.53 2002/07/03 21:19:08 miod Exp $ */ /* $NetBSD: tty.c,v 1.68.4.2 1996/06/06 16:04:52 thorpej Exp $ */ /*- @@ -165,6 +165,8 @@ u_char const char_type[] = { struct ttylist_head ttylist; /* TAILQ_HEAD */ int tty_count; +int64_t tk_cancc, tk_nin, tk_nout, tk_rawcc; + /* * Initial open of tty, or (re)entry to standard tty line discipline. */ |
