diff options
Diffstat (limited to 'lib/msun/src/s_ceil.c')
-rw-r--r-- | lib/msun/src/s_ceil.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/msun/src/s_ceil.c b/lib/msun/src/s_ceil.c index 210b7ee..b25c217 100644 --- a/lib/msun/src/s_ceil.c +++ b/lib/msun/src/s_ceil.c @@ -70,3 +70,7 @@ ceil(double x) INSERT_WORDS(x,i0,i1); return x; } + +#if LDBL_MANT_DIG == 53 +__weak_reference(ceil, ceill); +#endif |