19 #include "statedebug.h"
24 volatile signed int DebugLineNumber=-1, DebugBlockCount=-1,
25 DebugByteCount=-1, DebugBitCount=-1;
26 volatile char * DebugFileName =
"";
28 void DebugPrintDebugCounters(
void)
30 fprintf(stderr,
"file: %s"
31 "\n\tversion: " OPENCBM_VERSION_STRING
", built: " __DATE__
" " __TIME__
32 "\n\tline=%d, blocks=%d, bytes=%d, bits=%d\n",
33 DebugFileName, DebugLineNumber,
34 DebugBlockCount, DebugByteCount,
Defining OpenCBM version.