From db7df4904aeaec2acedfa01ce69eefaae52b6537 Mon Sep 17 00:00:00 2001 From: deischen Date: Sat, 1 Apr 2006 02:56:09 +0000 Subject: [PATCH] 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. --- lib/libc/gdtoa/Symbol.map | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/libc/gdtoa/Symbol.map b/lib/libc/gdtoa/Symbol.map index ff0c0544062f..94cf1dec1614 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; +};