remove hand-written crt1.s and Scrt1.s files for all archs
[musl] / src / linux / clock_adjtime.c
1 #include <sys/timex.h>
2 #include "syscall.h"
3
4 int clock_adjtime (clockid_t clock_id, struct timex *utx)
5 {
6         return syscall(SYS_clock_adjtime, clock_id, utx);
7 }