repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
riscv32: add dlsym
[musl.git]
/
src
/
stdio
/
fgetpos.c
blob
392f7323cf58fd3649b2855c472e4f23b80ab568
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
*(
long long
*)
pos
=
off
;
8
return
0
;
9
}