1 2 3 4 5 6 7 8 9 10 11 12
/* ISC license. */ #include <sys/types.h> #include <sys/stat.h> #include <time.h> int main (void) { struct timespec foo[2] = { { .tv_sec = 0, .tv_nsec = 0 }, { .tv_sec = 0, .tv_nsec = 0 } } ; futimens(0, foo) ; return 0 ; }