summaryrefslogtreecommitdiff
path: root/sys/i386/linux/linux_proto.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/i386/linux/linux_proto.h')
-rw-r--r--sys/i386/linux/linux_proto.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/i386/linux/linux_proto.h b/sys/i386/linux/linux_proto.h
index 78b66e8cd206..be5bc9f4e19a 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.19 1999/08/14 17:14:13 marcel Exp
+ * created from Id: syscalls.master,v 1.20 1999/08/14 18:19:00 marcel Exp
*/
#ifndef _LINUX_SYSPROTO_H_
@@ -411,6 +411,10 @@ struct linux_chown_args {
int uid; char uid_[PAD_(int)];
int gid; char gid_[PAD_(int)];
};
+struct linux_getcwd_args {
+ char * buf; char buf_[PAD_(char *)];
+ unsigned long bufsize; char bufsize_[PAD_(unsigned long)];
+};
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 *));
@@ -514,6 +518,7 @@ int linux_mremap __P((struct proc *, struct linux_mremap_args *));
int linux_rt_sigaction __P((struct proc *, struct linux_rt_sigaction_args *));
int linux_rt_sigprocmask __P((struct proc *, struct linux_rt_sigprocmask_args *));
int linux_chown __P((struct proc *, struct linux_chown_args *));
+int linux_getcwd __P((struct proc *, struct linux_getcwd_args *));
#ifdef COMPAT_43