Cygwin: cygtls: rename sig to current_sig
[newlib-cygwin.git] / winsup / cygwin / local_includes / heap.h
blob25200f286f8ab77d79017799a4c055078e9a9b00
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
7 details. */
9 #include "perprocess.h"
11 /* Heap management. */
12 void heap_init ();
14 #define inheap(s) \
15 (cygheap->user_heap.ptr && s \
16 && ((char *) (s) >= (char *) cygheap->user_heap.base) \
17 && ((char *) (s) <= (char *) cygheap->user_heap.top))