replaced mpd_malloc by G_GNUC_MALLOC

We want to remove gcc.h eventually. This takes care of all the
G_GNUC_MALLOC macros.
This commit is contained in:
Thomas Jansen
2008-12-02 02:33:24 +01:00
parent 2720585731
commit c252143d51
4 changed files with 12 additions and 13 deletions

View File

@@ -28,11 +28,11 @@
#ifndef MPD_STRSET_H
#define MPD_STRSET_H
#include "gcc.h"
#include <glib.h>
struct strset;
mpd_malloc struct strset *strset_new(void);
G_GNUC_MALLOC struct strset *strset_new(void);
void strset_free(struct strset *set);