Files
WrldBox/.tmp_zig/lib/zig/libc/mingw/stdio/ftello.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

6 lines
88 B
C

#include <stdio.h>
_off_t ftello(FILE * stream){
return (_off_t) ftello64(stream);
}