11 lines
148 B
C
11 lines
148 B
C
#ifndef __DEBUG_H__
|
|
#define __DEBUG_H__
|
|
|
|
#ifdef DEBUG
|
|
#define DEBUG_PRINTF(x) printf x
|
|
#else
|
|
#define DEBUG_PRINTF(x)
|
|
#endif
|
|
|
|
#endif/*__DEBUG_H__*/
|