aboutsummaryrefslogtreecommitdiffstats
path: root/floatcomp.c
diff options
context:
space:
mode:
Diffstat (limited to 'floatcomp.c')
-rw-r--r--floatcomp.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/floatcomp.c b/floatcomp.c
index ff6a4708..db1ed1e6 100644
--- a/floatcomp.c
+++ b/floatcomp.c
@@ -79,13 +79,7 @@ Please port the following code to your weird host;
AWKNUM
Floor(AWKNUM n)
{
- return floor(n
-#if 0
-#ifdef _CRAY
- * (1.0 + DBL_EPSILON)
-#endif
-#endif
- );
+ return floor(n);
}
/* Ceil --- do ceil(), also for Cray */
@@ -93,13 +87,7 @@ Floor(AWKNUM n)
AWKNUM
Ceil(AWKNUM n)
{
- return ceil(n
-#if 0
-#ifdef _CRAY
- * (1.0 + DBL_EPSILON)
-#endif
-#endif
- );
+ return ceil(n);
}
#ifdef HAVE_UINTMAX_T