ref: 2247741fe0c788d5a48bca3f3aca02c5a3b8dcb2 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); }