Files
WrldBox/.tmp_zig/lib/zig/libc/mingw/stdio/fseeko32.c
swim67667 c17dfc94ce
Some checks failed
Build Project / build (ubuntu-latest) (push) Failing after 12m33s
added multi-compiling stuff (only works on my mac for now)
2026-06-28 16:40:20 -04:00

8 lines
155 B
C

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