mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 06:14:33 +00:00
also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
8 lines
171 B
C
Vendored
8 lines
171 B
C
Vendored
#include <sys/time.h>
|
|
#include "fcntl.h"
|
|
#include "syscall.h"
|
|
|
|
int utimes(const char *path, const struct timeval times[2])
|
|
{
|
|
return __futimesat(AT_FDCWD, path, times);
|
|
}
|