Updated license

This commit is contained in:
Christophe Riccio
2014-11-25 22:25:24 +01:00
parent 39334f282c
commit c20df07879
8 changed files with 63 additions and 19 deletions

View File

@@ -243,6 +243,15 @@ int test_ctr()
return Error;
}
int perf_mul()
{
int Error = 0;
return Error;
}
int main()
{
int Error = 0;
@@ -253,5 +262,7 @@ int main()
Error += test_operators();
Error += test_inverse();
Error += perf_mul();
return Error;
}