00001 #include <sys/types.h> 00002 #include "seek.h" 00003 00004 #define SET 0 /* sigh */ 00005 00006 int seek_set(int fd,seek_pos pos) 00007 { if (lseek(fd,(off_t) pos,SET) == -1) return -1; return 0; }