xref: /original-bsd/sys/sys/clist.h (revision ba72ef4c)
1 /*	clist.h	3.1	10/08/80	*/
2 
3 /*
4  * Raw structures for the character list routines.
5  */
6 struct cblock {
7 	struct cblock *c_next;
8 	char	c_info[CBSIZE];
9 };
10 struct	cblock	cfree[];
11