From c2875ce67c18bd379cc91eee064ee013d5c676c8 Mon Sep 17 00:00:00 2001 From: Andreas Date: Fri, 1 Dec 2023 00:45:24 +0100 Subject: [PATCH] simple uart windows, loaded libs only in lower case (#35) --- simple_uart.c | 2 +- simple_uart.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/simple_uart.c b/simple_uart.c index 2eea859..afd23af 100644 --- a/simple_uart.c +++ b/simple_uart.c @@ -28,7 +28,7 @@ #define INITGUID // required for GUID_DEVCLASS_PORTS, otherwise linker error @see https://stackoverflow.com/questions/14762154/enumerating-battery-devices-c-windows #include #include // GUID_DEVCLASS_PORTS -#include // Devices: SetupDiGetClassDevs +#include // Devices: SetupDiGetClassDevs #endif #ifdef __linux__ diff --git a/simple_uart.h b/simple_uart.h index 79023ab..6e4a1eb 100644 --- a/simple_uart.h +++ b/simple_uart.h @@ -10,7 +10,7 @@ extern "C" { #ifdef _WIN32 #include -#include +#include typedef SSIZE_T ssize_t; #endif