/********************************************************************************* File: debug.h Date: 22.1.2004 Version: 0.1 Author: Jari Lahti (jari.lahti@violasystems.com) Description: Simple debug system Version Info: 22.1.2004 - First version (JaL) *********************************************************************************/ #ifndef __INCLUDE_OPENTCP_DEBUG_H__ #define __INCLUDE_OPENTCP_DEBUG_H__ #include "util.h" //IAS #define OPENTCP_DEBUG 0 /* Enabled of disabled */ #if OPENTCP_DEBUG == 1 #define DEBUGOUT(c) printl(c) #else #define DEBUGOUT(c) {} #endif #endif //guard /* EOF */