summaryrefslogtreecommitdiffstats
path: root/sys/i386/ibcs2
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2002-03-20 05:48:58 +0000
committeralfred <alfred@FreeBSD.org>2002-03-20 05:48:58 +0000
commit61bf661405b71b867b513fdce9829fe2621814e2 (patch)
tree3d74fd60e2a8454afa80afb555ded6a9f0360780 /sys/i386/ibcs2
parent0a59f1223c856d6130a3ef3b5c5f27b2a6a2296f (diff)
downloadFreeBSD-src-61bf661405b71b867b513fdce9829fe2621814e2.zip
FreeBSD-src-61bf661405b71b867b513fdce9829fe2621814e2.tar.gz
Remove __P.
Diffstat (limited to 'sys/i386/ibcs2')
-rw-r--r--sys/i386/ibcs2/ibcs2_fcntl.c10
-rw-r--r--sys/i386/ibcs2/ibcs2_ioctl.c8
-rw-r--r--sys/i386/ibcs2/ibcs2_ipc.c20
-rw-r--r--sys/i386/ibcs2/ibcs2_proto.h112
-rw-r--r--sys/i386/ibcs2/ibcs2_signal.c12
-rw-r--r--sys/i386/ibcs2/ibcs2_signal.h2
-rw-r--r--sys/i386/ibcs2/ibcs2_socksys.c8
-rw-r--r--sys/i386/ibcs2/ibcs2_socksys.h2
-rw-r--r--sys/i386/ibcs2/ibcs2_stat.c4
-rw-r--r--sys/i386/ibcs2/ibcs2_util.h6
-rw-r--r--sys/i386/ibcs2/ibcs2_xenix.h34
-rw-r--r--sys/i386/ibcs2/imgact_coff.c6
12 files changed, 112 insertions, 112 deletions
diff --git a/sys/i386/ibcs2/ibcs2_fcntl.c b/sys/i386/ibcs2/ibcs2_fcntl.c
index 07b7f41..1a2a22a 100644
--- a/sys/i386/ibcs2/ibcs2_fcntl.c
+++ b/sys/i386/ibcs2/ibcs2_fcntl.c
@@ -44,11 +44,11 @@
#include <i386/ibcs2/ibcs2_proto.h>
#include <i386/ibcs2/ibcs2_util.h>
-static void cvt_iflock2flock __P((struct ibcs2_flock *, struct flock *));
-static void cvt_flock2iflock __P((struct flock *, struct ibcs2_flock *));
-static int cvt_o_flags __P((int));
-static int oflags2ioflags __P((int));
-static int ioflags2oflags __P((int));
+static void cvt_iflock2flock(struct ibcs2_flock *, struct flock *);
+static void cvt_flock2iflock(struct flock *, struct ibcs2_flock *);
+static int cvt_o_flags(int);
+static int oflags2ioflags(int);
+static int ioflags2oflags(int);
static int
cvt_o_flags(flags)
diff --git a/sys/i386/ibcs2/ibcs2_ioctl.c b/sys/i386/ibcs2/ibcs2_ioctl.c
index 3c3d36a..b192b61 100644
--- a/sys/i386/ibcs2/ibcs2_ioctl.c
+++ b/sys/i386/ibcs2/ibcs2_ioctl.c
@@ -50,10 +50,10 @@
#include <i386/ibcs2/ibcs2_util.h>
#include <i386/ibcs2/ibcs2_ioctl.h>
-static void stios2btios __P((struct ibcs2_termios *, struct termios *));
-static void btios2stios __P((struct termios *, struct ibcs2_termios *));
-static void stios2stio __P((struct ibcs2_termios *, struct ibcs2_termio *));
-static void stio2stios __P((struct ibcs2_termio *, struct ibcs2_termios *));
+static void stios2btios(struct ibcs2_termios *, struct termios *);
+static void btios2stios(struct termios *, struct ibcs2_termios *);
+static void stios2stio(struct ibcs2_termios *, struct ibcs2_termio *);
+static void stio2stios(struct ibcs2_termio *, struct ibcs2_termios *);
int
diff --git a/sys/i386/ibcs2/ibcs2_ipc.c b/sys/i386/ibcs2/ibcs2_ipc.c
index 804f82d..cdf8e87 100644
--- a/sys/i386/ibcs2/ibcs2_ipc.c
+++ b/sys/i386/ibcs2/ibcs2_ipc.c
@@ -45,18 +45,18 @@
-static void cvt_msqid2imsqid __P((struct msqid_ds *, struct ibcs2_msqid_ds *));
-static void cvt_imsqid2msqid __P((struct ibcs2_msqid_ds *, struct msqid_ds *));
+static void cvt_msqid2imsqid(struct msqid_ds *, struct ibcs2_msqid_ds *);
+static void cvt_imsqid2msqid(struct ibcs2_msqid_ds *, struct msqid_ds *);
#ifdef unused
-static void cvt_sem2isem __P((struct sem *, struct ibcs2_sem *));
-static void cvt_isem2sem __P((struct ibcs2_sem *, struct sem *));
+static void cvt_sem2isem(struct sem *, struct ibcs2_sem *);
+static void cvt_isem2sem(struct ibcs2_sem *, struct sem *);
#endif
-static void cvt_semid2isemid __P((struct semid_ds *, struct ibcs2_semid_ds *));
-static void cvt_isemid2semid __P((struct ibcs2_semid_ds *, struct semid_ds *));
-static void cvt_shmid2ishmid __P((struct shmid_ds *, struct ibcs2_shmid_ds *));
-static void cvt_ishmid2shmid __P((struct ibcs2_shmid_ds *, struct shmid_ds *));
-static void cvt_perm2iperm __P((struct ipc_perm *, struct ibcs2_ipc_perm *));
-static void cvt_iperm2perm __P((struct ibcs2_ipc_perm *, struct ipc_perm *));
+static void cvt_semid2isemid(struct semid_ds *, struct ibcs2_semid_ds *);
+static void cvt_isemid2semid(struct ibcs2_semid_ds *, struct semid_ds *);
+static void cvt_shmid2ishmid(struct shmid_ds *, struct ibcs2_shmid_ds *);
+static void cvt_ishmid2shmid(struct ibcs2_shmid_ds *, struct shmid_ds *);
+static void cvt_perm2iperm(struct ipc_perm *, struct ibcs2_ipc_perm *);
+static void cvt_iperm2perm(struct ibcs2_ipc_perm *, struct ipc_perm *);
/*
diff --git a/sys/i386/ibcs2/ibcs2_proto.h b/sys/i386/ibcs2/ibcs2_proto.h
index c7ac3df..9e49af1 100644
--- a/sys/i386/ibcs2/ibcs2_proto.h
+++ b/sys/i386/ibcs2/ibcs2_proto.h
@@ -275,62 +275,62 @@ struct ibcs2_readlink_args {
struct ibcs2_isc_args {
register_t dummy;
};
-int ibcs2_read __P((struct thread *, struct ibcs2_read_args *));
-int ibcs2_open __P((struct thread *, struct ibcs2_open_args *));
-int ibcs2_wait __P((struct thread *, struct ibcs2_wait_args *));
-int ibcs2_creat __P((struct thread *, struct ibcs2_creat_args *));
-int ibcs2_unlink __P((struct thread *, struct ibcs2_unlink_args *));
-int ibcs2_execv __P((struct thread *, struct ibcs2_execv_args *));
-int ibcs2_chdir __P((struct thread *, struct ibcs2_chdir_args *));
-int ibcs2_time __P((struct thread *, struct ibcs2_time_args *));
-int ibcs2_mknod __P((struct thread *, struct ibcs2_mknod_args *));
-int ibcs2_chmod __P((struct thread *, struct ibcs2_chmod_args *));
-int ibcs2_chown __P((struct thread *, struct ibcs2_chown_args *));
-int ibcs2_stat __P((struct thread *, struct ibcs2_stat_args *));
-int ibcs2_lseek __P((struct thread *, struct ibcs2_lseek_args *));
-int ibcs2_mount __P((struct thread *, struct ibcs2_mount_args *));
-int ibcs2_umount __P((struct thread *, struct ibcs2_umount_args *));
-int ibcs2_setuid __P((struct thread *, struct ibcs2_setuid_args *));
-int ibcs2_stime __P((struct thread *, struct ibcs2_stime_args *));
-int ibcs2_alarm __P((struct thread *, struct ibcs2_alarm_args *));
-int ibcs2_fstat __P((struct thread *, struct ibcs2_fstat_args *));
-int ibcs2_pause __P((struct thread *, struct ibcs2_pause_args *));
-int ibcs2_utime __P((struct thread *, struct ibcs2_utime_args *));
-int ibcs2_stty __P((struct thread *, struct ibcs2_stty_args *));
-int ibcs2_gtty __P((struct thread *, struct ibcs2_gtty_args *));
-int ibcs2_access __P((struct thread *, struct ibcs2_access_args *));
-int ibcs2_nice __P((struct thread *, struct ibcs2_nice_args *));
-int ibcs2_statfs __P((struct thread *, struct ibcs2_statfs_args *));
-int ibcs2_kill __P((struct thread *, struct ibcs2_kill_args *));
-int ibcs2_fstatfs __P((struct thread *, struct ibcs2_fstatfs_args *));
-int ibcs2_pgrpsys __P((struct thread *, struct ibcs2_pgrpsys_args *));
-int ibcs2_xenix __P((struct thread *, struct ibcs2_xenix_args *));
-int ibcs2_times __P((struct thread *, struct ibcs2_times_args *));
-int ibcs2_plock __P((struct thread *, struct ibcs2_plock_args *));
-int ibcs2_setgid __P((struct thread *, struct ibcs2_setgid_args *));
-int ibcs2_sigsys __P((struct thread *, struct ibcs2_sigsys_args *));
-int ibcs2_msgsys __P((struct thread *, struct ibcs2_msgsys_args *));
-int ibcs2_sysi86 __P((struct thread *, struct ibcs2_sysi86_args *));
-int ibcs2_shmsys __P((struct thread *, struct ibcs2_shmsys_args *));
-int ibcs2_semsys __P((struct thread *, struct ibcs2_semsys_args *));
-int ibcs2_ioctl __P((struct thread *, struct ibcs2_ioctl_args *));
-int ibcs2_uadmin __P((struct thread *, struct ibcs2_uadmin_args *));
-int ibcs2_utssys __P((struct thread *, struct ibcs2_utssys_args *));
-int ibcs2_execve __P((struct thread *, struct ibcs2_execve_args *));
-int ibcs2_fcntl __P((struct thread *, struct ibcs2_fcntl_args *));
-int ibcs2_ulimit __P((struct thread *, struct ibcs2_ulimit_args *));
-int ibcs2_rmdir __P((struct thread *, struct ibcs2_rmdir_args *));
-int ibcs2_mkdir __P((struct thread *, struct ibcs2_mkdir_args *));
-int ibcs2_getdents __P((struct thread *, struct ibcs2_getdents_args *));
-int ibcs2_sysfs __P((struct thread *, struct ibcs2_sysfs_args *));
-int ibcs2_getmsg __P((struct thread *, struct ibcs2_getmsg_args *));
-int ibcs2_putmsg __P((struct thread *, struct ibcs2_putmsg_args *));
-int ibcs2_poll __P((struct thread *, struct ibcs2_poll_args *));
-int ibcs2_secure __P((struct thread *, struct ibcs2_secure_args *));
-int ibcs2_symlink __P((struct thread *, struct ibcs2_symlink_args *));
-int ibcs2_lstat __P((struct thread *, struct ibcs2_lstat_args *));
-int ibcs2_readlink __P((struct thread *, struct ibcs2_readlink_args *));
-int ibcs2_isc __P((struct thread *, struct ibcs2_isc_args *));
+int ibcs2_read(struct thread *, struct ibcs2_read_args *);
+int ibcs2_open(struct thread *, struct ibcs2_open_args *);
+int ibcs2_wait(struct thread *, struct ibcs2_wait_args *);
+int ibcs2_creat(struct thread *, struct ibcs2_creat_args *);
+int ibcs2_unlink(struct thread *, struct ibcs2_unlink_args *);
+int ibcs2_execv(struct thread *, struct ibcs2_execv_args *);
+int ibcs2_chdir(struct thread *, struct ibcs2_chdir_args *);
+int ibcs2_time(struct thread *, struct ibcs2_time_args *);
+int ibcs2_mknod(struct thread *, struct ibcs2_mknod_args *);
+int ibcs2_chmod(struct thread *, struct ibcs2_chmod_args *);
+int ibcs2_chown(struct thread *, struct ibcs2_chown_args *);
+int ibcs2_stat(struct thread *, struct ibcs2_stat_args *);
+int ibcs2_lseek(struct thread *, struct ibcs2_lseek_args *);
+int ibcs2_mount(struct thread *, struct ibcs2_mount_args *);
+int ibcs2_umount(struct thread *, struct ibcs2_umount_args *);
+int ibcs2_setuid(struct thread *, struct ibcs2_setuid_args *);
+int ibcs2_stime(struct thread *, struct ibcs2_stime_args *);
+int ibcs2_alarm(struct thread *, struct ibcs2_alarm_args *);
+int ibcs2_fstat(struct thread *, struct ibcs2_fstat_args *);
+int ibcs2_pause(struct thread *, struct ibcs2_pause_args *);
+int ibcs2_utime(struct thread *, struct ibcs2_utime_args *);
+int ibcs2_stty(struct thread *, struct ibcs2_stty_args *);
+int ibcs2_gtty(struct thread *, struct ibcs2_gtty_args *);
+int ibcs2_access(struct thread *, struct ibcs2_access_args *);
+int ibcs2_nice(struct thread *, struct ibcs2_nice_args *);
+int ibcs2_statfs(struct thread *, struct ibcs2_statfs_args *);
+int ibcs2_kill(struct thread *, struct ibcs2_kill_args *);
+int ibcs2_fstatfs(struct thread *, struct ibcs2_fstatfs_args *);
+int ibcs2_pgrpsys(struct thread *, struct ibcs2_pgrpsys_args *);
+int ibcs2_xenix(struct thread *, struct ibcs2_xenix_args *);
+int ibcs2_times(struct thread *, struct ibcs2_times_args *);
+int ibcs2_plock(struct thread *, struct ibcs2_plock_args *);
+int ibcs2_setgid(struct thread *, struct ibcs2_setgid_args *);
+int ibcs2_sigsys(struct thread *, struct ibcs2_sigsys_args *);
+int ibcs2_msgsys(struct thread *, struct ibcs2_msgsys_args *);
+int ibcs2_sysi86(struct thread *, struct ibcs2_sysi86_args *);
+int ibcs2_shmsys(struct thread *, struct ibcs2_shmsys_args *);
+int ibcs2_semsys(struct thread *, struct ibcs2_semsys_args *);
+int ibcs2_ioctl(struct thread *, struct ibcs2_ioctl_args *);
+int ibcs2_uadmin(struct thread *, struct ibcs2_uadmin_args *);
+int ibcs2_utssys(struct thread *, struct ibcs2_utssys_args *);
+int ibcs2_execve(struct thread *, struct ibcs2_execve_args *);
+int ibcs2_fcntl(struct thread *, struct ibcs2_fcntl_args *);
+int ibcs2_ulimit(struct thread *, struct ibcs2_ulimit_args *);
+int ibcs2_rmdir(struct thread *, struct ibcs2_rmdir_args *);
+int ibcs2_mkdir(struct thread *, struct ibcs2_mkdir_args *);
+int ibcs2_getdents(struct thread *, struct ibcs2_getdents_args *);
+int ibcs2_sysfs(struct thread *, struct ibcs2_sysfs_args *);
+int ibcs2_getmsg(struct thread *, struct ibcs2_getmsg_args *);
+int ibcs2_putmsg(struct thread *, struct ibcs2_putmsg_args *);
+int ibcs2_poll(struct thread *, struct ibcs2_poll_args *);
+int ibcs2_secure(struct thread *, struct ibcs2_secure_args *);
+int ibcs2_symlink(struct thread *, struct ibcs2_symlink_args *);
+int ibcs2_lstat(struct thread *, struct ibcs2_lstat_args *);
+int ibcs2_readlink(struct thread *, struct ibcs2_readlink_args *);
+int ibcs2_isc(struct thread *, struct ibcs2_isc_args *);
#ifdef COMPAT_43
diff --git a/sys/i386/ibcs2/ibcs2_signal.c b/sys/i386/ibcs2/ibcs2_signal.c
index 197c295..fd32aaf 100644
--- a/sys/i386/ibcs2/ibcs2_signal.c
+++ b/sys/i386/ibcs2/ibcs2_signal.c
@@ -50,12 +50,12 @@
#define ibcs2_sigismember(s, n) (*(s) & ibcs2_sigmask(n))
#define ibcs2_sigaddset(s, n) (*(s) |= ibcs2_sigmask(n))
-static void ibcs2_to_bsd_sigset __P((const ibcs2_sigset_t *, sigset_t *));
-static void bsd_to_ibcs2_sigset __P((const sigset_t *, ibcs2_sigset_t *));
-static void ibcs2_to_bsd_sigaction __P((struct ibcs2_sigaction *,
- struct sigaction *));
-static void bsd_to_ibcs2_sigaction __P((struct sigaction *,
- struct ibcs2_sigaction *));
+static void ibcs2_to_bsd_sigset(const ibcs2_sigset_t *, sigset_t *);
+static void bsd_to_ibcs2_sigset(const sigset_t *, ibcs2_sigset_t *);
+static void ibcs2_to_bsd_sigaction(struct ibcs2_sigaction *,
+ struct sigaction *);
+static void bsd_to_ibcs2_sigaction(struct sigaction *,
+ struct ibcs2_sigaction *);
int bsd_to_ibcs2_sig[IBCS2_SIGTBLSZ] = {
IBCS2_SIGHUP, /* 1 */
diff --git a/sys/i386/ibcs2/ibcs2_signal.h b/sys/i386/ibcs2/ibcs2_signal.h
index 21df087..eda9adf 100644
--- a/sys/i386/ibcs2/ibcs2_signal.h
+++ b/sys/i386/ibcs2/ibcs2_signal.h
@@ -83,7 +83,7 @@
#define IBCS2_SIGCALL(x) ((x) & ~IBCS2_SIGNO_MASK)
typedef long ibcs2_sigset_t;
-typedef void (*ibcs2_sig_t) __P((int));
+typedef void (*ibcs2_sig_t)(int);
struct ibcs2_sigaction {
ibcs2_sig_t isa_handler;
diff --git a/sys/i386/ibcs2/ibcs2_socksys.c b/sys/i386/ibcs2/ibcs2_socksys.c
index ebe6a50..0bd14d6 100644
--- a/sys/i386/ibcs2/ibcs2_socksys.c
+++ b/sys/i386/ibcs2/ibcs2_socksys.c
@@ -47,10 +47,10 @@ struct setipdomainname_args {
};
/* Local prototypes */
-static int ibcs2_getipdomainname __P((struct thread *,
- struct getipdomainname_args *));
-static int ibcs2_setipdomainname __P((struct thread *,
- struct setipdomainname_args *));
+static int ibcs2_getipdomainname(struct thread *,
+ struct getipdomainname_args *);
+static int ibcs2_setipdomainname(struct thread *,
+ struct setipdomainname_args *);
/*
* iBCS2 socksys calls.
diff --git a/sys/i386/ibcs2/ibcs2_socksys.h b/sys/i386/ibcs2/ibcs2_socksys.h
index f0c72bd..9a22a7b 100644
--- a/sys/i386/ibcs2/ibcs2_socksys.h
+++ b/sys/i386/ibcs2/ibcs2_socksys.h
@@ -123,6 +123,6 @@ struct ibcs2_socksys_args {
caddr_t argsp;
};
-int ibcs2_socksys __P((struct thread *, struct ibcs2_socksys_args *));
+int ibcs2_socksys(struct thread *, struct ibcs2_socksys_args *);
#endif /* !_I386_IBCS2_IBCS2_SOCKSYS_H_ */
diff --git a/sys/i386/ibcs2/ibcs2_stat.c b/sys/i386/ibcs2/ibcs2_stat.c
index 3940899..062a5b5 100644
--- a/sys/i386/ibcs2/ibcs2_stat.c
+++ b/sys/i386/ibcs2/ibcs2_stat.c
@@ -49,8 +49,8 @@
#include <i386/ibcs2/ibcs2_utsname.h>
-static void bsd_stat2ibcs_stat __P((struct stat *, struct ibcs2_stat *));
-static int cvt_statfs __P((struct statfs *, caddr_t, int));
+static void bsd_stat2ibcs_stat(struct stat *, struct ibcs2_stat *);
+static int cvt_statfs(struct statfs *, caddr_t, int);
static void
bsd_stat2ibcs_stat(st, st4)
diff --git a/sys/i386/ibcs2/ibcs2_util.h b/sys/i386/ibcs2/ibcs2_util.h
index 93382c4..a3b7357 100644
--- a/sys/i386/ibcs2/ibcs2_util.h
+++ b/sys/i386/ibcs2/ibcs2_util.h
@@ -84,8 +84,8 @@ stackgap_alloc(sgp, sz)
extern const char ibcs2_emul_path[];
-int ibcs2_emul_find __P((struct thread *, caddr_t *, const char *, char *,
- char **, int));
+int ibcs2_emul_find(struct thread *, caddr_t *, const char *, char *,
+ char **, int);
#define CHECKALTEXIST(p, sgp, path) \
ibcs2_emul_find(td, sgp, ibcs2_emul_path, path, &(path), 0)
@@ -94,7 +94,7 @@ int ibcs2_emul_find __P((struct thread *, caddr_t *, const char *, char *,
ibcs2_emul_find(td, sgp, ibcs2_emul_path, path, &(path), 1)
#ifdef SPX_HACK
-int spx_open __P((struct thread *td, void *uap));
+int spx_open(struct thread *td, void *uap);
#endif
#endif /* !_IBCS2_UTIL_H_ */
diff --git a/sys/i386/ibcs2/ibcs2_xenix.h b/sys/i386/ibcs2/ibcs2_xenix.h
index 07e827f..0c7521d 100644
--- a/sys/i386/ibcs2/ibcs2_xenix.h
+++ b/sys/i386/ibcs2/ibcs2_xenix.h
@@ -82,23 +82,23 @@ struct ibcs2_rename_args {
struct xenix_utsname_args {
long addr; char addr_[PAD_(long)];
};
-int xenix_rdchk __P((struct thread *, struct xenix_rdchk_args *));
-int xenix_chsize __P((struct thread *, struct xenix_chsize_args *));
-int xenix_ftime __P((struct thread *, struct xenix_ftime_args *));
-int xenix_nap __P((struct thread *, struct xenix_nap_args *));
-int xenix_scoinfo __P((struct thread *, struct xenix_scoinfo_args *));
-int xenix_eaccess __P((struct thread *, struct xenix_eaccess_args *));
-int ibcs2_sigaction __P((struct thread *, struct ibcs2_sigaction_args *));
-int ibcs2_sigprocmask __P((struct thread *, struct ibcs2_sigprocmask_args *));
-int ibcs2_sigpending __P((struct thread *, struct ibcs2_sigpending_args *));
-int ibcs2_sigsuspend __P((struct thread *, struct ibcs2_sigsuspend_args *));
-int ibcs2_getgroups __P((struct thread *, struct ibcs2_getgroups_args *));
-int ibcs2_setgroups __P((struct thread *, struct ibcs2_setgroups_args *));
-int ibcs2_sysconf __P((struct thread *, struct ibcs2_sysconf_args *));
-int ibcs2_pathconf __P((struct thread *, struct ibcs2_pathconf_args *));
-int ibcs2_fpathconf __P((struct thread *, struct ibcs2_fpathconf_args *));
-int ibcs2_rename __P((struct thread *, struct ibcs2_rename_args *));
-int xenix_utsname __P((struct thread *, struct xenix_utsname_args *));
+int xenix_rdchk(struct thread *, struct xenix_rdchk_args *);
+int xenix_chsize(struct thread *, struct xenix_chsize_args *);
+int xenix_ftime(struct thread *, struct xenix_ftime_args *);
+int xenix_nap(struct thread *, struct xenix_nap_args *);
+int xenix_scoinfo(struct thread *, struct xenix_scoinfo_args *);
+int xenix_eaccess(struct thread *, struct xenix_eaccess_args *);
+int ibcs2_sigaction(struct thread *, struct ibcs2_sigaction_args *);
+int ibcs2_sigprocmask(struct thread *, struct ibcs2_sigprocmask_args *);
+int ibcs2_sigpending(struct thread *, struct ibcs2_sigpending_args *);
+int ibcs2_sigsuspend(struct thread *, struct ibcs2_sigsuspend_args *);
+int ibcs2_getgroups(struct thread *, struct ibcs2_getgroups_args *);
+int ibcs2_setgroups(struct thread *, struct ibcs2_setgroups_args *);
+int ibcs2_sysconf(struct thread *, struct ibcs2_sysconf_args *);
+int ibcs2_pathconf(struct thread *, struct ibcs2_pathconf_args *);
+int ibcs2_fpathconf(struct thread *, struct ibcs2_fpathconf_args *);
+int ibcs2_rename(struct thread *, struct ibcs2_rename_args *);
+int xenix_utsname(struct thread *, struct xenix_utsname_args *);
#ifdef COMPAT_43
diff --git a/sys/i386/ibcs2/imgact_coff.c b/sys/i386/ibcs2/imgact_coff.c
index fd89db4..6148b12 100644
--- a/sys/i386/ibcs2/imgact_coff.c
+++ b/sys/i386/ibcs2/imgact_coff.c
@@ -54,10 +54,10 @@ MODULE_DEPEND(coff, ibcs2, 1, 1, 1);
extern struct sysentvec ibcs2_svr3_sysvec;
-static int coff_load_file __P((struct thread *td, char *name));
-static int exec_coff_imgact __P((struct image_params *imgp));
+static int coff_load_file(struct thread *td, char *name);
+static int exec_coff_imgact(struct image_params *imgp);
-static int load_coff_section __P((struct vmspace *vmspace, struct vnode *vp, vm_offset_t offset, caddr_t vmaddr, size_t memsz, size_t filsz, vm_prot_t prot));
+static int load_coff_section(struct vmspace *vmspace, struct vnode *vp, vm_offset_t offset, caddr_t vmaddr, size_t memsz, size_t filsz, vm_prot_t prot);
static int
load_coff_section(struct vmspace *vmspace, struct vnode *vp, vm_offset_t offset,
OpenPOWER on IntegriCloud