OpenMP-Examples/sources/Example_cond_comp.1.c

19 lines
239 B
C

/*
* @@name: cond_comp.1c
* @@type: C
* @@compilable: yes
* @@linkable: yes
* @@expect: success
*/
#include <stdio.h>
int main()
{
# ifdef _OPENMP
printf("Compiled by an OpenMP-compliant implementation.\n");
# endif
return 0;
}