Add main.c file required by the CMake build.

This commit is contained in:
Danila Fedorin 2016-12-20 23:30:15 -08:00
parent 79683c63c6
commit c83a8f5b00
1 changed files with 5 additions and 0 deletions

5
src/main.c Normal file
View File

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