#ifndef DEBUG_H
#define DEBUG_H
#ifdef DEBUG
#define debug printf
#else
#define debug /* printf */
#endif