diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fs.c | 2 | ||||
-rw-r--r-- | lib/math.c | 2 | ||||
-rw-r--r-- | lib/ubus.c | 2 | ||||
-rw-r--r-- | lib/uci.c | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -906,7 +906,7 @@ static void close_dir(void *ud) void uc_module_init(uc_vm *vm, uc_value_t *scope) { - uc_add_proto_functions(scope, global_fns); + uc_add_functions(scope, global_fns); proc_type = uc_declare_type(vm, "fs.proc", proc_fns, close_proc); file_type = uc_declare_type(vm, "fs.file", file_fns, close_file); @@ -160,5 +160,5 @@ static const uc_cfunction_list math_fns[] = { void uc_module_init(uc_vm *vm, uc_value_t *scope) { - uc_add_proto_functions(scope, math_fns); + uc_add_functions(scope, math_fns); } @@ -322,7 +322,7 @@ static void close_connection(void *ud) { void uc_module_init(uc_vm *vm, uc_value_t *scope) { - uc_add_proto_functions(scope, global_fns); + uc_add_functions(scope, global_fns); conn_type = uc_declare_type(vm, "ubus.connection", conn_fns, close_connection); } @@ -1007,7 +1007,7 @@ static void close_uci(void *ud) { void uc_module_init(uc_vm *vm, uc_value_t *scope) { - uc_add_proto_functions(scope, global_fns); + uc_add_functions(scope, global_fns); cursor_type = uc_declare_type(vm, "uci.cursor", cursor_fns, close_uci); } |