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