mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-30 22:43:08 +03:00
- Fixed inline definition for ARM systems
This commit is contained in:
@ -32,9 +32,13 @@
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#if defined(_MSC_VER)
|
||||
#define inline _inline
|
||||
#endif
|
||||
#else
|
||||
#if defined(ARMCC_VERSION)
|
||||
#define inline __inline
|
||||
#endif /* ARMCC_VERSION */
|
||||
#endif /*_MSC_VER */
|
||||
|
||||
#define POLARSSL_ERR_CIPHER_FEATURE_UNAVAILABLE -0x6080 /**< The selected feature is not available. */
|
||||
#define POLARSSL_ERR_CIPHER_BAD_INPUT_DATA -0x6100 /**< Bad input parameters to function. */
|
||||
|
Reference in New Issue
Block a user