From 7379012885309e7b95a014c1429fbfb765f271d3 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 13 Jul 2015 01:48:45 +0200 Subject: [PATCH] seed: fix casing of Windows headers It will allow Windows cross-builds on *nix systems. --- src/seed.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/seed.c b/src/seed.c index 25e5182..11a2e3e 100644 --- a/src/seed.c +++ b/src/seed.c @@ -3,8 +3,8 @@ #ifndef ED25519_NO_SEED #ifdef _WIN32 -#include -#include +#include +#include #else #include #endif @@ -37,4 +37,4 @@ int ed25519_create_seed(unsigned char *seed) { return 0; } -#endif \ No newline at end of file +#endif