1 /*-
2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.
9 *
10 * %sccs.include.redist.c%
11 *
12 * from: @(#)tty_subr.c 8.2 (Berkeley) 9/5/93
13 */
14
15 #include <sys/param.h>
16 #include <sys/ioctl.h>
17 #include <sys/tty.h>
18
19 char cwaiting;
20 struct cblock *cfree, *cfreelist;
21 int cfreecount, nclist;
22
23 void
clist_init()24 clist_init()
25 {
26
27 /*
28 * Body deleted.
29 */
30 return;
31 }
32
33 getc(a1)
34 struct clist *a1;
35 {
36
37 /*
38 * Body deleted.
39 */
40 return ((char)0);
41 }
42
43 q_to_b(a1, a2, a3)
44 struct clist *a1;
45 char *a2;
46 int a3;
47 {
48
49 /*
50 * Body deleted.
51 */
52 return (0);
53 }
54
55 ndqb(a1, a2)
56 struct clist *a1;
57 int a2;
58 {
59
60 /*
61 * Body deleted.
62 */
63 return (0);
64 }
65
66 void
ndflush(a1,a2)67 ndflush(a1, a2)
68 struct clist *a1;
69 int a2;
70 {
71
72 /*
73 * Body deleted.
74 */
75 return;
76 }
77
putc(a1,a2)78 putc(a1, a2)
79 char a1;
80 struct clist *a2;
81 {
82
83 /*
84 * Body deleted.
85 */
86 return (0);
87 }
88
b_to_q(a1,a2,a3)89 b_to_q(a1, a2, a3)
90 char *a1;
91 int a2;
92 struct clist *a3;
93 {
94
95 /*
96 * Body deleted.
97 */
98 return (0);
99 }
100
101 char *
nextc(a1,a2,a3)102 nextc(a1, a2, a3)
103 struct clist *a1;
104 char *a2;
105 int *a3;
106 {
107
108 /*
109 * Body deleted.
110 */
111 return ((char *)0);
112 }
113
114 unputc(a1)
115 struct clist *a1;
116 {
117
118 /*
119 * Body deleted.
120 */
121 return ((char)0);
122 }
123
124 void
catq(a1,a2)125 catq(a1, a2)
126 struct clist *a1, *a2;
127 {
128
129 /*
130 * Body deleted.
131 */
132 return;
133 }
134