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
+4 -4
View File
@@ -644,7 +644,7 @@ static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integ
/* > \ingroup complex16SYauxiliary */
/* ===================================================================== */
/* Subroutine */ int zsyr_(char *uplo, integer *n, doublecomplex *alpha,
/* Subroutine */ void zsyr_(char *uplo, integer *n, doublecomplex *alpha,
doublecomplex *x, integer *incx, doublecomplex *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_("ZSYR ", &info, (ftnlen)6);
return 0;
return;
}
/* Quick return if possible. */
if (*n == 0 || alpha->r == 0. && alpha->i == 0.) {
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 ZSYR */