ref: 963cfc9a6f6e721f52aa949e6d1af0c3e8dc2ecc dir: /sys/src/libstdio/fsetpos.c/
/* * pANS stdio -- fsetpos */ #include "iolib.h" int fsetpos(FILE *f, const fpos_t *pos){ return fseek(f, *pos, SEEK_SET); }