summaryrefslogtreecommitdiff
path: root/ruby.c
diff options
context:
space:
mode:
Diffstat (limited to 'ruby.c')
-rw-r--r--ruby.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/ruby.c b/ruby.c
index 54e788a9ec..be83c954aa 100644
--- a/ruby.c
+++ b/ruby.c
@@ -2436,11 +2436,6 @@ external_str_new_cstr(const char *p)
#endif
}
-/*! Sets the current script name to this value.
- *
- * This is similar to <code>$0 = name</code> in Ruby level but also affects
- * <code>Method#location</code> and others.
- */
void
ruby_script(const char *name)
{
@@ -2524,7 +2519,6 @@ debug_setter(VALUE val, ID id, VALUE *dmy)
*rb_ruby_debug_ptr() = val;
}
-/*! Defines built-in variables */
void
ruby_prog_init(void)
{
@@ -2625,13 +2619,6 @@ fill_standard_fds(void)
}
}
-/*! Initializes the process for libruby.
- *
- * This function assumes this process is ruby(1) and it has just started.
- * Usually programs that embed CRuby interpreter may not call this function,
- * and may do their own initialization.
- * argc and argv cannot be NULL.
- */
void
ruby_sysinit(int *argc, char ***argv)
{