Don't compile pcgrandom on windows

There it isn't needed.
master
est31 2015-11-08 18:14:03 +01:00
parent ea7a19c6a1
commit 695822e45d
1 changed files with 2 additions and 1 deletions

3
srp.c
View File

@ -489,6 +489,7 @@ static void calculate_H_AMK(SRP_HashAlgorithm alg, unsigned char *dest, const mp
hash_final(alg, &ctx, dest);
}
#ifndef WIN32
struct srp_pcgrandom {
unsigned long long int m_state;
@ -514,7 +515,7 @@ static void srp_pcgrandom_seed(srp_pcgrandom *r, unsigned long long int state,
r->m_state += state;
srp_pcgrandom_next(r);
}
#endif
static SRP_Result fill_buff()
{