summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/isnormal.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/gen/isnormal.c')
-rw-r--r--lib/libc/gen/isnormal.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/lib/libc/gen/isnormal.c b/lib/libc/gen/isnormal.c
index e35bddc2c35..8879218e7fe 100644
--- a/lib/libc/gen/isnormal.c
+++ b/lib/libc/gen/isnormal.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: isnormal.c,v 1.1 2008/07/24 09:31:07 martynas Exp $ */
+/* $OpenBSD: isnormal.c,v 1.2 2008/09/07 20:36:08 martynas Exp $ */
/*
* Copyright (c) 2008 Martynas Venckus <martynas@openbsd.org>
*
@@ -33,13 +33,3 @@ __isnormalf(float f)
return (p->sng_exp != 0 && p->sng_exp != SNG_EXP_INFNAN);
}
-
-#if 0 /* XXX */
-int
-__isnormall(long double e)
-{
- struct ieee_ext *p = (struct ieee_ext *)&e;
-
- return (p->ext_exp != 0 && p->ext_exp != EXT_EXP_INFNAN);
-}
-#endif /* XXX */