aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos/gos.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gos/gos.h')
-rw-r--r--src/gos/gos.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/gos/gos.h b/src/gos/gos.h
index af9486f8..048d5765 100644
--- a/src/gos/gos.h
+++ b/src/gos/gos.h
@@ -77,7 +77,7 @@
*
* @param[in] reval The value which should be returned
*/
- #define THREAD_RETURN(retval);
+ #define THREAD_RETURN(retval) return retval
/**
* @name Various platform (and operating system) constants
@@ -474,10 +474,6 @@
#include "src/gos/gos_ecos.h"
#elif GFX_USE_OS_ARDUINO
#include "src/gos/gos_arduino.h"
-#elif GFX_USE_OS_CMSIS
- #include "src/gos/gos_cmsis.h"
-#elif GFX_USE_OS_KEIL
- #include "src/gos/gos_keil.h"
#else
#error "Your operating system is not supported yet"
#endif