aboutsummaryrefslogtreecommitdiffstats
path: root/builtin.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2013-12-10 21:04:14 +0200
committerArnold D. Robbins <arnold@skeeve.com>2013-12-10 21:04:14 +0200
commit71e06c39df20400fbc04d7a3eba04700c27928f8 (patch)
tree71ea32d90dbe2af7a25f8d2dcaac8b13d32c98de /builtin.c
parent1edf4055bc5d91cd77228da9b2756ac8f4e7b004 (diff)
downloadegawk-71e06c39df20400fbc04d7a3eba04700c27928f8.tar.gz
egawk-71e06c39df20400fbc04d7a3eba04700c27928f8.tar.bz2
egawk-71e06c39df20400fbc04d7a3eba04700c27928f8.zip
Remove unneeded Floor and Ceil wrapper functions.
Diffstat (limited to 'builtin.c')
-rw-r--r--builtin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin.c b/builtin.c
index bb7050b0..7a969cbc 100644
--- a/builtin.c
+++ b/builtin.c
@@ -469,9 +469,9 @@ double
double_to_int(double d)
{
if (d >= 0)
- d = Floor(d);
+ d = floor(d);
else
- d = Ceil(d);
+ d = ceil(d);
return d;
}