diff options
author | Ori Bernstein <ori@eigenstate.org> | 2014-08-14 16:27:59 -0400 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2014-08-14 16:27:59 -0400 |
commit | 381c59a60d7a67dee8048b6de0fcdeee56260ce6 (patch) | |
tree | c254c8207b8a91f6f346a0ecd0ca7c54765ae496 | |
parent | d56862e1c5f5c3485d4e4b9a3b7716dd1ac2fb85 (diff) | |
download | mc-381c59a60d7a67dee8048b6de0fcdeee56260ce6.tar.gz |
Add direct open flag
-rw-r--r-- | libstd/sys-linux.myr | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libstd/sys-linux.myr b/libstd/sys-linux.myr index 34f110c..8b038eb 100644 --- a/libstd/sys-linux.myr +++ b/libstd/sys-linux.myr @@ -105,6 +105,7 @@ pkg std = const Otrunc : fdopt = 0x200 const Oappend : fdopt = 0x400 const Ondelay : fdopt = 0x800 + const Odirect : fdopt = 0x4000 const Odir : fdopt = 0x10000 const Onofollow : fdopt = 0x20000 |