Change return code to 0

This commit is contained in:
Luka Barbić 2020-06-18 20:38:33 +02:00 committed by GitHub
parent 0c152fcd72
commit 7372c572d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,5 +2,5 @@
int main(void) {
printf("good\n");
return 1;
return 0;
}