Fix signatures of external functions in the f2c-generated C sources
This commit is contained in:
@@ -644,7 +644,7 @@ static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integ
|
||||
/* > \ingroup complexSYauxiliary */
|
||||
|
||||
/* ===================================================================== */
|
||||
/* Subroutine */ int csyr_(char *uplo, integer *n, complex *alpha, complex *x,
|
||||
/* Subroutine */ void csyr_(char *uplo, integer *n, complex *alpha, complex *x,
|
||||
integer *incx, complex *a, integer *lda)
|
||||
{
|
||||
/* System generated locals */
|
||||
@@ -690,13 +690,13 @@ static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integ
|
||||
}
|
||||
if (info != 0) {
|
||||
xerbla_("CSYR ", &info, (ftnlen)6);
|
||||
return 0;
|
||||
return;
|
||||
}
|
||||
|
||||
/* Quick return if possible. */
|
||||
|
||||
if (*n == 0 || alpha->r == 0.f && alpha->i == 0.f) {
|
||||
return 0;
|
||||
return;
|
||||
}
|
||||
|
||||
/* Set the start point in X if the increment is not unity. */
|
||||
@@ -835,7 +835,7 @@ static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integ
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
return;
|
||||
|
||||
/* End of CSYR */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user