diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-07-25 14:44:29 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-07-25 14:44:29 +0000 |
| commit | a72aa856bdcc23dab64af83757830e1d2e1618c8 (patch) | |
| tree | 64aa0b5dbace189447607c9522fe82883b1febe4 /firmware/export/debug.h | |
| parent | 1828a753a8a62a8ad94fdf32b7c4406eb43bb608 (diff) | |
| download | rockbox-a72aa856bdcc23dab64af83757830e1d2e1618c8.zip rockbox-a72aa856bdcc23dab64af83757830e1d2e1618c8.tar.gz rockbox-a72aa856bdcc23dab64af83757830e1d2e1618c8.tar.bz2 rockbox-a72aa856bdcc23dab64af83757830e1d2e1618c8.tar.xz | |
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
Diffstat (limited to 'firmware/export/debug.h')
| -rw-r--r-- | firmware/export/debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/debug.h b/firmware/export/debug.h index 9d85590..f7f0f32 100644 --- a/firmware/export/debug.h +++ b/firmware/export/debug.h @@ -21,7 +21,7 @@ #ifndef DEBUG_H #define DEBUG_H -#include "../include/_ansi.h" +#include "gcc_extensions.h" extern void debug_init(void); extern void debugf(const char* fmt,...) ATTRIBUTE_PRINTF(1, 2); |