FoenixMCP/src/log.h

16 lines
190 B
C
Raw Normal View History

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