Move FOPEN_MAX from _file.inc into stdio.inc

git-svn-id: svn://svn.cc65.org/cc65/trunk@2135 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-05-03 08:49:35 +00:00
parent 788deefec9
commit 81b37f5443
2 changed files with 4 additions and 5 deletions

View File

@@ -12,15 +12,12 @@ _FILE_f_fd = $00
_FILE_f_flags = $01
_FILE_size = $02
; Flags field
; Flags field
_FCLOSED = $00
_FOPEN = $01
_FEOF = $02
_FERROR = $04
_FPUSHBACK = $08
; Maximum number of open files (size of table)
FOPEN_MAX = 8
; File table
.global __filetab