Sign in
mojo
/
mojo
/
2f64806b047b83f7c49e0525d8f3499d7be23e27
/
.
/
fusl
/
src
/
linux
/
stime.c
blob: 2ae9663a937825a6fecbdff33065b4e7570c328a [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<time.h>
#include
<sys/time.h>
int
stime
(
const
time_t
*
t
)
{
struct
timeval tv
=
{.
tv_sec
=
*
t
,
.
tv_usec
=
0
};
return
settimeofday
(&
tv
,
(
void
*)
0
);
}