mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-19 13:09:47 -06:00
8 lines
115 B
C++
8 lines
115 B
C++
// Forward declaration
|
|
bool commonStrict();
|
|
|
|
int main(int argv, char** args)
|
|
{
|
|
return commonStrict() ? 0 : -1;
|
|
}
|