diff options
| author | Eivind Eklund <eivind@FreeBSD.org> | 1999-01-05 18:12:29 +0000 |
|---|---|---|
| committer | Eivind Eklund <eivind@FreeBSD.org> | 1999-01-05 18:12:29 +0000 |
| commit | 0df45b5a31c4870ad4de9e48d756e2579f860e2c (patch) | |
| tree | bc7ffdcdcf26624c120bc63e23476ff681177d4b /sys/kern/vfs_subr.c | |
| parent | 431463e0438dcea0d2b5a8eb460f255c7bd32a38 (diff) | |
Notes
Diffstat (limited to 'sys/kern/vfs_subr.c')
| -rw-r--r-- | sys/kern/vfs_subr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index f8bc7f7a7100..9b7e241d0b69 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95 - * $Id: vfs_subr.c,v 1.177 1998/12/24 12:07:16 bde Exp $ + * $Id: vfs_subr.c,v 1.178 1999/01/02 11:34:55 bde Exp $ */ /* @@ -2693,12 +2693,12 @@ vn_pollgone(vp) * Routine to create and manage a filesystem syncer vnode. */ #define sync_close ((int (*) __P((struct vop_close_args *)))nullop) -int sync_fsync __P((struct vop_fsync_args *)); -int sync_inactive __P((struct vop_inactive_args *)); -int sync_reclaim __P((struct vop_reclaim_args *)); +static int sync_fsync __P((struct vop_fsync_args *)); +static int sync_inactive __P((struct vop_inactive_args *)); +static int sync_reclaim __P((struct vop_reclaim_args *)); #define sync_lock ((int (*) __P((struct vop_lock_args *)))vop_nolock) #define sync_unlock ((int (*) __P((struct vop_unlock_args *)))vop_nounlock) -int sync_print __P((struct vop_print_args *)); +static int sync_print __P((struct vop_print_args *)); #define sync_islocked ((int(*) __P((struct vop_islocked_args *)))vop_noislocked) static vop_t **sync_vnodeop_p; |
