diff options
Diffstat (limited to 'lib/debug.c')
-rw-r--r-- | lib/debug.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/debug.c b/lib/debug.c index 801f2fb..485e29a 100644 --- a/lib/debug.c +++ b/lib/debug.c @@ -21,6 +21,7 @@ rs_dump_packet (const struct rs_packet *pkt) p->code, p->id, p->data_len); + fflush (stderr); } void @@ -28,3 +29,19 @@ rs_dump_attr (const struct rs_attr *attr) { vp_printlist (stderr, attr->vp); } + +#if defined DEBUG +int +rs_debug (const char *fmt, ...) +{ + int n; + va_list args; + + va_start (args, fmt); + n = vfprintf (stderr, fmt, args); + va_end (args); + fflush (stderr); + + return n; +} +#endif |