seed: fix casing of Windows headers

It will allow Windows cross-builds on *nix systems.
This commit is contained in:
Viktor Szakats 2015-07-13 01:48:45 +02:00
parent d4c1fa44ae
commit 7379012885
1 changed files with 3 additions and 3 deletions

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
@ -37,4 +37,4 @@ int ed25519_create_seed(unsigned char *seed) {
return 0;
}
#endif
#endif