Skip to content

Commit

Permalink
Merge pull request rust-lang#674 from ids1024/off_t
Browse files Browse the repository at this point in the history
Redox: Use c_long instead of usize for off_t
  • Loading branch information
alexcrichton authored Jul 18, 2017
2 parents 12e22cf + 9a4bd72 commit 7387331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redox.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pub type c_ulong = u64;

pub type wchar_t = i16;

pub type off_t = usize;
pub type off_t = c_long;
pub type mode_t = u16;
pub type time_t = i64;
pub type pid_t = usize;
Expand Down

0 comments on commit 7387331

Please sign in to comment.