Sign in
mojo
/
mojo-tools
/
ed4bdf2b045dcf76699eb5095f037df4b8750a28
/
.
/
fusl
/
src
/
linux
/
clock_adjtime.c
blob: 056ad6d34104cfa35064ea293763a94fffbd0372 [
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
);
}