- Fixed inline definition for ARM systems
This commit is contained in:
parent
1aa3d76309
commit
569df2c135
3 changed files with 18 additions and 6 deletions
|
@ -41,9 +41,13 @@
|
|||
#include "polarssl/pkcs11.h"
|
||||
#endif
|
||||
|
||||
#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 */
|
||||
|
||||
/*
|
||||
* SSL Error codes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue