ladybird/LibC/utime.cpp
2019-06-07 11:49:03 +02:00

12 lines
244 B
C++

#include <Kernel/Syscall.h>
#include <errno.h>
#include <utime.h>
extern "C" {
int utime(const char* pathname, const struct utimbuf* buf)
{
int rc = syscall(SC_utime, (dword)pathname, (dword)buf);
__RETURN_WITH_ERRNO(rc, rc, -1);
}
}