summaryrefslogtreecommitdiff
path: root/include/ruby/defines.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-14 06:33:06 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-14 06:33:06 +0000
commitdccf9e0c45f1f450d28ba0700dbb459247ba9f9d (patch)
tree8ef41c677fb06897c021b8d6615b70724d2efad3 /include/ruby/defines.h
parenta23b1f745038f93e5cd2542fbf17b363686ccfd7 (diff)
* configure.in, include/ruby/defines.h (RUBY_FUNC_EXPORTED): macro
to declare exported function. * array.c (rb_ary_memsize), string.c (rb_str_memsize), variable.c (rb_objspace_data_type_memsize): used in objspace. [ruby-dev:42022] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28982 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/defines.h')
-rw-r--r--include/ruby/defines.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/ruby/defines.h b/include/ruby/defines.h
index 51b2eb816d..45841dad74 100644
--- a/include/ruby/defines.h
+++ b/include/ruby/defines.h
@@ -241,6 +241,10 @@ extern const unsigned char rb_nan[];
#endif
+#ifndef RUBY_FUNC_EXPORTED
+#define RUBY_FUNC_EXPORTED
+#endif
+
#ifndef RUBY_EXTERN
#define RUBY_EXTERN extern
#endif