From d5b25f942147b09511d77d5470cd38a1e1643fb9 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 11 Jul 2021 07:18:37 +0200 Subject: treewide: harmonize function naming - Ensure that most functions follow the subject_verb naming schema - Move type related function from value.c to types.c - Rename value.c to vallist.c Signed-off-by: Jo-Philipp Wich --- examples/exception-handler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/exception-handler.c') diff --git a/examples/exception-handler.c b/examples/exception-handler.c index e2b1058..1e722ec 100644 --- a/examples/exception-handler.c +++ b/examples/exception-handler.c @@ -79,7 +79,7 @@ int main(int argc, char **argv) uc_vm_init(&vm, &config); /* load standard library into global VM scope */ - uc_load_stdlib(uc_vm_scope_get(&vm)); + uc_stdlib_load(uc_vm_scope_get(&vm)); /* register custom exception handler */ uc_vm_exception_handler_set(&vm, log_exception); -- cgit v1.2.3