From 11a72cef934250e9ff689caa304bc580a3f2db2d Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Thu, 8 Jan 2015 06:17:40 -0800 Subject: [PATCH] SCP: Cleanup redundant external declaration in sim_tmxr.h (found by Dave Bryan) --- sim_tmxr.h | 1 - 1 file changed, 1 deletion(-) diff --git a/sim_tmxr.h b/sim_tmxr.h index f0f56d71..69712bee 100644 --- a/sim_tmxr.h +++ b/sim_tmxr.h @@ -250,7 +250,6 @@ t_stat tmxr_shutdown (void); t_stat tmxr_start_poll (void); t_stat tmxr_stop_poll (void); void _tmxr_debug (uint32 dbits, TMLN *lp, const char *msg, char *buf, int bufsize); -extern FILE *sim_deb; /* debug file */ #define tmxr_debug(dbits, lp, msg, buf, bufsize) if (sim_deb && (lp)->mp && (lp)->mp->dptr && ((dbits) & (lp)->mp->dptr->dctrl)) _tmxr_debug (dbits, lp, msg, buf, bufsize); else (void)0 #define tmxr_debug_msg(dbits, lp, msg) if (sim_deb && (lp)->mp && (lp)->mp->dptr && ((dbits) & (lp)->mp->dptr->dctrl)) sim_debug (dbits, (lp)->mp->dptr, msg); else (void)0 #define tmxr_debug_return(lp, val) if (sim_deb && (val) && (lp)->mp && (lp)->mp->dptr && (TMXR_DBG_RET & (lp)->mp->dptr->dctrl)) sim_debug (TMXR_DBG_RET, (lp)->mp->dptr, "Ln%d: 0x%x\n", (int)((lp)-(lp)->mp->ldsc), val); else (void)0