Add basic main() function, so the project now compiles without errors

This commit is contained in:
Gergely Polonkai 2013-07-09 01:32:34 +02:00
parent 0103f1f3eb
commit 46f32b3e12

6
src/gradix.c Normal file
View File

@ -0,0 +1,6 @@
int
main(int argc, char *argv[])
{
return 0;
}