about summary refs log tree commit diff
path: root/src/engine/system.h
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2007-08-25 08:48:24 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2007-08-25 08:48:24 +0000
commit89ccbd4f7b478b49329fa39be62ee3a5b38641bc (patch)
treefc96f677e9947f4d7b7642999544d954f0a10617 /src/engine/system.h
parent3e23392105fad0d847b41f730d002a700cd4d752 (diff)
downloadzcatch-89ccbd4f7b478b49329fa39be62ee3a5b38641bc.tar.gz
zcatch-89ccbd4f7b478b49329fa39be62ee3a5b38641bc.zip
compressed map support. begun to fix things for ctf
Diffstat (limited to 'src/engine/system.h')
-rw-r--r--src/engine/system.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/system.h b/src/engine/system.h
index e311d571..255a518c 100644
--- a/src/engine/system.h
+++ b/src/engine/system.h
@@ -149,7 +149,7 @@ enum {
 	IOFLAG_WRITE = 2,
 	IOFLAG_RANDOM = 4,
 
-	IOSEEK_SET = 0,
+	IOSEEK_START = 0,
 	IOSEEK_CUR = 1,
 	IOSEEK_END = 2
 };
@@ -514,7 +514,7 @@ int fs_listdir(const char *dir, fs_listdir_callback cb, void *user);
 int net_addr4_cmp(const NETADDR4 *a, const NETADDR4 *b);
 
 void mem_debug_dump();
-
+int mem_allocated();
 #ifdef __cplusplus
 }
 #endif