From a1fcb8564e63b551d2eb6a6960b351d05a7f0815 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gu=C3=B0ni=20M=C3=A1r=20Gilbert?= Date: Thu, 8 Aug 2024 15:05:30 +0000 Subject: [PATCH] util: reorder includes alphabetically Place system includes on top --- Firmware/util.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Firmware/util.cpp b/Firmware/util.cpp index f0999561b..f5481ecf8 100644 --- a/Firmware/util.cpp +++ b/Firmware/util.cpp @@ -1,13 +1,13 @@ -#include "Configuration.h" - -#include "ultralcd.h" -#include "menu.h" -#include "sound.h" -#include "language.h" -#include "util.h" #include #include + +#include "Configuration.h" +#include "language.h" +#include "menu.h" #include "Prusa_farm.h" +#include "sound.h" +#include "ultralcd.h" +#include "util.h" // Allocate the version string in the program memory. Otherwise the string lands either on the stack or in the global RAM. static const char FW_VERSION_STR[] PROGMEM = FW_VERSION;