summaryrefslogtreecommitdiff
path: root/src/common/malloc.c
diff options
context:
space:
mode:
authoramber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-29 21:16:05 +0000
committeramber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-29 21:16:05 +0000
commit6fd1aaa92666b6097d6e480741490de28795a833 (patch)
tree8f1609e6f6be8a462f1ee4dba87efcad8bc6f046 /src/common/malloc.c
parentab0a9edc2f5754c4f778c008caff1682d43d65eb (diff)
downloadhercules-6fd1aaa92666b6097d6e480741490de28795a833.tar.gz
hercules-6fd1aaa92666b6097d6e480741490de28795a833.tar.bz2
hercules-6fd1aaa92666b6097d6e480741490de28795a833.tar.xz
hercules-6fd1aaa92666b6097d6e480741490de28795a833.zip
update
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@863 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/malloc.c')
-rw-r--r--src/common/malloc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/malloc.c b/src/common/malloc.c
index fad5183d1..ed5fb2e44 100644
--- a/src/common/malloc.c
+++ b/src/common/malloc.c
@@ -1,3 +1,4 @@
+#if !defined(DMALLOC) && !defined(GCOLLECT) && !defined(BCHECK)
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -49,3 +50,4 @@ void * _bcalloc(size_t size, size_t cnt) {
memset(ret, 0, size * cnt);
return ret;
}
+#endif