Tests/CustomCommand: Do not use 'main' in a library

Otherwise when linking 'CustomCommand' some linkers report

 ld: 0711-224 WARNING: Duplicate symbol: .main

Suggested-by: Daniel R. Gomez <gomez@teragram.com>
This commit is contained in:
Brad King 2012-07-09 17:04:48 -04:00
parent f70f55c064
commit d54618f36e
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#include "generated.h"
int main()
int mainGeneratedHeader()
{
return 0;
}