navit  0.5.3-trunk
glib_slice.h
Go to the documentation of this file.
1 #include <glib.h>
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)
7 #endif