blob: f1291c37d163d5277624786ee4e25e389ce67530 [file] [log] [blame]
#include "stdio_impl.h"
#include <unistd.h>
off_t __stdio_seek(FILE* f, off_t off, int whence) {
return lseek(f->fd, off, whence);
}