diff options
author | Malcolm Smith <smith@chaquo.com> | 2018-04-16 14:04:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-16 14:04:24 +0100 |
commit | b3e82b579baafaa2002e51a9cde68643087d455c (patch) | |
tree | 037cf23dcf322458a146a553cf08a8e6c12dafef | |
parent | a9cb8c03bc7f1aae842ac8a3baa5ff388224044a (diff) | |
download | numpy-b3e82b579baafaa2002e51a9cde68643087d455c.tar.gz |
Add missing underscore to prototype in check_embedded_lapack
-rw-r--r-- | numpy/distutils/system_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index d12381028..2a3ff2e52 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -1882,7 +1882,7 @@ class openblas_lapack_info(openblas_info): c = customized_ccompiler() tmpdir = tempfile.mkdtemp() - s = """void zungqr(); + s = """void zungqr_(); int main(int argc, const char *argv[]) { zungqr_(); |