File tree Expand file tree Collapse file tree 8 files changed +13
-29
lines changed Expand file tree Collapse file tree 8 files changed +13
-29
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ add_object_library(
5
5
HDRS
6
6
locale.h
7
7
DEPENDS
8
- libc.include.locale
8
+ libc.hdr.types.locale_t
9
9
)
10
10
11
11
add_entrypoint_object (
@@ -27,7 +27,8 @@ add_entrypoint_object(
27
27
HDRS
28
28
newlocale.h
29
29
DEPENDS
30
- libc.include.locale
30
+ libc.hdr.locale_macros
31
+ libc.hdr.types.locale_t
31
32
.locale
32
33
)
33
34
@@ -38,8 +39,7 @@ add_entrypoint_object(
38
39
HDRS
39
40
duplocale.h
40
41
DEPENDS
41
- libc.include.locale
42
- .locale
42
+ libc.hdr.types.locale_t
43
43
)
44
44
45
45
add_entrypoint_object (
@@ -49,8 +49,8 @@ add_entrypoint_object(
49
49
HDRS
50
50
setlocale.h
51
51
DEPENDS
52
- libc.include.locale
53
- .locale
52
+ libc.hdr.locale_macros
53
+ libc.hdr.types.locale_t
54
54
)
55
55
56
56
add_entrypoint_object (
@@ -60,7 +60,7 @@ add_entrypoint_object(
60
60
HDRS
61
61
uselocale.h
62
62
DEPENDS
63
- libc.include.locale
63
+ libc.hdr.types.locale_t
64
64
.locale
65
65
)
66
66
@@ -71,6 +71,5 @@ add_entrypoint_object(
71
71
HDRS
72
72
freelocale.h
73
73
DEPENDS
74
- libc.include.locale
75
- .locale
74
+ libc.hdr.types.locale_t
76
75
)
Original file line number Diff line number Diff line change 7
7
// ===----------------------------------------------------------------------===//
8
8
9
9
#include " src/locale/duplocale.h"
10
- #include " include/llvm-libc-macros/locale-macros.h"
11
- #include " src/locale/locale.h"
12
-
13
- #include " src/__support/CPP/string_view.h"
14
10
#include " src/__support/common.h"
15
11
#include " src/__support/macros/config.h"
16
12
Original file line number Diff line number Diff line change 7
7
// ===----------------------------------------------------------------------===//
8
8
9
9
#include " src/locale/freelocale.h"
10
- #include " include/llvm-libc-macros/locale-macros.h"
11
- #include " src/locale/locale.h"
12
-
13
- #include " src/__support/CPP/string_view.h"
14
10
#include " src/__support/common.h"
15
11
#include " src/__support/macros/config.h"
16
12
Original file line number Diff line number Diff line change 7
7
// ===----------------------------------------------------------------------===//
8
8
9
9
#include " src/locale/locale.h"
10
-
11
- #include " include/llvm-libc-macros/locale-macros.h"
12
10
#include " src/__support/common.h"
13
11
#include " src/__support/macros/config.h"
14
12
Original file line number Diff line number Diff line change 7
7
// ===----------------------------------------------------------------------===//
8
8
9
9
#include " src/locale/newlocale.h"
10
- #include " include/llvm-libc-macros/locale-macros.h"
11
- #include " src/locale/locale.h"
12
-
10
+ #include " hdr/locale_macros.h"
13
11
#include " src/__support/CPP/string_view.h"
14
12
#include " src/__support/common.h"
15
13
#include " src/__support/macros/config.h"
14
+ #include " src/locale/locale.h"
16
15
17
16
namespace LIBC_NAMESPACE_DECL {
18
17
Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_LIBC_SRC_LOCALE_SETLOCALE_H
10
10
#define LLVM_LIBC_SRC_LOCALE_SETLOCALE_H
11
11
12
- #include " src/__support/macros/config.h"
13
-
14
12
#include " hdr/types/locale_t.h"
13
+ #include " src/__support/macros/config.h"
15
14
16
15
namespace LIBC_NAMESPACE_DECL {
17
16
Original file line number Diff line number Diff line change 7
7
// ===----------------------------------------------------------------------===//
8
8
9
9
#include " src/locale/setlocale.h"
10
- #include " include/llvm-libc-macros/locale-macros.h"
11
- #include " src/locale/locale.h"
12
-
10
+ #include " hdr/locale_macros.h"
13
11
#include " src/__support/CPP/string_view.h"
14
12
#include " src/__support/common.h"
15
13
#include " src/__support/macros/config.h"
Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_LIBC_SRC_LOCALE_SETLOCALE_H
10
10
#define LLVM_LIBC_SRC_LOCALE_SETLOCALE_H
11
11
12
- #include " src/__support/macros/config.h"
13
-
14
12
#include " hdr/types/locale_t.h"
13
+ #include " src/__support/macros/config.h"
15
14
16
15
namespace LIBC_NAMESPACE_DECL {
17
16
You can’t perform that action at this time.
0 commit comments