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
-2
View File
@@ -24,6 +24,4 @@ int main(void) {
ptra[i] = (char)i;
}
free(ptra);
return EXIT_SUCCESS;
}