We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a569520 commit 87d0076Copy full SHA for 87d0076
src/unix/mod.rs
@@ -523,7 +523,6 @@ extern {
523
#[cfg_attr(target_os = "netbsd", link_name = "__utimes50")]
524
pub fn utimes(filename: *const ::c_char,
525
times: *const ::timeval) -> ::c_int;
526
- pub fn futimes(fd: ::c_int, times: *const ::timeval) -> ::c_int;
527
pub fn dlopen(filename: *const ::c_char,
528
flag: ::c_int) -> *mut ::c_void;
529
pub fn dlerror() -> *mut ::c_char;
@@ -695,6 +694,7 @@ extern {
695
694
pub fn mkstemp(template: *mut ::c_char) -> ::c_int;
696
pub fn mkstemps(template: *mut ::c_char, suffixlen: ::c_int) -> ::c_int;
697
pub fn mkdtemp(template: *mut ::c_char) -> *mut ::c_char;
+ pub fn futimes(fd: ::c_int, times: *const ::timeval) -> ::c_int;
698
}
699
700
cfg_if! {
0 commit comments