ref: 2d555bc3fcffc27ed2c1e9b40a5a8eef63c0d5da 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); }