ref: 6b2d1f0186f2e38a3b0cd6a19b5980dccb045c3c 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); }