zig/lib/libc/musl/src/stdio/__stdio_seek.c
2019-10-17 11:55:43 -04:00

8 lines
137 B
C

#include "stdio_impl.h"
#include <unistd.h>
off_t __stdio_seek(FILE *f, off_t off, int whence)
{
return __lseek(f->fd, off, whence);
}