From 3bfe133832130f4da5e18fa362cc0ce914e25a9c Mon Sep 17 00:00:00 2001 From: Jerry Yu Date: Wed, 22 Feb 2023 15:01:05 +0800 Subject: [PATCH] Improve readability Signed-off-by: Jerry Yu --- library/platform_util.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/library/platform_util.c b/library/platform_util.c index e885a921ec..6c65524b4f 100644 --- a/library/platform_util.c +++ b/library/platform_util.c @@ -169,12 +169,11 @@ extern inline void mbedtls_put_unaligned_uint64(void *p, uint64_t x); #if defined(MBEDTLS_HAVE_TIME) && !defined(MBEDTLS_PLATFORM_MS_TIME_ALT) #include -#if !defined(_WIN32) && (defined(unix) || \ - defined(__unix) || defined(__unix__) || (defined(__APPLE__) && \ - defined(__MACH__))) +#if !defined(_WIN32) && \ + (defined(unix) || defined(__unix) || defined(__unix__) || \ + (defined(__APPLE__) && defined(__MACH__))) #include -#endif /* !_WIN32 && (unix || __unix || __unix__ || - * (__APPLE__ && __MACH__)) */ +#endif /* !_WIN32 && (unix || __unix || __unix__ || (__APPLE__ && __MACH__)) */ #if (defined(_POSIX_VERSION) && _POSIX_VERSION >= 199309L) mbedtls_ms_time_t mbedtls_ms_time(void) {