mirror of
https://github.com/ziglang/zig.git
synced 2026-01-19 13:55:20 +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
9 lines
171 B
C
9 lines
171 B
C
#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);
|
|
}
|