mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 22:54:10 +02:00
20 lines
312 B
Diff
20 lines
312 B
Diff
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -33,7 +33,7 @@ int main (int argc, char **argv)
|
|
{
|
|
MPI_Init(&argc,&argv);
|
|
MPI_Finalize();
|
|
-exit(0);
|
|
+return 0;
|
|
}
|
|
EOF
|
|
|
|
@@ -105,7 +105,7 @@ cat > conftest.c <<EOF
|
|
int main (int argc, char **argv)
|
|
{
|
|
printf ("%s-%s", PACKAGE, VERSION);
|
|
-exit(0);
|
|
+return 0;
|
|
}
|
|
EOF
|
|
|