15 lines
119 B
C
15 lines
119 B
C
#ifndef DEBUG_H
|
|
#define DEBUG_H
|
|
|
|
#ifdef DEBUG
|
|
|
|
#define debug printf
|
|
|
|
#else
|
|
|
|
#define debug /* printf */
|
|
|
|
#endif
|
|
|
|
#endif
|