ref: 99e8d835b687b9e946293b817d2e2b81ce76907e
dir: /dprint.c/
#include <u.h> #include <libc.h> #include "asif.h" int debuglevel; void dprint(int level, char *fmt, ...) { char s[256]; va_list arg; if(level > debuglevel) return; va_start(arg, fmt); vseprint(s, s+sizeof s, fmt, arg); va_end(arg); fprint(2, "%s", s); }