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/utils.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/utils.h')
-rw-r--r-- | src/utils.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/utils.h b/src/utils.h index 6e2d288fc..0990185ee 100644 --- a/src/utils.h +++ b/src/utils.h @@ -19,8 +19,7 @@ #ifndef MPD_UTILS_H #define MPD_UTILS_H -#include "gcc.h" - +#include <glib.h> #include <unistd.h> #include <stdlib.h> #include <stdio.h> @@ -74,13 +73,13 @@ static inline ssize_t xwrite(int fd, const void *buf, size_t len) } } -mpd_malloc char *xstrdup(const char *s); +G_GNUC_MALLOC char *xstrdup(const char *s); -mpd_malloc void *xmalloc(size_t size); +G_GNUC_MALLOC void *xmalloc(size_t size); -mpd_malloc void *xrealloc(void *ptr, size_t size); +G_GNUC_MALLOC void *xrealloc(void *ptr, size_t size); -mpd_malloc void *xcalloc(size_t nmemb, size_t size); +G_GNUC_MALLOC void *xcalloc(size_t nmemb, size_t size); /** * free a const pointer - unfortunately free() expects a non-const |