Fix another test to account for recent stdio changes in SysFloat.

This commit is contained in:
Stephen Heumann 2023-06-19 18:35:15 -05:00
parent af3c8e1eea
commit 7188b4f418
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ int main (void)
f = fopen ("3/tmp", "wb+"); /* open input file for test */
if (f == NULL)
goto Fail1;
fprintf(f, "23 -3.8E20 - e- +25e- 00002.00008e000049.9");
fprintf(f, "23 -3.8E20 -0 0e-0 +25e-0 00002.00008e000049.9");
fclose(f);
stdin = freopen ("3/tmp", "r", stdin);