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.
This commit is contained in:
Daniel Eischen 2006-04-01 02:56:09 +00:00
parent b2282f9a3f
commit 9fe1984e64
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=157350

View File

@ -37,3 +37,7 @@ FBSD_1.0 {
# FreeBSD additions
strtold;
};
FBSDprivate {
__gdtoa;
};