home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / os2 / kornshel / alloc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-05-03  |  130 b   |  9 lines

  1. /*
  2.  * area-based allocation built on malloc/free
  3.  */
  4.  
  5. typedef struct Area {
  6.     struct Block *free;    /* free list */
  7. } Area;
  8.  
  9.