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:
Etienne Dechamps 2014-06-22 18:45:49 +01:00
parent b24faf3cbe
commit 058473dc8d

View file

@ -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