]> git.tdb.fi Git - gldbg.git/blobdiff - source/tmpalloc.h
Replace per-file license notices with License.txt
[gldbg.git] / source / tmpalloc.h
index dc673ca3e817c9bc16a5516e476075153a596feb..35efdc2cd0deec8f561bfa5ddf06453d68663db2 100644 (file)
@@ -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