diff options
author | Gabriel F. T. Gomes <gabriel@inconstante.eti.br> | 2018-12-05 19:16:12 -0200 |
---|---|---|
committer | Gabriel F. T. Gomes <gabriel@inconstante.eti.br> | 2018-12-11 14:58:39 -0200 |
commit | df682d1d745e078621bee5a1f4a0b40f1b8dfca1 (patch) | |
tree | 326b5f193bbf3f498d6ee04200edda9b50609bcf | |
parent | c2c082c10f0bbdaaf3c5c8a9147a9fecbc474e1e (diff) | |
download | glibc-df682d1d745e078621bee5a1f4a0b40f1b8dfca1.tar glibc-df682d1d745e078621bee5a1f4a0b40f1b8dfca1.tar.gz glibc-df682d1d745e078621bee5a1f4a0b40f1b8dfca1.tar.bz2 glibc-df682d1d745e078621bee5a1f4a0b40f1b8dfca1.zip |
Remove redirection of _IO_vfprintf
Since the commit
commit 698fb75b9ff5ae454a1344b5f9fafa0ca367c555
Author: Zack Weinberg <zackw@panix.com>
Date: Wed Mar 7 14:32:01 2018 -0500
Add __v*printf_internal with flags arguments
_IO_vfprintf is gone. This did not trigger any test case failures on
powerpc and powerpc64le, because there were no tests that covered it.
However, new test cases for nldbl versions of argp.h functions exposed
the problem.
Tested for powerpc64 and powerpc64le.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | libio/libio.h | 1 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2018-12-11 Gabriel F. T. Gomes <gabriel@inconstante.eti.br> + + * libio/libio.h: Remove redirection for _IO_vfprintf. + 2018-12-11 Andreas Schwab <schwab@suse.de> * Makerules: Remove all references to abilist-pattern. diff --git a/libio/libio.h b/libio/libio.h index 3a93807efc..e19d860dc6 100644 --- a/libio/libio.h +++ b/libio/libio.h @@ -300,7 +300,6 @@ extern void _IO_free_wbackup_area (FILE *) __THROW; #ifdef __LDBL_COMPAT __LDBL_REDIR_DECL (_IO_vfscanf) -__LDBL_REDIR_DECL (_IO_vfprintf) #endif libc_hidden_proto (__overflow) |