URL
https://opencores.org/ocsvn/c0or1k/c0or1k/trunk
Subversion Repositories c0or1k
[/] [c0or1k/] [trunk/] [include/] [l4/] [lib/] [printk.h] - Rev 7
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef __PRINTK_H__ #define __PRINTK_H__ #include <stdarg.h> #if !defined(__KERNEL__) #define printk printf #else int printk(char *format, ...) __attribute__((format (printf, 1, 2))); extern void putc(char c); void init_printk_lock(void); #endif #endif /* __PRINTK_H__ */
Go to most recent revision | Compare with Previous | Blame | View Log