#ifndef INCLUDED_DEBUG_H #define INCLUDED_DEBUG_H #ifdef DEBUG #include #include #define m_dprintf(x...) printf(x) #endif #ifndef DEBUG #define m_dprintf(x...) #endif #ifdef DEBUG2 #define m_dprintf2(x...) printf(x) #endif #ifndef DEBUG2 #define m_dprintf2(x...) #endif #endif