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