Log with no formatting.

This commit is contained in:
Kelvin Sherlock 2013-03-27 23:54:47 -04:00
parent 84598e0ac7
commit 3f5efae581

View File

@ -18,6 +18,11 @@ namespace ToolBox
if (Trace) fprintf(stderr, format, args...);
}
inline void Log(const char *format)
{
if (Trace) fputs(format, stderr);
}
void dispatch(uint16_t trap);