Sign in
mojo
/
mojo-tools
/
520b7ed1860f21d38a217a053a302c77ae427324
/
.
/
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
);
}