Added pushback char to struct FILE

git-svn-id: svn://svn.cc65.org/cc65/trunk@3028 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2004-05-12 13:16:36 +00:00
parent 51d536da7a
commit d2351bba49
4 changed files with 13 additions and 10 deletions

View File

@@ -16,11 +16,11 @@
.data
__filetab:
.byte 0, _FOPEN ; stdin
.byte 1, _FOPEN ; stdout
.byte 2, _FOPEN ; stderr
.byte 0, _FOPEN, 0 ; stdin
.byte 1, _FOPEN, 0 ; stdout
.byte 2, _FOPEN, 0 ; stderr
.repeat FOPEN_MAX - 3
.byte 0, _FCLOSED ; free slot
.byte 0, _FCLOSED, 0 ; free slot
.endrepeat