Remove unused headers

This commit is contained in:
Imbus 2024-07-14 01:11:56 +02:00
parent e5006ed262
commit 7833bf73a7

View file

@ -1,12 +1,13 @@
/* SPDX-License-Identifier: MIT */ /* SPDX-License-Identifier: MIT */
#include <stdlib.h> // #include <stdlib.h>
#include <string.h> // #include <string.h>
#include <stdio.h>
#include "ringbuf.h" #include "ringbuf.h"
#include <stdint.h>
#ifdef DEBUG #ifdef DEBUG
#include <stdio.h>
#define DEBUG_PRINT(fmt, ...) printf(fmt, __VA_ARGS__) #define DEBUG_PRINT(fmt, ...) printf(fmt, __VA_ARGS__)
#else #else
#define DEBUG_PRINT(fmt, ...) #define DEBUG_PRINT(fmt, ...)