Test which checks the OpenMp support. 2.0 _OPENMP #include #include "omp_testsuite.h" int has_openmp(FILE * logFile){ int rvalue = 0; #ifdef _OPENMP rvalue = 1; #endif #if 0 rvalue = 1; #endif return (rvalue); }