URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rc203soc/] [sw/] [uClinux/] [include/] [asm-i960/] [dprintk.h] - Rev 1777
Go to most recent revision | 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 2005-12-20 11:35:39 jcastillo Exp $" #ifdef DEBUG #define dprintk(fmt,x...) do { printk(fmt, ## x); } while(0) #else #define dprintk(fmt,x...) do { } while(0) #endif #endif
Go to most recent revision | Compare with Previous | Blame | View Log