summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libstdio/ftello64.c
blob: bda7a7de46f0e59d573217f82d1b8f868d5433e5 (plain)
1
2
3
4
5
6
7
8
9
#include <dietstdio.h>
#include <unistd.h>

#ifndef __NO_STAT64
off64_t ftello64(FILE *stream) {
  fflush(stream);
  return (lseek64(stream->fd,0ull,SEEK_CUR));
}
#endif