From fb0937a69eb38e744577aa94a6338135f6c1c9b4 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Wed, 2 Jun 2004 22:14:25 +0000 Subject: Marked unused parameters with the new UNUSED() macro. --- Src/Modules/mathfunc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Src/Modules/mathfunc.c') diff --git a/Src/Modules/mathfunc.c b/Src/Modules/mathfunc.c index af4366420..691755683 100644 --- a/Src/Modules/mathfunc.c +++ b/Src/Modules/mathfunc.c @@ -462,7 +462,7 @@ math_func(char *name, int argc, mnumber *argv, int id) /**/ static mnumber -math_string(char *name, char *arg, int id) +math_string(UNUSED(char *name), char *arg, int id) { mnumber ret = zero_mnumber; char *send; @@ -556,7 +556,7 @@ math_string(char *name, char *arg, int id) /**/ int -setup_(Module m) +setup_(UNUSED(Module m)) { return 0; } @@ -578,7 +578,7 @@ cleanup_(Module m) /**/ int -finish_(Module m) +finish_(UNUSED(Module m)) { return 0; } -- cgit 1.4.1