Change return code to EXIT_SUCCESS.

This commit is contained in:
Danila Fedorin 2017-02-14 19:13:43 -08:00
parent 140b727cc7
commit f18a31c0df
1 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,5 @@
#include <stdlib.h>
int main(int argc, char** argv){
return 0;
return EXIT_SUCCESS;
}