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