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