mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-08 13:28:05 +00:00
Fixed a missing/misplaced/misstyled prototype.
This commit is contained in:
parent
d03815ca62
commit
a954e88d0b
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=32120
@ -37,7 +37,7 @@
|
||||
* @(#)procfs.h 8.9 (Berkeley) 5/14/95
|
||||
*
|
||||
* From:
|
||||
* $Id: procfs.h,v 1.16 1997/08/12 04:34:27 sef Exp $
|
||||
* $Id: procfs.h,v 1.17 1997/09/07 05:26:16 bde Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -135,6 +135,8 @@ struct reg;
|
||||
struct fpreg;
|
||||
|
||||
#define PFIND(pid) ((pid) ? pfind(pid) : &proc0)
|
||||
|
||||
void procfs_exit __P((struct proc *));
|
||||
int procfs_freevp __P((struct vnode *));
|
||||
int procfs_allocvp __P((struct mount *, struct vnode **, long, pfstype));
|
||||
struct vnode *procfs_findtextvp __P((struct proc *));
|
||||
|
@ -36,7 +36,7 @@
|
||||
*
|
||||
* @(#)procfs_vfsops.c 8.7 (Berkeley) 5/10/95
|
||||
*
|
||||
* $Id: procfs_vfsops.c,v 1.17 1997/08/16 19:15:19 wollman Exp $
|
||||
* $Id: procfs_vfsops.c,v 1.18 1997/12/08 01:06:24 sef Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -61,8 +61,6 @@ static int procfs_statfs __P((struct mount *mp, struct statfs *sbp,
|
||||
static int procfs_unmount __P((struct mount *mp, int mntflags,
|
||||
struct proc *p));
|
||||
|
||||
extern void procfs_exit __P((struct proc *));
|
||||
|
||||
/*
|
||||
* VFS Operations.
|
||||
*
|
||||
|
@ -37,7 +37,7 @@
|
||||
* @(#)procfs.h 8.9 (Berkeley) 5/14/95
|
||||
*
|
||||
* From:
|
||||
* $Id: procfs.h,v 1.16 1997/08/12 04:34:27 sef Exp $
|
||||
* $Id: procfs.h,v 1.17 1997/09/07 05:26:16 bde Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -135,6 +135,8 @@ struct reg;
|
||||
struct fpreg;
|
||||
|
||||
#define PFIND(pid) ((pid) ? pfind(pid) : &proc0)
|
||||
|
||||
void procfs_exit __P((struct proc *));
|
||||
int procfs_freevp __P((struct vnode *));
|
||||
int procfs_allocvp __P((struct mount *, struct vnode **, long, pfstype));
|
||||
struct vnode *procfs_findtextvp __P((struct proc *));
|
||||
|
@ -36,7 +36,7 @@
|
||||
*
|
||||
* @(#)procfs_vfsops.c 8.7 (Berkeley) 5/10/95
|
||||
*
|
||||
* $Id: procfs_vfsops.c,v 1.17 1997/08/16 19:15:19 wollman Exp $
|
||||
* $Id: procfs_vfsops.c,v 1.18 1997/12/08 01:06:24 sef Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -61,8 +61,6 @@ static int procfs_statfs __P((struct mount *mp, struct statfs *sbp,
|
||||
static int procfs_unmount __P((struct mount *mp, int mntflags,
|
||||
struct proc *p));
|
||||
|
||||
extern void procfs_exit __P((struct proc *));
|
||||
|
||||
/*
|
||||
* VFS Operations.
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user