diff options
Diffstat (limited to '')
-rw-r--r-- | src/gcc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ * example taken from: http://rlove.org/log/2005102601 */ -#if __GNUC__ >= 3 +#if defined(__GNUC__) && (__GNUC__ >= 3) # define mpd_const __attribute__ ((const)) # define mpd_deprecated __attribute__ ((deprecated)) # define mpd_malloc __attribute__ ((malloc)) |