home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / util / pdksh-4.5.lha / pdksh-4.5 / sh / alloc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-01  |  122 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.