implement the remaining clock_* interfaces
[musl] / src / time / clock_settime.c
1 #define SYSCALL_RETURN_ERRNO
2 #include <time.h>
3 #include "syscall.h"
4
5 int clock_settime(clockid_t clk, const struct timespec *ts)
6 {
7         return syscall2(__NR_clock_settime, clk, (long)ts);
8 }