From b1b70da09316b228840fa229b5f7beda307c0087 Mon Sep 17 00:00:00 2001 From: Stjepan Glavina Date: Tue, 26 May 2020 09:55:50 +0200 Subject: [PATCH] Make header names lowercase Uppercase file names inside `#include <>` will cause compilation errors when cross-compiling from case-sensitive systems: https://github.com/stjepang/smol/issues/138 --- src/win.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/win.h b/src/win.h index 0c3a223..b4246a9 100644 --- a/src/win.h +++ b/src/win.h @@ -24,9 +24,9 @@ #pragma warning(push, 1) #endif -#include -#include -#include +#include +#include +#include #ifndef __GNUC__ #pragma warning(pop)