summaryrefslogtreecommitdiff
path: root/sys/src/libstdio/fsetpos.c
blob: 540e83a7ebd1c893e31e93102751971a6ed7e3e1 (plain)
1
2
3
4
5
6
7
/*
 * pANS stdio -- fsetpos
 */
#include "iolib.h"
int fsetpos(FILE *f, const fpos_t *pos){
	return fseek(f, *pos, SEEK_SET);
}