Skip to content

Commit bf16ee8

Browse files
committed
scope resolve c_int
1 parent 70445ed commit bf16ee8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/windows/gnu.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ pub const NSIG: ::c_int = 23;
2222
pub const SIG_ERR: ::c_int = -1;
2323

2424
extern {
25-
pub fn signal(signum: c_int, handler: __p_sig_fn_t) -> __p_sig_fn_t;
26-
pub fn raise(signum: c_int) -> c_int;
25+
pub fn signal(signum: ::c_int, handler: __p_sig_fn_t) -> __p_sig_fn_t;
26+
pub fn raise(signum: ::c_int) -> ::c_int;
2727
pub fn strcasecmp(s1: *const ::c_char, s2: *const ::c_char) -> ::c_int;
2828
pub fn strncasecmp(s1: *const ::c_char, s2: *const ::c_char,
2929
n: ::size_t) -> ::c_int;

0 commit comments

Comments
 (0)