time: fix incorrect DST offset when using POSIX timezones without DST
[musl.git] / src / time / clock_getres.c
blob36a0d695b02e29b1bbfd162061cb113c8550bfc2
1 #include <time.h>
2 #include "syscall.h"
4 int clock_getres(clockid_t clk, struct timespec *ts)
6 return syscall(SYS_clock_getres, clk, ts);