b570ca2d8a
- Removed config.h reference.
11 lines
165 B
C
11 lines
165 B
C
#ifndef DEBUG_H
|
|
#define DEBUG_H
|
|
|
|
void debugSet (int level);
|
|
int debugCond (int level);
|
|
void debug (int level, char *string);
|
|
|
|
#define DEBUGL(a) debugCond(a)
|
|
|
|
#endif
|