1#ifndef BLK_DEBUG_H_
2#define BLK_DEBUG_H_
3
4//#define BLK_DEBUG_ENABLE 1
5
6#if defined(BLK_DEBUG_ENABLE) || defined(GLOBAL_DEBUG)
7#define BLK_DEBUG(x...) printf("BLK: " x)
8#else
9#define BLK_DEBUG(x...) ((void)0)
10#endif
11
12#endif
13