mirror of
https://github.com/fluencelabs/musl
synced 2025-05-05 12:02:13 +00:00
9 lines
138 B
C
9 lines
138 B
C
#include "stdio_impl.h"
|
|
|
|
int fsetpos(FILE *f, const fpos_t *pos)
|
|
{
|
|
return __fseeko(f, *(const off_t *)pos, SEEK_SET);
|
|
}
|
|
|
|
LFS64(fsetpos);
|