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 27430bc commit d5d0bdfCopy full SHA for d5d0bdf
src/unix/mod.rs
@@ -767,6 +767,8 @@ extern {
767
pub fn gmtime(time_p: *const time_t) -> *mut tm;
768
#[cfg_attr(target_os = "netbsd", link_name = "__locatime50")]
769
pub fn localtime(time_p: *const time_t) -> *mut tm;
770
+ #[cfg_attr(target_os = "netbsd", link_name = "__difftime50")]
771
+ pub fn difftime(time1: time_t, time0: time_t) -> ::c_double;
772
773
#[cfg_attr(target_os = "netbsd", link_name = "__mknod50")]
774
pub fn mknod(pathname: *const ::c_char, mode: ::mode_t,
0 commit comments