summaryrefslogtreecommitdiff
path: root/src/math/remquo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/remquo.c')
-rw-r--r--src/math/remquo.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/math/remquo.c b/src/math/remquo.c
index 88e59c0f..7a117ba7 100644
--- a/src/math/remquo.c
+++ b/src/math/remquo.c
@@ -4,6 +4,7 @@
TYPE TGFN(remquo)(TYPE x, TYPE y, int *quo)
{
+ (void)quo;
return x - y;
}