BSD 4_2 development
[unix-history] / usr / src / sys / h / clist.h
CommitLineData
59703a43
C
1/* clist.h 6.1 83/07/29 */
2
3/*
4 * Raw structures for the character list routines.
5 */
6struct cblock {
7 struct cblock *c_next;
8 char c_info[CBSIZE];
9};
10#ifdef KERNEL
11struct cblock *cfree;
12int nclist;
13struct cblock *cfreelist;
14int cfreecount;
15#endif