1 /*
2  * $Id: debug.c,v 1.1.1.1 2002/03/28 00:02:10 andrew_belov Exp $
3  * ---------------------------------------------------------------------------
4  * Debug-related procedures are located here. In case of "clean" compile, this
5  * file may be omitted.
6  *
7  */
8 
9 #include <time.h>
10 
11 #include "arj.h"
12 
DEBUGHDR(__FILE__)13 DEBUGHDR(__FILE__)                      /* Debug information block */
14 
15 /* Debug information report */
16 
17 #ifdef DEBUG
18 
19 int debug_report(char *module, unsigned int line, char sign)
20 {
21  printf("\n*** [%c] %s:%u ***\n", sign, module, line);
22  return(0);
23 }
24 
25 #endif
26