]> git.sur5r.net Git - cc65/blob - libsrc/common/fmode.inc
This commit was generated by cvs2svn to compensate for changes in r2,
[cc65] / libsrc / common / fmode.inc
1 ;
2 ; Ullrich von Bassewitz, 05.06.1999
3 ;
4
5 ; File mode constants, must match the values in the C headers
6
7
8 O_RDONLY        = $01
9 O_WRONLY        = $02
10 O_RDWR          = $03
11 O_CREAT         = $04
12 O_TRUNC         = $10
13 O_APPEND        = $20
14
15