Skip to content

Commit 3aed44e

Browse files
committed
Fix windows-gnu build.
We can't define `HIDDEN` to be an empty string, the way `HIDDEN` is defined & used.
1 parent 077a6ec commit 3aed44e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crypto/curve25519/asm/x25519-asm-x86_64.S

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define HIDDEN .private_extern
3030
#elif defined(__MINGW32__) || defined(__MINGW64__)
3131
#define C_ABI(x) x
32-
#define HIDDEN
32+
#define HIDDEN .globl
3333
#else
3434
#define C_ABI(x) x
3535
#define HIDDEN .hidden

0 commit comments

Comments
 (0)