blob: 0858176a6481ec2b00e45a02b72e253f7f4ea27b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* File Name: debug.h
* Description: if DEBUG_LOG macro defined, expand the DebugLog definition
*/
#ifndef __DEMO_DEBUG_H__
#define __DEMO_DEBUG_H__
#ifdef DEBUG_LOG
#define DebugLog(format, ...) printf(format, ##__VA_ARGS__);
#else
#define DebugLog(format, ...)
#endif
#endif
|