mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 15:38:18 +00:00
add g_free to make future integration easier
This commit is contained in:
parent
f8f9e993a8
commit
bfaf8f3441
1 changed files with 1 additions and 0 deletions
|
@ -106,6 +106,7 @@ GHashTable *g_hash_table_ref(GHashTable *hash_table);
|
|||
guint g_hash_table_size(GHashTable *hash_table);
|
||||
|
||||
/* replacement for g_malloc dependency */
|
||||
#define g_free(x) free(x)
|
||||
void *g_malloc(size_t size);
|
||||
void *g_malloc0(size_t size);
|
||||
void *g_try_malloc0(size_t size);
|
||||
|
|
Loading…
Reference in a new issue