aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/ieee754/float128/strfromf128.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/ieee754/float128/strfromf128.c')
-rw-r--r--sysdeps/ieee754/float128/strfromf128.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/sysdeps/ieee754/float128/strfromf128.c b/sysdeps/ieee754/float128/strfromf128.c
index 597c7e6..c3183cd 100644
--- a/sysdeps/ieee754/float128/strfromf128.c
+++ b/sysdeps/ieee754/float128/strfromf128.c
@@ -16,10 +16,21 @@
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */
+#include <bits/floatn.h>
+
#define FLOAT _Float128
#define STRFROM strfromf128
-#include <bits/floatn.h>
+#if __HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE
+# define strfromf64x __hide_strfromf64x
+# include <stdlib.h>
+# undef strfromf64x
+#endif
+
#include <float128_private.h>
#include <stdlib/strfrom-skeleton.c>
+
+#if __HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE
+weak_alias (strfromf128, strfromf64x)
+#endif