mirror of
https://github.com/fluencelabs/musl
synced 2025-07-05 01:22:04 +00:00
8 lines
201 B
C
8 lines
201 B
C
![]() |
#include <sys/stat.h>
|
||
|
#include "syscall.h"
|
||
|
|
||
|
int utimensat(int fd, const char *path, const struct timespec times[2], int flags)
|
||
|
{
|
||
|
return syscall4(__NR_utimensat, fd, (long)path, (long)times, flags);
|
||
|
}
|