diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-01-20 09:33:59 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-20 09:33:59 +1100 |
commit | eee751e74803c894b39a62d5843334762f53ed6f (patch) | |
tree | 9a8dd0583f6a186a9c8e40f9f0a9b483c3442bdc /numpy/linalg/lapack_lite/f2c.h | |
parent | 06a19d6a362af2508d1e11dce47eb2d18a419383 (diff) | |
parent | 89aa3ef992f8ee1633b16495ad5854fa7e8653ce (diff) | |
download | numpy-eee751e74803c894b39a62d5843334762f53ed6f.tar.gz |
Merge pull request #15224 from pv/lapack-lite-symrename
MAINT: linalg: use symbol suffix in fallback lapack_lite
Diffstat (limited to 'numpy/linalg/lapack_lite/f2c.h')
-rw-r--r-- | numpy/linalg/lapack_lite/f2c.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/numpy/linalg/lapack_lite/f2c.h b/numpy/linalg/lapack_lite/f2c.h index 4462eaa74..d3fbfc177 100644 --- a/numpy/linalg/lapack_lite/f2c.h +++ b/numpy/linalg/lapack_lite/f2c.h @@ -11,6 +11,8 @@ #include "numpy/npy_common.h" #include "npy_cblas.h" +#include "lapack_lite_names.h" + typedef CBLAS_INT integer; typedef char *address; typedef short int shortint; @@ -383,6 +385,9 @@ extern void z_log(doublecomplex *, doublecomplex *); extern void z_sin(doublecomplex *, doublecomplex *); extern void z_sqrt(doublecomplex *, doublecomplex *); +extern double f__cabs(double, double); +extern double f__cabsf(float, float); + #ifdef __cplusplus } #endif |