summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libstdio/fgetpos.c
blob: d58b6fa5b1b4d36fcf805639971a53caafb1f26f (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

int fgetpos(FILE *stream, fpos_t *pos) {
  long l=ftell(stream);
  if (l==-1) return -1;
  *pos=l;
  return 0;
}