From 6cde05147e91f30c02388c16deaed8bff7756d4e Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 25 Jun 2009 16:25:15 +0000 Subject: No more xmalloc-debug. --- tmux.h | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'tmux.h') 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 @@ -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 -- cgit