diff options
| author | Jessica Hamilton <jessica.l.hamilton@gmail.com> | 2017-04-22 13:47:36 +1200 |
|---|---|---|
| committer | Jessica Hamilton <jessica.l.hamilton@gmail.com> | 2017-04-22 13:47:36 +1200 |
| commit | e1afddc29c7a056f855c0523e598c3bda42f4aea (patch) | |
| tree | 95870762437eac4965e3a6ebfcdb3c2e56fff34b /src/librustc_data_structures | |
| parent | 535ee6c7f05e29a6e94edba06b228d64f8ba74ec (diff) | |
| download | rust-e1afddc29c7a056f855c0523e598c3bda42f4aea.tar.gz rust-e1afddc29c7a056f855c0523e598c3bda42f4aea.zip | |
Haiku: fix initial platform support
Diffstat (limited to 'src/librustc_data_structures')
| -rw-r--r-- | src/librustc_data_structures/flock.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustc_data_structures/flock.rs b/src/librustc_data_structures/flock.rs index 26417e3ba7c..32f0fd41997 100644 --- a/src/librustc_data_structures/flock.rs +++ b/src/librustc_data_structures/flock.rs @@ -113,6 +113,7 @@ mod imp { pub l_sysid: libc::c_int, } + pub const F_RDLCK: libc::c_short = 0x0040; pub const F_UNLCK: libc::c_short = 0x0200; pub const F_WRLCK: libc::c_short = 0x0400; pub const F_SETLK: libc::c_int = 0x0080; |
