xref: /aosp_15_r20/external/musl/src/stdio/fsetpos.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1*c9945492SAndroid Build Coastguard Worker #include "stdio_impl.h"
2*c9945492SAndroid Build Coastguard Worker 
fsetpos(FILE * f,const fpos_t * pos)3*c9945492SAndroid Build Coastguard Worker int fsetpos(FILE *f, const fpos_t *pos)
4*c9945492SAndroid Build Coastguard Worker {
5*c9945492SAndroid Build Coastguard Worker 	return __fseeko(f, *(const long long *)pos, SEEK_SET);
6*c9945492SAndroid Build Coastguard Worker }
7