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