From: Chris Torek Date: Sat, 15 Feb 1992 09:38:56 +0000 (-0800) Subject: add COMPAT_SUNOS X-Git-Tag: BSD-4_4-Snapshot-Development~8069 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/7b630ab2161c0e439d1a2863b69ff4472f25253f?ds=inline add COMPAT_SUNOS SCCS-vsn: sys/kern/tty_compat.c 7.11 --- diff --git a/usr/src/sys/kern/tty_compat.c b/usr/src/sys/kern/tty_compat.c index 0b62225efd..38ed19ff64 100644 --- a/usr/src/sys/kern/tty_compat.c +++ b/usr/src/sys/kern/tty_compat.c @@ -4,13 +4,13 @@ * * %sccs.include.redist.c% * - * @(#)tty_compat.c 7.10 (Berkeley) %G% + * @(#)tty_compat.c 7.11 (Berkeley) %G% */ /* * mapping routines for old line discipline (yuck) */ -#ifdef COMPAT_43 +#if defined(COMPAT_43) || defined(COMPAT_SUNOS) #include "param.h" #include "systm.h" @@ -369,4 +369,4 @@ ttcompatsetlflags(tp, t) t->c_lflag = lflag; t->c_cflag = cflag; } -#endif /* COMPAT_43 */ +#endif /* COMPAT_43 || COMPAT_SUNOS */