diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-05-28 19:32:08 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-05-28 19:32:08 +0000 |
commit | 2588068bdf891c057443ecfee136fb1bcfc3bf38 (patch) | |
tree | c0d959c911425491d2410c4b249c9aa19552bf50 /resolv | |
parent | d1a8bf85148f0ec2d979fabc671e3f37ec59f011 (diff) | |
download | glibc-2588068bdf891c057443ecfee136fb1bcfc3bf38.zip glibc-2588068bdf891c057443ecfee136fb1bcfc3bf38.tar.gz glibc-2588068bdf891c057443ecfee136fb1bcfc3bf38.tar.bz2 |
Update.
2000-05-28 Ulrich Drepper <drepper@redhat.com>
* resolv/inet_pton.c: Loose __P.
Diffstat (limited to 'resolv')
-rw-r--r-- | resolv/inet_pton.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resolv/inet_pton.c b/resolv/inet_pton.c index e1419b9..4dcbad9 100644 --- a/resolv/inet_pton.c +++ b/resolv/inet_pton.c @@ -34,8 +34,8 @@ static char rcsid[] = "$Id$"; * sizeof(int) < 4. sizeof(int) > 4 is fine; all the world's not a VAX. */ -static int inet_pton4 __P((const char *src, u_char *dst)) internal_function; -static int inet_pton6 __P((const char *src, u_char *dst)) internal_function; +static int inet_pton4 (const char *src, u_char *dst) internal_function; +static int inet_pton6 (const char *src, u_char *dst) internal_function; /* int * inet_pton(af, src, dst) |