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