mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-02-24 14:06:48 +00:00
Add a configuration fix for vsnprintf for non-conforming platforms
This commit is contained in:
parent
2cdb6b46be
commit
6b5ef48bf7
|
@ -50,6 +50,11 @@
|
|||
!defined(MBEDTLS_PLATFORM_SNPRINTF_MACRO)
|
||||
#define MBEDTLS_PLATFORM_SNPRINTF_ALT
|
||||
#endif
|
||||
|
||||
#if !defined(MBEDTLS_PLATFORM_VSNPRINTF_ALT) && \
|
||||
!defined(MBEDTLS_PLATFORM_VSNPRINTF_MACRO)
|
||||
#define MBEDTLS_PLATFORM_VSNPRINTF_ALT
|
||||
#endif
|
||||
#endif /* _WIN32 */
|
||||
|
||||
#if defined(TARGET_LIKE_MBED) && \
|
||||
|
|
Loading…
Reference in a new issue