8 lines
115 B
C++
8 lines
115 B
C++
|
// Forward declaration
|
||
|
bool commonStrict();
|
||
|
|
||
|
int main(int argv, char** args)
|
||
|
{
|
||
|
return commonStrict() ? 0 : -1;
|
||
|
}
|