Format settimeofday on openbsd

This commit is contained in:
GrayJack 2019-10-13 16:10:47 -03:00
parent b97166f68f
commit f5ff9d9a71
1 changed files with 4 additions and 1 deletions

View File

@ -1374,7 +1374,10 @@ f! {
extern "C" {
pub fn gettimeofday(tp: *mut ::timeval, tz: *mut ::timezone) -> ::c_int;
pub fn settimeofday(tp: *const ::timeval, tz: *const ::timezone) -> ::c_int;
pub fn settimeofday(
tp: *const ::timeval,
tz: *const ::timezone
) -> ::c_int;
pub fn accept4(
s: ::c_int,
addr: *mut ::sockaddr,