Skip to content

Commit ece948f

Browse files
committed
style: clang-format
Signed-off-by: krishna2803 <[email protected]>
1 parent 5a91cde commit ece948f

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

libc/hdr/types/struct_sched_param.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- Proxy for struct_sched_param --------------------------------------===//
1+
//===-- Proxy for struct sched_param --------------------------------------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

libc/test/src/sched/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ add_libc_unittest(
9191
libc.include.sched
9292
libc.hdr.types.cpu_set_t
9393
libc.hdr.types.pid_t
94+
libc.hdr.sched_macros
9495
libc.include.sys_syscall
9596
libc.src.__support.OSUtil.osutil
9697
libc.src.errno.errno

libc/test/src/sched/cpu_count_test.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include "src/sched/sched_getcpucount.h"
1313
#include "test/UnitTest/ErrnoSetterMatcher.h"
1414

15+
#include "hdr/sched_macros.h"
1516
#include "hdr/types/cpu_set_t.h"
1617
#include "hdr/types/pid_t.h"
1718

libc/test/src/sched/param_and_scheduler_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
#include "src/unistd/getuid.h"
1717
#include "test/UnitTest/Test.h"
1818

19-
#include "hdr/types/struct_sched_param.h"
2019
#include "hdr/sched_macros.h"
20+
#include "hdr/types/struct_sched_param.h"
2121

2222
// We Test:
2323
// SCHED_OTHER, SCHED_FIFO, SCHED_RR

libc/test/src/sched/sched_rr_get_interval_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
#include "src/unistd/getuid.h"
1515
#include "test/UnitTest/Test.h"
1616

17-
#include "hdr/types/struct_sched_param.h"
1817
#include "hdr/sched_macros.h"
18+
#include "hdr/types/struct_sched_param.h"
1919

2020
TEST(LlvmLibcSchedRRGetIntervalTest, SmokeTest) {
2121
LIBC_NAMESPACE::libc_errno = 0;

0 commit comments

Comments
 (0)