Fix signatures of external functions in the f2c-generated C sources
This commit is contained in:
@@ -628,7 +628,7 @@ static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integ
|
||||
/* > \ingroup complexPOcomputational */
|
||||
|
||||
/* ===================================================================== */
|
||||
/* Subroutine */ int cpoequb_(integer *n, complex *a, integer *lda, real *s,
|
||||
/* Subroutine */ void cpoequb_(integer *n, complex *a, integer *lda, real *s,
|
||||
real *scond, real *amax, integer *info)
|
||||
{
|
||||
/* System generated locals */
|
||||
@@ -672,7 +672,7 @@ static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integ
|
||||
if (*info != 0) {
|
||||
i__1 = -(*info);
|
||||
xerbla_("CPOEQUB", &i__1, (ftnlen)7);
|
||||
return 0;
|
||||
return;
|
||||
}
|
||||
|
||||
/* Quick return if possible. */
|
||||
@@ -680,7 +680,7 @@ static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integ
|
||||
if (*n == 0) {
|
||||
*scond = 1.f;
|
||||
*amax = 0.f;
|
||||
return 0;
|
||||
return;
|
||||
}
|
||||
base = slamch_("B");
|
||||
tmp = -.5f / log(base);
|
||||
@@ -713,7 +713,7 @@ static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integ
|
||||
for (i__ = 1; i__ <= i__1; ++i__) {
|
||||
if (s[i__] <= 0.f) {
|
||||
*info = i__;
|
||||
return 0;
|
||||
return;
|
||||
}
|
||||
/* L20: */
|
||||
}
|
||||
@@ -734,7 +734,7 @@ static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integ
|
||||
*scond = sqrt(smin) / sqrt(*amax);
|
||||
}
|
||||
|
||||
return 0;
|
||||
return;
|
||||
|
||||
/* End of CPOEQUB */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user