diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-31 16:07:52 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-31 16:07:52 +0200 |
commit | 59bd52b087671504bff3176e8417e56da1ca2085 (patch) | |
tree | ecfdbcb11829e1d9a27e75ae2d1745db38f364be /resolv/inet_ntop.c | |
parent | fc3d94979e1f04df2014b4c1a01c39a0a74f12c3 (diff) | |
download | glibc-59bd52b087671504bff3176e8417e56da1ca2085.tar glibc-59bd52b087671504bff3176e8417e56da1ca2085.tar.gz glibc-59bd52b087671504bff3176e8417e56da1ca2085.tar.bz2 glibc-59bd52b087671504bff3176e8417e56da1ca2085.zip |
resolv: Remove internal_function attribute
Diffstat (limited to 'resolv/inet_ntop.c')
-rw-r--r-- | resolv/inet_ntop.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/resolv/inet_ntop.c b/resolv/inet_ntop.c index 01c45ce8b7..c4d38c0f95 100644 --- a/resolv/inet_ntop.c +++ b/resolv/inet_ntop.c @@ -38,10 +38,8 @@ * sizeof(int) < 4. sizeof(int) > 4 is fine; all the world's not a VAX. */ -static const char *inet_ntop4 (const u_char *src, char *dst, socklen_t size) - internal_function; -static const char *inet_ntop6 (const u_char *src, char *dst, socklen_t size) - internal_function; +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) @@ -79,7 +77,6 @@ libc_hidden_def (inet_ntop) * Paul Vixie, 1996. */ static const char * -internal_function inet_ntop4 (const u_char *src, char *dst, socklen_t size) { static const char fmt[] = "%u.%u.%u.%u"; @@ -99,7 +96,6 @@ inet_ntop4 (const u_char *src, char *dst, socklen_t size) * Paul Vixie, 1996. */ static const char * -internal_function inet_ntop6 (const u_char *src, char *dst, socklen_t size) { /* |