diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/compat/sunos | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/compat/sunos')
-rw-r--r-- | sys/compat/sunos/sunos.h | 4 | ||||
-rw-r--r-- | sys/compat/sunos/sunos_exec.c | 10 | ||||
-rw-r--r-- | sys/compat/sunos/sunos_ioctl.c | 16 | ||||
-rw-r--r-- | sys/compat/sunos/sunos_misc.c | 6 | ||||
-rw-r--r-- | sys/compat/sunos/sunos_syscallargs.h | 290 |
5 files changed, 163 insertions, 163 deletions
diff --git a/sys/compat/sunos/sunos.h b/sys/compat/sunos/sunos.h index 0392623d402..1c12971fc96 100644 --- a/sys/compat/sunos/sunos.h +++ b/sys/compat/sunos/sunos.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sunos.h,v 1.7 1999/06/03 16:01:15 deraadt Exp $ */ +/* $OpenBSD: sunos.h,v 1.8 2002/03/14 01:26:50 millert Exp $ */ /* $NetBSD: sunos.h,v 1.8 1996/05/05 16:07:43 veego Exp $ */ #define SUNM_RDONLY 0x01 /* mount fs read-only */ @@ -146,6 +146,6 @@ struct sunos_audio_info { __BEGIN_DECLS /* Defined in arch/m68k/m68k/sunos_machdep.c -- sparc uses regular sendsig() */ #ifndef __sparc__ -void sunos_sendsig __P((sig_t, int, int, u_long, int, union sigval)); +void sunos_sendsig(sig_t, int, int, u_long, int, union sigval); #endif __END_DECLS diff --git a/sys/compat/sunos/sunos_exec.c b/sys/compat/sunos/sunos_exec.c index d7cbe05453a..44aa9925ec5 100644 --- a/sys/compat/sunos/sunos_exec.c +++ b/sys/compat/sunos/sunos_exec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sunos_exec.c,v 1.15 2001/11/15 06:22:30 art Exp $ */ +/* $OpenBSD: sunos_exec.c,v 1.16 2002/03/14 01:26:50 millert Exp $ */ /* $NetBSD: sunos_exec.c,v 1.11 1996/05/05 12:01:47 briggs Exp $ */ /* @@ -60,10 +60,10 @@ #define sunos_exec_aout_prep_omagic exec_aout_prep_omagic #endif -int sunos_exec_aout_makecmds __P((struct proc *, struct exec_package *)); -int sunos_exec_aout_prep_zmagic __P((struct proc *, struct exec_package *)); -int sunos_exec_aout_prep_nmagic __P((struct proc *, struct exec_package *)); -int sunos_exec_aout_prep_omagic __P((struct proc *, struct exec_package *)); +int sunos_exec_aout_makecmds(struct proc *, struct exec_package *); +int sunos_exec_aout_prep_zmagic(struct proc *, struct exec_package *); +int sunos_exec_aout_prep_nmagic(struct proc *, struct exec_package *); +int sunos_exec_aout_prep_omagic(struct proc *, struct exec_package *); extern int nsunos_sysent; extern struct sysent sunos_sysent[]; diff --git a/sys/compat/sunos/sunos_ioctl.c b/sys/compat/sunos/sunos_ioctl.c index fa93293fb93..3d43e1f5092 100644 --- a/sys/compat/sunos/sunos_ioctl.c +++ b/sys/compat/sunos/sunos_ioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sunos_ioctl.c,v 1.12 2002/02/14 22:57:18 pvalchev Exp $ */ +/* $OpenBSD: sunos_ioctl.c,v 1.13 2002/03/14 01:26:50 millert Exp $ */ /* $NetBSD: sunos_ioctl.c,v 1.23 1996/03/14 19:33:46 christos Exp $ */ /* @@ -95,10 +95,10 @@ static u_long s2btab[] = { 38400, }; -static void stios2btios __P((struct sunos_termios *, struct termios *)); -static void btios2stios __P((struct termios *, struct sunos_termios *)); -static void stios2stio __P((struct sunos_termios *, struct sunos_termio *)); -static void stio2stios __P((struct sunos_termio *, struct sunos_termios *)); +static void stios2btios(struct sunos_termios *, struct termios *); +static void btios2stios(struct termios *, struct sunos_termios *); +static void stios2stio(struct sunos_termios *, struct sunos_termio *); +static void stio2stios(struct sunos_termio *, struct sunos_termios *); /* * These two conversion functions have mostly been done @@ -401,7 +401,7 @@ sunos_sys_ioctl(p, v, retval) struct sunos_sys_ioctl_args *uap = v; struct filedesc *fdp = p->p_fd; struct file *fp; - int (*ctl) __P((struct file *, u_long, caddr_t, struct proc *)); + int (*ctl)(struct file *, u_long, caddr_t, struct proc *); int error; if ((fp = fd_getfile(fdp, SCARG(uap, fd))) == NULL) @@ -876,8 +876,8 @@ struct sunos_flock { short l_xxx; }; -static void bsd_to_sunos_flock __P((struct flock *, struct sunos_flock *)); -static void sunos_to_bsd_flock __P((struct sunos_flock *, struct flock *)); +static void bsd_to_sunos_flock(struct flock *, struct sunos_flock *); +static void sunos_to_bsd_flock(struct sunos_flock *, struct flock *); #define SUNOS_F_RDLCK 1 #define SUNOS_F_WRLCK 2 diff --git a/sys/compat/sunos/sunos_misc.c b/sys/compat/sunos/sunos_misc.c index 424802ab271..b46a5c89020 100644 --- a/sys/compat/sunos/sunos_misc.c +++ b/sys/compat/sunos/sunos_misc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sunos_misc.c,v 1.35 2002/03/14 00:42:25 miod Exp $ */ +/* $OpenBSD: sunos_misc.c,v 1.36 2002/03/14 01:26:50 millert Exp $ */ /* $NetBSD: sunos_misc.c,v 1.65 1996/04/22 01:44:31 christos Exp $ */ /* @@ -107,7 +107,7 @@ # include <machine/machdep.h> /* for prototype of reboot2() */ #endif -static int sunstatfs __P((struct statfs *, caddr_t)); +static int sunstatfs(struct statfs *, caddr_t); int sunos_sys_wait4(p, v, retval) @@ -378,7 +378,7 @@ sunos_sys_sigpending(p, v, retval) * * This is quite ugly, but what do you expect from compatibility code? */ -int sunos_readdir_callback __P((void *, struct dirent *, off_t)); +int sunos_readdir_callback(void *, struct dirent *, off_t); struct sunos_readdir_callback_args { caddr_t outp; diff --git a/sys/compat/sunos/sunos_syscallargs.h b/sys/compat/sunos/sunos_syscallargs.h index 552425b2b04..f210dcfd856 100644 --- a/sys/compat/sunos/sunos_syscallargs.h +++ b/sys/compat/sunos/sunos_syscallargs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sunos_syscallargs.h,v 1.14 2002/03/14 00:44:20 miod Exp $ */ +/* $OpenBSD: sunos_syscallargs.h,v 1.15 2002/03/14 01:26:50 millert Exp $ */ /* * System call argument lists. @@ -227,165 +227,165 @@ struct sunos_sys_uname_args { * System call prototypes. */ -int sys_nosys __P((struct proc *, void *, register_t *)); -int sys_exit __P((struct proc *, void *, register_t *)); -int sys_fork __P((struct proc *, void *, register_t *)); -int sys_read __P((struct proc *, void *, register_t *)); -int sys_write __P((struct proc *, void *, register_t *)); -int sunos_sys_open __P((struct proc *, void *, register_t *)); -int sys_close __P((struct proc *, void *, register_t *)); -int sunos_sys_wait4 __P((struct proc *, void *, register_t *)); -int sunos_sys_creat __P((struct proc *, void *, register_t *)); -int sys_link __P((struct proc *, void *, register_t *)); -int sys_unlink __P((struct proc *, void *, register_t *)); -int sunos_sys_execv __P((struct proc *, void *, register_t *)); -int sys_chdir __P((struct proc *, void *, register_t *)); -int sunos_sys_mknod __P((struct proc *, void *, register_t *)); -int sys_chmod __P((struct proc *, void *, register_t *)); -int sys_lchown __P((struct proc *, void *, register_t *)); -int sys_obreak __P((struct proc *, void *, register_t *)); -int compat_43_sys_lseek __P((struct proc *, void *, register_t *)); -int sys_getpid __P((struct proc *, void *, register_t *)); -int sys_setuid __P((struct proc *, void *, register_t *)); -int sys_getuid __P((struct proc *, void *, register_t *)); -int sunos_sys_ostime __P((struct proc *, void *, register_t *)); +int sys_nosys(struct proc *, void *, register_t *); +int sys_exit(struct proc *, void *, register_t *); +int sys_fork(struct proc *, void *, register_t *); +int sys_read(struct proc *, void *, register_t *); +int sys_write(struct proc *, void *, register_t *); +int sunos_sys_open(struct proc *, void *, register_t *); +int sys_close(struct proc *, void *, register_t *); +int sunos_sys_wait4(struct proc *, void *, register_t *); +int sunos_sys_creat(struct proc *, void *, register_t *); +int sys_link(struct proc *, void *, register_t *); +int sys_unlink(struct proc *, void *, register_t *); +int sunos_sys_execv(struct proc *, void *, register_t *); +int sys_chdir(struct proc *, void *, register_t *); +int sunos_sys_mknod(struct proc *, void *, register_t *); +int sys_chmod(struct proc *, void *, register_t *); +int sys_lchown(struct proc *, void *, register_t *); +int sys_obreak(struct proc *, void *, register_t *); +int compat_43_sys_lseek(struct proc *, void *, register_t *); +int sys_getpid(struct proc *, void *, register_t *); +int sys_setuid(struct proc *, void *, register_t *); +int sys_getuid(struct proc *, void *, register_t *); +int sunos_sys_ostime(struct proc *, void *, register_t *); #ifdef PTRACE -int sunos_sys_ptrace __P((struct proc *, void *, register_t *)); +int sunos_sys_ptrace(struct proc *, void *, register_t *); #else #endif -int sunos_sys_access __P((struct proc *, void *, register_t *)); -int sys_sync __P((struct proc *, void *, register_t *)); -int sys_kill __P((struct proc *, void *, register_t *)); -int sunos_sys_stat __P((struct proc *, void *, register_t *)); -int sunos_sys_lstat __P((struct proc *, void *, register_t *)); -int sys_dup __P((struct proc *, void *, register_t *)); -int sys_opipe __P((struct proc *, void *, register_t *)); -int sunos_sys_otimes __P((struct proc *, void *, register_t *)); -int sys_profil __P((struct proc *, void *, register_t *)); -int sys_setgid __P((struct proc *, void *, register_t *)); -int sys_getgid __P((struct proc *, void *, register_t *)); -int sys_acct __P((struct proc *, void *, register_t *)); -int sunos_sys_mctl __P((struct proc *, void *, register_t *)); -int sunos_sys_ioctl __P((struct proc *, void *, register_t *)); -int sunos_sys_reboot __P((struct proc *, void *, register_t *)); -int sys_symlink __P((struct proc *, void *, register_t *)); -int sys_readlink __P((struct proc *, void *, register_t *)); -int sunos_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 compat_43_sys_fstat __P((struct proc *, void *, register_t *)); -int compat_43_sys_getpagesize __P((struct proc *, void *, register_t *)); -int sys_msync __P((struct proc *, void *, register_t *)); -int sys_vfork __P((struct proc *, void *, register_t *)); -int sys_sbrk __P((struct proc *, void *, register_t *)); -int sys_sstk __P((struct proc *, void *, register_t *)); -int sunos_sys_mmap __P((struct proc *, void *, register_t *)); -int sys_ovadvise __P((struct proc *, void *, register_t *)); -int sys_munmap __P((struct proc *, void *, register_t *)); -int sys_mprotect __P((struct proc *, void *, register_t *)); -int sys_madvise __P((struct proc *, void *, register_t *)); -int sunos_sys_vhangup __P((struct proc *, void *, register_t *)); -int sys_mincore __P((struct proc *, void *, register_t *)); -int sys_getgroups __P((struct proc *, void *, register_t *)); -int sys_setgroups __P((struct proc *, void *, register_t *)); -int sys_getpgrp __P((struct proc *, void *, register_t *)); -int sunos_sys_setpgrp __P((struct proc *, void *, register_t *)); -int sys_setitimer __P((struct proc *, void *, register_t *)); -int sys_swapon __P((struct proc *, void *, register_t *)); -int sys_getitimer __P((struct proc *, void *, register_t *)); -int compat_43_sys_gethostname __P((struct proc *, void *, register_t *)); -int compat_43_sys_sethostname __P((struct proc *, void *, register_t *)); -int compat_43_sys_getdtablesize __P((struct proc *, void *, register_t *)); -int sys_dup2 __P((struct proc *, void *, register_t *)); -int sunos_sys_fcntl __P((struct proc *, void *, register_t *)); -int sys_select __P((struct proc *, void *, register_t *)); -int sys_fsync __P((struct proc *, void *, register_t *)); -int sys_setpriority __P((struct proc *, void *, register_t *)); -int sys_socket __P((struct proc *, void *, register_t *)); -int sys_connect __P((struct proc *, void *, register_t *)); -int compat_43_sys_accept __P((struct proc *, void *, register_t *)); -int sys_getpriority __P((struct proc *, void *, register_t *)); -int compat_43_sys_send __P((struct proc *, void *, register_t *)); -int compat_43_sys_recv __P((struct proc *, void *, register_t *)); -int sys_bind __P((struct proc *, void *, register_t *)); -int sunos_sys_setsockopt __P((struct proc *, void *, register_t *)); -int sys_listen __P((struct proc *, void *, register_t *)); -int sunos_sys_sigvec __P((struct proc *, void *, register_t *)); -int compat_43_sys_sigblock __P((struct proc *, void *, register_t *)); -int compat_43_sys_sigsetmask __P((struct proc *, void *, register_t *)); -int sys_sigsuspend __P((struct proc *, void *, register_t *)); -int compat_43_sys_sigstack __P((struct proc *, void *, register_t *)); -int compat_43_sys_recvmsg __P((struct proc *, void *, register_t *)); -int compat_43_sys_sendmsg __P((struct proc *, void *, register_t *)); -int sys_gettimeofday __P((struct proc *, void *, register_t *)); -int sys_getrusage __P((struct proc *, void *, register_t *)); -int sys_getsockopt __P((struct proc *, void *, register_t *)); -int sys_readv __P((struct proc *, void *, register_t *)); -int sys_writev __P((struct proc *, void *, register_t *)); -int sys_settimeofday __P((struct proc *, void *, register_t *)); -int sys_fchown __P((struct proc *, void *, register_t *)); -int sys_fchmod __P((struct proc *, void *, register_t *)); -int compat_43_sys_recvfrom __P((struct proc *, void *, register_t *)); -int compat_43_sys_setreuid __P((struct proc *, void *, register_t *)); -int compat_43_sys_setregid __P((struct proc *, void *, register_t *)); -int sys_rename __P((struct proc *, void *, register_t *)); -int compat_43_sys_truncate __P((struct proc *, void *, register_t *)); -int compat_43_sys_ftruncate __P((struct proc *, void *, register_t *)); -int sys_flock __P((struct proc *, void *, register_t *)); -int sys_sendto __P((struct proc *, void *, register_t *)); -int sys_shutdown __P((struct proc *, void *, register_t *)); -int sys_socketpair __P((struct proc *, void *, register_t *)); -int sys_mkdir __P((struct proc *, void *, register_t *)); -int sys_rmdir __P((struct proc *, void *, register_t *)); -int sys_utimes __P((struct proc *, void *, register_t *)); -int sunos_sys_sigreturn __P((struct proc *, void *, register_t *)); -int sys_adjtime __P((struct proc *, void *, register_t *)); -int compat_43_sys_getpeername __P((struct proc *, void *, register_t *)); -int compat_43_sys_gethostid __P((struct proc *, void *, register_t *)); -int sunos_sys_getrlimit __P((struct proc *, void *, register_t *)); -int sunos_sys_setrlimit __P((struct proc *, void *, register_t *)); -int compat_43_sys_killpg __P((struct proc *, void *, register_t *)); -int compat_43_sys_getsockname __P((struct proc *, void *, register_t *)); -int sys_poll __P((struct proc *, void *, register_t *)); +int sunos_sys_access(struct proc *, void *, register_t *); +int sys_sync(struct proc *, void *, register_t *); +int sys_kill(struct proc *, void *, register_t *); +int sunos_sys_stat(struct proc *, void *, register_t *); +int sunos_sys_lstat(struct proc *, void *, register_t *); +int sys_dup(struct proc *, void *, register_t *); +int sys_opipe(struct proc *, void *, register_t *); +int sunos_sys_otimes(struct proc *, void *, register_t *); +int sys_profil(struct proc *, void *, register_t *); +int sys_setgid(struct proc *, void *, register_t *); +int sys_getgid(struct proc *, void *, register_t *); +int sys_acct(struct proc *, void *, register_t *); +int sunos_sys_mctl(struct proc *, void *, register_t *); +int sunos_sys_ioctl(struct proc *, void *, register_t *); +int sunos_sys_reboot(struct proc *, void *, register_t *); +int sys_symlink(struct proc *, void *, register_t *); +int sys_readlink(struct proc *, void *, register_t *); +int sunos_sys_execve(struct proc *, void *, register_t *); +int sys_umask(struct proc *, void *, register_t *); +int sys_chroot(struct proc *, void *, register_t *); +int compat_43_sys_fstat(struct proc *, void *, register_t *); +int compat_43_sys_getpagesize(struct proc *, void *, register_t *); +int sys_msync(struct proc *, void *, register_t *); +int sys_vfork(struct proc *, void *, register_t *); +int sys_sbrk(struct proc *, void *, register_t *); +int sys_sstk(struct proc *, void *, register_t *); +int sunos_sys_mmap(struct proc *, void *, register_t *); +int sys_ovadvise(struct proc *, void *, register_t *); +int sys_munmap(struct proc *, void *, register_t *); +int sys_mprotect(struct proc *, void *, register_t *); +int sys_madvise(struct proc *, void *, register_t *); +int sunos_sys_vhangup(struct proc *, void *, register_t *); +int sys_mincore(struct proc *, void *, register_t *); +int sys_getgroups(struct proc *, void *, register_t *); +int sys_setgroups(struct proc *, void *, register_t *); +int sys_getpgrp(struct proc *, void *, register_t *); +int sunos_sys_setpgrp(struct proc *, void *, register_t *); +int sys_setitimer(struct proc *, void *, register_t *); +int sys_swapon(struct proc *, void *, register_t *); +int sys_getitimer(struct proc *, void *, register_t *); +int compat_43_sys_gethostname(struct proc *, void *, register_t *); +int compat_43_sys_sethostname(struct proc *, void *, register_t *); +int compat_43_sys_getdtablesize(struct proc *, void *, register_t *); +int sys_dup2(struct proc *, void *, register_t *); +int sunos_sys_fcntl(struct proc *, void *, register_t *); +int sys_select(struct proc *, void *, register_t *); +int sys_fsync(struct proc *, void *, register_t *); +int sys_setpriority(struct proc *, void *, register_t *); +int sys_socket(struct proc *, void *, register_t *); +int sys_connect(struct proc *, void *, register_t *); +int compat_43_sys_accept(struct proc *, void *, register_t *); +int sys_getpriority(struct proc *, void *, register_t *); +int compat_43_sys_send(struct proc *, void *, register_t *); +int compat_43_sys_recv(struct proc *, void *, register_t *); +int sys_bind(struct proc *, void *, register_t *); +int sunos_sys_setsockopt(struct proc *, void *, register_t *); +int sys_listen(struct proc *, void *, register_t *); +int sunos_sys_sigvec(struct proc *, void *, register_t *); +int compat_43_sys_sigblock(struct proc *, void *, register_t *); +int compat_43_sys_sigsetmask(struct proc *, void *, register_t *); +int sys_sigsuspend(struct proc *, void *, register_t *); +int compat_43_sys_sigstack(struct proc *, void *, register_t *); +int compat_43_sys_recvmsg(struct proc *, void *, register_t *); +int compat_43_sys_sendmsg(struct proc *, void *, register_t *); +int sys_gettimeofday(struct proc *, void *, register_t *); +int sys_getrusage(struct proc *, void *, register_t *); +int sys_getsockopt(struct proc *, void *, register_t *); +int sys_readv(struct proc *, void *, register_t *); +int sys_writev(struct proc *, void *, register_t *); +int sys_settimeofday(struct proc *, void *, register_t *); +int sys_fchown(struct proc *, void *, register_t *); +int sys_fchmod(struct proc *, void *, register_t *); +int compat_43_sys_recvfrom(struct proc *, void *, register_t *); +int compat_43_sys_setreuid(struct proc *, void *, register_t *); +int compat_43_sys_setregid(struct proc *, void *, register_t *); +int sys_rename(struct proc *, void *, register_t *); +int compat_43_sys_truncate(struct proc *, void *, register_t *); +int compat_43_sys_ftruncate(struct proc *, void *, register_t *); +int sys_flock(struct proc *, void *, register_t *); +int sys_sendto(struct proc *, void *, register_t *); +int sys_shutdown(struct proc *, void *, register_t *); +int sys_socketpair(struct proc *, void *, register_t *); +int sys_mkdir(struct proc *, void *, register_t *); +int sys_rmdir(struct proc *, void *, register_t *); +int sys_utimes(struct proc *, void *, register_t *); +int sunos_sys_sigreturn(struct proc *, void *, register_t *); +int sys_adjtime(struct proc *, void *, register_t *); +int compat_43_sys_getpeername(struct proc *, void *, register_t *); +int compat_43_sys_gethostid(struct proc *, void *, register_t *); +int sunos_sys_getrlimit(struct proc *, void *, register_t *); +int sunos_sys_setrlimit(struct proc *, void *, register_t *); +int compat_43_sys_killpg(struct proc *, void *, register_t *); +int compat_43_sys_getsockname(struct proc *, void *, register_t *); +int sys_poll(struct proc *, void *, register_t *); #ifdef NFSSERVER -int sunos_sys_nfssvc __P((struct proc *, void *, register_t *)); +int sunos_sys_nfssvc(struct proc *, void *, register_t *); #else #endif -int sys_getdirentries __P((struct proc *, void *, register_t *)); -int sunos_sys_statfs __P((struct proc *, void *, register_t *)); -int sunos_sys_fstatfs __P((struct proc *, void *, register_t *)); -int sunos_sys_unmount __P((struct proc *, void *, register_t *)); +int sys_getdirentries(struct proc *, void *, register_t *); +int sunos_sys_statfs(struct proc *, void *, register_t *); +int sunos_sys_fstatfs(struct proc *, void *, register_t *); +int sunos_sys_unmount(struct proc *, void *, register_t *); #ifdef NFSCLIENT -int async_daemon __P((struct proc *, void *, register_t *)); -int sys_getfh __P((struct proc *, void *, register_t *)); +int async_daemon(struct proc *, void *, register_t *); +int sys_getfh(struct proc *, void *, register_t *); #else #endif -int compat_09_sys_getdomainname __P((struct proc *, void *, register_t *)); -int compat_09_sys_setdomainname __P((struct proc *, void *, register_t *)); -int sunos_sys_quotactl __P((struct proc *, void *, register_t *)); -int sunos_sys_exportfs __P((struct proc *, void *, register_t *)); -int sunos_sys_mount __P((struct proc *, void *, register_t *)); -int sunos_sys_ustat __P((struct proc *, void *, register_t *)); +int compat_09_sys_getdomainname(struct proc *, void *, register_t *); +int compat_09_sys_setdomainname(struct proc *, void *, register_t *); +int sunos_sys_quotactl(struct proc *, void *, register_t *); +int sunos_sys_exportfs(struct proc *, void *, register_t *); +int sunos_sys_mount(struct proc *, void *, register_t *); +int sunos_sys_ustat(struct proc *, void *, register_t *); #ifdef SYSVSEM -int compat_10_sys_semsys __P((struct proc *, void *, register_t *)); +int compat_10_sys_semsys(struct proc *, void *, register_t *); #else #endif #ifdef SYSVMSG -int compat_10_sys_msgsys __P((struct proc *, void *, register_t *)); +int compat_10_sys_msgsys(struct proc *, void *, register_t *); #else #endif #ifdef SYSVSHM -int compat_10_sys_shmsys __P((struct proc *, void *, register_t *)); +int compat_10_sys_shmsys(struct proc *, void *, register_t *); #else #endif -int sunos_sys_auditsys __P((struct proc *, void *, register_t *)); -int sunos_sys_getdents __P((struct proc *, void *, register_t *)); -int sys_setsid __P((struct proc *, void *, register_t *)); -int sys_fchdir __P((struct proc *, void *, register_t *)); -int sunos_sys_fchroot __P((struct proc *, void *, register_t *)); -int sunos_sys_sigpending __P((struct proc *, void *, register_t *)); -int sys_setpgid __P((struct proc *, void *, register_t *)); -int sys_pathconf __P((struct proc *, void *, register_t *)); -int sys_fpathconf __P((struct proc *, void *, register_t *)); -int sunos_sys_sysconf __P((struct proc *, void *, register_t *)); -int sunos_sys_uname __P((struct proc *, void *, register_t *)); +int sunos_sys_auditsys(struct proc *, void *, register_t *); +int sunos_sys_getdents(struct proc *, void *, register_t *); +int sys_setsid(struct proc *, void *, register_t *); +int sys_fchdir(struct proc *, void *, register_t *); +int sunos_sys_fchroot(struct proc *, void *, register_t *); +int sunos_sys_sigpending(struct proc *, void *, register_t *); +int sys_setpgid(struct proc *, void *, register_t *); +int sys_pathconf(struct proc *, void *, register_t *); +int sys_fpathconf(struct proc *, void *, register_t *); +int sunos_sys_sysconf(struct proc *, void *, register_t *); +int sunos_sys_uname(struct proc *, void *, register_t *); |