Merge branch 'noglib' of https://github.com/unicorn-engine/unicorn into noglib
This commit is contained in:
@@ -501,6 +501,11 @@ guint g_hash_table_size(GHashTable *hash_table)
|
||||
|
||||
/* general g_XXX substitutes */
|
||||
|
||||
void g_free(void *ptr)
|
||||
{
|
||||
free(ptr);
|
||||
}
|
||||
|
||||
void *g_malloc(size_t size)
|
||||
{
|
||||
if (size == 0) return NULL;
|
||||
|
||||
Reference in New Issue
Block a user