diff options
author | Rich Felker <dalias@aerifal.cx> | 2020-06-10 20:42:54 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2020-06-10 20:42:54 -0400 |
commit | 501a92660ca2ed6469a0a01474574ce9930356cd (patch) | |
tree | 25c806c042db5607569604267eab06ac8021b564 /src/malloc/oldmalloc | |
parent | 28f64fa6caeb621780bf116bc8cae7d7a48b477e (diff) | |
download | musl-501a92660ca2ed6469a0a01474574ce9930356cd.tar.gz musl-501a92660ca2ed6469a0a01474574ce9930356cd.tar.bz2 musl-501a92660ca2ed6469a0a01474574ce9930356cd.tar.xz musl-501a92660ca2ed6469a0a01474574ce9930356cd.zip |
move __malloc_replaced to a top-level malloc file
it's not part of the malloc implementation but glue with musl dynamic
linker.
Diffstat (limited to 'src/malloc/oldmalloc')
-rw-r--r-- | src/malloc/oldmalloc/malloc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/malloc/oldmalloc/malloc.c b/src/malloc/oldmalloc/malloc.c index afa75722..1c6b07ec 100644 --- a/src/malloc/oldmalloc/malloc.c +++ b/src/malloc/oldmalloc/malloc.c @@ -20,8 +20,6 @@ static struct { volatile int split_merge_lock[2]; } mal; -int __malloc_replaced; - /* Synchronization tools */ static inline void lock(volatile int *lk) |