diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-12-21 18:38:27 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-12-21 18:38:27 +0100 |
commit | 27b637ce383ef7ef89d5052098e4d31aef1ff5a3 (patch) | |
tree | d9ca16f6b8c0db8a3a6f548f3b7c845b9e25c7b6 /thirdparty/mbedtls/library/ecp_curves.c | |
parent | 9b770dbd23c55835b69f5985c8da60f75b306612 (diff) | |
parent | 6e65244b6b33ff4d6f99153baafe23767a488181 (diff) |
Merge pull request #70395 from akien-mga/mbedtls-2.28.2
mbedtls: Update to upstream version 2.28.2
Diffstat (limited to 'thirdparty/mbedtls/library/ecp_curves.c')
-rw-r--r-- | thirdparty/mbedtls/library/ecp_curves.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/thirdparty/mbedtls/library/ecp_curves.c b/thirdparty/mbedtls/library/ecp_curves.c index 2199be6461..47761eef4e 100644 --- a/thirdparty/mbedtls/library/ecp_curves.c +++ b/thirdparty/mbedtls/library/ecp_curves.c @@ -38,11 +38,6 @@ #define ECP_VALIDATE( cond ) \ MBEDTLS_INTERNAL_VALIDATE( cond ) -#if ( defined(__ARMCC_VERSION) || defined(_MSC_VER) ) && \ - !defined(inline) && !defined(__cplusplus) -#define inline __inline -#endif - #define ECP_MPI_INIT(s, n, p) {s, (n), (mbedtls_mpi_uint *)(p)} #define ECP_MPI_INIT_ARRAY(x) \ |