Add missing return codes for main()

This commit is contained in:
Matt Davis 2015-01-14 09:59:33 -08:00
parent 90cb429d32
commit dc1b4febde
6 changed files with 9 additions and 4 deletions

View File

@ -6,10 +6,11 @@
* @@expect: success
*/
void work();
void main()
int main()
{
#pragma omp parallel proc_bind(spread) num_threads(4)
{
work();
}
return 0;
}

View File

@ -6,10 +6,11 @@
* @@expect: success
*/
void work();
void main()
int main()
{
#pragma omp parallel proc_bind(close) num_threads(4)
{
work();
}
return 0;
}

View File

@ -6,10 +6,11 @@
* @@expect: success
*/
void work();
void main()
int main()
{
#pragma omp parallel proc_bind(master) num_threads(4)
{
work();
}
return 0;
}

View File

@ -28,5 +28,5 @@ int main( ) {
printf( "section_count %d\n", section_count );
}
}
return 1;
return 0;
}

View File

@ -26,4 +26,5 @@ int main (void)
#pragma omp single
printf ("Sum is %d\n", a);
}
return 0;
}

View File

@ -56,4 +56,5 @@ int main()
}
} // only now is background work required to be complete
print_results();
return 0;
}