#define DEBUG
#include <stdio.h> /* For stderr */
#define EPRINTF(str, args...) fprintf(stderr, str, ##args) /* error output*/
#if DEBUG
#define DPRINTF(str, args...) fprintf(stderr, str, ##args) /* debug output*/
#else
#define DPRINTF(str, ...) /* no debug output*/
#endif