diff options
author | deischen <deischen@FreeBSD.org> | 2006-04-01 02:56:09 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2006-04-01 02:56:09 +0000 |
commit | db7df4904aeaec2acedfa01ce69eefaae52b6537 (patch) | |
tree | 7b6acbd962bc635dee7c12fa208b2d2b34123415 /lib/libc/gdtoa | |
parent | 9fb762d2310a1ad2b83b2763b6b5b87d8234ca7a (diff) | |
download | FreeBSD-src-db7df4904aeaec2acedfa01ce69eefaae52b6537.zip FreeBSD-src-db7df4904aeaec2acedfa01ce69eefaae52b6537.tar.gz |
Add __gdtoa to the list of FreeBSD private symbols. Unfortunately,
this is used by some 3rd party applications when {e,f,g}cvt() are
not found. POSIX defines the xcvt() funtions but says they are
deprecated in favor or sprintf(). We'll import these functions
from OpenBSD and remove __gdtoa() from the exported interfaces
when libc version is bumped.
Diffstat (limited to 'lib/libc/gdtoa')
-rw-r--r-- | lib/libc/gdtoa/Symbol.map | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libc/gdtoa/Symbol.map b/lib/libc/gdtoa/Symbol.map index ff0c054..94cf1de 100644 --- a/lib/libc/gdtoa/Symbol.map +++ b/lib/libc/gdtoa/Symbol.map @@ -37,3 +37,7 @@ FBSD_1.0 { # FreeBSD additions strtold; }; + +FBSDprivate { + __gdtoa; +}; |