mirror of
https://github.com/ziglang/zig.git
synced 2025-12-08 07:13:08 +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
6 lines
135 B
C
Vendored
6 lines
135 B
C
Vendored
#include <stdio.h>
|
|
|
|
int __cdecl fsetpos64(FILE *_File,const fpos_t *_Pos){ /* fsetpos already 64bit */
|
|
return fsetpos(_File,_Pos);
|
|
}
|