1 /* heap.h: Cygwin heap manager definitions.
3 This file is part of Cygwin.
5 This software is a copyrighted work licensed under the terms of the
6 Cygwin license. Please consult the file "CYGWIN_LICENSE" for
9 #include "perprocess.h"
11 /* Heap management. */
15 (cygheap->user_heap.ptr && s \
16 && ((char *) (s) >= (char *) cygheap->user_heap.base) \
17 && ((char *) (s) <= (char *) cygheap->user_heap.top))