From 952eeebb6dfe12cd831b8ba0a53ceab62a603f48 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Thu, 26 Jun 2025 10:06:51 +0200 Subject: [PATCH] Remove trailing extra line --- lib/uart.c | 1 - 1 file changed, 1 deletion(-) 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++); } -