diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2006-05-21 11:29:26 +0000 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2006-05-21 11:29:26 +0000 |
commit | 473c8b2ecfef65db185878f94545298e77d3524f (patch) | |
tree | 5bde0e1f8171552c8931df8a0388d169b0ae48f2 | |
parent | 1bdf356bd3bdaffc0a7fe40838001a662d7d3e26 (diff) |
Notes
-rw-r--r-- | lib/libc/resolv/Symbol.map | 3 | ||||
-rw-r--r-- | lib/libc/resolv/h_errno.c | 3 | ||||
-rw-r--r-- | lib/libc/resolv/res_state.c | 9 |
3 files changed, 0 insertions, 15 deletions
diff --git a/lib/libc/resolv/Symbol.map b/lib/libc/resolv/Symbol.map index 7fcd0d97e95c4..068ce83e8a492 100644 --- a/lib/libc/resolv/Symbol.map +++ b/lib/libc/resolv/Symbol.map @@ -54,11 +54,8 @@ FBSD_1.0 { p_secstodate; __res_init; __res_randomid; - ___res; - ___res_ext; __h_errno; __h_errno_set; - __h_error; h_errno; res_init; __res_findzonecut2; diff --git a/lib/libc/resolv/h_errno.c b/lib/libc/resolv/h_errno.c index 4d471b49cbc4d..88d15aee7f9cb 100644 --- a/lib/libc/resolv/h_errno.c +++ b/lib/libc/resolv/h_errno.c @@ -44,6 +44,3 @@ __h_errno_set(res_state res, int err) { h_errno = res->res_h_errno = err; } - -/* binary backward compatibility for FreeBSD 5.x and 6.x */ -__weak_reference(__h_errno, __h_error); diff --git a/lib/libc/resolv/res_state.c b/lib/libc/resolv/res_state.c index b2742ce42d3f8..59c943060757c 100644 --- a/lib/libc/resolv/res_state.c +++ b/lib/libc/resolv/res_state.c @@ -85,12 +85,3 @@ __res_state(void) free(statp); return (&_res); } - -/* binary backward compatibility for FreeBSD 5.x and 6.x */ -struct __res_state_ext * -___res_ext(void) -{ - return (__res_state()->_u._ext.ext); -} - -__weak_reference(__res_state, ___res); |