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

6 lines
88 B
C
Raw Normal View History

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