summaryrefslogtreecommitdiff
path: root/libc/stdlib/malloc-standard/free.c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2018-01-31 06:18:06 +0000
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2018-01-31 18:48:29 +0000
commit8948296356072119a07c6b9435dc16bdc74bdc56 (patch)
tree9d67b1e8fd086824a0afdc9870c17c568626e8bf /libc/stdlib/malloc-standard/free.c
parent1bc015efddaf7dc4ddd1b6b6831c43e7ad4582c0 (diff)
malloc: add glibc compat symbols
Diffstat (limited to 'libc/stdlib/malloc-standard/free.c')
-rw-r--r--libc/stdlib/malloc-standard/free.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/stdlib/malloc-standard/free.c b/libc/stdlib/malloc-standard/free.c
index 8b7a81fca..a2d765d41 100644
--- a/libc/stdlib/malloc-standard/free.c
+++ b/libc/stdlib/malloc-standard/free.c
@@ -412,3 +412,5 @@ void free(void* mem)
__MALLOC_UNLOCK;
}
+/* glibc compatibilty */
+weak_alias(free, __libc_free)