1 /* This file can be included multiple times with different DB_LEVEL */
7 #include <proto/debug.h>
9 // DEBUG 0 should equal undefined DEBUG
18 #define KPRINTF(l, x) do { if ((l) >= DEBUG) \
19 { KPrintF("%s/%lu: ", __FUNCTION__, __LINE__); KPrintF x;} } while (0)
20 #define KPRINTF2(l, x) do { if ((l) >= DEBUG) \
21 { KPrintF x;} } while (0)
23 #define KPRINTF(l, x) ((void) 0)
24 #define KPRINTF2(l, x) ((void) 0)