summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/ext/-test-/win32/dln/dlntest.c
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/ext/-test-/win32/dln/dlntest.c')
-rw-r--r--ruby_1_9_3/ext/-test-/win32/dln/dlntest.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/ruby_1_9_3/ext/-test-/win32/dln/dlntest.c b/ruby_1_9_3/ext/-test-/win32/dln/dlntest.c
deleted file mode 100644
index 3e6037ac07..0000000000
--- a/ruby_1_9_3/ext/-test-/win32/dln/dlntest.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <ruby.h>
-
-extern __declspec(dllimport) void dlntest_ordinal(void);
-
-static VALUE
-dln_dlntest(VALUE self)
-{
- dlntest_ordinal();
- return self;
-}
-
-void
-Init_dln(void)
-{
- VALUE m = rb_define_module_under(rb_define_module("Bug"), "Win32");
- rb_define_module_function(m, "dlntest", dln_dlntest, 0);
-}