From 1b731e7bbf2238cdc46052770b29ef8aa3fc6717 Mon Sep 17 00:00:00 2001 From: Bill Joy Date: Fri, 16 Jul 1982 03:49:37 -0800 Subject: [PATCH] get rid of tty stuff SCCS-vsn: sys/ufs/ffs/ffs_tables.c 2.3 --- usr/src/sys/ufs/ffs/ffs_tables.c | 54 +------------------------------- 1 file changed, 1 insertion(+), 53 deletions(-) diff --git a/usr/src/sys/ufs/ffs/ffs_tables.c b/usr/src/sys/ufs/ffs/ffs_tables.c index 369dbe7585..f24149cc2f 100644 --- a/usr/src/sys/ufs/ffs/ffs_tables.c +++ b/usr/src/sys/ufs/ffs/ffs_tables.c @@ -1,59 +1,7 @@ -/* ffs_tables.c 2.2 82/04/19 */ +/* ffs_tables.c 2.3 82/07/15 */ #include "../h/param.h" -/* partab.c 4.2 81/03/08 */ - -/* - * Table giving parity for characters and indicating - * character classes to tty driver. In particular, - * if the low 6 bits are 0, then the character needs - * no special processing on output. - */ - -unsigned char partab[] = { - 0001,0201,0201,0001,0201,0001,0001,0201, - 0202,0004,0003,0201,0005,0206,0201,0001, - 0201,0001,0001,0201,0001,0201,0201,0001, - 0001,0201,0201,0001,0201,0001,0001,0201, - 0200,0000,0000,0200,0000,0200,0200,0000, - 0000,0200,0200,0000,0200,0000,0000,0200, - 0000,0200,0200,0000,0200,0000,0000,0200, - 0200,0000,0000,0200,0000,0200,0200,0000, - 0200,0000,0000,0200,0000,0200,0200,0000, - 0000,0200,0200,0000,0200,0000,0000,0200, - 0000,0200,0200,0000,0200,0000,0000,0200, - 0200,0000,0000,0200,0000,0200,0200,0000, - 0000,0200,0200,0000,0200,0000,0000,0200, - 0200,0000,0000,0200,0000,0200,0200,0000, - 0200,0000,0000,0200,0000,0200,0200,0000, - 0000,0200,0200,0000,0200,0000,0000,0201, - - /* - * 7 bit ascii ends with the last character above, - * but we contine through all 256 codes for the sake - * of the tty output routines which use special vax - * instructions which need a 256 character trt table. - */ - - 0007,0007,0007,0007,0007,0007,0007,0007, - 0007,0007,0007,0007,0007,0007,0007,0007, - 0007,0007,0007,0007,0007,0007,0007,0007, - 0007,0007,0007,0007,0007,0007,0007,0007, - 0007,0007,0007,0007,0007,0007,0007,0007, - 0007,0007,0007,0007,0007,0007,0007,0007, - 0007,0007,0007,0007,0007,0007,0007,0007, - 0007,0007,0007,0007,0007,0007,0007,0007, - 0007,0007,0007,0007,0007,0007,0007,0007, - 0007,0007,0007,0007,0007,0007,0007,0007, - 0007,0007,0007,0007,0007,0007,0007,0007, - 0007,0007,0007,0007,0007,0007,0007,0007, - 0007,0007,0007,0007,0007,0007,0007,0007, - 0007,0007,0007,0007,0007,0007,0007,0007, - 0007,0007,0007,0007,0007,0007,0007,0007, - 0007,0007,0007,0007,0007,0007,0007,0007 -}; - /* * bit patterns for identifying fragments in the block map * used as ((map & around) == inside) -- 2.20.1