BSD 4_1_snap development
[unix-history] / sys / h / clist.h
CommitLineData
6bafdb92
C
1/* clist.h 4.4 81/03/09 */
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