summaryrefslogtreecommitdiff
path: root/sysdeps/libm-ieee754/s_finite.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/libm-ieee754/s_finite.c')
-rw-r--r--sysdeps/libm-ieee754/s_finite.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/libm-ieee754/s_finite.c b/sysdeps/libm-ieee754/s_finite.c
index c2c428595c..b12ff42360 100644
--- a/sysdeps/libm-ieee754/s_finite.c
+++ b/sysdeps/libm-ieee754/s_finite.c
@@ -5,7 +5,7 @@
*
* Developed at SunPro, a Sun Microsystems, Inc. business.
* Permission to use, copy, modify, and distribute this
- * software is freely granted, provided that this notice
+ * software is freely granted, provided that this notice
* is preserved.
* ====================================================
*/
@@ -34,3 +34,7 @@ static char rcsid[] = "$NetBSD: s_finite.c,v 1.8 1995/05/10 20:47:17 jtc Exp $";
return (int)((u_int32_t)((hx&0x7fffffff)-0x7ff00000)>>31);
}
weak_alias (__finite, finite)
+#ifdef NO_LONG_DOUBLE
+strong_alias (__finite, __finitel)
+weak_alias (__finite, finitel)
+#endif