diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-07-24 22:00:25 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-07-24 22:00:25 +0000 |
commit | 5adf94b59c8d8c11af0c306e44587ebfd44e535b (patch) | |
tree | b1df965decd1d12b519f87a5ce87caa224efcb65 /sys | |
parent | 5badf698789f23c2b45c1690491097269372b344 (diff) |
kill some externs that are not there anymore and had left other places for a better void ages ago
Diffstat (limited to 'sys')
-rw-r--r-- | sys/adosfs/advnops.c | 4 | ||||
-rw-r--r-- | sys/kern/vfs_init.c | 4 | ||||
-rw-r--r-- | sys/xfs/xfs_fs.h | 4 |
3 files changed, 3 insertions, 9 deletions
diff --git a/sys/adosfs/advnops.c b/sys/adosfs/advnops.c index 86cf23adcd6..e02a102e27c 100644 --- a/sys/adosfs/advnops.c +++ b/sys/adosfs/advnops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: advnops.c,v 1.24 2002/05/23 13:40:50 art Exp $ */ +/* $OpenBSD: advnops.c,v 1.25 2003/07/24 22:00:24 mickey Exp $ */ /* $NetBSD: advnops.c,v 1.32 1996/10/13 02:52:09 christos Exp $ */ /* @@ -51,8 +51,6 @@ #include <miscfs/specfs/specdev.h> #include <adosfs/adosfs.h> -extern struct vnodeops adosfs_vnodeops; - int adosfs_advlock(void *); int adosfs_open(void *); int adosfs_getattr(void *); diff --git a/sys/kern/vfs_init.c b/sys/kern/vfs_init.c index 7f737aa02ad..91d7a2936fc 100644 --- a/sys/kern/vfs_init.c +++ b/sys/kern/vfs_init.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_init.c,v 1.14 2003/06/02 23:28:07 millert Exp $ */ +/* $OpenBSD: vfs_init.c,v 1.15 2003/07/24 22:00:24 mickey Exp $ */ /* $NetBSD: vfs_init.c,v 1.6 1996/02/09 19:00:58 christos Exp $ */ /* @@ -228,8 +228,6 @@ vfs_op_init() /* * Routines having to do with the management of the vnode table. */ -extern struct vnodeops dead_vnodeops; -extern struct vnodeops spec_vnodeops; struct vattr va_null; /* diff --git a/sys/xfs/xfs_fs.h b/sys/xfs/xfs_fs.h index bdab1525ea8..6031048f79c 100644 --- a/sys/xfs/xfs_fs.h +++ b/sys/xfs/xfs_fs.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. */ -/* $Id: xfs_fs.h,v 1.6 2002/06/07 04:10:32 hin Exp $ */ +/* $Id: xfs_fs.h,v 1.7 2003/07/24 22:00:24 mickey Exp $ */ #ifndef _xfs_h #define _xfs_h @@ -72,8 +72,6 @@ struct xfs { extern struct xfs xfs[]; -extern struct vnodeops xfs_vnodeops; - struct xfs_node *xfs_node_find(struct xfs *, struct xfs_handle *); int new_xfs_node(struct xfs *, struct xfs_msg_node *, struct xfs_node **, struct proc *); |