/*  zilch.h
**  Time-stamp: <98/02/11 16:37:20 madhu>
**  Touched: Tue Feb 10 11:15:55 1998 <madhu@cs.unm.edu>
*/


#ifndef PDEBUG
#  ifdef DEBUG_zilch
#    ifdef __KERNEL__
#       define PDEBUG(fmt, args...)
        printk(KERN_DEBUG fmt , ##args)
#    else
#       define PDEBUG(fmt, args...)
        printf(stderr, fmt, ##args)
#    endif
#  else
#    define PDEBUG(fmt, args...)
#  endif
#endif

#ifndef PDEBUGG
#  define PDEBUGG(fmt, args...)
#endif


 
