home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mntlib25.zoo / heapbase.c < prev    next >
Text File  |  1992-09-11  |  445b  |  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.