#endif /* __DEBUG_IF_H__ */
====================
//#define my_DEBUG
#undef PDEBUG /* undef it, just in case */
#ifdef my_DEBUG
#ifdef __KERNEL__
/* This one if debugging is on, and kernel space */
#define myDEBUG(fmt, args...) printk( KERN_EMERG "my: " fmt, ## args)
#else
/* This one for user space */
#define myDEBUG(fmt, args...) fprintf(stderr, fmt, ## args)
#endif
#else
#define myDEBUG(fmt, args...) /* not debugging: nothing */
#endif