]> git.tdb.fi Git - gldbg.git/blobdiff - source/tmpalloc.c
Replace per-file license notices with License.txt
[gldbg.git] / source / tmpalloc.c
index 56d955e5a3dd73966b1ed1d13927ce3652e34737..f6cf44a4d10ef3ff19c52fe6f4264079730f15f5 100644 (file)
@@ -1,16 +1,9 @@
-/* $Id$
-
-This file is part of gldbg
-Copyright © 2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the GPL
-*/
-
 #include <stdlib.h>
 #include "tmpalloc.h"
 
-void *buffer = 0;
-unsigned buf_size = 8192;
-unsigned offset = 0;
+static void *buffer = 0;
+static unsigned buf_size = 8192;
+static unsigned offset = 0;
 
 void *tmpalloc(unsigned size)
 {