summaryrefslogtreecommitdiffstats
path: root/sys/netinet6/ip6protosw.h
diff options
context:
space:
mode:
authordelphij <delphij@FreeBSD.org>2012-10-22 21:49:56 +0000
committerdelphij <delphij@FreeBSD.org>2012-10-22 21:49:56 +0000
commit3948ce713ca0f2b610938ec42f8bd0df007f7e29 (patch)
tree8bc11ed5833f1e777a232c049c5cb45c1cb16a88 /sys/netinet6/ip6protosw.h
parent8467024240d58aa2ec270416f254f2a218057adb (diff)
downloadFreeBSD-src-3948ce713ca0f2b610938ec42f8bd0df007f7e29.zip
FreeBSD-src-3948ce713ca0f2b610938ec42f8bd0df007f7e29.tar.gz
Remove __P.
Submitted by: kevlo Reviewed by: md5(1) MFC after: 2 months
Diffstat (limited to 'sys/netinet6/ip6protosw.h')
-rw-r--r--sys/netinet6/ip6protosw.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/netinet6/ip6protosw.h b/sys/netinet6/ip6protosw.h
index 1fae44c..ec802a5 100644
--- a/sys/netinet6/ip6protosw.h
+++ b/sys/netinet6/ip6protosw.h
@@ -118,26 +118,26 @@ struct ip6protosw {
/* protocol-protocol hooks */
int (*pr_input) /* input to protocol (from below) */
- __P((struct mbuf **, int *, int));
+ (struct mbuf **, int *, int);
int (*pr_output) /* output to protocol (from above) */
- __P((struct mbuf *, ...));
+ (struct mbuf *, ...);
void (*pr_ctlinput) /* control input (from below) */
- __P((int, struct sockaddr *, void *));
+ (int, struct sockaddr *, void *);
int (*pr_ctloutput) /* control output (from above) */
- __P((struct socket *, struct sockopt *));
+ (struct socket *, struct sockopt *);
/* utility hooks */
void (*pr_init) /* initialization hook */
- __P((void));
+ (void);
void (*pr_destroy) /* cleanup hook */
- __P((void));
+ (void);
void (*pr_fasttimo) /* fast timeout (200ms) */
- __P((void));
+ (void);
void (*pr_slowtimo) /* slow timeout (500ms) */
- __P((void));
+ (void);
void (*pr_drain) /* flush any excess space possible */
- __P((void));
+ (void);
struct pr_usrreqs *pr_usrreqs; /* supersedes pr_usrreq() */
};
OpenPOWER on IntegriCloud