michael@282: Index: gtk+-2/gtksecentry.c michael@282: --- gtk+-2/gtksecentry.c.orig 2004-09-02 03:47:13 +0200 michael@282: +++ gtk+-2/gtksecentry.c 2006-11-15 21:27:51 +0100 michael@282: @@ -39,6 +39,16 @@ michael@282: #include michael@282: #include michael@282: michael@282: +#define g_malloc my_g_malloc michael@282: +#define g_malloc0 my_g_malloc0 michael@282: +#define g_realloc my_g_realloc michael@282: +#define g_free my_g_free michael@282: + michael@282: +gpointer g_malloc(gulong size); michael@282: +gpointer g_malloc0(gulong size); michael@282: +gpointer g_realloc(gpointer mem, gulong size); michael@282: +void g_free(gpointer mem); michael@282: + michael@282: #include "gtksecentry.h" michael@282: #include "memory.h" michael@282: