*** init.c.orig Thu Sep 10 07:59:47 1992 --- init.c Mon Oct 3 11:23:36 1994 *************** *** 311,320 **** static struct bootsector * read_boot() { ! long lseek(); static struct bootsector boot; ! if (lseek(fd, disk_offset, 0) < 0) return(NULL); /* read the first sector */ if (read(fd, (char *) &boot, MSECTOR_SIZE) != MSECTOR_SIZE) --- 311,320 ---- static struct bootsector * read_boot() { ! off_t lseek(); static struct bootsector boot; ! if (lseek(fd, (off_t) disk_offset, 0) < 0) return(NULL); /* read the first sector */ if (read(fd, (char *) &boot, MSECTOR_SIZE) != MSECTOR_SIZE)