ref: 8b160d1ea14a47f3e7da4c2484e7d1a8afcb7dd0 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); }