mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
inet: Add hidden prototype for __inet_network
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
This commit is contained in:
@@ -55,7 +55,7 @@
|
||||
* network numbers.
|
||||
*/
|
||||
uint32_t
|
||||
inet_network (const char *cp)
|
||||
__inet_network (const char *cp)
|
||||
{
|
||||
uint32_t val, base, n, i;
|
||||
char c;
|
||||
@@ -107,3 +107,5 @@ again:
|
||||
}
|
||||
return (val);
|
||||
}
|
||||
libc_hidden_def (__inet_network)
|
||||
weak_alias (__inet_network, inet_network)
|
||||
|
Reference in New Issue
Block a user