commit | 9f2018ea288686452c3a250b25403c8346eb1bc7 | [log] [tgz] |
---|---|---|
author | Paul Bakker <p.j.bakker@polarssl.org> | Wed Feb 27 15:01:34 2013 +0100 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Wed Mar 06 18:01:02 2013 +0100 |
tree | 344d30aa8b194017df86c14c14f7bebd4cc0caae | |
parent | 8ddb645ad33fec9aa76b31f16259754d77d329da [diff] [blame] |
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