- Added unused function, to test programs for that later.

This commit is contained in:
ccremers 2007-01-06 18:44:04 +00:00
parent 0fddd9f566
commit 179cc9e3be

View File

@ -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;
}