Redox: Use c_long instead of usize for off_t

This commit is contained in:
Ian Douglas Scott 2017-07-17 16:15:54 -07:00
parent c00686f3a2
commit 9a4bd72c17
No known key found for this signature in database
GPG Key ID: 4924E10E199B5959
1 changed files with 1 additions and 1 deletions

View File

@ -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;