2002-04-21 14:20:42 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 05.06.1999
|
|
|
|
;
|
|
|
|
|
|
|
|
; File mode constants, must match the values in the C headers
|
|
|
|
|
|
|
|
|
|
|
|
O_RDONLY = $01
|
|
|
|
O_WRONLY = $02
|
|
|
|
O_RDWR = $03
|
2002-05-16 15:14:04 +00:00
|
|
|
O_CREAT = $10
|
|
|
|
O_TRUNC = $20
|
|
|
|
O_APPEND = $40
|
2002-04-21 14:20:42 +00:00
|
|
|
|
|
|
|
|