mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 17:35:46 +01:00
Fix typo in check_config.h
This commit is contained in:
parent
710f54182f
commit
bebc5f69f8
@ -107,10 +107,10 @@
|
|||||||
* architecture by defining MBEDTLS_HAVE_INT32 or MBEDTLS_HAVE_INT64
|
* architecture by defining MBEDTLS_HAVE_INT32 or MBEDTLS_HAVE_INT64
|
||||||
* respectively and undefining MBEDTLS_HAVE_ASM.
|
* respectively and undefining MBEDTLS_HAVE_ASM.
|
||||||
*
|
*
|
||||||
* Double length integers (e.g. 128-bit in 64-bit architectures) can be
|
* Double-width integers (e.g. 128-bit in 64-bit architectures) can be
|
||||||
* disabled by defining MBEDTLS_NO_UDBL_DIVISION.
|
* disabled by defining MBEDTLS_NO_UDBL_DIVISION.
|
||||||
*
|
*
|
||||||
* The double length integer types can be configured by defining
|
* The double-width integer types can be configured by defining
|
||||||
* MBEDTLS_TYPE_UDBL when the type cannot be automatically deduced by the
|
* MBEDTLS_TYPE_UDBL when the type cannot be automatically deduced by the
|
||||||
* library (e.g. the compiler is unknown). The definition of MBEDTLS_TYPE_UDBL
|
* library (e.g. the compiler is unknown). The definition of MBEDTLS_TYPE_UDBL
|
||||||
* must be a complete statement of the form:
|
* must be a complete statement of the form:
|
||||||
|
@ -654,8 +654,8 @@
|
|||||||
#error "MBEDTLS_HAVE_INT32 and MBEDTLS_HAVE_INT64 cannot be defined simultaneously"
|
#error "MBEDTLS_HAVE_INT32 and MBEDTLS_HAVE_INT64 cannot be defined simultaneously"
|
||||||
#endif /* MBEDTLS_HAVE_INT32 && MBEDTLS_HAVE_INT64 */
|
#endif /* MBEDTLS_HAVE_INT32 && MBEDTLS_HAVE_INT64 */
|
||||||
|
|
||||||
#if (defined(MBEDTLS_HAVE_INT32) || define(MBEDTLS_HAVE_INT64)) && \
|
#if ( defined(MBEDTLS_HAVE_INT32) || defined(MBEDTLS_HAVE_INT64) ) && \
|
||||||
defined(MBEDTLS_HAVE_ASM
|
defined(MBEDTLS_HAVE_ASM)
|
||||||
#error "MBEDTLS_HAVE_INT32/MBEDTLS_HAVE_INT64 and MBEDTLS_HAVE_INT64 cannot be"
|
#error "MBEDTLS_HAVE_INT32/MBEDTLS_HAVE_INT64 and MBEDTLS_HAVE_INT64 cannot be"
|
||||||
"defined simultaneously"
|
"defined simultaneously"
|
||||||
#endif /* (MBEDTLS_HAVE_INT32 || MBEDTLS_HAVE_INT64) && MBEDTLS_HAVE_ASM */
|
#endif /* (MBEDTLS_HAVE_INT32 || MBEDTLS_HAVE_INT64) && MBEDTLS_HAVE_ASM */
|
||||||
|
Loading…
Reference in New Issue
Block a user