Sign in
mojo
/
mojo-tools
/
55f4d308e5e8352bc5f41242bd8b19db431bc774
/
.
/
fusl
/
src
/
time
/
clock_getres.c
blob: 36a0d695b02e29b1bbfd162061cb113c8550bfc2 [
file
]
#include
<time.h>
#include
"syscall.h"
int
clock_getres
(
clockid_t
clk
,
struct
timespec
*
ts
)
{
return
syscall
(
SYS_clock_getres
,
clk
,
ts
);
}