blob: fca8103c67f66dab98e4cfd34fcda1c9beec184a [file] [log] [blame]
#ifndef _DLOG_H
#define _DLOG_H
#if DEBUG
void dlog(const char *fmt, ...);
#else
#define dlog(...)
#endif
void dlog_init(void (*pchar)(char));
#endif /* _DLOG_H */