diff options
Diffstat (limited to 'sys/compat/ultrix/ultrix_syscallargs.h')
-rw-r--r-- | sys/compat/ultrix/ultrix_syscallargs.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/compat/ultrix/ultrix_syscallargs.h b/sys/compat/ultrix/ultrix_syscallargs.h index 03320491e4a..85b3392a682 100644 --- a/sys/compat/ultrix/ultrix_syscallargs.h +++ b/sys/compat/ultrix/ultrix_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.4 1996/08/02 20:29:13 niklas Exp + * created from OpenBSD: syscalls.master,v 1.5 1996/08/25 12:20:00 deraadt Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -58,6 +58,12 @@ struct ultrix_sys_ioctl_args { syscallarg(caddr_t) data; }; +struct ultrix_sys_execve_args { + syscallarg(char *) path; + syscallarg(char **) argp; + syscallarg(char **) envp; +}; + struct ultrix_sys_mmap_args { syscallarg(caddr_t) addr; syscallarg(size_t) len; @@ -207,7 +213,7 @@ int ultrix_sys_ioctl __P((struct proc *, void *, register_t *)); int sys_reboot __P((struct proc *, void *, register_t *)); int sys_symlink __P((struct proc *, void *, register_t *)); int sys_readlink __P((struct proc *, void *, register_t *)); -int sys_execve __P((struct proc *, void *, register_t *)); +int ultrix_sys_execve __P((struct proc *, void *, register_t *)); int sys_umask __P((struct proc *, void *, register_t *)); int sys_chroot __P((struct proc *, void *, register_t *)); int compat_43_sys_fstat __P((struct proc *, void *, register_t *)); |