diff options
author | Jo-Philipp Wich <jo@mein.io> | 2021-07-11 07:18:37 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2021-07-11 15:49:14 +0200 |
commit | d5b25f942147b09511d77d5470cd38a1e1643fb9 (patch) | |
tree | 40542b06a966366e2e8a3a0118e756874a838ce6 /examples/state-reset.c | |
parent | cc4ce8dfd13e833702c949e56049443cd01c0dfb (diff) |
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 <jo@mein.io>
Diffstat (limited to 'examples/state-reset.c')
-rw-r--r-- | examples/state-reset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/state-reset.c b/examples/state-reset.c index 893ea26..692aa76 100644 --- a/examples/state-reset.c +++ b/examples/state-reset.c @@ -66,7 +66,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)); printf("Iteration %d: ", i + 1); |