mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
12 lines
244 B
C++
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);
|
|
}
|
|
}
|