diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2007-07-28 19:23:16 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2007-07-28 19:23:16 +0000 |
commit | 1fc87e847b42f3f887e85972d16b576575033ad1 (patch) | |
tree | 2f115f8c691872efef8e66ff23375b615f1a4215 /numpy/core | |
parent | 5283f9b7975eecb6bc8c0ec1fea62b49988f3ec1 (diff) | |
download | numpy-1fc87e847b42f3f887e85972d16b576575033ad1.tar.gz |
Trying to fix unknown symbol __imp_tanhf linking error.
Diffstat (limited to 'numpy/core')
-rw-r--r-- | numpy/core/src/umathmodule.c.src | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/src/umathmodule.c.src b/numpy/core/src/umathmodule.c.src index dfbca6ece..6780bb7e1 100644 --- a/numpy/core/src/umathmodule.c.src +++ b/numpy/core/src/umathmodule.c.src @@ -60,6 +60,7 @@ static float ldexpf(float x, int i) return (float)ldexp((double)(x), i); } #endif +DL_IMPORT(float) tanhf(float); #endif #ifndef HAVE_INVERSE_HYPERBOLIC |