#ifndef _TRACE_H #define _TRACE_H #ifndef NDEBUG #define TRACE(rest...) { \ printf("TRACE(%s:%d): ",__FILE__,__LINE__); \ printf(rest); \ printf("\n"); \ fflush(stdout);\ } #else #define TRACE(rest...) #endif #endif