File tree 3 files changed +3
-3
lines changed
system/lib/llvm-libc/src/__support 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_LIBC_SRC___SUPPORT_LIBC_ASSERT_H
10
10
#define LLVM_LIBC_SRC___SUPPORT_LIBC_ASSERT_H
11
11
12
- #include " src/__support/macros/config.h"
13
12
#if defined(LIBC_COPT_USE_C_ASSERT) || !defined(LIBC_FULL_BUILD)
14
13
15
14
// The build is configured to just use the public <assert.h> API
25
24
#include " src/__support/OSUtil/io.h"
26
25
#include " src/__support/integer_to_string.h"
27
26
#include " src/__support/macros/attributes.h" // For LIBC_INLINE
27
+ #include " src/__support/macros/config.h"
28
28
#include " src/__support/macros/optimization.h" // For LIBC_UNLIKELY
29
29
30
30
namespace LIBC_NAMESPACE_DECL {
Original file line number Diff line number Diff line change 15
15
#ifndef LLVM_LIBC_SRC___SUPPORT_STR_TO_FLOAT_H
16
16
#define LLVM_LIBC_SRC___SUPPORT_STR_TO_FLOAT_H
17
17
18
+ #include " hdr/errno_macros.h" // For ERANGE
18
19
#include " src/__support/CPP/bit.h"
19
20
#include " src/__support/CPP/limits.h"
20
21
#include " src/__support/CPP/optional.h"
31
32
#include " src/__support/str_to_integer.h"
32
33
#include " src/__support/str_to_num_result.h"
33
34
#include " src/__support/uint128.h"
34
- #include " src/errno/libc_errno.h" // For ERANGE
35
35
36
36
#include < stdint.h>
37
37
Original file line number Diff line number Diff line change 15
15
#ifndef LLVM_LIBC_SRC___SUPPORT_STR_TO_INTEGER_H
16
16
#define LLVM_LIBC_SRC___SUPPORT_STR_TO_INTEGER_H
17
17
18
+ #include " hdr/errno_macros.h" // For ERANGE
18
19
#include " src/__support/CPP/limits.h"
19
20
#include " src/__support/CPP/type_traits.h"
20
21
#include " src/__support/CPP/type_traits/make_unsigned.h"
24
25
#include " src/__support/macros/config.h"
25
26
#include " src/__support/str_to_num_result.h"
26
27
#include " src/__support/uint128.h"
27
- #include " src/errno/libc_errno.h" // For ERANGE
28
28
29
29
namespace LIBC_NAMESPACE_DECL {
30
30
namespace internal {
You can’t perform that action at this time.
0 commit comments