You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
368 B
22 lines
368 B
4 years ago
|
#include <stdio.h>
|
||
|
int main(int argc, char** argv)
|
||
|
{
|
||
|
#ifdef DEBUG
|
||
|
#define FORMAT "argc=%d\n"
|
||
|
std::printf(FORMAT,argc);
|
||
|
#undef FORMAT
|
||
|
#endif DEBUG
|
||
|
#ifdef _OPENMP
|
||
|
#pragma omp parallel
|
||
|
{
|
||
|
printf("Hello from thread!\n");
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#pragma CoverageScanner(cov-off)
|
||
|
__pragma( CoverageScanner(cov-off) )
|
||
|
_Pragma( CoverageScanner(cov-off) )
|
||
|
|
||
|
return 0;
|
||
|
}
|