9 lines
184 B
C
9 lines
184 B
C
|
#ifndef __LIB_KERNEL_CONSOLE_H
|
||
|
#define __LIB_KERNEL_CONSOLE_H
|
||
|
|
||
|
void console_init (void);
|
||
|
void console_panic (void);
|
||
|
void console_print_stats (void);
|
||
|
|
||
|
#endif /* lib/kernel/console.h */
|