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

off_t ftello(FILE *stream) {
  fflush(stream);
  return (lseek(stream->fd,0,SEEK_CUR));
}