Full-path of builtin scripts no longer needed

This commit is contained in:
Nobuyoshi Nakada 2019-11-09 19:43:14 +09:00
parent dfaac2b372
commit e3c8524411
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60
4 changed files with 5 additions and 7 deletions

View file

@ -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;