merged in Yannick's fixes.
[AROS-Contrib.git] / SDL / SDL_main / src / main / aros / mydebug.h
blob0d4bfae1e2723b85eba6019d9a2fbda424c932c1
1 #ifndef MYDEBUG
3 #ifdef AMIGADEBUG
4 #define D(x) x
5 #define bug kprintf
6 extern void kprintf(const char *,...);
7 #else
8 #define D(x)
9 #endif
11 #define MAKE_HIT() {char *a=NULL,b;b=*a;}
13 #define MYDEBUG
14 #endif