Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
4a8335b2248d934e2e40386af4f1b0495b3c173d
/
.
/
src
/
time
/
clock_settime.c
blob: 66b8162d72b540de5cefdbb62e8af6d3963d166c [
file
]
#include
<time.h>
#include
"syscall.h"
int
clock_settime
(
clockid_t
clk
,
const
struct
timespec
*
ts
)
{
return
syscall
(
SYS_clock_settime
,
clk
,
ts
);
}