|
|
| version 1.2, 2003/11/16 16:43:45 | version 1.3, 2004/01/13 16:29:11 |
|---|---|
| Line 6 | Line 6 |
| #define TRACEINIT() | #define TRACEINIT() |
| #define TRACETERM() | #define TRACETERM() |
| #define TRACEOUT(a) | #define TRACEOUT(a) |
| #define VERBOSE(a) | #ifndef VERBOSE |
| #define VERBOSE(s) | |
| #endif | |
| #else | #else |
| Line 21 void trace_fmt(const char *str, ...); | Line 23 void trace_fmt(const char *str, ...); |
| #define TRACEINIT() trace_init() | #define TRACEINIT() trace_init() |
| #define TRACETERM() trace_term() | #define TRACETERM() trace_term() |
| #define TRACEOUT(arg) trace_fmt arg | #define TRACEOUT(arg) trace_fmt arg |
| #ifndef VERBOSE | |
| #define VERBOSE(arg) trace_fmt arg | #define VERBOSE(arg) trace_fmt arg |
| #endif | |
| #ifdef __cplusplus | #ifdef __cplusplus |
| }; | }; |