strict.cpp 115 B

1234567
  1. // Forward declaration
  2. bool commonStrict();
  3. int main(int argv, char** args)
  4. {
  5. return commonStrict() ? 0 : -1;
  6. }