Sign in
mojo
/
mojo-tools
/
6d10d6bbfecec30019b2fe5c06e28a809f0d9753
/
.
/
fusl
/
src
/
time
/
clock_settime.c
blob: e38ffa15499739a9d7fc91943de422c866a0310d [
file
] [
log
] [
blame
]
#include
<time.h>
#include
"syscall.h"
int
clock_settime
(
clockid_t
clk
,
const
struct
timespec
*
ts
)
{
return
syscall
(
SYS_clock_settime
,
clk
,
ts
);
}