home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / sysutils / kornshel / 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.