diff options
author | Werner Koch <[email protected]> | 2001-12-19 18:05:04 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2001-12-19 18:05:04 +0000 |
commit | a1b7fa95a4fd0bd46312cdb0134f5ebdc47a0b4a (patch) | |
tree | 97f205f96d8723e3f1b35e9e1782d36910dae08c | |
parent | * util.h [CYGWIN32]: Allow this as an alias for MINGW32. Include (diff) | |
download | gnupg-a1b7fa95a4fd0bd46312cdb0134f5ebdc47a0b4a.tar.gz gnupg-a1b7fa95a4fd0bd46312cdb0134f5ebdc47a0b4a.zip |
* rndw32.c [CYGWIN32]: Include winioctl.h. By Disastry.
-rw-r--r-- | cipher/ChangeLog | 4 | ||||
-rw-r--r-- | cipher/rndw32.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/cipher/ChangeLog b/cipher/ChangeLog index 29eaeac5f..a3c31f95a 100644 --- a/cipher/ChangeLog +++ b/cipher/ChangeLog @@ -1,3 +1,7 @@ +2001-12-19 Werner Koch <[email protected]> + + * rndw32.c [CYGWIN32]: Include winioctl.h. By Disastry. + 2001-11-08 Werner Koch <[email protected]> * primegen.c (gen_prime): Set 2 high order bits for secret primes. diff --git a/cipher/rndw32.c b/cipher/rndw32.c index 278ea8ec2..484b11c52 100644 --- a/cipher/rndw32.c +++ b/cipher/rndw32.c @@ -67,6 +67,9 @@ #include <string.h> #include <windows.h> +#ifdef __CYGWIN32__ +# include <winioctl.h> +#endif #include "types.h" |