diff options
author | peter <peter@FreeBSD.org> | 1998-03-29 08:04:49 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-03-29 08:04:49 +0000 |
commit | 1649ebee15c567ea4986b4226cf72495d63087bb (patch) | |
tree | 0be2bbe5664580679d7df88a22cf44ddf9ec02f9 /sys/i386/linux/linux_proto.h | |
parent | a9835c646b8e7594c69b589cf0cae602441a2245 (diff) | |
download | FreeBSD-src-1649ebee15c567ea4986b4226cf72495d63087bb.zip FreeBSD-src-1649ebee15c567ea4986b4226cf72495d63087bb.tar.gz |
regenerate
Diffstat (limited to 'sys/i386/linux/linux_proto.h')
-rw-r--r-- | sys/i386/linux/linux_proto.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sys/i386/linux/linux_proto.h b/sys/i386/linux/linux_proto.h index 4383dcf..8fd2ed0 100644 --- a/sys/i386/linux/linux_proto.h +++ b/sys/i386/linux/linux_proto.h @@ -2,7 +2,7 @@ * System call prototypes. * * DO NOT EDIT-- this file is automatically generated. - * created from Id: syscalls.master,v 1.6 1997/12/17 03:12:35 kato Exp + * created from Id: syscalls.master,v 1.10 1998/03/29 07:59:10 peter Exp */ #ifndef _LINUX_SYSPROTO_H_ @@ -55,7 +55,7 @@ struct linux_chmod_args { char * path; int mode; }; -struct linux_chown_args { +struct linux_lchown_args { char * path; int uid; int gid; @@ -364,6 +364,11 @@ struct linux_msync_args { int len; int fl; }; +struct linux_chown_args { + char * path; + int uid; + int gid; +}; int linux_setup __P((struct proc *, struct linux_setup_args *)); int linux_fork __P((struct proc *, struct linux_fork_args *)); int linux_open __P((struct proc *, struct linux_open_args *)); @@ -375,7 +380,7 @@ int linux_chdir __P((struct proc *, struct linux_chdir_args *)); int linux_time __P((struct proc *, struct linux_time_args *)); int linux_mknod __P((struct proc *, struct linux_mknod_args *)); int linux_chmod __P((struct proc *, struct linux_chmod_args *)); -int linux_chown __P((struct proc *, struct linux_chown_args *)); +int linux_lchown __P((struct proc *, struct linux_lchown_args *)); int linux_break __P((struct proc *, struct linux_break_args *)); int linux_stat __P((struct proc *, struct linux_stat_args *)); int linux_lseek __P((struct proc *, struct linux_lseek_args *)); @@ -458,6 +463,7 @@ int linux_llseek __P((struct proc *, struct linux_llseek_args *)); int linux_getdents __P((struct proc *, struct linux_getdents_args *)); int linux_newselect __P((struct proc *, struct linux_newselect_args *)); int linux_msync __P((struct proc *, struct linux_msync_args *)); +int linux_chown __P((struct proc *, struct linux_chown_args *)); #ifdef COMPAT_43 |