mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 16:59:57 +00:00
12 lines
201 B
C
12 lines
201 B
C
/*! \file dmesg.h
|
|
\brief Kernel debug message buffer.
|
|
*/
|
|
|
|
//! Clears the dmesg buffer.
|
|
void dmesg_clear();
|
|
|
|
//! I ain't never initialized a buffer that didn't need initializin'.
|
|
void dmesg_init();
|
|
|
|
|