summaryrefslogtreecommitdiffstats
path: root/include/sys/console.h
blob: eff52916c69b78415cddfb22a7ad044908bf0a20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef	_SPL_CONSOLE_H
#define	_SPL_CONSOLE_H

void
console_vprintf(const char *fmt, va_list args)
{
        vprintk(fmt, args);
}

void
console_printf(const char *fmt, ...)
{
        va_list args;

        va_start(args, fmt);
        console_vprintf(fmt, args);
        va_end(args);
}

#endif /* _SPL_CONSOLE_H */