blob: 3d13b0b957339f970a31c62f0daa46274c3e3521 [file] [log] [blame]
adamdunkels451edf42004-08-09 20:06:19 +00001#ifndef __LOG_H__
2#define __LOG_H__
3
4#include "log-conf.h"
5
6#if LOG_CONF_ENABLED
adamdunkelsde8082f2004-09-03 09:49:00 +00007void log_message(const char *part1, const char *part2);
adamdunkels451edf42004-08-09 20:06:19 +00008#else /* LOG_CONF_ENABLED */
9#define log_message(p1, p2)
10#endif /* LOG_CONF_ENABLED */
11
12#endif /* __LOG_H__ */