/* * A logging utility... */ #ifndef __LOG_H #define __LOG_H /* * Send a message to the debugging channel */ extern void DEBUG(char * message); extern void logc(char c); #define TRACE(msg) /*DEBUG(msg);*/ #define TRACEC(c) logc(c); #endif