summaryrefslogtreecommitdiff
path: root/include/ruby/vm.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ruby/vm.h')
-rw-r--r--include/ruby/vm.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/ruby/vm.h b/include/ruby/vm.h
index ac8e599e90..072d7d6f19 100644
--- a/include/ruby/vm.h
+++ b/include/ruby/vm.h
@@ -19,6 +19,10 @@ extern "C" {
#endif
#endif
+#if defined __GNUC__ && __GNUC__ >= 4
+#pragma GCC visibility push(default)
+#endif
+
/* Place holder.
*
* We will prepare VM creation/control APIs on 1.9.2 or later.
@@ -32,6 +36,10 @@ typedef struct rb_vm_struct ruby_vm_t;
/* core API */
int ruby_vm_destruct(ruby_vm_t *vm);
+#if defined __GNUC__ && __GNUC__ >= 4
+#pragma GCC visibility pop
+#endif
+
#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */