diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1997-11-06 19:29:57 +0000 | 
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1997-11-06 19:29:57 +0000 | 
| commit | cb226aaa624a8d8e6c7c5f9aaaa1b415f0e2cf4d (patch) | |
| tree | 41d30ac216370f1121c6fc84569ee33e9be285d6 /sys/compat/linux/linux_stats.c | |
| parent | c62a76ba79b3368c05aae26e78a7631283e13307 (diff) | |
Notes
Diffstat (limited to 'sys/compat/linux/linux_stats.c')
| -rw-r--r-- | sys/compat/linux/linux_stats.c | 13 | 
1 files changed, 6 insertions, 7 deletions
diff --git a/sys/compat/linux/linux_stats.c b/sys/compat/linux/linux_stats.c index 2505d742c8df..3606e20f9cb7 100644 --- a/sys/compat/linux/linux_stats.c +++ b/sys/compat/linux/linux_stats.c @@ -25,7 +25,7 @@   * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF   * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.   * - *  $Id$ + *  $Id: linux_stats.c,v 1.8 1997/02/22 09:38:25 peter Exp $   */  #include <sys/param.h> @@ -91,7 +91,7 @@ newstat_copyout(struct stat *buf, void *ubuf)  }  int -linux_newstat(struct proc *p, struct linux_newstat_args *args, int *retval) +linux_newstat(struct proc *p, struct linux_newstat_args *args)  {      struct stat buf;      struct nameidata nd; @@ -119,10 +119,9 @@ linux_newstat(struct proc *p, struct linux_newstat_args *args, int *retval)   * Get file status; this version does not follow links.   */  int -linux_newlstat(p, uap, retval) +linux_newlstat(p, uap)  	struct proc *p;  	struct linux_newlstat_args *uap; -	int *retval;  {  	int error;  	struct vnode *vp, *dvp; @@ -178,7 +177,7 @@ linux_newlstat(p, uap, retval)  }  int -linux_newfstat(struct proc *p, struct linux_newfstat_args *args, int *retval) +linux_newfstat(struct proc *p, struct linux_newfstat_args *args)  {      struct filedesc *fdp = p->p_fd;      struct file *fp; @@ -224,7 +223,7 @@ struct linux_statfs_buf {  };  int -linux_statfs(struct proc *p, struct linux_statfs_args *args, int *retval) +linux_statfs(struct proc *p, struct linux_statfs_args *args)  {  	struct mount *mp;  	struct nameidata *ndp; @@ -265,7 +264,7 @@ linux_statfs(struct proc *p, struct linux_statfs_args *args, int *retval)  }  int -linux_fstatfs(struct proc *p, struct linux_fstatfs_args *args, int *retval) +linux_fstatfs(struct proc *p, struct linux_fstatfs_args *args)  {  	struct file *fp;  	struct mount *mp;  | 
