summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/export/system.h6
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);
137#undef htobe32 137#undef htobe32
138#endif 138#endif
139 139
140/* Android NDK contains swap16 and swap32, ignore them */
141#if (CONFIG_PLATFORM & PLATFORM_ANDROID)
142#undef swap16
143#undef swap32
144#endif
145
140#if (CONFIG_PLATFORM & PLATFORM_HOSTED) && defined(PLATFORM_HAS_VOLUME_CHANGE) 146#if (CONFIG_PLATFORM & PLATFORM_HOSTED) && defined(PLATFORM_HAS_VOLUME_CHANGE)
141int hosted_get_volume(void); 147int hosted_get_volume(void);
142#endif 148#endif