summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/include/rtems/system.h')
-rw-r--r--cpukit/score/include/rtems/system.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/cpukit/score/include/rtems/system.h b/cpukit/score/include/rtems/system.h
index 9558155daf..7b7b876516 100644
--- a/cpukit/score/include/rtems/system.h
+++ b/cpukit/score/include/rtems/system.h
@@ -125,14 +125,10 @@ extern "C" {
* functions. The static inline implementation allows better
* type checking with no cost in code size or execution speed.
*/
-#ifdef RTEMS_INLINES
-# ifdef __GNUC__
+#ifdef __GNUC__
# define RTEMS_INLINE_ROUTINE static __inline__
-# else
-# define RTEMS_INLINE_ROUTINE static inline
-# endif
#else
-# define RTEMS_INLINE_ROUTINE
+# define RTEMS_INLINE_ROUTINE static inline
#endif
/**