neptune/kern/libkern/uart.h
2025-09-02 00:17:34 +02:00

7 lines
127 B
C

#ifndef UART_KERNEL_H
#define UART_KERNEL_H
/** Send a single character to the UART device */
void uart_putc(char c);
#endif