os/libc/dbg.h

16 lines
176 B
C
Raw Normal View History

2020-07-26 15:38:29 -05:00
/**
* \file
*/
#ifndef DBG_H
#define DBG_H
2020-07-26 15:38:29 -05:00
/**
* Prints a string to the kernel serial console
* \param str The string to print
*/
void serial_print(char* str);
#endif