mirror of
https://git.proxmox.com/git/mirror_zfs
synced 2025-05-23 23:38:23 +00:00
21 lines
317 B
C
21 lines
317 B
C
#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 */
|