From a72aa856bdcc23dab64af83757830e1d2e1618c8 Mon Sep 17 00:00:00 2001 From: Rafaël Carré Date: Sun, 25 Jul 2010 14:44:29 +0000 Subject: Move some gcc extensions to new gcc_extensions.h header - Move ATTRIBUTE_PRINTF/ATTRIBUTE_SCANF from _ansi.h They are not related at all to this file, and this broke compilation with Code Sourcery GCC which ships its own _ansi.h - Move LIKELY/UNLIKELY from system.h There is likely a lot more GCC extensions used everywhere in the source, conditionally on __GNUC__ or unconditionally git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27548 a1c6a512-1295-4272-9138-f99709370657 --- firmware/include/_ansi.h | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'firmware/include/_ansi.h') diff --git a/firmware/include/_ansi.h b/firmware/include/_ansi.h index 17d8e6f1a4..5f0ce211ed 100644 --- a/firmware/include/_ansi.h +++ b/firmware/include/_ansi.h @@ -64,15 +64,4 @@ #endif #endif -/* Support gcc's __attribute__ facility. */ - -#ifdef __GNUC__ -#define _ATTRIBUTE(attrs) __attribute__ (attrs) -#else -#define _ATTRIBUTE(attrs) -#endif - -#define ATTRIBUTE_PRINTF(fmt, arg1) _ATTRIBUTE( ( format( printf, fmt, arg1 ) ) ) -#define ATTRIBUTE_SCANF(fmt, arg1) _ATTRIBUTE( ( format( scanf, fmt, arg1 ) ) ) - #endif /* _ANSIDECL_H_ */ -- cgit v1.2.3