* tests/test-c-ldtoastr.c (main): Support platforms where 'long double'
is longer than 'double'.
+2020-08-10 Bruno Haible <bruno@clisp.org>
+
+ c-ldtoastr tests: Fix test failure.
+ * tests/test-c-ldtoastr.c (main): Support platforms where 'long double'
+ is longer than 'double'.
+
2020-08-10 Bruno Haible <bruno@clisp.org>
Revert autoupdate's revert.
{
char buf[DBL_BUFSIZE_BOUND];
- c_ldtoastr (buf, sizeof buf, 0, 0, 0.1);
+ c_ldtoastr (buf, sizeof buf, 0, 0, 0.1L);
ASSERT (!strcmp (buf, "0.1"));
}