mirror of
https://github.com/opnsense/src.git
synced 2026-03-29 06:03:14 -04:00
20 lines
317 B
C
20 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 */
|