reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
// RUN: %libomp-compile-and-run
#include <stdio.h>
#include <stdlib.h>
#include "omp_testsuite.h"

int test_has_openmp()
{
  int rvalue = 0;
#ifdef _OPENMP
  rvalue = 1;
#endif
  return (rvalue);
}

int main()
{
  int i;
  int num_failed=0;
  if(!test_has_openmp()) {
    num_failed++;
  }
  return num_failed;
}