Fix signatures of external functions in the f2c-generated C sources
This commit is contained in:
@@ -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 */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user