From c4085f9965cd541f26a68d5fb70c43238a3811b6 Mon Sep 17 00:00:00 2001 From: kargl Date: Thu, 7 Nov 2013 21:20:34 +0000 Subject: Fix bulding libm on platforms with LDBL_MANT_DIG == 53. Reported by: ian --- lib/msun/src/s_round.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/msun/src') diff --git a/lib/msun/src/s_round.c b/lib/msun/src/s_round.c index 8fd407d..efe5029 100644 --- a/lib/msun/src/s_round.c +++ b/lib/msun/src/s_round.c @@ -52,3 +52,7 @@ round(double x) return (-t); } } + +#if (LDBL_MANT_DIG == 53) +__weak_reference(round, roundl); +#endif -- cgit v1.1