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:
deischen 2006-04-01 02:56:09 +00:00
parent 9fb762d231
commit db7df4904a

View File

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