From 179cc9e3bedcbd65e4c77e328da1ef5ebaa807bd Mon Sep 17 00:00:00 2001 From: ccremers Date: Sat, 6 Jan 2007 18:44:04 +0000 Subject: [PATCH] - Added unused function, to test programs for that later. --- src/term.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/term.c b/src/term.c index b928188..63074fe 100644 --- a/src/term.c +++ b/src/term.c @@ -1485,3 +1485,10 @@ iterateTermOther (const int myrun, Term t, int (*callback) (Term t)) } return term_iterate_deVar (t, testOther, NULL, NULL, NULL); } + +//! Unused function (here for testing of unused function detectors) +int +unusedFunction (int test) +{ + return test + 1; +}