home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
library
/
os2
/
kornshel
/
alloc.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1992-05-03
|
130 b
|
9 lines
/*
* area-based allocation built on malloc/free
*/
typedef struct Area {
struct Block *free; /* free list */
} Area;