home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c065 / 1.ddi / CLIB1.ZIP / HEAPLEN.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-07  |  1.2 KB  |  32 lines

  1. /*-----------------------------------------------------------------------*
  2.  * filename - heaplen.c
  3.  *
  4.  * function(s)
  5.  *        none
  6.  *-----------------------------------------------------------------------*/
  7.  
  8. /*[]------------------------------------------------------------[]*/
  9. /*|                                                              |*/
  10. /*|     Turbo C Run Time Library - Version 3.0                   |*/
  11. /*|                                                              |*/
  12. /*|                                                              |*/
  13. /*|     Copyright (c) 1987,1988,1990 by Borland International    |*/
  14. /*|     All Rights Reserved.                                     |*/
  15. /*|                                                              |*/
  16. /*[]------------------------------------------------------------[]*/
  17.  
  18.  
  19. /*---------------------------------------------------------------------*
  20.  
  21. Name        _heaplen - the heap  length
  22.  
  23. Usage        extern    unsigned    _heaplen;
  24.  
  25. Description    This module defines the default near heap size.
  26.  
  27. *---------------------------------------------------------------------*/
  28.  
  29. #if !(LDATA)
  30. unsigned        _heaplen = 0x0000;      /* To expand DS as much as possible */
  31. #endif
  32.