summaryrefslogtreecommitdiff
path: root/src/common/malloc.h
diff options
context:
space:
mode:
authorcelest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-03-27 10:38:21 +0000
committercelest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-03-27 10:38:21 +0000
commit27c16626a2676237521604c7f852d786317b03f5 (patch)
tree44a48da886d47d52713bbe87222a4091da4c35b4 /src/common/malloc.h
parentb3574d7f0a8565ecc46bc6ba8d128688156b6331 (diff)
downloadhercules-27c16626a2676237521604c7f852d786317b03f5.tar.gz
hercules-27c16626a2676237521604c7f852d786317b03f5.tar.bz2
hercules-27c16626a2676237521604c7f852d786317b03f5.tar.xz
hercules-27c16626a2676237521604c7f852d786317b03f5.zip
Some minor changes to do_init_memmgr
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1308 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/malloc.h')
-rw-r--r--src/common/malloc.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/malloc.h b/src/common/malloc.h
index eec138cdd..c59c08a4e 100644
--- a/src/common/malloc.h
+++ b/src/common/malloc.h
@@ -75,6 +75,10 @@
#endif
-int do_init_memmgr(const char* file);
+#ifndef USE_MEMMGR
+ #define do_init_memmgr(file)
+#else
+ int do_init_memmgr(const char* file);
+#endif
#endif