X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fmalloc.c;h=f236f372149ef5c67c2e72aaedc9012b5519ec4f;hb=820ad111e4c5b7877f18f29246059c86ee70351d;hp=b6ecf37466722f08f2680fc9d2e3a9d8ef3e8721;hpb=23631b7e71d7a29c117b092055bfd74e045e72aa;p=gnulib.git diff --git a/lib/malloc.c b/lib/malloc.c index b6ecf3746..f236f3721 100644 --- a/lib/malloc.c +++ b/lib/malloc.c @@ -1,6 +1,6 @@ /* malloc() function that is glibc compatible. - Copyright (C) 1997, 1998, 2006, 2007 Free Software Foundation, Inc. + Copyright (C) 1997-1998, 2006-2007, 2009-2010 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -30,6 +30,9 @@ #include +/* Call the system's malloc below. */ +#undef malloc + /* Allocate an N-byte block of memory from the heap. If N is zero, allocate a 1-byte block. */