Skip to content

Commit 1ddf826

Browse files
committed
use size_t
1 parent a1db97e commit 1ddf826

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/windows/gnu.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pub type __p_sig_fn_t = usize;
1+
pub type __p_sig_fn_t = ::size_t;
22

33
pub const L_tmpnam: ::c_uint = 14;
44
pub const TMP_MAX: ::c_uint = 0x7fff;

src/windows/msvc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pub type _crt_signal_t = usize;
1+
pub type _crt_signal_t = ::size_t;
22

33
pub const L_tmpnam: ::c_uint = 260;
44
pub const TMP_MAX: ::c_uint = 0x7fff_ffff;

0 commit comments

Comments
 (0)