diff options
author | Florian Weimer <fweimer@redhat.com> | 2015-04-07 11:03:43 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2015-04-07 11:03:43 +0200 |
commit | cfcfd4614b8b01b2782ac4dcafb21d14d74d5184 (patch) | |
tree | 3083fbe60cc7edf3211f4c2d3da04a0c9e35fbd0 /malloc/Makefile | |
parent | 9e8c0381bbc6faf08cfc584e3848dd265d0d7e1a (diff) | |
download | glibc-cfcfd4614b8b01b2782ac4dcafb21d14d74d5184.tar glibc-cfcfd4614b8b01b2782ac4dcafb21d14d74d5184.tar.gz glibc-cfcfd4614b8b01b2782ac4dcafb21d14d74d5184.tar.bz2 glibc-cfcfd4614b8b01b2782ac4dcafb21d14d74d5184.zip |
Add struct scratch_buffer and its internal helper functions
These will be used from NSS modules, so they have to be exported.
Diffstat (limited to 'malloc/Makefile')
-rw-r--r-- | malloc/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/malloc/Makefile b/malloc/Makefile index 5f68a792e8..9e7112a5bf 100644 --- a/malloc/Makefile +++ b/malloc/Makefile @@ -27,10 +27,12 @@ headers := $(dist-headers) obstack.h mcheck.h tests := mallocbug tst-malloc tst-valloc tst-calloc tst-obstack \ tst-mallocstate tst-mcheck tst-mallocfork tst-trim1 \ tst-malloc-usable tst-realloc tst-posix_memalign \ - tst-pvalloc tst-memalign tst-mallopt + tst-pvalloc tst-memalign tst-mallopt tst-scratch_buffer test-srcs = tst-mtrace -routines = malloc morecore mcheck mtrace obstack +routines = malloc morecore mcheck mtrace obstack \ + scratch_buffer_grow scratch_buffer_grow_preserve \ + scratch_buffer_set_array_size install-lib := libmcheck.a non-lib.a := libmcheck.a |