summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/smartmed.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/smartmed.cpp')
-rw-r--r--src/mame/machine/smartmed.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/smartmed.cpp b/src/mame/machine/smartmed.cpp
index b3147c49316..f8295a4110d 100644
--- a/src/mame/machine/smartmed.cpp
+++ b/src/mame/machine/smartmed.cpp
@@ -30,13 +30,13 @@ struct UINT32BE
UINT8 bytes[4];
};
-INLINE UINT32 get_UINT32BE(UINT32BE word)
+static inline UINT32 get_UINT32BE(UINT32BE word)
{
return (word.bytes[0] << 24) | (word.bytes[1] << 16) | (word.bytes[2] << 8) | word.bytes[3];
}
#ifdef UNUSED_FUNCTION
-INLINE void set_UINT32BE(UINT32BE *word, UINT32 data)
+static inline void set_UINT32BE(UINT32BE *word, UINT32 data)
{
word->bytes[0] = (data >> 24) & 0xff;
word->bytes[1] = (data >> 16) & 0xff;