1 2 3 4 5 6 7 8 9
#include <errno.h> struct utimbuf; int _utime(const char *path, const struct utimbuf *times) { errno = ENOSYS; return -1; }