The #else inside a multi line comment in combination with the excess yet
commented #endif threw off my editor's syntax highlighting and parentheses
matching. Use "#if 0" instead to disable the empty side of ANALYZE macros
which some PIC compilers are said to not support. No change in behaviour.
static int time_counter;
static int verbose;
-/******************************* not every PIC compiler knows variadic macros :-(
-#else
+#elif 0 /* not every PIC compiler knows variadic macros :-( */
# define ANALYZE_PUTCHAR(a)
# define ANALYZE_ONLY_NORMAL_PUTCHAR(a)
# define ANALYZE_PRINTF(...)
# define ANALYZE_ONLY_NORMAL_PRINTF(...)
-# endif
# define ANALYZE_NEWLINE()
-*********************************/
+
#endif
#if IRMP_USE_CALLBACK == 1