#ifndef JEFF_DEBUG_H #define JEFF_DEBUG_H #define __DEBUG__ //#undef __DEBUG__ #ifdef __DEBUG__ #define DEBUG(x, ...) printf("DEBUG: " x, __VA_ARGS__); #else #define DEBUG(x, ...) #endif #ifdef __DEBUG__ #define FDEBUG(x) x #else #define FDEBUG(x) #endif #endif /* JEFF_DEBUG_H */