mirror of
https://github.com/fluencelabs/musl
synced 2025-06-28 06:02:04 +00:00
8 lines
143 B
C
8 lines
143 B
C
#include <utime.h>
|
|
#include "syscall.h"
|
|
|
|
int utime(const char *path, const struct utimbuf *times)
|
|
{
|
|
return syscall(SYS_utime, path, times);
|
|
}
|