From c97639b9230d9c3f9032d935d7892c5b513c8814 Mon Sep 17 00:00:00 2001 From: dg Date: Sat, 20 Aug 1994 03:49:02 +0000 Subject: 1) cleaned up after Garrett - fixed more redundant declarations, changed use of timeout_t -> timeout_func_t in aha1542 and aha1742 drivers. 2) fix a bug in the portalfs that was uncovered by better prototyping - specifically, the time must be converted from timeval to timespec before storing in va_atime. 3) fixed/added some miscellaneous prototypes --- sys/fs/cd9660/cd9660_vfsops.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'sys/fs/cd9660') diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c index a4aeaaf..90e2679 100644 --- a/sys/fs/cd9660/cd9660_vfsops.c +++ b/sys/fs/cd9660/cd9660_vfsops.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)cd9660_vfsops.c 8.3 (Berkeley) 1/31/94 - * $Id$ + * $Id: cd9660_vfsops.c,v 1.3 1994/08/02 07:41:33 davidg Exp $ */ #include @@ -58,8 +58,6 @@ #include #include -extern int enodev (); - struct vfsops cd9660_vfsops = { cd9660_mount, cd9660_start, @@ -87,7 +85,6 @@ int cd9660_mountroot() { register struct mount *mp; - extern struct vnode *rootvp; struct proc *p = curproc; /* XXX */ struct iso_mnt *imp; register struct fs *fs; @@ -229,7 +226,6 @@ iso_mountfs(devvp, mp, p, argp) int error = EINVAL, i, size; int needclose = 0; int ronly = (mp->mnt_flag & MNT_RDONLY) != 0; - extern struct vnode *rootvp; int j; int iso_bsize; int iso_blknum; -- cgit v1.1