projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix assumption in fputs that fwrite returning 0 implies an error
[oweals/musl.git]
/
src
/
stdio
/
fsetpos.c
1
#include "stdio_impl.h"
2
3
int fsetpos(FILE *f, const fpos_t *pos)
4
{
5
return __fseeko(f, *(const off_t *)pos, SEEK_SET);
6
}
7
8
LFS64(fsetpos);