Remove trailing extra line

This commit is contained in:
Imbus 2025-06-26 10:06:51 +02:00
parent 5dbcb33726
commit 952eeebb6d

View file

@ -6,4 +6,3 @@ void uart_putc(char c) { *UART_BASE = c; }
void uart_puts(const char *s) {
while (*s) uart_putc(*s++);
}