From: hniksic Date: Sat, 31 Mar 2001 05:07:10 +0000 (-0800) Subject: [svn] Undef xmalloc and friends before redefining them when standalone. X-Git-Tag: v1.13~2227 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=22240955e61e69117721daf0beabb58cbb974628 [svn] Undef xmalloc and friends before redefining them when standalone. --- 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