Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
graebm committed Sep 14, 2023
1 parent 2a585e8 commit e775847
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion source/windows/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
* SPDX-License-Identifier: Apache-2.0.
*/

#include <windows.h>
#include <aws/common/clock.h>
#include <windows.h>

static const uint64_t FILE_TIME_TO_NS = 100;
static const uint64_t EC_TO_UNIX_EPOCH = 11644473600LL;
Expand Down
2 changes: 1 addition & 1 deletion source/windows/device_random.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
#include <aws/common/byte_buf.h>
#include <aws/common/thread.h>

#include <windows.h>
#include <bcrypt.h>
#include <windows.h>

static BCRYPT_ALG_HANDLE s_alg_handle = NULL;
static aws_thread_once s_rand_init = AWS_THREAD_ONCE_STATIC_INIT;
Expand Down
2 changes: 1 addition & 1 deletion source/windows/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#include <aws/common/logging.h>
#include <aws/common/string.h>

#include <shlwapi.h>
#include <errno.h>
#include <io.h>
#include <shlwapi.h>
#include <stdio.h>
#include <windows.h>

Expand Down
2 changes: 1 addition & 1 deletion source/windows/rw_lock.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#include <aws/common/rw_lock.h>
#include <aws/common/thread.h>

#include <windows.h>
#include <synchapi.h>
#include <windows.h>

/* Convert a string from a macro to a wide string */
#define WIDEN2(s) L## #s
Expand Down

0 comments on commit e775847

Please sign in to comment.