libc: remove use of archaic __P() macro

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Ed Maste 2017-03-30 01:03:07 +00:00
parent b783025921
commit e3e9c656c9

View File

@ -44,10 +44,9 @@ __FBSDID("$FreeBSD$");
# define SPRINTF(x) ((size_t)sprintf x)
#endif
static int inet_cidr_pton_ipv4 __P((const char *src, u_char *dst,
int *bits, int ipv6));
static int inet_cidr_pton_ipv6 __P((const char *src, u_char *dst,
int *bits));
static int inet_cidr_pton_ipv4 (const char *src, u_char *dst, int *bits,
int ipv6);
static int inet_cidr_pton_ipv6 (const char *src, u_char *dst, int *bits);
static int getbits(const char *, int ipv6);