Skip to content

Commit 7387331

Browse files
authored
Merge pull request rust-lang#674 from ids1024/off_t
Redox: Use c_long instead of usize for off_t
2 parents 12e22cf + 9a4bd72 commit 7387331

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/redox.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pub type c_ulong = u64;
44

55
pub type wchar_t = i16;
66

7-
pub type off_t = usize;
7+
pub type off_t = c_long;
88
pub type mode_t = u16;
99
pub type time_t = i64;
1010
pub type pid_t = usize;

0 commit comments

Comments
 (0)