blob: 33d557aa7f48a50fa908d25ed2ec83e8936ae904 [file] [log] [blame]
#include <errno.h>
struct utimbuf;
int
_utime(const char *path, const struct utimbuf *times)
{
errno = ENOSYS;
return -1;
}