aboutsummaryrefslogtreecommitdiff
path: root/final/runtime/test/api/has_openmp.c
blob: da95f595fb9d431a71750c85292a6ad284ce1bdb (plain)
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;
}