Skip to content

Commit

Permalink
Auto merge of #674 - ids1024:off_t, r=alexcrichton
Browse files Browse the repository at this point in the history
Redox: Use c_long instead of usize for off_t
  • Loading branch information
bors committed Jul 18, 2017
2 parents c00686f + 9a4bd72 commit 35f7357
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 35f7357

Please sign in to comment.