diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-14 20:19:51 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-14 20:19:51 +0000 |
commit | d95fee520b686b6dd3e3560e60cf26fd0fda6b61 (patch) | |
tree | e11fe0cb1ee54ef0f40b7817fdfdcfe4ffbb459a /libc | |
parent | 6d0846c71dce07af61cffb4a2945876be3274f00 (diff) |
I should also test w/ ipv6, missed that, thx SpanKY
Diffstat (limited to 'libc')
-rw-r--r-- | libc/inet/in6_addr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/inet/in6_addr.c b/libc/inet/in6_addr.c index 9e9edf41b..a5303da43 100644 --- a/libc/inet/in6_addr.c +++ b/libc/inet/in6_addr.c @@ -26,9 +26,9 @@ const struct in6_addr in6addr_any = { { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 } } }; //libc_hidden_proto(in6addr_any) //libc_hidden_def(in6addr_any) +libc_hidden_proto(in6addr_loopback) const struct in6_addr in6addr_loopback = { { { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1 } } }; -libc_hidden_proto(in6addr_loopback) libc_hidden_def(in6addr_loopback) #endif /* __UCLIBC_HAS_IPV6__ */ |