use 0 instead of EXIT_SUCCESS

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Gabriel Fioravante 2021-02-17 22:39:20 -05:00 committed by GitHub
parent cf95c1e27a
commit 679b30b725
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,5 +84,5 @@ static void test() {
int main()
{
test(); // run self-test implementations
return EXIT_SUCCESS;
return 0;
}