summaryrefslogtreecommitdiffstats
path: root/src/old-stats/global-memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/old-stats/global-memory.h')
-rw-r--r--src/old-stats/global-memory.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/old-stats/global-memory.h b/src/old-stats/global-memory.h
new file mode 100644
index 0000000..840ffc7
--- /dev/null
+++ b/src/old-stats/global-memory.h
@@ -0,0 +1,9 @@
+#ifndef GLOBAL_MEMORY_H
+#define GLOBAL_MEMORY_H
+
+extern size_t global_used_memory;
+
+void global_memory_alloc(size_t size);
+void global_memory_free(size_t size);
+
+#endif