mirror of
https://github.com/cuberite/polarssl.git
synced 2025-12-10 07:45:50 -05:00
Added missing inline definition for MSCV and ARM environments
This commit is contained in:
parent
3292562a33
commit
6a6087e71d
@ -59,6 +59,14 @@
|
|||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <stdlib.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)
|
#if defined(POLARSSL_SELF_TEST)
|
||||||
/*
|
/*
|
||||||
* Counts of point addition and doubling operations.
|
* Counts of point addition and doubling operations.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user