Test for bug in revision 1.54 of vfprintf.c.

This commit is contained in:
Tim J. Robbins 2003-04-06 08:02:20 +00:00
parent 30f445e056
commit fadfe1d425
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=113162

View File

@ -133,6 +133,9 @@ main(int argc, char *argv[])
testfmt("314159", "%g", 3.14159e5);
testfmt("314159.", "%#g", 3.14159e5);
testfmt(" 0.0", "%4.1f", 0.0);
testfmt(" 100", "%4.0f", 100.0);
printf("PASS printfloat\n");
return (0);