summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2021-01-30 17:26:34 -0500
committerRich Felker <dalias@aerifal.cx>2021-01-30 17:26:34 -0500
commit98b9df994c85dcb6a8a5a9099495dd44c7cf2bce (patch)
tree43d78beb4c76c8213f5eca1010e87e2e5f2b3167
parent2010df0d64570db4ce29cc7df0e31f81aa26ae4a (diff)
downloadmusl-98b9df994c85dcb6a8a5a9099495dd44c7cf2bce.tar.gz
fix build regression in oldmalloc
commit 8d37958d58cf36f53d5fcc7a8aa6d633da6071b2 inadvertently broke oldmalloc by having it implement __libc_malloc rather than __libc_malloc_impl.
-rw-r--r--src/malloc/oldmalloc/malloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/malloc/oldmalloc/malloc.c b/src/malloc/oldmalloc/malloc.c
index 53f5f959..a5cbdb68 100644
--- a/src/malloc/oldmalloc/malloc.c
+++ b/src/malloc/oldmalloc/malloc.c
@@ -11,7 +11,7 @@
#include "malloc_impl.h"
#include "fork_impl.h"
-#define malloc __libc_malloc
+#define malloc __libc_malloc_impl
#define realloc __libc_realloc
#define free __libc_free