From 2974c1b4bbf461dc610865e859be485e8162e13b Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Sun, 16 Apr 2023 18:58:38 -0500 Subject: [PATCH] Document fprintf bug fix. --- cc.notes | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cc.notes b/cc.notes index 231acba..1876dff 100644 --- a/cc.notes +++ b/cc.notes @@ -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.