diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-03-22 09:22:15 +0000 | 
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-03-22 09:22:15 +0000 | 
| commit | 1372519b1579b695b7c87b8fbbdc2c113e985474 (patch) | |
| tree | 940c5b6971ca7a1e0ccd4772f07ad6694c595c70 /lib/libc/net/inet_ntop.c | |
| parent | 10ddeb64d4e4480e69f2c3e9add26e65a90ec951 (diff) | |
Notes
Diffstat (limited to 'lib/libc/net/inet_ntop.c')
| -rw-r--r-- | lib/libc/net/inet_ntop.c | 6 | 
1 files changed, 2 insertions, 4 deletions
| diff --git a/lib/libc/net/inet_ntop.c b/lib/libc/net/inet_ntop.c index 9dbe46b83a89..4b1af695397c 100644 --- a/lib/libc/net/inet_ntop.c +++ b/lib/libc/net/inet_ntop.c @@ -38,10 +38,8 @@ __FBSDID("$FreeBSD$");   * sizeof(int) < 4.  sizeof(int) > 4 is fine; all the world's not a VAX.   */ -static const char *inet_ntop4 __P((const u_char *src, char *dst, -    socklen_t size)); -static const char *inet_ntop6 __P((const u_char *src, char *dst, -    socklen_t size)); +static const char *inet_ntop4(const u_char *src, char *dst, socklen_t size); +static const char *inet_ntop6(const u_char *src, char *dst, socklen_t size);  /* char *   * inet_ntop(af, src, dst, size) | 
