X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftmpalloc.h;h=35efdc2cd0deec8f561bfa5ddf06453d68663db2;hb=a832996c884a0e0acc9a38ba4dd258edb75ec7af;hp=dc673ca3e817c9bc16a5516e476075153a596feb;hpb=3c32a221de1435ae7af8d96182560e8b28f1a4c0;p=gldbg.git diff --git a/source/tmpalloc.h b/source/tmpalloc.h index dc673ca..35efdc2 100644 --- a/source/tmpalloc.h +++ b/source/tmpalloc.h @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of gldbg -Copyright © 2009 Mikko Rasa, Mikkosoft Productions -Distributed under the GPL -*/ - #ifndef TMPALLOC_H_ #define TMPALLOC_H_ @@ -12,12 +5,12 @@ Distributed under the GPL Allocates a temporary memory region. The returned memory comes from a shared pool and will get reused eventually. */ -extern void *tmpalloc(unsigned); +void *tmpalloc(unsigned); /** Frees the shared pool used by tmpalloc. It will be recreated if tmpalloc is called again. */ -extern void tmpfree(); +void tmpfree(); #endif