home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MISC / GNU / PL4019AS.ZIP / DOSLOCAL.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-25  |  230 b   |  15 lines

  1. #include <alloc.h>
  2.  
  3. extern unsigned _stklen;
  4.  
  5. unsigned long heapfree()
  6. {
  7.     return (coreleft());
  8. }
  9.  
  10. unsigned long stkfree()
  11. {
  12.     return ((unsigned long)_stklen - 
  13.             ((unsigned long)_stklen - (unsigned long) _SP));
  14. }
  15.