1999-12-09 23:15:14 +00:00
|
|
|
#ifndef DEBUG_H
|
|
|
|
|
#define DEBUG_H
|
|
|
|
|
|
2001-04-27 02:20:38 +00:00
|
|
|
#include "../config.h"
|
|
|
|
|
|
1999-12-09 23:15:14 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
|
|
|
|
|
|
#define debug printf
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
2000-04-03 22:13:57 +00:00
|
|
|
#define debug /* printf */
|
1999-12-09 23:15:14 +00:00
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|