summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/libc/sys/sigaction.23
-rw-r--r--libexec/bootpd/hwaddr.c2
-rw-r--r--libexec/bootpd/rtmsg.c2
3 files changed, 3 insertions, 4 deletions
diff --git a/lib/libc/sys/sigaction.2 b/lib/libc/sys/sigaction.2
index 58723b8..aa1682b 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 9a9de1a..ed2c14c 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 40b8728..450454b 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 */
OpenPOWER on IntegriCloud