Document octal formatting bug fix.

This commit is contained in:
Stephen Heumann 2023-04-17 22:00:29 -05:00
parent 84401b4e97
commit 0274b0ba83
1 changed files with 2 additions and 0 deletions

View File

@ -2172,6 +2172,8 @@ int foo(int[42]);
242. In the fprintf() family of functions, the '0' flag should be ignored if '-' was also specified.
243. In the fprintf() family of functions, when a conversion specification like "%#.0o" is used with the value 0, it should print "0" (rather than nothing).
-- Bugs from C 2.1.0 that have been fixed -----------------------------------
1. In some situations, fread() reread the first 1K or so of the file.