Sign in
cobalt
/
cobalt
/
97b64f26fb12c9eab352139c26f0b01d1cb6d0b9
/
.
/
third_party
/
musl
/
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
);
}