Skip to content

Commit

Permalink
prefix asm symbols with _ on x86 Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyd2019 committed Jul 24, 2023
1 parent 2dd70cc commit f4b36c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sha1/src/x86.S
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


/* void sha1_compress(uint32_t state[5], const uint8_t block[64]) */
#ifdef __APPLE__
#if defined(__APPLE__) || defined(_WIN32)
.globl _sha1_compress
_sha1_compress:
#else
Expand Down

0 comments on commit f4b36c8

Please sign in to comment.