1 2 3 4 5 6 7 8 9 10 11
#include "time.h" #include <utime.h> int utime(const char *path, const struct utimbuf *times) { (void)path; (void)times; return -1; } /* POSIX(1) */