zig/lib/libc/mingw/stdio/fseeko32.c

8 lines
155 B
C
Raw Normal View History

/*non-standard*/
#include <stdio.h>
int fseeko(FILE* stream, _off_t offset, int whence){
_off64_t off = offset;
return fseeko64(stream,off,whence);
}