Fixed typo in _MSC_VER (double underscore at the start)
diff --git a/include/polarssl/bignum.h b/include/polarssl/bignum.h
index 06d6a2f..fac39be 100644
--- a/include/polarssl/bignum.h
+++ b/include/polarssl/bignum.h
@@ -122,7 +122,7 @@
 typedef uint32_t t_udbl;
 #define POLARSSL_HAVE_UDBL
 #else
-  #if ( defined(__MSC_VER) && defined(_M_AMD64) )
+  #if ( defined(_MSC_VER) && defined(_M_AMD64) )
     typedef  int64_t t_sint;
     typedef uint64_t t_uint;
   #else