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