]> git.tdb.fi Git - gldbg.git/blobdiff - source/tmpalloc.h
Make tmpalloc global variables static
[gldbg.git] / source / tmpalloc.h
index dc673ca3e817c9bc16a5516e476075153a596feb..0ca29a5c9783929232a8fa2ae93eec16a3787d2c 100644 (file)
@@ -12,12 +12,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