]> git.saurik.com Git - apple/libc.git/blob - net/FreeBSD/inet_ntoa.c.patch
Libc-594.1.4.tar.gz
[apple/libc.git] / net / FreeBSD / inet_ntoa.c.patch
1 --- inet_ntoa.c.orig 2008-09-01 21:00:28.000000000 -0700
2 +++ inet_ntoa.c 2008-09-01 21:00:53.000000000 -0700
3 @@ -59,6 +59,7 @@ inet_ntoa(struct in_addr in) {
4 return (ret);
5 }
6
7 +#if 0
8 char *
9 inet_ntoa_r(struct in_addr in, char *buf, socklen_t size)
10 {
11 @@ -66,6 +67,7 @@ inet_ntoa_r(struct in_addr in, char *buf
12 (void) inet_ntop(AF_INET, &in, buf, size);
13 return (buf);
14 }
15 +#endif
16
17 /*
18 * Weak aliases for applications that use certain private entry points,