You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
523 B
20 lines
523 B
Index: gtk+-2/gtksecentry.c |
|
--- gtk+-2/gtksecentry.c.orig 2004-09-02 03:47:13 +0200 |
|
+++ gtk+-2/gtksecentry.c 2006-11-15 21:27:51 +0100 |
|
@@ -39,6 +39,16 @@ |
|
#include <gdk/gdkkeysyms.h> |
|
#include <gtk/gtk.h> |
|
|
|
+#define g_malloc my_g_malloc |
|
+#define g_malloc0 my_g_malloc0 |
|
+#define g_realloc my_g_realloc |
|
+#define g_free my_g_free |
|
+ |
|
+gpointer g_malloc(gulong size); |
|
+gpointer g_malloc0(gulong size); |
|
+gpointer g_realloc(gpointer mem, gulong size); |
|
+void g_free(gpointer mem); |
|
+ |
|
#include "gtksecentry.h" |
|
#include "memory.h" |
|
|
|
|