From 5a2e389811f10d873f21dd461cdee89a497c74de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Mon, 5 Oct 2015 11:55:39 +0100 Subject: [PATCH] Remove inline workaround when not useful This header doesn't have nay inline function any more --- include/mbedtls/md.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/mbedtls/md.h b/include/mbedtls/md.h index a70d7a60d0..77c2c6f680 100644 --- a/include/mbedtls/md.h +++ b/include/mbedtls/md.h @@ -27,11 +27,6 @@ #include -#if ( defined(__ARMCC_VERSION) || defined(_MSC_VER) ) && \ - !defined(inline) && !defined(__cplusplus) -#define inline __inline -#endif - #define MBEDTLS_ERR_MD_FEATURE_UNAVAILABLE -0x5080 /**< The selected feature is not available. */ #define MBEDTLS_ERR_MD_BAD_INPUT_DATA -0x5100 /**< Bad input parameters to function. */ #define MBEDTLS_ERR_MD_ALLOC_FAILED -0x5180 /**< Failed to allocate memory. */