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

@@ -626,7 +626,7 @@ f"> */
/* > \ingroup complexOTHERcomputational */
/* ===================================================================== */
/* Subroutine */ int cppequ_(char *uplo, integer *n, complex *ap, real *s,
/* Subroutine */ void cppequ_(char *uplo, integer *n, complex *ap, real *s,
real *scond, real *amax, integer *info)
{
/* System generated locals */
@@ -668,7 +668,7 @@ f"> */
if (*info != 0) {
i__1 = -(*info);
xerbla_("CPPEQU", &i__1, (ftnlen)6);
return 0;
return;
}
/* Quick return if possible */
@@ -676,7 +676,7 @@ f"> */
if (*n == 0) {
*scond = 1.f;
*amax = 0.f;
return 0;
return;
}
/* Initialize SMIN and AMAX. */
@@ -734,7 +734,7 @@ f"> */
for (i__ = 1; i__ <= i__1; ++i__) {
if (s[i__] <= 0.f) {
*info = i__;
return 0;
return;
}
/* L30: */
}
@@ -753,7 +753,7 @@ f"> */
*scond = sqrt(smin) / sqrt(*amax);
}
return 0;
return;
/* End of CPPEQU */