Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
wasi
libc-top-half
musl
src
stdio
fsetpos.c
pretty
plain
permalink
blame
history
•
8 lines
•
158 B
1
#include "stdio_impl.h"
2
3
int fsetpos(FILE *f, const fpos_t *pos)
4
{
5
	return __fseeko(f, *(const long long *)pos, SEEK_SET);
6
}
7
8
weak_alias(fsetpos, fsetpos64);