diff options
Diffstat (limited to 'lib/std/syswrap+posixy.myr')
-rw-r--r-- | lib/std/syswrap+posixy.myr | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/std/syswrap+posixy.myr b/lib/std/syswrap+posixy.myr index 5766a00..f49f9b8 100644 --- a/lib/std/syswrap+posixy.myr +++ b/lib/std/syswrap+posixy.myr @@ -25,12 +25,13 @@ pkg std = const Seekcur : whence = (sys.Seekcur : whence) const Seekend : whence = (sys.Seekend : whence) - const Ordonly : fdopt = (sys.Ordonly : fdopt) - const Owronly : fdopt = (sys.Owronly : fdopt) + const Oread : fdopt = (sys.Ordonly : fdopt) + const Owrite : fdopt = (sys.Owronly : fdopt) const Ordwr : fdopt = (sys.Ordwr : fdopt) const Ocreat : fdopt = (sys.Ocreat : fdopt) const Otrunc : fdopt = (sys.Otrunc : fdopt) const Ocexec : fdopt = (sys.Ocloexec : fdopt) + const Oappend : fdopt = (sys.Oappend : fdopt) const Odir : fdopt = (sys.Odir : fdopt) /* fd stuff */ |