diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-10-18 05:10:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-10-18 05:10:37 +0000 |
commit | 6f9d8e68f6b1210af0a42c576687ad2fe7142100 (patch) | |
tree | b68ecd7d113f855fa664d605d393b7fcd1a7b2ba /resolv/res_query.c | |
parent | b11816b2ae94adaf8417a8841eea4bf2edc96811 (diff) | |
download | glibc-6f9d8e68f6b1210af0a42c576687ad2fe7142100.tar.gz |
Update.
2004-10-17 Ulrich Drepper <drepper@redhat.com>
* include/libc-symbols.h: Define libresolv_hidden_proto and friends.
* include/resolv.h: Add libresolv_hidden_proto for symbols defined,
used, and exported in libresolv.
* resolv/base64.c: Add libresolv_hidden_def.
* resolv/gethnamaddr.c: Likewise.
* resolv/ns_name.c: Likewise.
* resolv/ns_netint.c: Likewise.
* resolv/res_comp.c: Likewise.
* resolv/res_data.c: Likewise.
* resolv/res_debug.c: Likewise.
* resolv/res_mkquery.c: Likewise.
* resolv/res_query.c: Likewise.
* resolv/res_send.c: Likewise.
Diffstat (limited to 'resolv/res_query.c')
-rw-r--r-- | resolv/res_query.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/resolv/res_query.c b/resolv/res_query.c index d2ef3b5e93..0feba6687a 100644 --- a/resolv/res_query.c +++ b/resolv/res_query.c @@ -190,6 +190,7 @@ __libc_res_nquery(res_state statp, } return (n); } +libresolv_hidden_def (__libc_res_nquery) int res_nquery(res_state statp, @@ -201,6 +202,7 @@ res_nquery(res_state statp, return __libc_res_nquery(statp, name, class, type, answer, anslen, NULL); } +libresolv_hidden_def (res_nquery) /* * Formulate a normal query, send, and retrieve answer in supplied buffer. @@ -365,6 +367,7 @@ __libc_res_nsearch(res_state statp, RES_SET_H_ERRNO(statp, TRY_AGAIN); return (-1); } +libresolv_hidden_def (__libc_res_nsearch) int res_nsearch(res_state statp, @@ -376,6 +379,7 @@ res_nsearch(res_state statp, return __libc_res_nsearch(statp, name, class, type, answer, anslen, NULL); } +libresolv_hidden_def (res_nsearch) /* * Perform a call on res_query on the concatenation of name and domain, @@ -439,6 +443,7 @@ res_nquerydomain(res_state statp, return __libc_res_nquerydomain(statp, name, domain, class, type, answer, anslen, NULL); } +libresolv_hidden_def (res_nquerydomain) const char * res_hostalias(const res_state statp, const char *name, char *dst, size_t siz) { @@ -476,3 +481,4 @@ res_hostalias(const res_state statp, const char *name, char *dst, size_t siz) { fclose(fp); return (NULL); } +libresolv_hidden_def (res_hostalias) |