diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2007-07-28 10:19:01 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2007-07-28 10:19:01 +0000 |
commit | fab6ff3c4e9fcff08eb0e85823f8ae70e49deecb (patch) | |
tree | b535e7cf872ad3e3521eb9c4c2d3f10e29ac9100 /numpy | |
parent | a187b6e0d48aa9f0d9db7472008b165b17371ebf (diff) | |
download | numpy-fab6ff3c4e9fcff08eb0e85823f8ae70e49deecb.tar.gz |
Trying to fix inconsisted dll linkage warning, 3.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/src/umathmodule.c.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/umathmodule.c.src b/numpy/core/src/umathmodule.c.src index 90157f825..8fa0f42a0 100644 --- a/numpy/core/src/umathmodule.c.src +++ b/numpy/core/src/umathmodule.c.src @@ -66,7 +66,7 @@ static double atanh(double x) #undef sqrtf #endif float log1pf(float); -#if defined(MS_WIN64) +#if defined(_WIN64) float __cdecl logf(float); float __cdecl sqrtf(float); #else |