home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / mint / mntlib24 / heapbase.c < prev    next >
Encoding:
Text File  |  1993-08-03  |  445 b   |  11 lines

  1. /*
  2.  * Note that although this is provided in a separate file so that users
  3.  * can say something like:
  4.  *    long foo[800]; void *_heapbase = (void *)foo;
  5.  * this is no longer necessary. (This used to be the idiom for desk
  6.  * accessories, which need to have stack memory set aside for them;
  7.  * but the acc startup code now Mallocs such memory automatically.)
  8.  */
  9.  
  10. void *_heapbase = 0;    /* "0" means: heap not yet def'd. see crtinit.c */
  11.