From 534ba86baa4cd37b1fd0a912ffdff863e8301897 Mon Sep 17 00:00:00 2001 From: Alfred Perlstein Date: Wed, 9 Oct 2002 23:22:11 +0000 Subject: [PATCH] de-__P() --- lib/libc/sys/sigaction.2 | 3 +-- libexec/bootpd/hwaddr.c | 2 +- libexec/bootpd/rtmsg.c | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/libc/sys/sigaction.2 b/lib/libc/sys/sigaction.2 index 58723b815a3..aa1682b0ed4 100644 --- a/lib/libc/sys/sigaction.2 +++ b/lib/libc/sys/sigaction.2 @@ -46,8 +46,7 @@ struct sigaction { union { void (*__sa_handler)(int); - void (*__sa_sigaction) __P((int, struct __siginfo *, - void *)); + void (*__sa_sigaction)(int, struct __siginfo *, void *); } __sigaction_u; /* signal handler */ int sa_flags; /* see signal options below */ sigset_t sa_mask; /* signal mask to apply */ diff --git a/libexec/bootpd/hwaddr.c b/libexec/bootpd/hwaddr.c index 9a9de1a98cb..ed2c14caef1 100644 --- a/libexec/bootpd/hwaddr.c +++ b/libexec/bootpd/hwaddr.c @@ -53,7 +53,7 @@ /* For BSD 4.4, set arp entry by writing to routing socket */ #if defined(BSD) #if BSD >= 199306 -extern int bsd_arp_set __P((struct in_addr *, char *, int)); +extern int bsd_arp_set(struct in_addr *, char *, int); #endif #endif diff --git a/libexec/bootpd/rtmsg.c b/libexec/bootpd/rtmsg.c index 40b872864cf..450454b6344 100644 --- a/libexec/bootpd/rtmsg.c +++ b/libexec/bootpd/rtmsg.c @@ -72,7 +72,7 @@ #include "report.h" -static int rtmsg __P((int)); +static int rtmsg(int); static int s = -1; /* routing socket */