summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1997-01-26 05:22:15 +0000
committerJason Downs <downsj@cvs.openbsd.org>1997-01-26 05:22:15 +0000
commit95bae6db84b246b767f9d2855b98e223a0f4ba81 (patch)
treedd1c6ec967481616baf8eddcb81f1318920a0ef8
parent70fb5d200fe22fcfd663bf656e7e69040b8acd73 (diff)
Regen.
-rw-r--r--sys/sys/syscall.h5
-rw-r--r--sys/sys/syscallargs.h9
-rw-r--r--sys/sys/vnode_if.h2
3 files changed, 12 insertions, 4 deletions
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index 03319a23e6f..cf8550cb56f 100644
--- a/sys/sys/syscall.h
+++ b/sys/sys/syscall.h
@@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.12 1996/10/29 03:46:28 deraadt Exp
+ * created from OpenBSD: syscalls.master,v 1.13 1997/01/26 05:18:27 downsj Exp
*/
#define SYS_syscall 0
@@ -210,4 +210,5 @@
#define SYS_rfork 251
#define SYS_poll 252
#define SYS_issetugid 253
-#define SYS_MAXSYSCALL 254
+#define SYS_lchown 254
+#define SYS_MAXSYSCALL 255
diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h
index 292c1eaa579..1cd547a5e07 100644
--- a/sys/sys/syscallargs.h
+++ b/sys/sys/syscallargs.h
@@ -2,7 +2,7 @@
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.12 1996/10/29 03:46:28 deraadt Exp
+ * created from OpenBSD: syscalls.master,v 1.13 1997/01/26 05:18:27 downsj Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -969,6 +969,12 @@ struct sys_poll_args {
syscallarg(int) timeout;
};
+struct sys_lchown_args {
+ syscallarg(char *) path;
+ syscallarg(int) uid;
+ syscallarg(int) gid;
+};
+
/*
* System call prototypes.
*/
@@ -1218,3 +1224,4 @@ int sys_minherit __P((struct proc *, void *, register_t *));
int sys_rfork __P((struct proc *, void *, register_t *));
int sys_poll __P((struct proc *, void *, register_t *));
int sys_issetugid __P((struct proc *, void *, register_t *));
+int sys_lchown __P((struct proc *, void *, register_t *));
diff --git a/sys/sys/vnode_if.h b/sys/sys/vnode_if.h
index d5997cb1b46..abf129f1126 100644
--- a/sys/sys/vnode_if.h
+++ b/sys/sys/vnode_if.h
@@ -5,7 +5,7 @@
* Created from the file:
* OpenBSD: vnode_if.src,v 1.4 1996/05/22 11:47:12 deraadt Exp
* by the script:
- * OpenBSD
+ * OpenBSD: vnode_if.sh,v 1.3 1996/04/19 16:09:13 niklas Exp
*/
/*