aboutsummaryrefslogtreecommitdiffstats
path: root/builtin.h
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-11-09 19:43:14 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-11-09 19:43:14 +0900
commite3c852441177caa4b251fa33c83a65e4263a4146 (patch)
treee7aeabf6c961b8934252f44a4a31c8583feaee20 /builtin.h
parentdfaac2b37253ff25ec873c2fbd93abfa7f789248 (diff)
downloadruby-e3c852441177caa4b251fa33c83a65e4263a4146.tar.gz
Full-path of builtin scripts no longer needed
Diffstat (limited to 'builtin.h')
-rw-r--r--builtin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin.h b/builtin.h
index ef6ff82236..ee99e21dcc 100644
--- a/builtin.h
+++ b/builtin.h
@@ -12,7 +12,7 @@ struct rb_builtin_function {
#define RB_BUILTIN_FUNCTION(_i, _name, _arity) { .name = #_name, .func_ptr = (void *)_name, .argc = _arity, .index = _i }
-void rb_load_with_builtin_functions(const char *feature_name, const char *fname, const struct rb_builtin_function *table);
+void rb_load_with_builtin_functions(const char *feature_name, const struct rb_builtin_function *table);
#ifndef VM_CORE_H_EC_DEFINED
typedef struct rb_execution_context_struct rb_execution_context_t;