From 8e4f26aa58091d7fe11a34d6ff3ae9d1479685e1 Mon Sep 17 00:00:00 2001 From: William Hart Date: Wed, 2 Apr 2014 00:55:11 +0100 Subject: [PATCH] Fix a bug in Cygwin64 (missing __GMP_DECLSPEC on mpn_store). --- gmp-impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gmp-impl.h b/gmp-impl.h index be33a0bc..de7a364b 100644 --- a/gmp-impl.h +++ b/gmp-impl.h @@ -2417,7 +2417,7 @@ __GMP_DECLSPEC mp_limb_t mpn_declsh_n __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t #if HAVE_NATIVE_mpn_store #define mpn_store __MPN(store) -mp_limb_t mpn_store _PROTO ((mp_ptr,mp_size_t,mp_limb_t)); +__GMP_DECLSPEC mp_limb_t mpn_store _PROTO ((mp_ptr,mp_size_t,mp_limb_t)); #else #define mpn_store(dst, n,val) \ do { \