Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
stdio
__stdio_seek.c
pretty
plain
permalink
blame
history
•
7 lines
•
137 B
1
#include "stdio_impl.h"
2
#include <unistd.h>
3
4
off_t __stdio_seek(FILE *f, off_t off, int whence)
5
{
6
	return __lseek(f->fd, off, whence);
7
}