aboutsummaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/utils.c b/utils.c
index 4813da5..e3b5737 100644
--- a/utils.c
+++ b/utils.c
@@ -8,12 +8,6 @@ clamp(int n, int min, int max)
return n < min? min: n > max? max: n;
}
-double
-fclamp(double n, double min, double max)
-{
- return n < min? min: n > max? max: n;
-}
-
int
alphachan(ulong chan)
{