fix scanf handling of "0" (followed by immediate EOF) with "%x"
[musl] / src / time / clock_settime.c
1 #include <time.h>
2 #include "syscall.h"
3
4 int clock_settime(clockid_t clk, const struct timespec *ts)
5 {
6         return syscall(SYS_clock_settime, clk, ts);
7 }