diff options
author | alfred <alfred@FreeBSD.org> | 2002-03-20 05:48:58 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-03-20 05:48:58 +0000 |
commit | 61bf661405b71b867b513fdce9829fe2621814e2 (patch) | |
tree | 3d74fd60e2a8454afa80afb555ded6a9f0360780 /sys/compat/svr4/svr4_misc.c | |
parent | 0a59f1223c856d6130a3ef3b5c5f27b2a6a2296f (diff) | |
download | FreeBSD-src-61bf661405b71b867b513fdce9829fe2621814e2.zip FreeBSD-src-61bf661405b71b867b513fdce9829fe2621814e2.tar.gz |
Remove __P.
Diffstat (limited to 'sys/compat/svr4/svr4_misc.c')
-rw-r--r-- | sys/compat/svr4/svr4_misc.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sys/compat/svr4/svr4_misc.c b/sys/compat/svr4/svr4_misc.c index 40a12c6..14c7cba 100644 --- a/sys/compat/svr4/svr4_misc.c +++ b/sys/compat/svr4/svr4_misc.c @@ -95,20 +95,20 @@ #define BSD_DIRENT(cp) ((struct dirent *)(cp)) -static int svr4_mknod __P((struct thread *, register_t *, char *, - svr4_mode_t, svr4_dev_t)); +static int svr4_mknod(struct thread *, register_t *, char *, + svr4_mode_t, svr4_dev_t); -static __inline clock_t timeval_to_clock_t __P((struct timeval *)); -static int svr4_setinfo __P((struct proc *, int, svr4_siginfo_t *)); +static __inline clock_t timeval_to_clock_t(struct timeval *); +static int svr4_setinfo (struct proc *, int, svr4_siginfo_t *); struct svr4_hrtcntl_args; -static int svr4_hrtcntl __P((struct thread *, struct svr4_hrtcntl_args *, - register_t *)); -static void bsd_statfs_to_svr4_statvfs __P((const struct statfs *, - struct svr4_statvfs *)); -static void bsd_statfs_to_svr4_statvfs64 __P((const struct statfs *, - struct svr4_statvfs64 *)); -static struct proc *svr4_pfind __P((pid_t pid)); +static int svr4_hrtcntl (struct thread *, struct svr4_hrtcntl_args *, + register_t *); +static void bsd_statfs_to_svr4_statvfs(const struct statfs *, + struct svr4_statvfs *); +static void bsd_statfs_to_svr4_statvfs64(const struct statfs *, + struct svr4_statvfs64 *); +static struct proc *svr4_pfind(pid_t pid); /* BOGUS noop */ #if defined(BOGUS) |