#ifndef _DEBUG_H #define _DEBUG_H #ifdef DEBUG #define PRINTF(x) \ if (verbose >= x ) \ printf ("%s:%d:", __FILE__, __LINE__); \ if (verbose >= x) printf #else #define PRINTF(x) #endif #endif /* _DEBUG_H */