diff options
author | Jim Huang <jserv@0xlab.org> | 2010-10-15 02:02:57 +0800 |
---|---|---|
committer | Jim Huang <jserv@0xlab.org> | 2010-10-15 02:10:29 +0800 |
commit | 7cc5666d94615d9249163dc7ac0f58c2614497ce (patch) | |
tree | da6ee98c595330b3ff97ea743d31d769e19c83ca /libc/netbsd/resolv/res_init.c | |
parent | f67e5211e045af1b12f646448a5a35f96ba5e8f1 (diff) |
resolv: make internal symbols static/hidden
Change-Id: I988b83613e6252c0cc961555e81c10f856a38b37
Diffstat (limited to 'libc/netbsd/resolv/res_init.c')
-rw-r--r-- | libc/netbsd/resolv/res_init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/netbsd/resolv/res_init.c b/libc/netbsd/resolv/res_init.c index 81e570f77..2158f2062 100644 --- a/libc/netbsd/resolv/res_init.c +++ b/libc/netbsd/resolv/res_init.c @@ -113,8 +113,8 @@ __RCSID("$NetBSD: res_init.c,v 1.8 2006/03/19 03:10:08 christos Exp $"); #define DNS_PROP_NAME_PREFIX "net.dns" #define DNS_CHANGE_PROP_NAME "net.dnschange" #define DNS_SEARCH_PROP_NAME "net.dns.search" -const prop_info *dns_change_prop; -int dns_last_change_counter; +static const prop_info *dns_change_prop; +static int dns_last_change_counter; static int _get_dns_change_count(); #else #include <resolv.h> @@ -170,7 +170,7 @@ res_ninit(res_state statp) { } #ifdef ANDROID_CHANGES -int load_domain_search_list(res_state statp) { +static int load_domain_search_list(res_state statp) { char propvalue[PROP_VALUE_MAX]; register char *cp, **pp; |