summaryrefslogtreecommitdiff
path: root/include/ruby.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-31 06:17:45 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-31 06:17:45 +0000
commit1a192e2b29e9a7fa91632f1fbbffefb3ecdd1b63 (patch)
tree43b394fdba488a790c9a7ad7f0016ff6ffd69a2b /include/ruby.h
parent7981720812b73175c27a90d1d653c5e127e439ff (diff)
* include/ruby/mvm.h: new header file for MVM, and moved rb_vm_t and
rb_thread_t from vm_core.h. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16713 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby.h')
-rw-r--r--include/ruby.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/ruby.h b/include/ruby.h
index b1fb46c897..cbe5aaa3bf 100644
--- a/include/ruby.h
+++ b/include/ruby.h
@@ -1 +1,21 @@
+/**********************************************************************
+
+ ruby/mvm.h -
+
+ $Author$
+ created at: Sun 10 12:06:15 Jun JST 2007
+
+ Copyright (C) 2007-2008 Yukihiro Matsumoto
+
+**********************************************************************/
+
+#ifndef RUBY_H
+#define RUBY_H 1
+
#include <ruby/ruby.h>
+#if RUBY_VM
+#include <ruby/mvm.h>
+#endif
+
+extern void ruby_set_debug_option(const char *);
+#endif /* RUBY_H */