diff options
Diffstat (limited to 'sys/compat/hpux/hpux_syscallargs.h')
-rw-r--r-- | sys/compat/hpux/hpux_syscallargs.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/compat/hpux/hpux_syscallargs.h b/sys/compat/hpux/hpux_syscallargs.h index 41d03a4556d..f5b087bfa39 100644 --- a/sys/compat/hpux/hpux_syscallargs.h +++ b/sys/compat/hpux/hpux_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.3 1996/08/02 20:29:10 niklas Exp + * created from OpenBSD: syscalls.master,v 1.4 1996/08/25 12:19:51 deraadt Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -172,6 +172,12 @@ struct hpux_sys_readlink_args { syscallarg(int) count; }; +struct hpux_sys_execve_args { + syscallarg(char *) path; + syscallarg(char **) argp; + syscallarg(char **) envp; +}; + struct hpux_sys_fcntl_args { syscallarg(int) fd; syscallarg(int) cmd; @@ -422,7 +428,7 @@ int hpux_sys_ioctl __P((struct proc *, void *, register_t *)); int hpux_sys_symlink __P((struct proc *, void *, register_t *)); int hpux_sys_utssys __P((struct proc *, void *, register_t *)); int hpux_sys_readlink __P((struct proc *, void *, register_t *)); -int sys_execve __P((struct proc *, void *, register_t *)); +int hpux_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 hpux_sys_fcntl __P((struct proc *, void *, register_t *)); |