mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-10 19:35:27 +00:00
Fixed typo in _MSC_VER (double underscore at the start)
This commit is contained in:
parent
8ddb645ad3
commit
9f2018ea28
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue