10 lines
147 B
C++
10 lines
147 B
C++
|
|
||
|
// Forward declaration
|
||
|
bool libStrict();
|
||
|
bool libRelaxed();
|
||
|
|
||
|
int main(int argv, char** args)
|
||
|
{
|
||
|
return (libStrict() && libRelaxed()) ? 0 : -1;
|
||
|
}
|