summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m37710/m37710cm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m37710/m37710cm.h')
-rw-r--r--src/devices/cpu/m37710/m37710cm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/m37710/m37710cm.h b/src/devices/cpu/m37710/m37710cm.h
index aa691b2e9aa..5595230124c 100644
--- a/src/devices/cpu/m37710/m37710cm.h
+++ b/src/devices/cpu/m37710/m37710cm.h
@@ -41,7 +41,7 @@
#define MAKE_INT_8(A) (int8)((A)&0xff)
#else
#define int8 int
-INLINE int MAKE_INT_8(int A) {return (A & 0x80) ? A | ~0xff : A & 0xff;}
+static inline int MAKE_INT_8(int A) {return (A & 0x80) ? A | ~0xff : A & 0xff;}
#endif /* UCHAR_MAX == 0xff */
#define MAKE_UINT_8(A) ((A)&0xff)