diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-25 12:21:49 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-25 12:21:49 +0000 |
commit | 03abe9b1bcd7af738406e8ca96bd745609d006d5 (patch) | |
tree | 05966a0ce0a0c5a6435fb6f7cd9faed6f94153aa /sys/compat/hpux/hpux_syscallargs.h | |
parent | c0d8e069269f4b68db3b7b60ad34b70bf98b9b82 (diff) |
sync
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 *)); |