ref: 6c2f8fd5e4f0e0be44495a5526930fa3760cd87e dir: /lib9/seek.c/
#include "lib9.h" #include <sys/types.h> #include <fcntl.h> vlong seek(int fd, vlong where, int from) { return lseek(fd, where, from); }