aboutsummaryrefslogtreecommitdiffstats
path: root/win32
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-18 06:31:42 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-18 06:31:42 +0000
commitd38f1c0e18ad561b45b5fb88b61117ecbbfb1557 (patch)
treef6b61cede10f2ec9e5e631d207d6e66551d4698b /win32
parent416415e574419a2388fd4f4c0324e00b5cc84dd6 (diff)
downloadruby-d38f1c0e18ad561b45b5fb88b61117ecbbfb1557.tar.gz
intern.h: rb_f_notimplement for ext on Windows
* include/ruby/intern.h (rb_f_notimplement): should not respond to not-implemented methods. as the address inside a DLL and the imported address are different on Windows, use an exported variable to share the same address. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50527 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/win32/win32.c b/win32/win32.c
index e17d35b0c2..b084e079fd 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -7356,6 +7356,8 @@ rb_w32_pow(double x, double y)
}
#endif
+VALUE (*const rb_f_notimplement_)(int, const VALUE *, VALUE) = rb_f_notimplement;
+
#if RUBY_MSVCRT_VERSION < 120
#include "missing/nextafter.c"
#endif