Skip to content

Commit

Permalink
change have to use, in scrypt header file
Browse files Browse the repository at this point in the history
  • Loading branch information
justinvforvendetta committed Sep 9, 2024
1 parent 8befe92 commit dd554e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crypto/pow/scrypt.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ static const int SCRYPT_SCRATCHPAD_SIZE = 131072 + 63;
void scrypt_1024_1_1_256(const char *input, char *output);
void scrypt_1024_1_1_256_sp_generic(const char *input, char *output, char *scratchpad);

#if defined(HAVE_SSE2)
#if defined(USE_SSE2)
#if defined(_M_X64) || defined(__x86_64__) || defined(_M_AMD64) || (defined(MAC_OSX) && defined(__i386__))
#define USE_SSE2_ALWAYS 1
#define scrypt_1024_1_1_256_sp(input, output, scratchpad) scrypt_1024_1_1_256_sp_sse2((input), (output), (scratchpad))
Expand Down

0 comments on commit dd554e4

Please sign in to comment.