ref: ff1f02c31615450c31163df752fcab74567ad322 dir: /sys/src/ape/lib/ap/stdio/fgetpos.c/
/* * pANS stdio -- fgetpos */ #include "iolib.h" int fgetpos(FILE *f, fpos_t *pos){ *pos=ftell(f); return *pos==-1?-1:0; }