URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [uclinux/] [uClinux-2.0.x/] [include/] [asm-i960/] [dprintk.h] - Rev 1765
Compare with Previous | Blame | View Log
/* * FILE: dprintk.h * AUTHOR: kma * DESCR: */ #ifndef DPRINTK_H #define DPRINTK_H #ident "$Id: dprintk.h,v 1.1.1.1 2001-09-10 07:44:41 simons Exp $" #ifdef DEBUG #define dprintk(fmt,x...) do { printk(fmt, ## x); } while(0) #else #define dprintk(fmt,x...) do { } while(0) #endif #endif