]> git.tdb.fi Git - gldbg.git/blob - source/tmpalloc.h
Replace per-file license notices with License.txt
[gldbg.git] / source / tmpalloc.h
1 #ifndef TMPALLOC_H_
2 #define TMPALLOC_H_
3
4 /**
5 Allocates a temporary memory region.  The returned memory comes from a shared
6 pool and will get reused eventually.
7 */
8 void *tmpalloc(unsigned);
9
10 /**
11 Frees the shared pool used by tmpalloc.  It will be recreated if tmpalloc is
12 called again.
13 */
14 void tmpfree();
15
16 #endif