Fix signatures of external functions in the f2c-generated C sources

This commit is contained in:
martin-frbg
2022-12-14 14:06:55 +01:00
parent 48f4151373
commit 8df791e513
1949 changed files with 14669 additions and 14041 deletions

View File

@@ -683,7 +683,7 @@ mv.f"> */
/* > \ingroup complexGEcomputational */
/* ===================================================================== */
/* Subroutine */ int cla_geamv_(integer *trans, integer *m, integer *n, real
/* Subroutine */ void cla_geamv_(integer *trans, integer *m, integer *n, real
*alpha, complex *a, integer *lda, complex *x, integer *incx, real *
beta, real *y, integer *incy)
{
@@ -739,13 +739,13 @@ mv.f"> */
}
if (info != 0) {
xerbla_("CLA_GEAMV ", &info, (ftnlen)10);
return 0;
return;
}
/* Quick return if possible. */
if (*m == 0 || *n == 0 || *alpha == 0.f && *beta == 1.f) {
return 0;
return;
}
/* Set LENX and LENY, the lengths of the vectors x and y, and set */
@@ -916,7 +916,7 @@ mv.f"> */
}
}
return 0;
return;
/* End of CLA_GEAMV */