tests: Remove redundant return statements

When the execution reaches the end of the main functions, they implicitly return a successful status.
This commit is contained in:
Tibor Nagy
2019-02-20 21:09:03 +01:00
parent c19cc8b731
commit 4381bb2a22
58 changed files with 5 additions and 110 deletions
-1
View File
@@ -38,5 +38,4 @@ int main(void) {
return EXIT_FAILURE;
}
puts("Correct memcmp");
return EXIT_SUCCESS;
}