Skip to content

Commit 7644b4c

Browse files
committed
fixed order of includes
1 parent 50a883e commit 7644b4c

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

libc/src/__support/libc_assert.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
#else // Not LIBC_COPT_USE_C_ASSERT
2222

23-
#include "src/__support/OSUtil/io.h"
2423
#include "src/__support/OSUtil/exit.h"
24+
#include "src/__support/OSUtil/io.h"
2525
#include "src/__support/integer_to_string.h"
2626
#include "src/__support/macros/attributes.h" // For LIBC_INLINE
2727

libc/src/stdlib/quick_exit.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,3 @@ namespace LIBC_NAMESPACE {
1818
} // namespace LIBC_NAMESPACE
1919

2020
#endif // LLVM_LIBC_SRC_STDLIB_QUICK_EXIT_H
21-

libc/test/IntegrationTest/test.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
#ifndef LLVM_LIBC_UTILS_INTEGRATION_TEST_TEST_H
1010
#define LLVM_LIBC_UTILS_INTEGRATION_TEST_TEST_H
1111

12-
#include "src/__support/OSUtil/io.h"
1312
#include "src/__support/OSUtil/exit.h"
13+
#include "src/__support/OSUtil/io.h"
1414

1515
#define __AS_STRING(val) #val
1616
#define __CHECK_TRUE(file, line, val, should_exit) \

libc/test/src/stdlib/quick_exit_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include "src/stdlib/quick_exit.h"
109
#include "src/stdlib/exit.h"
10+
#include "src/stdlib/quick_exit.h"
1111
#include "test/UnitTest/Test.h"
1212

1313
TEST(LlvmLibcStdlib, quick_exit) {

0 commit comments

Comments
 (0)