diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-02-01 09:22:45 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-02-01 09:22:45 +0000 |
commit | f45706ca6ade259d2cf9397c35b0135991470197 (patch) | |
tree | e21580a7be5c6ab7c2e0ddd7be61b6a2f9c23bf5 /libc/inet/in6_addr.c | |
parent | 2fe646ffaa4a775a63d850a3591824e5cb85d13c (diff) |
global data uses libc_hidden_data_def, convert all -I hope- and add some new
Diffstat (limited to 'libc/inet/in6_addr.c')
-rw-r--r-- | libc/inet/in6_addr.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/inet/in6_addr.c b/libc/inet/in6_addr.c index a5303da43..c2ab375e6 100644 --- a/libc/inet/in6_addr.c +++ b/libc/inet/in6_addr.c @@ -24,12 +24,10 @@ #ifdef __UCLIBC_HAS_IPV6__ 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_def(in6addr_loopback) +libc_hidden_data_def(in6addr_loopback) #endif /* __UCLIBC_HAS_IPV6__ */ |