summaryrefslogtreecommitdiff
path: root/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'common.c')
-rw-r--r--common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.c b/common.c
index 17b594b..99e8fa1 100644
--- a/common.c
+++ b/common.c
@@ -94,12 +94,12 @@ int minMax(int x, int min, int max)
return x;
}
-double min(double a, double b)
+double _min(double a, double b)
{
return a < b ? a : b;
}
-double max(double a, double b)
+double _max(double a, double b)
{
return a >= b ? a : b;
}