Fix Windows includes.
These Windows include lines are capitalized, which causes the build to fail when cross-compiling from Linux to Windows using MinGW as the MinGW headers are entirely lower case.
This commit is contained in:
parent
b24faf3cbe
commit
058473dc8d
1 changed files with 2 additions and 2 deletions
|
@ -3,8 +3,8 @@
|
|||
#ifndef ED25519_NO_SEED
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <Windows.h>
|
||||
#include <Wincrypt.h>
|
||||
#include <windows.h>
|
||||
#include <wincrypt.h>
|
||||
#else
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue