diff options
author | bde <bde@FreeBSD.org> | 1995-11-04 10:35:26 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-11-04 10:35:26 +0000 |
commit | 3c4628f918646101de23b7064e79a19c59fefca4 (patch) | |
tree | b36f64ab86bed38aae5490fe716af512bb58fbb8 | |
parent | 420728c56820009ab1d7dcd05c6fa12ed03aeda8 (diff) | |
download | FreeBSD-src-3c4628f918646101de23b7064e79a19c59fefca4.zip FreeBSD-src-3c4628f918646101de23b7064e79a19c59fefca4.tar.gz |
Prototype getvnode() in the right place (where ibcs2_stat.c can see it).
-rw-r--r-- | sys/kern/vfs_extattr.c | 3 | ||||
-rw-r--r-- | sys/kern/vfs_syscalls.c | 3 | ||||
-rw-r--r-- | sys/sys/filedesc.h | 3 |
3 files changed, 4 insertions, 5 deletions
diff --git a/sys/kern/vfs_extattr.c b/sys/kern/vfs_extattr.c index b0cf35c..3c8aed0 100644 --- a/sys/kern/vfs_extattr.c +++ b/sys/kern/vfs_extattr.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_syscalls.c 8.13 (Berkeley) 4/15/94 - * $Id: vfs_syscalls.c,v 1.34 1995/10/08 00:06:10 swallace Exp $ + * $Id: vfs_syscalls.c,v 1.35 1995/10/22 09:32:28 davidg Exp $ */ #include <sys/param.h> @@ -61,7 +61,6 @@ #include <sys/sysctl.h> static int change_dir __P((struct nameidata *ndp, struct proc *p)); -int getvnode __P((struct filedesc *, int, struct file **)); /* * Virtual File System System Calls diff --git a/sys/kern/vfs_syscalls.c b/sys/kern/vfs_syscalls.c index b0cf35c..3c8aed0 100644 --- a/sys/kern/vfs_syscalls.c +++ b/sys/kern/vfs_syscalls.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_syscalls.c 8.13 (Berkeley) 4/15/94 - * $Id: vfs_syscalls.c,v 1.34 1995/10/08 00:06:10 swallace Exp $ + * $Id: vfs_syscalls.c,v 1.35 1995/10/22 09:32:28 davidg Exp $ */ #include <sys/param.h> @@ -61,7 +61,6 @@ #include <sys/sysctl.h> static int change_dir __P((struct nameidata *ndp, struct proc *p)); -int getvnode __P((struct filedesc *, int, struct file **)); /* * Virtual File System System Calls diff --git a/sys/sys/filedesc.h b/sys/sys/filedesc.h index 4742a01..7f71cd8 100644 --- a/sys/sys/filedesc.h +++ b/sys/sys/filedesc.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)filedesc.h 8.1 (Berkeley) 6/2/93 - * $Id: filedesc.h,v 1.5 1995/03/16 18:16:16 bde Exp $ + * $Id: filedesc.h,v 1.6 1995/05/30 08:14:20 rgrimes Exp $ */ #ifndef _SYS_FILEDESC_H_ @@ -104,6 +104,7 @@ struct filedesc *fdcopy __P((struct proc *p)); void fdfree __P((struct proc *p)); int closef __P((struct file *fp,struct proc *p)); void fdcloseexec __P((struct proc *p)); +int getvnode __P((struct filedesc *fdp, int fd, struct file **fpp)); #endif #endif |