diff options
author | Linus Nordberg <linus@nordu.net> | 2011-02-04 13:44:19 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2011-02-04 13:44:19 +0100 |
commit | 17a43cf2205a933169e11bc9280431577a183e65 (patch) | |
tree | 8ed8351d48576fb94ebd4088ef0dea94c614b81c /lib/debug.h | |
parent | 094640561e271d0224613c207b646488f437d8ef (diff) |
Add and use rs_debug() instead of fprintf to stderr.
Diffstat (limited to 'lib/debug.h')
-rw-r--r-- | lib/debug.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/debug.h b/lib/debug.h index 09a6529..3156c24 100644 --- a/lib/debug.h +++ b/lib/debug.h @@ -14,6 +14,12 @@ extern "C" { void rs_dump_packet (const struct rs_packet *pkt); void rs_dump_attr (const struct rs_attr *attr); +#if defined DEBUG +int rs_debug (const char *fmt, ...); +#else +#define rs_debug (void) +#endif + #if defined (__cplusplus) } #endif |