1#include "stdio_impl.h"
2#include <unistd.h>
3
4off_t __stdio_seek(FILE* f, off_t off, int whence) {
5    return lseek(f->fd, off, whence);
6}
7