[gq-commit] gq/src xmlparse.c,1.6,1.7
Status: Beta
Brought to you by:
sur5r
From: <sta...@us...> - 2003-10-09 18:00:32
|
Update of /cvsroot/gqclient/gq/src In directory sc8-pr-cvs1:/tmp/cvs-serv6741 Modified Files: xmlparse.c Log Message: * Fixed a bug wrt to the position of macros redefining "malloc" and "free" Index: xmlparse.c =================================================================== RCS file: /cvsroot/gqclient/gq/src/xmlparse.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** xmlparse.c 9 Oct 2003 05:19:39 -0000 1.6 --- xmlparse.c 9 Oct 2003 18:00:26 -0000 1.7 *************** *** 51,58 **** /* This is the only part specific to GTK, I hope */ #include <gtk/gtk.h> - #define malloc g_malloc - #define calloc(n,s) g_malloc0(n * s) #include "xmlparse.h" #define TAGSTACK_INCR 20 --- 51,59 ---- /* This is the only part specific to GTK, I hope */ #include <gtk/gtk.h> #include "xmlparse.h" + + #define malloc g_malloc + #define calloc(n,s) g_malloc0(n * s) #define TAGSTACK_INCR 20 |