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

@@ -653,7 +653,7 @@ static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integ
/* > \endverbatim */
/* > */
/* ===================================================================== */
/* Subroutine */ int zppsv_(char *uplo, integer *n, integer *nrhs,
/* Subroutine */ void zppsv_(char *uplo, integer *n, integer *nrhs,
doublecomplex *ap, doublecomplex *b, integer *ldb, integer *info)
{
/* System generated locals */
@@ -661,7 +661,8 @@ static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integ
/* Local variables */
extern logical lsame_(char *, char *);
extern /* Subroutine */ int xerbla_(char *, integer *, ftnlen), zpptrf_(
extern /* Subroutine */ int xerbla_(char *, integer *, ftnlen);
extern void zpptrf_(
char *, integer *, doublecomplex *, integer *), zpptrs_(
char *, integer *, integer *, doublecomplex *, doublecomplex *,
integer *, integer *);
@@ -698,7 +699,7 @@ static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integ
if (*info != 0) {
i__1 = -(*info);
xerbla_("ZPPSV ", &i__1, (ftnlen)6);
return 0;
return;
}
/* Compute the Cholesky factorization A = U**H *U or A = L*L**H. */
@@ -711,7 +712,7 @@ static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integ
zpptrs_(uplo, n, nrhs, &ap[1], &b[b_offset], ldb, info);
}
return 0;
return;
/* End of ZPPSV */