Revert definition of FILE structure in <stdio.h> to match the implementation in ORCALib.

It had been changed to reflect changes in the ORCALib code that added a second putback buffer element, but those changes were problematic and have been reverted for now. (It's also not clear if ORCALib binaries with the larger putback buffer were ever distributed--at the least, they aren't on Opus ][ or in any of the ORCA/C 2.2.0 beta releases.)
This commit is contained in:
Stephen Heumann 2018-02-28 22:57:41 -06:00
parent 5b26b8cc5b
commit 83df2fd9e1

View File

@ -61,7 +61,7 @@ typedef struct __file {
*_end; /* end of the file buffer */
unsigned long _size, /* size of the file buffer */
_cnt; /* # chars that can be read/written to buffer */
int _pbk[2]; /* put back buffer */
int _pbk; /* put back buffer */
unsigned int _flag, /* buffer flags */
_file; /* GS/OS file ID */
} FILE;