home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
pdksh-4.9-src.tgz
/
tar.out
/
contrib
/
pdksh
/
sh
/
alloc.h
< prev
next >
Wrap
Text File
|
1996-09-28
|
122b
|
9 lines
/*
* area-based allocation built on malloc/free
*/
typedef struct Area {
struct Block *free; /* free list */
} Area;