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