OpenMPTryFlag.cpp 93 B

123456789
  1. #include <omp.h>
  2. int main() {
  3. #ifdef _OPENMP
  4. return 0;
  5. #else
  6. breaks_on_purpose
  7. #endif
  8. }