home *** CD-ROM | disk | FTP | other *** search
- /*
- * heap.cf -- non-ANSI
- *
- * Facilities for heap integrity checking and
- * heap initialization.
- *
- * Copyright (c) 1990, MetaWare Incorporated
- */
-
- #ifndef _HEAP_CF
- #define _HEAP_CF
-
- #pragma data(common,"?_MWHEAP");
- /* If the flag below is set, heap integrity will be checked
- * on malloc/realloc/free.
- * Heap_init_byte is what newly allocated storage is initialized with
- * if Init_allocated_storage is True.
- */
- char Check_heap_integrity_flag, /* Initially False. */
- Heap_init_byte, /* Initially 0xfe. */
- Init_allocated_storage; /* Initially True */
- #pragma data;
-
- #endif /* _HEAP_CF */
-