diff options
author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2011-05-31 21:16:17 +0000 |
---|---|---|
committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2011-05-31 21:16:17 +0000 |
commit | 1aadfb2229d7105d19d321079acaede1e4f63a3f (patch) | |
tree | 97498c0746be5479642206b460a8ca4ac3851cdd | |
parent | 9d1c2869ef55b325c4c2434ec1e53fe764e87691 (diff) |
Android: ignore swap16 and swap32 from NDK.
The NDK includes swap16 and swap32 macros, Rockbox as well. Use the Rockbox
ones and avoid a macro redefined warning.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29939 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | firmware/export/system.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/firmware/export/system.h b/firmware/export/system.h index 3f626c3688..b85b09ea70 100644 --- a/firmware/export/system.h +++ b/firmware/export/system.h @@ -137,6 +137,12 @@ int get_cpu_boost_counter(void); #undef htobe32 #endif +/* Android NDK contains swap16 and swap32, ignore them */ +#if (CONFIG_PLATFORM & PLATFORM_ANDROID) +#undef swap16 +#undef swap32 +#endif + #if (CONFIG_PLATFORM & PLATFORM_HOSTED) && defined(PLATFORM_HAS_VOLUME_CHANGE) int hosted_get_volume(void); #endif |