From 22240955e61e69117721daf0beabb58cbb974628 Mon Sep 17 00:00:00 2001
From: hniksic <devnull@localhost>
Date: Fri, 30 Mar 2001 21:07:10 -0800
Subject: [PATCH] [svn] Undef xmalloc and friends before redefining them when
 standalone.

---
 src/hash.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/hash.c b/src/hash.c
index 42159112..45974dad 100644
--- a/src/hash.c
+++ b/src/hash.c
@@ -30,6 +30,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "hash.h"
 
 #ifdef STANDALONE
+# undef xmalloc
+# undef xrealloc
+# undef xfree
+
 # define xmalloc malloc
 # define xrealloc realloc
 # define xfree free