1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-01 10:06:53 +03:00

Fix usage of inline with for some compilers

This commit is contained in:
Manuel Pégourié-Gonnard
2018-06-07 11:54:17 +02:00
parent 2adb375c50
commit 21a65e0011
2 changed files with 10 additions and 0 deletions

View File

@ -48,6 +48,11 @@
#if !defined(MBEDTLS_CHACHA20_ALT)
#if ( defined(__ARMCC_VERSION) || defined(_MSC_VER) ) && \
!defined(inline) && !defined(__cplusplus)
#define inline __inline
#endif
#define BYTES_TO_U32_LE( data, offset ) \
( (uint32_t) data[offset] \
| (uint32_t) ( (uint32_t) data[( offset ) + 1] << 8 ) \