remove glib dependency by provide compatible replacements

This commit is contained in:
Chris Eagle
2016-12-18 14:56:58 -08:00
parent c8b3d62692
commit e46545f722
79 changed files with 1052 additions and 1358 deletions

View File

@ -299,7 +299,7 @@ void tcg_pool_reset(TCGContext *s)
TCGPool *p, *t;
for (p = s->pool_first_large; p; p = t) {
t = p->next;
g_free(p);
free(p);
}
s->pool_first_large = NULL;
s->pool_cur = s->pool_end = NULL;