RSS Git Download  Clone
Raw View History
Blames found: 1 Mode: text/x-c++src Binary: false


Hang on, we reloading big blames...
/* * Title: Debug.h * Author: M.Thomas BEAM Ltd * Date: 2007-04-02 * * Contents: Debug support * * Mod Rec: * */ #ifndef DEBUG_H #define DEBUG_H #define DBG_STD 0x000001 extern int gdebug; #define dprintf(level, fmt, a...) if((level) & bdebug) tprintf(1, fmt, ##a); #endif