ladybird/LibC/utime.cpp
Andreas Kling 3a0a8848fb Make syscall invocations look pleasant.
Old: Syscall::invoke(Syscall::SC_foo, (dword)arg1, (dword)arg2)
New: syscall(SC_foo, arg1, arg2)
2018-12-21 03:02:06 +01:00

15 lines
246 B
C++

#include <utime.h>
#include <errno.h>
#include <Kernel/Syscall.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);
}
}