OpenMP-Examples/sources/Example_cond_comp.1c.c
2015-01-13 11:38:24 -08:00

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;
}