diff --git a/Tests/Kernel/kill-pidtid-confusion.cpp b/Tests/Kernel/kill-pidtid-confusion.cpp index be50df5797d..5d31929d402 100644 --- a/Tests/Kernel/kill-pidtid-confusion.cpp +++ b/Tests/Kernel/kill-pidtid-confusion.cpp @@ -6,7 +6,7 @@ #include #include -#include +#include #include #include #include diff --git a/Tests/LibPthread/TestLibPthreadCleanup.cpp b/Tests/LibPthread/TestLibPthreadCleanup.cpp index 7249ac913f9..dc3378cb54b 100644 --- a/Tests/LibPthread/TestLibPthreadCleanup.cpp +++ b/Tests/LibPthread/TestLibPthreadCleanup.cpp @@ -4,8 +4,8 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include #include +#include static size_t exit_count = 0; diff --git a/Tests/LibPthread/TestLibPthreadRWLocks.cpp b/Tests/LibPthread/TestLibPthreadRWLocks.cpp index 8c48aaa5565..720227ab7d6 100644 --- a/Tests/LibPthread/TestLibPthreadRWLocks.cpp +++ b/Tests/LibPthread/TestLibPthreadRWLocks.cpp @@ -4,8 +4,8 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include #include +#include TEST_CASE(rwlock_init) { diff --git a/Tests/LibPthread/TestLibPthreadSpinLocks.cpp b/Tests/LibPthread/TestLibPthreadSpinLocks.cpp index 57513fb0514..8db74ac3b7f 100644 --- a/Tests/LibPthread/TestLibPthreadSpinLocks.cpp +++ b/Tests/LibPthread/TestLibPthreadSpinLocks.cpp @@ -4,9 +4,9 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include #include #include +#include #include TEST_CASE(spin_init_process_scope) diff --git a/Userland/Libraries/LibC/bits/pthread_forward.h b/Userland/Libraries/LibC/bits/pthread_forward.h index 3480383db2f..849220a9675 100644 --- a/Userland/Libraries/LibC/bits/pthread_forward.h +++ b/Userland/Libraries/LibC/bits/pthread_forward.h @@ -6,7 +6,7 @@ #pragma once -#include +#include struct PthreadFunctions { int (*pthread_mutex_trylock)(pthread_mutex_t* mutex); diff --git a/Userland/Libraries/LibC/pthread_tls.cpp b/Userland/Libraries/LibC/pthread_tls.cpp index abae74b75d7..c0e0516c87b 100644 --- a/Userland/Libraries/LibC/pthread_tls.cpp +++ b/Userland/Libraries/LibC/pthread_tls.cpp @@ -5,8 +5,8 @@ */ #include -#include #include +#include #include #ifndef _DYNAMIC_LOADER diff --git a/Userland/Libraries/LibC/stdlib.cpp b/Userland/Libraries/LibC/stdlib.cpp index bf792f99ea0..69ea92f7908 100644 --- a/Userland/Libraries/LibC/stdlib.cpp +++ b/Userland/Libraries/LibC/stdlib.cpp @@ -12,12 +12,12 @@ #include #include #include -#include #include #include #include #include #include +#include #include #include #include