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

#ifndef __NO_STAT64
int fseeko64(FILE *stream, off64_t offset, int whence) {
  fflush(stream);
  stream->bm=0; stream->bs=0;
  stream->flags&=~(ERRORINDICATOR|EOFINDICATOR);
  stream->ungotten=0;
  return lseek64(stream->fd,offset,whence)!=-1?0:-1;
}
#endif