mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-05 06:40:26 -06:00
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;
|
|
}
|