mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-25 16:25:32 +00:00
Added missing inline definition for other platforms to ecp_curves.c
This commit is contained in:
parent
b14817d10a
commit
498fd354c6
1 changed files with 8 additions and 0 deletions
|
@ -29,6 +29,14 @@
|
||||||
|
|
||||||
#include "polarssl/ecp.h"
|
#include "polarssl/ecp.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 */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Domain parameters for secp192r1
|
* Domain parameters for secp192r1
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue