Sign in
mojo
/
mojo-testing
/
136367b988e1f8907ca127c30cccde29f2a1aea9
/
.
/
fusl
/
src
/
stdio
/
fsetpos.c
blob: 57fc4d33e11bc9b3cd2483dd281eb8df2bc9e4b6 [
file
]
#include
"stdio_impl.h"
int
fsetpos
(
FILE
*
f
,
const
fpos_t
*
pos
)
{
return
__fseeko
(
f
,
*(
const
off_t
*)
pos
,
SEEK_SET
);
}