Fixed eglib code by implementing missing g_malloc0.

This commit is contained in:
Joao Matos 2016-09-30 16:03:48 +01:00
Родитель 9347d35480
Коммит ba0b3d9889
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -44,6 +44,12 @@ gpointer g_malloc (gsize x)
return malloc(x);
}
gpointer g_malloc0 (gsize x)
{
return calloc(1, x);
}
#define INITIAL_CAPACITY 16
#define element_offset(p,i) ((p)->array.data + (i) * (p)->element_size)