diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2020-12-28 09:50:23 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-01-05 11:33:16 -0300 |
commit | 448a256359e951fd2e81ccb2926e3f2b1d7a09de (patch) | |
tree | a0eb770538013c697f378a35cc035f033381d44f /malloc/Makefile | |
parent | 47f43160953677faf33853359ee7b973dc487139 (diff) | |
download | glibc-448a256359e951fd2e81ccb2926e3f2b1d7a09de.zip glibc-448a256359e951fd2e81ccb2926e3f2b1d7a09de.tar.gz glibc-448a256359e951fd2e81ccb2926e3f2b1d7a09de.tar.bz2 |
malloc: Add scratch_buffer_dupfree
It returns a copy of the buffer up to a defined size. It will be used
on realpath sync with gnulib.
Diffstat (limited to 'malloc/Makefile')
-rw-r--r-- | malloc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/malloc/Makefile b/malloc/Makefile index 7f7ce63..583bbef 100644 --- a/malloc/Makefile +++ b/malloc/Makefile @@ -74,6 +74,7 @@ tests-exclude-mcheck = tst-mcheck tst-malloc-usable \ tests-mcheck = $(filter-out $(tests-exclude-mcheck),$(tests)) routines = malloc morecore mcheck mtrace obstack reallocarray \ + scratch_buffer_dupfree \ scratch_buffer_grow scratch_buffer_grow_preserve \ scratch_buffer_set_array_size \ dynarray_at_failure \ |