X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fbn%2Fbn.org;h=2de26c2f9102d2ecbc8f4fc4babe2e0fa7c642f3;hp=d8904d7efacd4d0cc0974cfa1fdd8ae098757e67;hb=9b3086fe382e7b0f53b8634d0e75f1a659ab2653;hpb=dfeab0689f69c0b4bd3480ffd37a9cacc2f17d9c diff --git a/crypto/bn/bn.org b/crypto/bn/bn.org index d8904d7efa..2de26c2f91 100644 --- a/crypto/bn/bn.org +++ b/crypto/bn/bn.org @@ -169,7 +169,12 @@ extern "C" { #define BN_BYTES 4 #define BN_BITS2 32 #define BN_BITS4 16 +#ifdef WIN32 +/* VC++ doesn't like the LL suffix */ +#define BN_MASK (0xffffffffffffffffL) +#else #define BN_MASK (0xffffffffffffffffLL) +#endif #define BN_MASK2 (0xffffffffL) #define BN_MASK2l (0xffff) #define BN_MASK2h1 (0xffff8000L)