1
0
mirror of https://github.com/simh/simh.git synced 2026-01-25 11:46:37 +00:00

Cleanup of unneeded global extern declarations

This commit is contained in:
Mark Pizzolato
2014-10-10 08:18:15 -07:00
parent 0b1050853e
commit 3951ad2432
19 changed files with 2 additions and 27 deletions

View File

@@ -54,7 +54,6 @@
/* generic debug tracing support */
#if DBG_MSG==1
extern FILE* sim_deb;
#define ADDRESS_FORMAT "[0x%08x]"
#if UNIX_PLATFORM

View File

@@ -53,7 +53,6 @@ extern REG m68kcpu_reg[];
#define DBG_CPU_BTRACE (1 << 4)
#define DBG_CPU_CUSTOM1 (1 << 5) /* reserved for custom debugging */
#define DBG_CPU_CUSTOM2 (1 << 6) /* reserved for custom debugging */
extern FILE* sim_deb;
extern DEBTAB m68kcpu_dt[];
#if DBG_MSG==1
#define IFDEBUG(flag,func) if ((m68kcpu_dev->dctrl & flag) && sim_deb) { (void)(func); fflush(sim_deb); }