Skip to content

Commit 8fe9d25

Browse files
committed
Qualify type names
1 parent 0b14c2c commit 8fe9d25

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/unix/bsd/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -595,10 +595,10 @@ extern {
595595
-> ::ssize_t;
596596

597597
#[cfg(not(target_os = "macos"))]
598-
pub fn sendmmsg(sockfd: ::c_int, msgvec: *mut mmsghdr, vlen: ::c_uint,
598+
pub fn sendmmsg(sockfd: ::c_int, msgvec: *mut ::mmsghdr, vlen: ::c_uint,
599599
flags: ::c_int) -> ::c_int;
600600
#[cfg(not(target_os = "macos"))]
601-
pub fn recvmmsg(sockfd: ::c_int, msgvec: *mut mmsghdr, vlen: ::c_uint,
601+
pub fn recvmmsg(sockfd: ::c_int, msgvec: *mut ::mmsghdr, vlen: ::c_uint,
602602
flags: ::c_int, timeout: *mut ::timespec) -> ::c_int;
603603

604604
pub fn sync();

src/unix/notbsd/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1378,9 +1378,9 @@ extern {
13781378
flags: ::c_int) -> ::ssize_t;
13791379
pub fn recvmsg(fd: ::c_int, msg: *mut ::msghdr, flags: ::c_int)
13801380
-> ::ssize_t;
1381-
pub fn sendmmsg(sockfd: ::c_int, msgvec: *mut mmsghdr, vlen: ::c_uint,
1381+
pub fn sendmmsg(sockfd: ::c_int, msgvec: *mut ::mmsghdr, vlen: ::c_uint,
13821382
flags: ::c_int) -> ::c_int;
1383-
pub fn recvmmsg(sockfd: ::c_int, msgvec: *mut mmsghdr, vlen: ::c_uint,
1383+
pub fn recvmmsg(sockfd: ::c_int, msgvec: *mut ::mmsghdr, vlen: ::c_uint,
13841384
flags: ::c_int, timeout: *mut ::timespec) -> ::c_int;
13851385
pub fn uname(buf: *mut ::utsname) -> ::c_int;
13861386
}

0 commit comments

Comments
 (0)