#include #include #include extern "C" { int utime(const char* pathname, const struct utimbuf* buf) { int rc = Syscall::invoke(Syscall::SC_utime, (dword)pathname, (dword)buf); __RETURN_WITH_ERRNO(rc, rc, -1); } }