diff options
Diffstat (limited to 'sys/compat/hpux')
-rw-r--r-- | sys/compat/hpux/hppa/syscalls.master | 6 | ||||
-rw-r--r-- | sys/compat/hpux/hpux_tty.c | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/sys/compat/hpux/hppa/syscalls.master b/sys/compat/hpux/hppa/syscalls.master index 192c8e27fda..2aaf9245949 100644 --- a/sys/compat/hpux/hppa/syscalls.master +++ b/sys/compat/hpux/hppa/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.1 2004/07/09 21:48:21 mickey Exp $ + $OpenBSD: syscalls.master,v 1.2 2004/07/10 22:37:33 mickey Exp $ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 @@ -84,8 +84,8 @@ 28 UNIMPL cnx_lw_pmon_read 29 STD { int hpux_sys_pause_6x(void); } 30 STD { int hpux_sys_utime_6x(char *fname, time_t *tptr); } -31 UNIMPL stty -32 UNIMPL gtty +31 STD { int hpux_sys_stty_6x(int fd, caddr_t arg); } +32 STD { int hpux_sys_gtty_6x(int fd, caddr_t arg); } 33 STD { int hpux_sys_access(char *path, int flags); } 34 STD { int hpux_sys_nice_6x(int nval); } 35 STD { int hpux_sys_ftime_6x(struct hpux_timeb *tp); } diff --git a/sys/compat/hpux/hpux_tty.c b/sys/compat/hpux/hpux_tty.c index 60547a2e474..9382cecc8c3 100644 --- a/sys/compat/hpux/hpux_tty.c +++ b/sys/compat/hpux/hpux_tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hpux_tty.c,v 1.10 2004/07/09 21:33:45 mickey Exp $ */ +/* $OpenBSD: hpux_tty.c,v 1.11 2004/07/10 22:37:33 mickey Exp $ */ /* $NetBSD: hpux_tty.c,v 1.14 1997/04/01 19:59:05 scottr Exp $ */ /* @@ -472,7 +472,6 @@ hpuxtobsdbaud(hpux_speed) return(hpuxtobsdbaudtab[hpux_speed & TIO_CBAUD]); } -#ifndef __hppa__ int hpux_sys_stty_6x(p, v, retval) struct proc *p; @@ -500,7 +499,6 @@ hpux_sys_gtty_6x(p, v, retval) return (getsettty(p, SCARG(uap, fd), HPUXTIOCSETP, SCARG(uap, arg))); } -#endif /* * Simplified version of ioctl() for use by |