diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-07-19 07:55:27 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-07-19 07:56:21 +0200 |
commit | 7131727c6ba451e1c5bf075194c7adc9292906c4 (patch) | |
tree | 97631b5bb76c074351e9d4278b7eeb290835b152 /include | |
parent | 72a51ac647b2fc33a44434d3d125a844801609ae (diff) | |
download | glibc-7131727c6ba451e1c5bf075194c7adc9292906c4.tar.gz glibc-7131727c6ba451e1c5bf075194c7adc9292906c4.tar.xz glibc-7131727c6ba451e1c5bf075194c7adc9292906c4.zip |
resolv: Move res_queriesmatch to its own file and into libc
And reformat it to GNU style. The treatment of this function matches res_nameinquery, for the reasons stated there. Reviewed-by: Carlos O'Donell <carlos@redhat.com> Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/resolv.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/resolv.h b/include/resolv.h index 4d328fe914..3590b6f496 100644 --- a/include/resolv.h +++ b/include/resolv.h @@ -54,7 +54,6 @@ libresolv_hidden_proto (__p_type) libresolv_hidden_proto (__loc_ntoa) libresolv_hidden_proto (__fp_nquery) libresolv_hidden_proto (__fp_query) -libresolv_hidden_proto (__res_queriesmatch) libresolv_hidden_proto (__b64_ntop) libresolv_hidden_proto (__dn_count_labels) @@ -68,6 +67,8 @@ extern __typeof (res_hnok) __libc_res_hnok; libc_hidden_proto (__libc_res_hnok) extern __typeof (__res_nameinquery) __libc_res_nameinquery; libc_hidden_proto (__libc_res_nameinquery) +extern __typeof (__res_queriesmatch) __libc_res_queriesmatch; +libc_hidden_proto (__libc_res_queriesmatch) # endif /* _RESOLV_H_ && !_ISOMAC */ #endif |