From 2b3e3223c1d6d17e4bd085292a6424a37b58fb23 Mon Sep 17 00:00:00 2001 From: eivind Date: Tue, 5 Jan 1999 18:12:29 +0000 Subject: [PATCH] Finish staticization. --- sys/kern/vfs_export.c | 10 +++++----- sys/kern/vfs_subr.c | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/sys/kern/vfs_export.c b/sys/kern/vfs_export.c index f8bc7f7a7100..9b7e241d0b69 100644 --- a/sys/kern/vfs_export.c +++ b/sys/kern/vfs_export.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; 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;