diff options
author | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2021-06-22 20:13:40 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2021-06-22 20:14:31 +0530 |
commit | a318262bc0081ab83e3f3c90e50462f99148605e (patch) | |
tree | 2b515c48751d873215bf4e03b5e86bcd77d65003 | |
parent | 568123a720dce896dcd0ac8f7c8ebfe20a8a6adb (diff) | |
download | glibc-a318262bc0081ab83e3f3c90e50462f99148605e.tar glibc-a318262bc0081ab83e3f3c90e50462f99148605e.tar.gz glibc-a318262bc0081ab83e3f3c90e50462f99148605e.tar.bz2 glibc-a318262bc0081ab83e3f3c90e50462f99148605e.zip |
malloc: Drop __malloc_initialized from Versions
__malloc_initialized is mentioned in Versions when it is actually an
internal symbol. The resultant binaries are identical.
-rw-r--r-- | malloc/Versions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/malloc/Versions b/malloc/Versions index 6693c46ee2..62e4698a08 100644 --- a/malloc/Versions +++ b/malloc/Versions @@ -9,7 +9,7 @@ libc { __libc_valloc; __malloc_initialize_hook; __free_hook; __malloc_hook; __realloc_hook; __memalign_hook; __after_morecore_hook; - __malloc_initialized; __default_morecore; __morecore; + __default_morecore; __morecore; # functions used in inline functions or macros _obstack_allocated_p; _obstack_begin; _obstack_begin_1; |