X-Git-Url: http://git.tdb.fi/?p=gldbg.git;a=blobdiff_plain;f=source%2Ftmpalloc.h;h=0ca29a5c9783929232a8fa2ae93eec16a3787d2c;hp=dc673ca3e817c9bc16a5516e476075153a596feb;hb=7642653a18f7464dd093a93a1247b8f18e53cd1a;hpb=fab9ed5163a8f4ef5314bc67e48d1690d1126649 diff --git a/source/tmpalloc.h b/source/tmpalloc.h index dc673ca..0ca29a5 100644 --- a/source/tmpalloc.h +++ b/source/tmpalloc.h @@ -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