mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-03-09 11:36:28 +00:00
Added missing inline definition for MSCV and ARM environments
This commit is contained in:
@@ -59,6 +59,14 @@
|
||||
#include <limits.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#if defined(_MSC_VER) && !defined(inline)
|
||||
#define inline _inline
|
||||
#else
|
||||
#if defined(__ARMCC_VERSION) && !defined(inline)
|
||||
#define inline __inline
|
||||
#endif /* __ARMCC_VERSION */
|
||||
#endif /*_MSC_VER */
|
||||
|
||||
#if defined(POLARSSL_SELF_TEST)
|
||||
/*
|
||||
* Counts of point addition and doubling operations.
|
||||
|
||||
Reference in New Issue
Block a user