mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
de-__P()
This commit is contained in:
parent
d6b8445ebd
commit
534ba86baa
3 changed files with 3 additions and 4 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@
|
|||
#include "report.h"
|
||||
|
||||
|
||||
static int rtmsg __P((int));
|
||||
static int rtmsg(int);
|
||||
|
||||
static int s = -1; /* routing socket */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue