summaryrefslogtreecommitdiff
path: root/stdlib/strfroml.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/strfroml.c')
-rw-r--r--stdlib/strfroml.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/stdlib/strfroml.c b/stdlib/strfroml.c
index f8c8a4fcc5..bd6ebca0ad 100644
--- a/stdlib/strfroml.c
+++ b/stdlib/strfroml.c
@@ -16,7 +16,19 @@
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */
+#include <bits/floatn.h>
+
#define FLOAT long double
#define STRFROM strfroml
+#if __HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128
+# define strfromf128 __hide_strfromf128
+# include <stdlib.h>
+# undef strfromf128
+#endif
+
#include "strfrom-skeleton.c"
+
+#if __HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128
+weak_alias (strfroml, strfromf128)
+#endif