BSD 4_1_snap development
[unix-history] / sys / h / clist.h
/* clist.h 4.4 81/03/09 */
/*
* Raw structures for the character list routines.
*/
struct cblock {
struct cblock *c_next;
char c_info[CBSIZE];
};
#ifdef KERNEL
struct cblock *cfree;
int nclist;
struct cblock *cfreelist;
int cfreecount;
#endif