diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-02-27 08:09:04 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-02-27 08:09:04 +0000 |
commit | cc3168f1451f2932dea676a480d95729d9900183 (patch) | |
tree | 32c98bb3688ab7410d3d97f643ef2f9ab90da2c7 /sys/miscfs/union/union.h | |
parent | 08747189dfbfeed5008511fba7bd5f54eabd6b9a (diff) |
From NetBSD: update to 960217 sources
Diffstat (limited to 'sys/miscfs/union/union.h')
-rw-r--r-- | sys/miscfs/union/union.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/miscfs/union/union.h b/sys/miscfs/union/union.h index 71db34cad6f..e7485705181 100644 --- a/sys/miscfs/union/union.h +++ b/sys/miscfs/union/union.h @@ -1,4 +1,5 @@ -/* $NetBSD: union.h,v 1.8 1995/05/30 18:55:28 mycroft Exp $ */ +/* $OpenBSD: union.h,v 1.2 1996/02/27 08:08:59 niklas Exp $ */ +/* $NetBSD: union.h,v 1.9 1996/02/09 22:41:08 christos Exp $ */ /* * Copyright (c) 1994 The Regents of the University of California. @@ -127,6 +128,10 @@ extern void union_newsize __P((struct vnode *, off_t, off_t)); #define UPPERVP(vp) (VTOUNION(vp)->un_uppervp) #define OTHERVP(vp) (UPPERVP(vp) ? UPPERVP(vp) : LOWERVP(vp)) -extern int (**union_vnodeop_p)(); +extern int (**union_vnodeop_p) __P((void *)); extern struct vfsops union_vfsops; + +void union_init __P((void)); +int union_freevp __P((struct vnode *)); + #endif /* _KERNEL */ |