Skip to content

Commit

Permalink
Merge pull request #210 from seega/main
Browse files Browse the repository at this point in the history
fix for cygwin v2
  • Loading branch information
albertobsd authored May 7, 2023
2 parents a93db93 + 5ed1716 commit 6300610
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions keyhunt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,11 @@ email: albertobsd@gmail.com
#endif

#ifdef __unix__
#ifdef __CYGWIN__
#else
#include <linux/random.h>
#endif
#endif

#define CRYPTO_NONE 0
#define CRYPTO_BTC 1
Expand Down
3 changes: 3 additions & 0 deletions secp256k1/Random.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,11 @@
#endif

#ifdef __unix__
#ifdef __CYGWIN__
#else
#include <linux/random.h>
#endif
#endif

#define RK_STATE_LEN 624

Expand Down

0 comments on commit 6300610

Please sign in to comment.