home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 5.ddi / MWHC.005 / 21 < prev    next >
Encoding:
Text File  |  1992-01-07  |  648 b   |  25 lines

  1. /*
  2.  *   heap.cf -- non-ANSI 
  3.  *
  4.  *   Facilities for heap integrity checking and
  5.  *   heap initialization.
  6.  *
  7.  *           Copyright (c) 1990, MetaWare Incorporated
  8.  */
  9.  
  10. #ifndef _HEAP_CF
  11. #define _HEAP_CF
  12.  
  13. #pragma data(common,"?_MWHEAP");
  14. /* If the flag below is set, heap integrity will be checked
  15.  * on malloc/realloc/free.
  16.  * Heap_init_byte is what newly allocated storage is initialized with
  17.  * if Init_allocated_storage is True.
  18.  */
  19. char Check_heap_integrity_flag,    /* Initially False. */
  20.      Heap_init_byte,         /* Initially 0xfe. */
  21.      Init_allocated_storage;     /* Initially True */
  22. #pragma data;
  23.  
  24. #endif /* _HEAP_CF */
  25.