mirror of
https://github.com/ziglang/zig.git
synced 2026-01-30 11:13:38 +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
10 lines
187 B
C
10 lines
187 B
C
#include <unistd.h>
|
|
#include "syscall.h"
|
|
|
|
int truncate(const char *path, off_t length)
|
|
{
|
|
return syscall(SYS_truncate, path, __SYSCALL_LL_O(length));
|
|
}
|
|
|
|
weak_alias(truncate, truncate64);
|