Sign in
cobalt
/
cobalt.git
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
stdio
/
fgetpos.c
blob: 392f7323cf58fd3649b2855c472e4f23b80ab568 [
file
]
#include
"stdio_impl.h"
int
fgetpos
(
FILE
*
restrict f
,
fpos_t
*
restrict pos
)
{
off_t
off
=
__ftello
(
f
);
if
(
off
<
0
)
return
-
1
;
*(
long
long
*)
pos
=
off
;
return
0
;
}