1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-07 06:42:56 +03:00

Fixed typo in _MSC_VER (double underscore at the start)

This commit is contained in:
Paul Bakker
2013-02-27 15:01:34 +01:00
parent 8ddb645ad3
commit 9f2018ea28

View File

@@ -122,7 +122,7 @@ typedef uint16_t t_uint;
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