diff options
author | deischen <deischen@FreeBSD.org> | 2006-04-15 15:35:20 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2006-04-15 15:35:20 +0000 |
commit | 6c39badccc7cab2d2a76be09c69cebf88d92c1a4 (patch) | |
tree | b404e65e68fd576e9fd45fe37b286636e12a835a | |
parent | 385ea606db218d41c23b26f0a952518ef1e5ba76 (diff) | |
download | FreeBSD-src-6c39badccc7cab2d2a76be09c69cebf88d92c1a4.zip FreeBSD-src-6c39badccc7cab2d2a76be09c69cebf88d92c1a4.tar.gz |
Don't export __gdtoa. The only known ports that rely on
this or the deprecated POSIX functions {e,g,f}cvt() have
newer versions that do not (rely on them).
Requested by: marius
-rw-r--r-- | lib/libc/gdtoa/Symbol.map | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/libc/gdtoa/Symbol.map b/lib/libc/gdtoa/Symbol.map index 94cf1de..62d6c70 100644 --- a/lib/libc/gdtoa/Symbol.map +++ b/lib/libc/gdtoa/Symbol.map @@ -2,7 +2,7 @@ FBSD_1.0 { # Standard functions from contrib/gdtoa - dtoa; + # (dtoa is renamed to __dtoa and not exported) freedtoa; g_Qfmt; g_ddfmt; @@ -37,7 +37,3 @@ FBSD_1.0 { # FreeBSD additions strtold; }; - -FBSDprivate { - __gdtoa; -}; |