musl-tcc/src/stdio/__stdio_seek.c

8 lines
137 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include "stdio_impl.h"
#include <unistd.h>
off_t __stdio_seek(FILE *f, off_t off, int whence)
{
return __lseek(f->fd, off, whence);
}