diff options
author | 2009-01-14 06:00:48 +0000 | |
---|---|---|
committer | 2009-01-14 06:00:48 +0000 | |
commit | 81fce8af371a7a353876e52cbcb2204e20799f9a (patch) | |
tree | 9768ab91f2c4c1c014eac979f0abc28968ecf819 /src/emu/cpu/tms32025 | |
parent | 40d9394d3d509a4e806f78d4610e8f32853922c3 (diff) |
From: Duke [mailto:startaq@gmail.com]
Sent: Friday, January 09, 2009 4:14 AM
To: submit@mamedev.org
Subject: Patch to remove useless INLINE defines
Hello,
this patch removes several occurrences of "#define INLINE" in CPU and
sound cores, which I assume are useless since the makefile already
defines this.
--Dirk
Diffstat (limited to 'src/emu/cpu/tms32025')
-rw-r--r-- | src/emu/cpu/tms32025/tms32025.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/emu/cpu/tms32025/tms32025.c b/src/emu/cpu/tms32025/tms32025.c index aedeae15964..e1a17ec6e0f 100644 --- a/src/emu/cpu/tms32025/tms32025.c +++ b/src/emu/cpu/tms32025/tms32025.c @@ -123,10 +123,6 @@ Table 3-2. TMS32025/26 Memory Blocks #define CLK 4 /* 1 cycle equals 4 clock ticks */ /* PE/DI */ -#ifndef INLINE -#define INLINE static inline -#endif - #define SET_PC(x) do { cpustate->PC = (x); } while (0) |