summary refs log tree commit diff stats
path: root/src/common/hexchat.h
diff options
context:
space:
mode:
authorTingPing <tingping@tingping.se>2014-06-21 22:21:12 -0400
committerTingPing <tingping@tingping.se>2014-06-21 22:21:12 -0400
commit45526205abb7ddbf3d21d19b51353d113027118f (patch)
tree566f82d36fe2f80f2eff3f203356c16d9b597e83 /src/common/hexchat.h
parent3342af4185eccba3cf5a9c6e2d2d426911afa0c6 (diff)
Remove broken debug code
Diffstat (limited to 'src/common/hexchat.h')
-rw-r--r--src/common/hexchat.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/common/hexchat.h b/src/common/hexchat.h
index 899d1eaa..c92e84d0 100644
--- a/src/common/hexchat.h
+++ b/src/common/hexchat.h
@@ -44,17 +44,6 @@
 #define vsnprintf _vsnprintf
 #endif
 
-#ifdef USE_DEBUG
-#define malloc(n) hexchat_malloc(n, __FILE__, __LINE__)
-#define realloc(n, m) hexchat_realloc(n, m, __FILE__, __LINE__)
-#define free(n) hexchat_dfree(n, __FILE__, __LINE__)
-#define strdup(n) hexchat_strdup(n, __FILE__, __LINE__)
-void *hexchat_malloc (int size, char *file, int line);
-void *hexchat_strdup (char *str, char *file, int line);
-void hexchat_dfree (void *buf, char *file, int line);
-void *hexchat_realloc (char *old, int len, char *file, int line);
-#endif
-
 #ifdef SOCKS
 #ifdef __sgi
 #include <sys/time.h>