nativity/lib/libc/mingw/stdio/fseeko32.c
David Gonzalez Martin 38011a233c Integrate libs
2024-03-02 12:58:12 -06: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);
}