From 79c361bc793a1bfec2b4215577c9be0741ddd5c5 Mon Sep 17 00:00:00 2001 From: Yoshinobu Inoue Date: Sat, 15 Jan 2000 05:30:15 +0000 Subject: [PATCH] wrapped prototype declarations by __P(()) Submitted by: bde --- sys/netinet6/in6.h | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/sys/netinet6/in6.h b/sys/netinet6/in6.h index b5266cee7abd..7ceaad44b0bf 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));