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