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
This commit is contained in:
Stjepan Glavina 2020-05-26 09:55:50 +02:00 committed by GitHub
parent 469cb335c1
commit b1b70da093
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,9 +24,9 @@
#pragma warning(push, 1)
#endif
#include <WS2tcpip.h>
#include <WinSock2.h>
#include <Windows.h>
#include <ws2tcpip.h>
#include <winsock2.h>
#include <windows.h>
#ifndef __GNUC__
#pragma warning(pop)