rationalized handling of child processes, cleaned up mail1 some more
[unix-history] / usr / src / usr.bin / tip / partab.c
index 4cea6dd..f78262d 100644 (file)
@@ -1,10 +1,17 @@
-/*     partab.c        4.1     83/06/15        */
 /*
 /*
- * Even parity table for 0-0177
+ * Copyright (c) 1983 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
  */
 
  */
 
+#ifndef lint
+static char sccsid[] = "@(#)partab.c   5.1 (Berkeley) %G%";
+#endif not lint
 
 
-char chartab[] = {
+/*
+ * Even parity table for 0-0177
+ */
+char evenpartab[] = {
        0000,0201,0202,0003,0204,0005,0006,0207,
        0210,0011,0012,0213,0014,0215,0216,0017,
        0220,0021,0022,0223,0024,0225,0226,0027,
        0000,0201,0202,0003,0204,0005,0006,0207,
        0210,0011,0012,0213,0014,0215,0216,0017,
        0220,0021,0022,0223,0024,0225,0226,0027,
@@ -21,4 +28,4 @@ char chartab[] = {
        0350,0151,0152,0353,0154,0355,0356,0157,
        0360,0161,0162,0363,0164,0365,0366,0167,
        0170,0371,0372,0173,0374,0175,0176,0377,
        0350,0151,0152,0353,0154,0355,0356,0157,
        0360,0161,0162,0363,0164,0365,0366,0167,
        0170,0371,0372,0173,0374,0175,0176,0377,
-       };
+};