From e7758470d8a42adf2526a1d6863f0ab148b50a89 Mon Sep 17 00:00:00 2001 From: Michael Graeb Date: Thu, 14 Sep 2023 08:14:21 -0700 Subject: [PATCH] clang-format --- source/windows/clock.c | 2 +- source/windows/device_random.c | 2 +- source/windows/file.c | 2 +- source/windows/rw_lock.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/windows/clock.c b/source/windows/clock.c index 3c36aa15e..11a5abb62 100644 --- a/source/windows/clock.c +++ b/source/windows/clock.c @@ -3,8 +3,8 @@ * SPDX-License-Identifier: Apache-2.0. */ -#include #include +#include static const uint64_t FILE_TIME_TO_NS = 100; static const uint64_t EC_TO_UNIX_EPOCH = 11644473600LL; diff --git a/source/windows/device_random.c b/source/windows/device_random.c index 99de174f2..45b30f9ee 100644 --- a/source/windows/device_random.c +++ b/source/windows/device_random.c @@ -7,8 +7,8 @@ #include #include -#include #include +#include static BCRYPT_ALG_HANDLE s_alg_handle = NULL; static aws_thread_once s_rand_init = AWS_THREAD_ONCE_STATIC_INIT; diff --git a/source/windows/file.c b/source/windows/file.c index 07f73c29d..1020cde9a 100644 --- a/source/windows/file.c +++ b/source/windows/file.c @@ -8,9 +8,9 @@ #include #include -#include #include #include +#include #include #include diff --git a/source/windows/rw_lock.c b/source/windows/rw_lock.c index 5bf73c773..4ff7e7f2e 100644 --- a/source/windows/rw_lock.c +++ b/source/windows/rw_lock.c @@ -6,8 +6,8 @@ #include #include -#include #include +#include /* Convert a string from a macro to a wide string */ #define WIDEN2(s) L## #s