7 lines
144 B
C
7 lines
144 B
C
#ifndef UART_KERNEL_H
|
|
#define UART_KERNEL_H
|
|
|
|
/** Send a single character to the UART device */
|
|
void uart_putc(char c);
|
|
|
|
#endif // UART_KERNEL_H
|