#include int futimens(int fd, const struct timespec times[2]) { return utimensat(fd, 0, times, 0); } #ifdef TEST int main(void) { return 0; } #endif