CfgUSBLoader/cios/odip_frag/include/debug.h
2015-01-17 10:11:08 +00:00

13 lines
161 B
C

#ifndef __DEBUG_H__
#define __DEBUG_H__
void s_printf(char *format,...);
#ifdef DEBUG
#define dbg_printf s_printf
#else
#define dbg_printf(...)
#endif
#endif