From 109f661e3118b95a5a78cb921571bd95914231bb Mon Sep 17 00:00:00 2001 From: dragonmux Date: Wed, 10 Aug 2022 09:51:22 +0100 Subject: [PATCH] gdb_if: Cleanup in the include order --- src/platforms/stm32/gdb_if.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/platforms/stm32/gdb_if.c b/src/platforms/stm32/gdb_if.c index c35bb978..ff7cd5f3 100644 --- a/src/platforms/stm32/gdb_if.c +++ b/src/platforms/stm32/gdb_if.c @@ -22,9 +22,11 @@ * Serial Debugging protocol is implemented. This implementation for STM32 * uses the USB CDC-ACM device bulk endpoints to implement the channel. */ + +#include + #include "general.h" #include "cdcacm.h" -#include #include "gdb_if.h" static uint32_t count_out;