* lib/malloc.c (malloc):
* lib/realloc.c (malloc, realloc): #undef before using.
+2021-04-16 Paul Eggert <eggert@cs.ucla.edu>
+
+ malloc, realloc: fix recently-introduced #undef typos
+ * lib/malloc.c (malloc):
+ * lib/realloc.c (malloc, realloc): #undef before using.
+
2021-04-14 Bruno Haible <bruno@clisp.org>
hamt tests: Fix link error.
# include <errno.h>
+/* 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. */
# include <errno.h>
+/* Call the system's malloc and realloc below. */
+# undef malloc
+# undef realloc
+
/* Change the size of an allocated block of memory P to N bytes,
with error checking. If N is zero, change it to 1. If P is NULL,
use malloc. */