aboutsummaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
authorrodri <rgl@antares-labs.eu>2020-07-01 21:44:44 +0000
committerrodri <rgl@antares-labs.eu>2020-07-01 21:44:44 +0000
commitbfacf5a78ddf09baa32c8d6c23d2dfb89d59c15d (patch)
treea0e3be0418d8859b4097043105907095174f440d /utils.c
parent26c7bae49165a78f3e58e0dd45244c8942a1fe22 (diff)
downloadpuppeteer-master.tar.gz
puppeteer-master.tar.bz2
puppeteer-master.zip
add better brush color management. fix issues with procrfork. replace procexecl with execl.HEADmaster
fclamp is now part of libgeometry so get rid of it.
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)
{