1 #include <lunaix/syslog.h>
6 kprintf_m(const char* component, const char* fmt, va_list args)
11 sz = vsnprintf(buff, 1024, fmt, args);
12 printf("%s: %s\n", component, buff);
16 kprintf_v(const char* component, const char* fmt, ...)
22 kprintf_m(component, fmt, args);