diff options
author | Thomas Jansen <mithi@mithi.net> | 2008-12-02 02:33:24 +0100 |
---|---|---|
committer | Thomas Jansen <mithi@mithi.net> | 2008-12-02 02:33:24 +0100 |
commit | c252143d5147e541a42bf7bb2530e12c62962576 (patch) | |
tree | f7b043b1e34c615b7b5db6de28b1ce3d239b6125 /src/strset.h | |
parent | 2720585731eb6a39fece86fb675a644b8ea803ae (diff) | |
download | mpd-c252143d5147e541a42bf7bb2530e12c62962576.tar.gz mpd-c252143d5147e541a42bf7bb2530e12c62962576.tar.xz mpd-c252143d5147e541a42bf7bb2530e12c62962576.zip |
replaced mpd_malloc by G_GNUC_MALLOC
We want to remove gcc.h eventually. This takes care of all the
G_GNUC_MALLOC macros.
Diffstat (limited to 'src/strset.h')
-rw-r--r-- | src/strset.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/strset.h b/src/strset.h index 32a145f2b..65415061e 100644 --- a/src/strset.h +++ b/src/strset.h @@ -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); |