Fix missing prefix ::
This commit is contained in:
parent
bfeb3606f2
commit
a3759d7feb
@ -1,4 +1,4 @@
|
||||
use dox::mem;
|
||||
use dox::{mem, Option};
|
||||
|
||||
pub type c_char = i8;
|
||||
pub type wchar_t = i32;
|
||||
@ -362,30 +362,30 @@ extern {
|
||||
|
||||
#[cfg_attr(target_os = "macos", link_name = "glob$INODE64")]
|
||||
#[cfg_attr(target_os = "netbsd", link_name = "__glob30")]
|
||||
pub fn glob(pattern: *const c_char,
|
||||
pub fn glob(pattern: *const ::c_char,
|
||||
flags: ::c_int,
|
||||
errfunc: Option<extern fn(epath: *const c_char,
|
||||
errfunc: Option<extern fn(epath: *const ::c_char,
|
||||
errno: ::c_int) -> ::c_int>,
|
||||
pglob: *mut glob_t) -> ::c_int;
|
||||
pglob: *mut ::glob_t) -> ::c_int;
|
||||
#[cfg_attr(target_os = "netbsd", link_name = "__globfree30")]
|
||||
pub fn globfree(pglob: *mut glob_t);
|
||||
pub fn globfree(pglob: *mut ::glob_t);
|
||||
|
||||
pub fn posix_madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int)
|
||||
-> ::c_int;
|
||||
|
||||
pub fn shm_unlink(name: *const c_char) -> ::c_int;
|
||||
pub fn shm_unlink(name: *const ::c_char) -> ::c_int;
|
||||
|
||||
#[cfg_attr(all(target_os = "macos", target_arch = "x86_64"),
|
||||
link_name = "seekdir$INODE64")]
|
||||
#[cfg_attr(all(target_os = "macos", target_arch = "x86"),
|
||||
link_name = "seekdir$INODE64$UNIX2003")]
|
||||
pub fn seekdir(dirp: *mut ::DIR, loc: c_long);
|
||||
pub fn seekdir(dirp: *mut ::DIR, loc: ::c_long);
|
||||
|
||||
#[cfg_attr(all(target_os = "macos", target_arch = "x86_64"),
|
||||
link_name = "telldir$INODE64")]
|
||||
#[cfg_attr(all(target_os = "macos", target_arch = "x86"),
|
||||
link_name = "telldir$INODE64$UNIX2003")]
|
||||
pub fn telldir(dirp: *mut ::DIR) -> c_long;
|
||||
pub fn telldir(dirp: *mut ::DIR) -> ::c_long;
|
||||
pub fn madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int)
|
||||
-> ::c_int;
|
||||
|
||||
@ -397,16 +397,16 @@ extern {
|
||||
#[cfg_attr(all(target_os = "macos", target_arch = "x86"),
|
||||
link_name = "recvfrom$UNIX2003")]
|
||||
pub fn recvfrom(socket: ::c_int, buf: *mut ::c_void, len: ::size_t,
|
||||
flags: ::c_int, addr: *mut sockaddr,
|
||||
addrlen: *mut socklen_t) -> ::ssize_t;
|
||||
flags: ::c_int, addr: *mut ::sockaddr,
|
||||
addrlen: *mut ::socklen_t) -> ::ssize_t;
|
||||
pub fn mkstemps(template: *mut ::c_char, suffixlen: ::c_int) -> ::c_int;
|
||||
pub fn futimes(fd: ::c_int, times: *const ::timeval) -> ::c_int;
|
||||
pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char;
|
||||
|
||||
#[cfg_attr(all(target_os = "macos", target_arch = "x86"),
|
||||
link_name = "bind$UNIX2003")]
|
||||
pub fn bind(socket: ::c_int, address: *const sockaddr,
|
||||
address_len: socklen_t) -> ::c_int;
|
||||
pub fn bind(socket: ::c_int, address: *const ::sockaddr,
|
||||
address_len: ::socklen_t) -> ::c_int;
|
||||
|
||||
#[cfg_attr(all(target_os = "macos", target_arch = "x86"),
|
||||
link_name = "writev$UNIX2003")]
|
||||
@ -422,11 +422,11 @@ extern {
|
||||
#[cfg_attr(all(target_os = "macos", target_arch = "x86"),
|
||||
link_name = "sendmsg$UNIX2003")]
|
||||
pub fn sendmsg(fd: ::c_int,
|
||||
msg: *const msghdr,
|
||||
msg: *const ::msghdr,
|
||||
flags: ::c_int) -> ::ssize_t;
|
||||
#[cfg_attr(all(target_os = "macos", target_arch = "x86"),
|
||||
link_name = "recvmsg$UNIX2003")]
|
||||
pub fn recvmsg(fd: ::c_int, msg: *mut msghdr, flags: ::c_int) -> ::ssize_t;
|
||||
pub fn recvmsg(fd: ::c_int, msg: *mut ::msghdr, flags: ::c_int) -> ::ssize_t;
|
||||
}
|
||||
|
||||
cfg_if! {
|
||||
|
@ -1,4 +1,4 @@
|
||||
use dox::mem;
|
||||
use dox::{mem, Option};
|
||||
|
||||
pub type rlim_t = ::uintptr_t;
|
||||
pub type sa_family_t = u8;
|
||||
@ -761,35 +761,35 @@ extern {
|
||||
pub fn waitid(idtype: idtype_t, id: id_t, infop: *mut ::siginfo_t,
|
||||
options: ::c_int) -> ::c_int;
|
||||
|
||||
pub fn glob(pattern: *const c_char,
|
||||
pub fn glob(pattern: *const ::c_char,
|
||||
flags: ::c_int,
|
||||
errfunc: Option<extern fn(epath: *const c_char,
|
||||
errfunc: Option<extern fn(epath: *const ::c_char,
|
||||
errno: ::c_int) -> ::c_int>,
|
||||
pglob: *mut glob_t) -> ::c_int;
|
||||
pub fn globfree(pglob: *mut glob_t);
|
||||
pglob: *mut ::glob_t) -> ::c_int;
|
||||
pub fn globfree(pglob: *mut ::glob_t);
|
||||
|
||||
pub fn posix_madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int)
|
||||
-> ::c_int;
|
||||
|
||||
pub fn shm_unlink(name: *const c_char) -> ::c_int;
|
||||
pub fn shm_unlink(name: *const ::c_char) -> ::c_int;
|
||||
|
||||
pub fn seekdir(dirp: *mut ::DIR, loc: c_long);
|
||||
pub fn seekdir(dirp: *mut ::DIR, loc: ::c_long);
|
||||
|
||||
pub fn telldir(dirp: *mut ::DIR) -> c_long;
|
||||
pub fn telldir(dirp: *mut ::DIR) -> ::c_long;
|
||||
pub fn madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int)
|
||||
-> ::c_int;
|
||||
|
||||
pub fn msync(addr: *mut ::c_void, len: ::size_t, flags: ::c_int) -> ::c_int;
|
||||
|
||||
pub fn recvfrom(socket: ::c_int, buf: *mut ::c_void, len: ::size_t,
|
||||
flags: ::c_int, addr: *mut sockaddr,
|
||||
addrlen: *mut socklen_t) -> ::ssize_t;
|
||||
flags: ::c_int, addr: *mut ::sockaddr,
|
||||
addrlen: *mut ::socklen_t) -> ::ssize_t;
|
||||
pub fn mkstemps(template: *mut ::c_char, suffixlen: ::c_int) -> ::c_int;
|
||||
pub fn futimes(fd: ::c_int, times: *const ::timeval) -> ::c_int;
|
||||
pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char;
|
||||
|
||||
pub fn bind(socket: ::c_int, address: *const sockaddr,
|
||||
address_len: socklen_t) -> ::c_int;
|
||||
pub fn bind(socket: ::c_int, address: *const ::sockaddr,
|
||||
address_len: ::socklen_t) -> ::c_int;
|
||||
|
||||
pub fn writev(fd: ::c_int,
|
||||
iov: *const ::iovec,
|
||||
@ -799,9 +799,9 @@ extern {
|
||||
iovcnt: ::c_int) -> ::ssize_t;
|
||||
|
||||
pub fn sendmsg(fd: ::c_int,
|
||||
msg: *const msghdr,
|
||||
msg: *const ::msghdr,
|
||||
flags: ::c_int) -> ::ssize_t;
|
||||
pub fn recvmsg(fd: ::c_int, msg: *mut msghdr, flags: ::c_int) -> ::ssize_t;
|
||||
pub fn recvmsg(fd: ::c_int, msg: *mut ::msghdr, flags: ::c_int) -> ::ssize_t;
|
||||
}
|
||||
|
||||
cfg_if! {
|
||||
|
@ -1,6 +1,6 @@
|
||||
//! Linux-specific definitions for linux-like values
|
||||
|
||||
use dox::mem;
|
||||
use dox::{mem, Option};
|
||||
|
||||
pub type useconds_t = u32;
|
||||
pub type dev_t = u64;
|
||||
@ -905,31 +905,31 @@ extern {
|
||||
flags: ::c_int,
|
||||
errfunc: Option<extern fn(epath: *const c_char,
|
||||
errno: ::c_int) -> ::c_int>,
|
||||
pglob: *mut glob_t) -> ::c_int;
|
||||
pub fn globfree(pglob: *mut glob_t);
|
||||
pglob: *mut ::glob_t) -> ::c_int;
|
||||
pub fn globfree(pglob: *mut ::glob_t);
|
||||
|
||||
pub fn posix_madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int)
|
||||
-> ::c_int;
|
||||
|
||||
pub fn shm_unlink(name: *const c_char) -> ::c_int;
|
||||
pub fn shm_unlink(name: *const ::c_char) -> ::c_int;
|
||||
|
||||
pub fn seekdir(dirp: *mut ::DIR, loc: c_long);
|
||||
pub fn seekdir(dirp: *mut ::DIR, loc: ::c_long);
|
||||
|
||||
pub fn telldir(dirp: *mut ::DIR) -> c_long;
|
||||
pub fn telldir(dirp: *mut ::DIR) -> ::c_long;
|
||||
pub fn madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int)
|
||||
-> ::c_int;
|
||||
|
||||
pub fn msync(addr: *mut ::c_void, len: ::size_t, flags: ::c_int) -> ::c_int;
|
||||
|
||||
pub fn recvfrom(socket: ::c_int, buf: *mut ::c_void, len: ::size_t,
|
||||
flags: ::c_int, addr: *mut sockaddr,
|
||||
addrlen: *mut socklen_t) -> ::ssize_t;
|
||||
flags: ::c_int, addr: *mut ::sockaddr,
|
||||
addrlen: *mut ::socklen_t) -> ::ssize_t;
|
||||
pub fn mkstemps(template: *mut ::c_char, suffixlen: ::c_int) -> ::c_int;
|
||||
pub fn futimes(fd: ::c_int, times: *const ::timeval) -> ::c_int;
|
||||
pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char;
|
||||
|
||||
pub fn bind(socket: ::c_int, address: *const sockaddr,
|
||||
address_len: socklen_t) -> ::c_int;
|
||||
pub fn bind(socket: ::c_int, address: *const ::sockaddr,
|
||||
address_len: ::socklen_t) -> ::c_int;
|
||||
|
||||
pub fn writev(fd: ::c_int,
|
||||
iov: *const ::iovec,
|
||||
@ -939,9 +939,9 @@ extern {
|
||||
iovcnt: ::c_int) -> ::ssize_t;
|
||||
|
||||
pub fn sendmsg(fd: ::c_int,
|
||||
msg: *const msghdr,
|
||||
msg: *const ::msghdr,
|
||||
flags: ::c_int) -> ::ssize_t;
|
||||
pub fn recvmsg(fd: ::c_int, msg: *mut msghdr, flags: ::c_int) -> ::ssize_t;
|
||||
pub fn recvmsg(fd: ::c_int, msg: *mut ::msghdr, flags: ::c_int) -> ::ssize_t;
|
||||
}
|
||||
|
||||
cfg_if! {
|
||||
|
@ -1,4 +1,4 @@
|
||||
use dox::mem;
|
||||
use dox::{mem, Option};
|
||||
|
||||
pub type c_char = i8;
|
||||
pub type c_long = i64;
|
||||
@ -1095,36 +1095,36 @@ extern {
|
||||
pub fn waitid(idtype: idtype_t, id: id_t, infop: *mut ::siginfo_t,
|
||||
options: ::c_int) -> ::c_int;
|
||||
|
||||
pub fn glob(pattern: *const c_char,
|
||||
pub fn glob(pattern: *const ::c_char,
|
||||
flags: ::c_int,
|
||||
errfunc: Option<extern fn(epath: *const c_char,
|
||||
errfunc: Option<extern fn(epath: *const ::c_char,
|
||||
errno: ::c_int) -> ::c_int>,
|
||||
pglob: *mut glob_t) -> ::c_int;
|
||||
pglob: *mut ::glob_t) -> ::c_int;
|
||||
|
||||
pub fn globfree(pglob: *mut glob_t);
|
||||
pub fn globfree(pglob: *mut ::glob_t);
|
||||
|
||||
pub fn posix_madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int)
|
||||
-> ::c_int;
|
||||
|
||||
pub fn shm_unlink(name: *const c_char) -> ::c_int;
|
||||
pub fn shm_unlink(name: *const ::c_char) -> ::c_int;
|
||||
|
||||
pub fn seekdir(dirp: *mut ::DIR, loc: c_long);
|
||||
pub fn seekdir(dirp: *mut ::DIR, loc: ::c_long);
|
||||
|
||||
pub fn telldir(dirp: *mut ::DIR) -> c_long;
|
||||
pub fn telldir(dirp: *mut ::DIR) -> ::c_long;
|
||||
pub fn madvise(addr: *mut ::c_void, len: ::size_t, advice: ::c_int)
|
||||
-> ::c_int;
|
||||
|
||||
pub fn msync(addr: *mut ::c_void, len: ::size_t, flags: ::c_int) -> ::c_int;
|
||||
|
||||
pub fn recvfrom(socket: ::c_int, buf: *mut ::c_void, len: ::size_t,
|
||||
flags: ::c_int, addr: *mut sockaddr,
|
||||
addrlen: *mut socklen_t) -> ::ssize_t;
|
||||
flags: ::c_int, addr: *mut ::sockaddr,
|
||||
addrlen: *mut ::socklen_t) -> ::ssize_t;
|
||||
pub fn mkstemps(template: *mut ::c_char, suffixlen: ::c_int) -> ::c_int;
|
||||
pub fn futimes(fd: ::c_int, times: *const ::timeval) -> ::c_int;
|
||||
pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char;
|
||||
|
||||
pub fn bind(socket: ::c_int, address: *const sockaddr,
|
||||
address_len: socklen_t) -> ::c_int;
|
||||
pub fn bind(socket: ::c_int, address: *const ::sockaddr,
|
||||
address_len: ::socklen_t) -> ::c_int;
|
||||
|
||||
pub fn writev(fd: ::c_int,
|
||||
iov: *const ::iovec,
|
||||
@ -1134,7 +1134,7 @@ extern {
|
||||
iovcnt: ::c_int) -> ::ssize_t;
|
||||
|
||||
pub fn sendmsg(fd: ::c_int,
|
||||
msg: *const msghdr,
|
||||
msg: *const ::msghdr,
|
||||
flags: ::c_int) -> ::ssize_t;
|
||||
pub fn recvmsg(fd: ::c_int, msg: *mut msghdr, flags: ::c_int) -> ::ssize_t;
|
||||
pub fn recvmsg(fd: ::c_int, msg: *mut ::msghdr, flags: ::c_int) -> ::ssize_t;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user