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