]> git.sur5r.net Git - cc65/blob - asminc/fcntl.inc
Fixed _textcolor definition.
[cc65] / asminc / fcntl.inc
1 ;
2 ; Ullrich von Bassewitz, 05.06.1999
3 ;
4
5 ; Predefined file handles
6 STDIN_FILENO    = 0
7 STDOUT_FILENO   = 1
8 STDERR_FILENO   = 2
9
10 ; File mode constants, must match the values in the C headers
11 O_RDONLY        = $01
12 O_WRONLY        = $02
13 O_RDWR          = $03
14 O_CREAT         = $10
15 O_TRUNC         = $20
16 O_APPEND        = $40
17 O_EXCL          = $80
18
19
20
21