Merge pull request #1525 from StephenCWills/lowercase-windows-headers

Use lowercase when including Windows headers
This commit is contained in:
Grant Limberg 2022-01-04 17:11:51 -08:00 committed by GitHub
commit cc6c48fca8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 37 additions and 37 deletions

View file

@ -23,9 +23,9 @@
// For the struct sockaddr_storage structure
#if defined(_WIN32) || defined(_WIN64)
#include <WinSock2.h>
#include <WS2tcpip.h>
#include <Windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#include <windows.h>
#else /* not Windows */
#include <arpa/inet.h>
#include <netinet/in.h>