Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
linux
/
clock_adjtime.c
blob: 06c7401e9faa52509d98f2b06804a7202d8821cb [
file
] [
log
] [
blame
]
#include
<sys/timex.h>
#include
"syscall.h"
int
clock_adjtime
(
clockid_t
clock_id
,
struct
timex
*
utx
)
{
return
syscall
(
SYS_clock_adjtime
,
clock_id
,
utx
);
}