aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-06-25 16:25:15 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-06-25 16:25:15 +0000
commit6cde05147e91f30c02388c16deaed8bff7756d4e (patch)
tree2b031ecec64c88fc6ce6d3e08d60bbc6068fe5d1 /tmux.h
parent8565ae234b8dd3f68d0a0cf34eebb17d7a3dbe88 (diff)
downloadrtmux-6cde05147e91f30c02388c16deaed8bff7756d4e.tar.gz
rtmux-6cde05147e91f30c02388c16deaed8bff7756d4e.tar.bz2
rtmux-6cde05147e91f30c02388c16deaed8bff7756d4e.zip
No more xmalloc-debug.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/tmux.h b/tmux.h
index 9b4709e1..8b169870 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.340 2009-06-25 16:21:32 nicm Exp $ */
+/* $Id: tmux.h,v 1.341 2009-06-25 16:25:15 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1684,16 +1684,4 @@ int printflike3 printpath(char *, size_t, const char *, ...);
char *xdirname(const char *);
char *xbasename(const char *);
-/* xmalloc-debug.c */
-#ifdef DEBUG
-#define xmalloc_caller() __builtin_return_address(0)
-
-void xmalloc_clear(void);
-void xmalloc_report(pid_t, const char *);
-
-void xmalloc_new(void *, void *, size_t);
-void xmalloc_change(void *, void *, void *, size_t);
-void xmalloc_free(void *);
-#endif
-
#endif