14 lines
163 B
C
Raw Normal View History

2015-04-27 22:25:09 +02:00
#ifndef NO_NEED_TO_CALL
extern int icasetest();
#endif
int main(int argc, char** argv)
{
#ifdef NO_NEED_TO_CALL
return 0;
#else
return icasetest();
#endif
}