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/state-reuse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/state-reuse.c') diff --git a/examples/state-reuse.c b/examples/state-reuse.c index 4ebf556..7e2c44f 100644 --- a/examples/state-reuse.c +++ b/examples/state-reuse.c @@ -65,7 +65,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)); /* execute compiled program function five times */ for (int i = 0; i < 5; i++) { -- cgit v1.2.3