This commit is contained in:
Alfred Perlstein 2002-10-09 23:22:11 +00:00
parent d6b8445ebd
commit 534ba86baa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104742
3 changed files with 3 additions and 4 deletions

View File

@ -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 */

View File

@ -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

View File

@ -72,7 +72,7 @@
#include "report.h"
static int rtmsg __P((int));
static int rtmsg(int);
static int s = -1; /* routing socket */