]> sourceware.org Git - newlib-cygwin.git/blame - winsup/cygwin/heap.h
Throughout, update copyrights to reflect dates which correspond to main-branch
[newlib-cygwin.git] / winsup / cygwin / heap.h
CommitLineData
b0e82b74
CF
1/* heap.h: Cygwin heap manager definitions.
2
bc837d22 3 Copyright 2000, 2001, 2002 Red Hat, Inc.
b0e82b74
CF
4
5This file is part of Cygwin.
6
7This software is a copyrighted work licensed under the terms of the
8Cygwin license. Please consult the file "CYGWIN_LICENSE" for
9details. */
10
f0338f54
CF
11#include "perprocess.h"
12
b0e82b74 13/* Heap management. */
6a4878cf
CF
14void heap_init ();
15void malloc_init ();
b0e82b74 16
3800a9e7 17#define inheap(s) \
1cc651ec
CF
18 (cygheap->user_heap.ptr && s \
19 && ((char *) (s) >= (char *) cygheap->user_heap.base) \
20 && ((char *) (s) <= (char *) cygheap->user_heap.top))
This page took 0.396864 seconds and 5 git commands to generate.