diff options
Diffstat (limited to 'sys/compat/ibcs2/ibcs2_syscallargs.h')
-rw-r--r-- | sys/compat/ibcs2/ibcs2_syscallargs.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/compat/ibcs2/ibcs2_syscallargs.h b/sys/compat/ibcs2/ibcs2_syscallargs.h index b82aa343256..09d99d19ccc 100644 --- a/sys/compat/ibcs2/ibcs2_syscallargs.h +++ b/sys/compat/ibcs2/ibcs2_syscallargs.h @@ -2,7 +2,7 @@ * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.8 1996/01/07 06:09:43 mycroft Exp + * created from OpenBSD: syscalls.master,v 1.4 1996/08/02 20:20:28 niklas Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -255,9 +255,9 @@ struct ibcs2_sys_putmsg_args { syscallarg(int) flags; }; -struct ibcs2_sys_poll_args { - syscallarg(struct ibcs2_pollfd *) fds; - syscallarg(long) nfds; +struct sys_poll_args { + syscallarg(struct pollfd *) fds; + syscallarg(unsigned long) nfds; syscallarg(int) timeout; }; @@ -423,7 +423,7 @@ int ibcs2_sys_getdents __P((struct proc *, void *, register_t *)); int ibcs2_sys_sysfs __P((struct proc *, void *, register_t *)); int ibcs2_sys_getmsg __P((struct proc *, void *, register_t *)); int ibcs2_sys_putmsg __P((struct proc *, void *, register_t *)); -int ibcs2_sys_poll __P((struct proc *, void *, register_t *)); +int sys_poll __P((struct proc *, void *, register_t *)); int ibcs2_sys_symlink __P((struct proc *, void *, register_t *)); int ibcs2_sys_lstat __P((struct proc *, void *, register_t *)); int ibcs2_sys_readlink __P((struct proc *, void *, register_t *)); |