13 lines
157 B
C
13 lines
157 B
C
|
/*
|
||
|
* A logging utility...
|
||
|
*/
|
||
|
|
||
|
#ifndef __LOG_H
|
||
|
#define __LOG_H
|
||
|
|
||
|
/*
|
||
|
* Send a message to the debugging channel
|
||
|
*/
|
||
|
extern void DEBUG(char * message);
|
||
|
|
||
|
#endif
|