diff --git a/lib/uart.c b/lib/uart.c index 864840a..83b2656 100644 --- a/lib/uart.c +++ b/lib/uart.c @@ -6,4 +6,3 @@ void uart_putc(char c) { *UART_BASE = c; } void uart_puts(const char *s) { while (*s) uart_putc(*s++); } -