blob: d352aa0c71951d8c3f78000d5e9110eff135c582 [file] [log] [blame]
/*
* fseek.c
*/
#include "stdioint.h"
__extern int fseek(FILE *file, off_t where, int whence)
{
struct _IO_file_pvt *f = stdio_pvt(file);
off_t rv;
if (f->obytes)
if (__fflush(f))
return -1;
if (whence == SEEK_CUR) {
where += f->pub._IO_filepos;
whence = SEEK_SET;
}
rv = lseek(f->pub._IO_fileno, where, whence);
if (__likely(rv != (off_t)-1)) {
f->pub._IO_filepos = rv;
f->pub._IO_eof = false;
f->ibytes = 0;
f->obytes = 0;
return 0;
} else {
f->pub._IO_error = true;
return -1;
}
}