diff options
| author | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1994-05-25 09:21:21 +0000 |
|---|---|---|
| committer | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1994-05-25 09:21:21 +0000 |
| commit | 26f9a76710a312a951848542b9ca1f44100450e2 (patch) | |
| tree | 9179427ac860211c445df663fd2b86267366bfba /sys/kern/tty_compat.c | |
| parent | dbda0ec78e324aced444959e2c98b89b79f22812 (diff) | |
Notes
Diffstat (limited to 'sys/kern/tty_compat.c')
| -rw-r--r-- | sys/kern/tty_compat.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/kern/tty_compat.c b/sys/kern/tty_compat.c index a6a39d9d7bf3..7047230844d9 100644 --- a/sys/kern/tty_compat.c +++ b/sys/kern/tty_compat.c @@ -49,6 +49,9 @@ #include <sys/kernel.h> #include <sys/syslog.h> +void ttcompatsetflags __P((struct tty *, struct termios *)); +void ttcompatsetlflags __P((struct tty *, struct termios *)); + int ttydebug = 0; static struct speedtab compatspeeds[] = { @@ -76,6 +79,7 @@ static int compatspcodes[16] = { }; /*ARGSUSED*/ +int ttcompat(tp, com, data, flag) register struct tty *tp; int com; @@ -222,6 +226,7 @@ ttcompat(tp, com, data, flag) return (0); } +int ttcompatgetflags(tp) register struct tty *tp; { @@ -279,6 +284,7 @@ if (ttydebug) return (flags); } +void ttcompatsetflags(tp, t) register struct tty *tp; register struct termios *t; @@ -350,6 +356,7 @@ ttcompatsetflags(tp, t) t->c_cflag = cflag; } +void ttcompatsetlflags(tp, t) register struct tty *tp; register struct termios *t; |
