Merge pull request #4 from vszakats/patch-1

seed: fix casing of Windows headers
This commit is contained in:
Orson Peters 2015-07-13 10:53:52 +02:00
commit 6d69ff4062
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