summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/gaelco3d.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/gaelco3d.cpp')
-rw-r--r--src/mame/machine/gaelco3d.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/gaelco3d.cpp b/src/mame/machine/gaelco3d.cpp
index a8fe3f32590..d4f9c58383a 100644
--- a/src/mame/machine/gaelco3d.cpp
+++ b/src/mame/machine/gaelco3d.cpp
@@ -158,13 +158,13 @@ static void *osd_sharedmem_ptr(osd_shared_mem *os_shmem)
INLINE FUNCTIONS
***************************************************************************/
-INLINE void shmem_lock(shmem_t *shmem)
+static inline void shmem_lock(shmem_t *shmem)
{
while (atomic_exchange32(&shmem->lock,1) == 0)
;
}
-INLINE void shmem_unlock(shmem_t *shmem)
+static inline void shmem_unlock(shmem_t *shmem)
{
atomic_exchange32(&shmem->lock,0);
}