aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/mingw/stdio/ftello.c
blob: 1a63987feac13a668a1f74e2baa3044e3be1c446 (plain)
1
2
3
4
5
#include <stdio.h>

_off_t ftello(FILE * stream){
  return (_off_t) ftello64(stream);
}