Files
zig/lib/libc/musl/src/stdio/fgetpos.c
Andrew Kelley 49d1a4c562 move lib dirs to lib subdir
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
2019-07-15 17:54:50 -04:00

12 lines
202 B
C

#include "stdio_impl.h"
int fgetpos(FILE *restrict f, fpos_t *restrict pos)
{
off_t off = __ftello(f);
if (off < 0) return -1;
*(long long *)pos = off;
return 0;
}
weak_alias(fgetpos, fgetpos64);