From 7833bf73a7c275c21e1bc773e66a046d61a110b7 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Sun, 14 Jul 2024 01:11:56 +0200 Subject: [PATCH] Remove unused headers --- ringbuf.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ringbuf.c b/ringbuf.c index 0293f36..c272b01 100644 --- a/ringbuf.c +++ b/ringbuf.c @@ -1,12 +1,13 @@ /* SPDX-License-Identifier: MIT */ -#include -#include -#include +// #include +// #include #include "ringbuf.h" +#include #ifdef DEBUG +#include #define DEBUG_PRINT(fmt, ...) printf(fmt, __VA_ARGS__) #else #define DEBUG_PRINT(fmt, ...)