diff options
Diffstat (limited to 'sys/compat/hpux/hppa/hpux_syscallargs.h')
-rw-r--r-- | sys/compat/hpux/hppa/hpux_syscallargs.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/sys/compat/hpux/hppa/hpux_syscallargs.h b/sys/compat/hpux/hppa/hpux_syscallargs.h index 89c1ca13232..2f4abb5dae2 100644 --- a/sys/compat/hpux/hppa/hpux_syscallargs.h +++ b/sys/compat/hpux/hppa/hpux_syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: hpux_syscallargs.h,v 1.1 2004/07/09 22:20:29 mickey Exp $ */ +/* $OpenBSD: hpux_syscallargs.h,v 1.2 2004/07/10 22:38:11 mickey Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.1 2004/07/09 21:48:21 mickey Exp + * created from OpenBSD: syscalls.master,v 1.2 2004/07/10 22:37:33 mickey Exp */ #ifdef syscallarg @@ -104,6 +104,16 @@ struct hpux_sys_utime_6x_args { syscallarg(time_t *) tptr; }; +struct hpux_sys_stty_6x_args { + syscallarg(int) fd; + syscallarg(caddr_t) arg; +}; + +struct hpux_sys_gtty_6x_args { + syscallarg(int) fd; + syscallarg(caddr_t) arg; +}; + struct hpux_sys_access_args { syscallarg(char *) path; syscallarg(int) flags; @@ -361,6 +371,8 @@ int hpux_sys_ptrace(struct proc *, void *, register_t *); int hpux_sys_alarm_6x(struct proc *, void *, register_t *); int hpux_sys_pause_6x(struct proc *, void *, register_t *); int hpux_sys_utime_6x(struct proc *, void *, register_t *); +int hpux_sys_stty_6x(struct proc *, void *, register_t *); +int hpux_sys_gtty_6x(struct proc *, void *, register_t *); int hpux_sys_access(struct proc *, void *, register_t *); int hpux_sys_nice_6x(struct proc *, void *, register_t *); int hpux_sys_ftime_6x(struct proc *, void *, register_t *); |