From 7b4ce3288538a5f29c2293f43b177df86b44284c Mon Sep 17 00:00:00 2001 From: Jaakko Heinonen Date: Mon, 1 Aug 2005 07:55:56 +0000 Subject: [PATCH] - avoid possible collision with readline xmalloc functions --- xmalloc.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/xmalloc.h b/xmalloc.h index 61e25c2..61ea5b5 100644 --- a/xmalloc.h +++ b/xmalloc.h @@ -3,6 +3,13 @@ #include /* for size_t */ +/* + * avoid possible collision with readline xmalloc functions + */ + +#define xmalloc _xmalloc_xmalloc +#define xrealloc _xmalloc_xrealloc + void xmalloc_set_error_handler(void (*)(int)); void * xmalloc(size_t); void * xmalloc0(size_t); -- 2.39.2