xref: /aosp_15_r20/external/musl/src/stdio/__stdio_seek.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include "stdio_impl.h"
2 #include <unistd.h>
3 
__stdio_seek(FILE * f,off_t off,int whence)4 off_t __stdio_seek(FILE *f, off_t off, int whence)
5 {
6 	return __lseek(f->fd, off, whence);
7 }
8