/* ISC license. */ #ifndef _BSD_SOURCE #define _BSD_SOURCE #endif #include #include int main (void) { struct timeval foo[2] = { { .tv_sec = 0, .tv_usec = 0 }, { .tv_sec = 0, .tv_usec = 0 } } ; futimes(0, foo) ; return 0 ; }