projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
remove useless null check before call to free in fclose
[oweals/musl.git]
/
src
/
stdio
/
fgetpos.c
1
#include "stdio_impl.h"
2
3
int fgetpos(FILE *restrict f, fpos_t *restrict pos)
4
{
5
off_t off = __ftello(f);
6
if (off < 0) return -1;
7
*(off_t *)pos = off;
8
return 0;
9
}
10
11
LFS64(fgetpos);