1 #include <errno.h>
2 #include <time.h>
3 
clock_settime(clockid_t clk,const struct timespec * ts)4 int clock_settime(clockid_t clk, const struct timespec* ts) {
5     return ENOSYS;
6 }
7