diff options
author | Wilco Dijkstra <wdijkstr@arm.com> | 2015-06-03 15:36:34 +0100 |
---|---|---|
committer | Wilco Dijkstra <wdijkstr@arm.com> | 2015-06-03 15:41:36 +0100 |
commit | d81f90ccd0109de9ed78aeeb8d86e2c6d4600690 (patch) | |
tree | 6dfdc3458a8684e3633e20b8cf37385ee7082840 /stdio-common/printf_size.c | |
parent | f014e87eff1c9935a8bd9f7b7ab66ff5ef562ee9 (diff) | |
download | glibc-d81f90ccd0109de9ed78aeeb8d86e2c6d4600690.tar.gz |
This patch renames all uses of __isinf*, __isnan*, __finite* and __signbit* to use standard C99 macros. This has no effect on generated code.
Diffstat (limited to 'stdio-common/printf_size.c')
-rw-r--r-- | stdio-common/printf_size.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdio-common/printf_size.c b/stdio-common/printf_size.c index 6ee753f6d4..7dcd58e0d8 100644 --- a/stdio-common/printf_size.c +++ b/stdio-common/printf_size.c @@ -126,7 +126,7 @@ __printf_size (FILE *fp, const struct printf_info *info, fpnum.ldbl = *(const long double *) args[0]; /* Check for special values: not a number or infinity. */ - if (__isnanl (fpnum.ldbl)) + if (isnan (fpnum.ldbl)) { special = "nan"; wspecial = L"nan"; @@ -151,7 +151,7 @@ __printf_size (FILE *fp, const struct printf_info *info, fpnum.dbl.d = *(const double *) args[0]; /* Check for special values: not a number or infinity. */ - if (__isnan (fpnum.dbl.d)) + if (isnan (fpnum.dbl.d)) { special = "nan"; wspecial = L"nan"; |