ref: 0e233a0d60a1fcce5d12b6e926ae56e39f60cbcd
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); }