summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-07-03 14:20:03 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-07-03 14:20:03 +0000
commit503dc05890731954e899d63a8baecabac573e22b (patch)
treec93178f7485d46cb9c10865f9d3bcf33dc9df2f9 /cpukit/score/include
parentchanged version (diff)
downloadrtems-503dc05890731954e899d63a8baecabac573e22b.tar.bz2
switched from "STATIC INLINE" to "RTEMS_INLINE_ROUTINE"
Diffstat (limited to 'cpukit/score/include')
-rw-r--r--cpukit/score/include/rtems/system.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/cpukit/score/include/rtems/system.h b/cpukit/score/include/rtems/system.h
index 777a722588..74929eade6 100644
--- a/cpukit/score/include/rtems/system.h
+++ b/cpukit/score/include/rtems/system.h
@@ -81,15 +81,13 @@ extern "C" {
*/
#ifdef USE_INLINES
-# define STATIC static
# ifdef __GNUC__
-# define INLINE __inline__
+# define RTEMS_INLINE_ROUTINE static __inline__
# else
-# define INLINE inline
+# define RTEMS_INLINE_ROUTINE static inline
# endif
#else
-# define STATIC
-# define INLINE
+# define RTEMS_INLINE_ROUTINE
#endif
/*