rename API uc_mem_free() to uc_free(). see #662

This commit is contained in:
Nguyen Anh Quynh
2017-01-10 20:59:14 +08:00
parent 7512ff57de
commit bc569f5a54
11 changed files with 18 additions and 18 deletions

View File

@ -14,8 +14,8 @@ void uc_close_wrapper(uc_engine *uc);
void uc_close_dummy(uc_engine *uc);
/*
* Wrap Unicorn's uc_mem_free function and ignore the returned error code.
* Wrap Unicorn's uc_free function and ignore the returned error code.
*/
void uc_mem_free_wrapper(void *context);
void uc_free_wrapper(void *context);
#endif