RSS Git Download  Clone
Raw Blame History
/*
* 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