Regen.
authordownsj <downsj@openbsd.org>
Sun, 26 Jan 1997 23:54:02 +0000 (23:54 +0000)
committerdownsj <downsj@openbsd.org>
Sun, 26 Jan 1997 23:54:02 +0000 (23:54 +0000)
sys/compat/sunos/sunos_syscall.h
sys/compat/sunos/sunos_syscallargs.h
sys/compat/sunos/sunos_syscalls.c
sys/compat/sunos/sunos_sysent.c
sys/compat/ultrix/ultrix_syscall.h
sys/compat/ultrix/ultrix_syscallargs.h
sys/compat/ultrix/ultrix_syscalls.c
sys/compat/ultrix/ultrix_sysent.c

index f1f9518..66f7107 100644 (file)
@@ -2,7 +2,7 @@
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        OpenBSD: syscalls.master,v 1.5 1996/08/25 12:19:58 deraadt Exp 
+ * created from        OpenBSD: syscalls.master,v 1.6 1997/01/26 23:52:03 downsj Exp 
  */
 
 #define        SUNOS_SYS_syscall       0
@@ -21,7 +21,7 @@
                                /* 13 is obsolete time */
 #define        SUNOS_SYS_mknod 14
 #define        SUNOS_SYS_chmod 15
-#define        SUNOS_SYS_chown 16
+#define        SUNOS_SYS_lchown        16
 #define        SUNOS_SYS_break 17
                                /* 18 is obsolete stat */
 #define        SUNOS_SYS_lseek 19
index 95630c8..d219212 100644 (file)
@@ -2,7 +2,7 @@
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        OpenBSD: syscalls.master,v 1.5 1996/08/25 12:19:58 deraadt Exp 
+ * created from        OpenBSD: syscalls.master,v 1.6 1997/01/26 23:52:03 downsj Exp 
  */
 
 #define        syscallarg(x)   union { x datum; register_t pad; }
@@ -224,7 +224,7 @@ int sunos_sys_execv __P((struct proc *, void *, register_t *));
 int    sys_chdir       __P((struct proc *, void *, register_t *));
 int    sunos_sys_mknod __P((struct proc *, void *, register_t *));
 int    sys_chmod       __P((struct proc *, void *, register_t *));
-int    sys_chown       __P((struct proc *, void *, register_t *));
+int    sys_lchown      __P((struct proc *, void *, register_t *));
 int    sys_obreak      __P((struct proc *, void *, register_t *));
 int    compat_43_sys_lseek     __P((struct proc *, void *, register_t *));
 int    sys_getpid      __P((struct proc *, void *, register_t *));
index 49cffe1..4eda234 100644 (file)
@@ -2,7 +2,7 @@
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        OpenBSD: syscalls.master,v 1.5 1996/08/25 12:19:58 deraadt Exp 
+ * created from        OpenBSD: syscalls.master,v 1.6 1997/01/26 23:52:03 downsj Exp 
  */
 
 char *sunos_syscallnames[] = {
@@ -22,7 +22,7 @@ char *sunos_syscallnames[] = {
        "#13 (obsolete time)",          /* 13 = obsolete time */
        "mknod",                        /* 14 = mknod */
        "chmod",                        /* 15 = chmod */
-       "chown",                        /* 16 = chown */
+       "lchown",                       /* 16 = lchown */
        "break",                        /* 17 = break */
        "#18 (obsolete stat)",          /* 18 = obsolete stat */
        "lseek",                        /* 19 = lseek */
index c787c19..8c18c33 100644 (file)
@@ -2,7 +2,7 @@
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        OpenBSD: syscalls.master,v 1.5 1996/08/25 12:19:58 deraadt Exp 
+ * created from        OpenBSD: syscalls.master,v 1.6 1997/01/26 23:52:03 downsj Exp 
  */
 
 #include <sys/param.h>
@@ -67,8 +67,8 @@ struct sysent sunos_sysent[] = {
            sunos_sys_mknod },                  /* 14 = mknod */
        { 2, s(struct sys_chmod_args),
            sys_chmod },                        /* 15 = chmod */
-       { 3, s(struct sys_chown_args),
-           sys_chown },                        /* 16 = chown */
+       { 3, s(struct sys_lchown_args),
+           sys_lchown },                       /* 16 = lchown */
        { 1, s(struct sys_obreak_args),
            sys_obreak },                       /* 17 = break */
        { 0, 0,
index 6c17dea..2ca4cec 100644 (file)
@@ -2,7 +2,7 @@
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        OpenBSD: syscalls.master,v 1.5 1996/08/25 12:20:00 deraadt Exp 
+ * created from        OpenBSD: syscalls.master,v 1.6 1997/01/26 23:52:04 downsj Exp 
  */
 
 #define        ULTRIX_SYS_syscall      0
@@ -21,7 +21,7 @@
                                /* 13 is obsolete time */
 #define        ULTRIX_SYS_mknod        14
 #define        ULTRIX_SYS_chmod        15
-#define        ULTRIX_SYS_chown        16
+#define        ULTRIX_SYS_lchown       16
 #define        ULTRIX_SYS_break        17
                                /* 18 is obsolete stat */
 #define        ULTRIX_SYS_lseek        19
index 85b3392..4e11eed 100644 (file)
@@ -2,7 +2,7 @@
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        OpenBSD: syscalls.master,v 1.5 1996/08/25 12:20:00 deraadt Exp 
+ * created from        OpenBSD: syscalls.master,v 1.6 1997/01/26 23:52:04 downsj Exp 
  */
 
 #define        syscallarg(x)   union { x datum; register_t pad; }
@@ -192,7 +192,7 @@ int ultrix_sys_execv        __P((struct proc *, void *, register_t *));
 int    sys_chdir       __P((struct proc *, void *, register_t *));
 int    ultrix_sys_mknod        __P((struct proc *, void *, register_t *));
 int    sys_chmod       __P((struct proc *, void *, register_t *));
-int    sys_chown       __P((struct proc *, void *, register_t *));
+int    sys_lchown      __P((struct proc *, void *, register_t *));
 int    sys_obreak      __P((struct proc *, void *, register_t *));
 int    compat_43_sys_lseek     __P((struct proc *, void *, register_t *));
 int    sys_getpid      __P((struct proc *, void *, register_t *));
index 49c3af1..4d35997 100644 (file)
@@ -2,7 +2,7 @@
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        OpenBSD: syscalls.master,v 1.5 1996/08/25 12:20:00 deraadt Exp 
+ * created from        OpenBSD: syscalls.master,v 1.6 1997/01/26 23:52:04 downsj Exp 
  */
 
 char *ultrix_syscallnames[] = {
@@ -22,7 +22,7 @@ char *ultrix_syscallnames[] = {
        "#13 (obsolete time)",          /* 13 = obsolete time */
        "mknod",                        /* 14 = mknod */
        "chmod",                        /* 15 = chmod */
-       "chown",                        /* 16 = chown */
+       "lchown",                       /* 16 = lchown */
        "break",                        /* 17 = break */
        "#18 (obsolete stat)",          /* 18 = obsolete stat */
        "lseek",                        /* 19 = lseek */
index b26d894..c577c7a 100644 (file)
@@ -2,7 +2,7 @@
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        OpenBSD: syscalls.master,v 1.5 1996/08/25 12:20:00 deraadt Exp 
+ * created from        OpenBSD: syscalls.master,v 1.6 1997/01/26 23:52:04 downsj Exp 
  */
 
 #include <sys/param.h>
@@ -65,8 +65,8 @@ struct sysent ultrix_sysent[] = {
            ultrix_sys_mknod },                 /* 14 = mknod */
        { 2, s(struct sys_chmod_args),
            sys_chmod },                        /* 15 = chmod */
-       { 3, s(struct sys_chown_args),
-           sys_chown },                        /* 16 = chown */
+       { 3, s(struct sys_lchown_args),
+           sys_lchown },                       /* 16 = lchown */
        { 1, s(struct sys_obreak_args),
            sys_obreak },                       /* 17 = break */
        { 0, 0,