Loading...
Searching...
No Matches
Go to the documentation of this file.
2#if GLIB_MAJOR_VERSION == 2 && GLIB_MINOR_VERSION < 10
3# define g_slice_alloc0 g_malloc0
4# define g_slice_new0(x) g_new0(x, 1)
5# define g_slice_free(x, y) g_free(y)
6# define g_slice_free1(x, y) g_free(y)
8#if !GLIB_CHECK_VERSION(2, 68, 0)
9# define g_memdup2(mem, n) g_memdup((mem), (guint)(n))