using g_malloc, g_realloc and g_strdup.

* mountlist.c: using g_malloc, g_realloc and g_strdup.
This commit is contained in:
Martin Baulig
1998-07-06 22:48:25 +00:00
parent 1d7491be0d
commit 576dde394a
+10 -3
View File
@@ -34,10 +34,17 @@ void free ();
#include <strings.h>
#endif
#include <glib.h>
#undef xmalloc
#undef xrealloc
#undef xstrdup
#define xmalloc g_malloc
#define xrealloc g_realloc
#define xstrdup g_strdup
char *strstr ();
char *xmalloc ();
char *xrealloc ();
char *xstrdup ();
void error ();
#ifdef HAVE_SYS_PARAM_H