OSDN Git Service

ring.c read pointer no.2 add
[scilog/cpu2010.git] / debug_print.h
1 #ifndef __PDEBUG_H__
2 #define __PDEBUG_H__
3
4 #undef PDEBUG
5
6 // リリース時はコメント
7 #define DEBUG_PRINT
8
9 #ifdef DEBUG_PRINT
10 void  PDEBUG(char *buf);
11 #else
12 #  define PDEBUG(fmt, args...)
13 #endif
14
15 #endif