diff options
author | Florian Weimer <fweimer@redhat.com> | 2020-07-15 12:37:01 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2020-07-21 07:34:50 +0200 |
commit | ec2f1fddf29053957d061dfe310f106388472a4f (patch) | |
tree | 84fb5d2cd2ae3b41aeb52609eb97d52bd05dccb3 /libio/Makefile | |
parent | 00bc6830e3fe3f10495917afe0835ddd19133c6a (diff) | |
download | glibc-ec2f1fddf29053957d061dfe310f106388472a4f.zip glibc-ec2f1fddf29053957d061dfe310f106388472a4f.tar.gz glibc-ec2f1fddf29053957d061dfe310f106388472a4f.tar.bz2 |
libio: Remove __libc_readline_unlocked
__nss_readline supersedes it. This reverts part of commit
3f5e3f5d066dcffb80af48ae2cf35a01a85a8f10 ("libio: Implement
internal function __libc_readline_unlocked"). The internal
aliases __fseeko64 and __ftello64 are preserved because
they are needed by __nss_readline as well.
Tested-by: Carlos O'Donell <carlos@redhat.com>
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'libio/Makefile')
-rw-r--r-- | libio/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/Makefile b/libio/Makefile index 926df18..4f0f777 100644 --- a/libio/Makefile +++ b/libio/Makefile @@ -49,7 +49,7 @@ routines := \ __fbufsize __freading __fwriting __freadable __fwritable __flbf \ __fpurge __fpending __fsetlocking \ \ - libc_fatal fmemopen oldfmemopen vtables readline + libc_fatal fmemopen oldfmemopen vtables tests = tst_swprintf tst_wprintf tst_swscanf tst_wscanf tst_getwc tst_putwc \ tst_wprintf2 tst-widetext test-fmemopen tst-ext tst-ext2 \ @@ -68,7 +68,7 @@ tests = tst_swprintf tst_wprintf tst_swscanf tst_wscanf tst_getwc tst_putwc \ tst-sprintf-ub tst-sprintf-chk-ub tst-bz24051 tst-bz24153 \ tst-wfile-sync -tests-internal = tst-vtables tst-vtables-interposed tst-readline +tests-internal = tst-vtables tst-vtables-interposed ifeq (yes,$(build-shared)) # Add test-fopenloc only if shared library is enabled since it depends on |