diff options
author | Joseph Myers <joseph@codesourcery.com> | 2017-08-07 19:53:17 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2017-08-07 19:53:17 +0000 |
commit | 8b1647877c7f797161dfe1a6b35eab8534d98f9f (patch) | |
tree | 5ef137d0791435214795a0d889599b3ec971d6fd /stdio-common/printf_fp.c | |
parent | dd3e86ad7cf5ea1b5a42b7962732f98882c63ff8 (diff) | |
download | glibc-8b1647877c7f797161dfe1a6b35eab8534d98f9f.tar.gz glibc-8b1647877c7f797161dfe1a6b35eab8534d98f9f.tar.xz glibc-8b1647877c7f797161dfe1a6b35eab8534d98f9f.zip |
Remove __long_double_t.
sys/cdefs.h has a macro __long_double_t used in two places in glibc. long double is a standard part of C since C89; there is no need for such an alias for it. This patch removes that macro and uses long double directly everywhere. As an implementation-namespace, undocumented symbol, it should not be considered part of the API for users, and codesearch.debian.net shows no sign of it being used outside glibc in a way that would break with this patch. Tested for x86_64. * misc/sys/cdefs.h (__long_double_t): Remove. * stdio-common/printf_fp.c (__printf_fp_l): Use long double instead of __long_double_t, * stdlib/strfmon_l.c (__vstrfmon_l): Likewise.
Diffstat (limited to 'stdio-common/printf_fp.c')
-rw-r--r-- | stdio-common/printf_fp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/printf_fp.c b/stdio-common/printf_fp.c index 514b698d27..3ed4037ba5 100644 --- a/stdio-common/printf_fp.c +++ b/stdio-common/printf_fp.c @@ -217,7 +217,7 @@ __printf_fp_l (FILE *fp, locale_t loc, union { double dbl; - __long_double_t ldbl; + long double ldbl; #if __HAVE_DISTINCT_FLOAT128 _Float128 f128; #endif |