summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/frexp.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/gen/frexp.c')
-rw-r--r--lib/libc/gen/frexp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/frexp.c b/lib/libc/gen/frexp.c
index 22c4935abc7..f0834be5ff6 100644
--- a/lib/libc/gen/frexp.c
+++ b/lib/libc/gen/frexp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: frexp.c,v 1.9 2013/03/28 18:09:38 martynas Exp $ */
+/* $OpenBSD: frexp.c,v 1.10 2013/07/03 04:46:36 espie Exp $ */
/*-
* Copyright (c) 2004 David Schultz <das@FreeBSD.ORG>
@@ -66,6 +66,6 @@ frexp(double v, int *ex)
return (u.v);
}
-#if LDBL_MANT_DIG == 53
+#if LDBL_MANT_DIG == DBL_MANT_DIG
__strong_alias(frexpl, frexp);
-#endif /* LDBL_MANT_DIG == 53 */
+#endif /* LDBL_MANT_DIG == DBL_MANT_DIG */