diff options
author | shin <shin@FreeBSD.org> | 2000-01-15 05:30:15 +0000 |
---|---|---|
committer | shin <shin@FreeBSD.org> | 2000-01-15 05:30:15 +0000 |
commit | a3008c093bf17c020a013b1d1a235b3106199103 (patch) | |
tree | d2185709b295ee975c4611e0933eda95b321701b /sys | |
parent | 7bf29ac9f9661300db9a7fd2022c42900b4f542d (diff) | |
download | FreeBSD-src-a3008c093bf17c020a013b1d1a235b3106199103.zip FreeBSD-src-a3008c093bf17c020a013b1d1a235b3106199103.tar.gz |
wrapped prototype declarations by __P(())
Submitted by: bde
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet6/in6.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sys/netinet6/in6.h b/sys/netinet6/in6.h index b5266ce..7ceaad4 100644 --- a/sys/netinet6/in6.h +++ b/sys/netinet6/in6.h @@ -562,12 +562,14 @@ void in6_sin_2_v4mapsin6_in_sock __P((struct sockaddr **nam)); __BEGIN_DECLS struct cmsghdr; -extern int inet6_option_space(int); -extern int inet6_option_init(void *, struct cmsghdr **, int); -extern int inet6_option_append(struct cmsghdr *, const u_int8_t *, int, int); -extern u_int8_t *inet6_option_alloc(struct cmsghdr *, int, int, int); -extern int inet6_option_next(const struct cmsghdr *, u_int8_t **); -extern int inet6_option_find(const struct cmsghdr *, u_int8_t **, int); +extern int inet6_option_space __P((int)); +extern int inet6_option_init __P((void *, struct cmsghdr **, int)); +extern int inet6_option_append __P((struct cmsghdr *, const u_int8_t *, + int, int)); +extern u_int8_t *inet6_option_alloc __P((struct cmsghdr *, int, int, int)); +extern int inet6_option_next __P((const struct cmsghdr *, u_int8_t **)); +extern int inet6_option_find __P((const struct cmsghdr *, u_int8_t **, + int)); extern size_t inet6_rthdr_space __P((int, int)); extern struct cmsghdr *inet6_rthdr_init __P((void *, int)); |