1 #include "lib9.h" 2 #include <sys/types.h> 3 #include <fcntl.h> 4 5 vlong seek(int fd,vlong where,int from)6 seek(int fd, vlong where, int from) 7 { 8 return lseek(fd, where, from); 9 } 10