diff options
Diffstat (limited to 'stdio-common/tst-printf-format-skeleton-double.c')
-rw-r--r-- | stdio-common/tst-printf-format-skeleton-double.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdio-common/tst-printf-format-skeleton-double.c b/stdio-common/tst-printf-format-skeleton-double.c index 03ac594..aa49277 100644 --- a/stdio-common/tst-printf-format-skeleton-double.c +++ b/stdio-common/tst-printf-format-skeleton-double.c @@ -1,5 +1,5 @@ /* Test skeleton for formatted printf output for double conversions. - Copyright (C) 2024 Free Software Foundation, Inc. + Copyright (C) 2024-2025 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -26,7 +26,7 @@ #define PREC DBL_MANT_DIG typedef double type_t; static const type_t vals[] = - { -HUGE_VAL, -DBL_MAX, -DBL_MIN, copysign (0, -1), -NAN, NAN, 0, DBL_MIN, + { -HUGE_VAL, -DBL_MAX, -DBL_MIN, -0.0, -NAN, NAN, 0, DBL_MIN, DBL_MAX, HUGE_VAL }; static const char length[] = ""; |