Document fprintf bug fix.

This commit is contained in:
Stephen Heumann 2023-04-16 18:58:38 -05:00
parent 9dad2b6186
commit 2974c1b4bb
1 changed files with 4 additions and 0 deletions

View File

@ -2162,6 +2162,10 @@ int foo(int[42]);
241. When using the large memory model, functions registered with atexit() (or at_quick_exit(), in ORCA/C 2.2 betas) might be called with the data bank set incorrectly, potentially causing memory corruption or other incorrect behavior.
(Bug fixes below here were added in ORCA/C 2.2.0 B8.)
242. In the fprintf() family of functions, the '0' flag should be ignored if '-' was also specified.
-- Bugs from C 2.1.0 that have been fixed -----------------------------------
1. In some situations, fread() reread the first 1K or so of the file.