07e9d63b ^
57174444 ^
0b44a031
1d23b3c9 ^
1
2
3 4
5
6 7 8 9
#define _GNU_SOURCE #include <time.h> #include <sys/time.h> int stime(const time_t *t) { struct timeval tv = { .tv_sec = *t, .tv_usec = 0 }; return settimeofday(&tv, (void *)0); }