home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / k / ksh48.zip / sh / alloc.h < prev    next >
Text File  |  1992-05-03  |  130b  |  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.