• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <stdio.h>
2 
ftello(FILE * stream)3 _off_t ftello(FILE * stream){
4   return (_off_t) ftello64(stream);
5 }
6