1#include "stdio_impl.h"
2
3int fgetpos(FILE* restrict f, fpos_t* restrict pos) {
4    off_t off = __ftello(f);
5    if (off < 0)
6        return -1;
7    *(off_t*)pos = off;
8    return 0;
9}
10