File tree 9 files changed +15
-11
lines changed
9 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -138,6 +138,7 @@ add_entrypoint_object(
138
138
DEPENDS
139
139
.strcpy
140
140
.string_utils
141
+ libc.include .llvm-libc-types.size_t
141
142
)
142
143
143
144
add_entrypoint_object(
@@ -240,6 +241,7 @@ add_entrypoint_object(
240
241
.string_utils
241
242
libc.include .stdlib
242
243
libc.src.errno.errno
244
+ libc.include .llvm-libc-types.size_t
243
245
)
244
246
245
247
add_entrypoint_object(
@@ -270,7 +272,7 @@ add_entrypoint_object(
270
272
strlcat.h
271
273
DEPENDS
272
274
.string_utils
273
- libc.include .string
275
+ libc.include .llvm-libc-types.size_t
274
276
)
275
277
276
278
add_entrypoint_object(
@@ -281,7 +283,7 @@ add_entrypoint_object(
281
283
strlcpy.h
282
284
DEPENDS
283
285
.string_utils
284
- libc.include .string
286
+ libc.include .llvm-libc-types.size_t
285
287
)
286
288
287
289
add_entrypoint_object(
@@ -292,7 +294,7 @@ add_entrypoint_object(
292
294
strlen.h
293
295
DEPENDS
294
296
.string_utils
295
- libc.include .string
297
+ libc.include .llvm-libc-types.size_t
296
298
)
297
299
298
300
add_entrypoint_object(
@@ -304,6 +306,7 @@ add_entrypoint_object(
304
306
DEPENDS
305
307
.strncpy
306
308
.string_utils
309
+ libc.include .llvm-libc-types.size_t
307
310
)
308
311
309
312
add_entrypoint_object(
@@ -346,6 +349,7 @@ add_entrypoint_object(
346
349
.string_utils
347
350
libc.include .stdlib
348
351
libc.src.__support.CPP.new
352
+ libc.include .llvm-libc-types.size_t
349
353
)
350
354
351
355
add_entrypoint_object(
Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_LIBC_SRC_STRING_STRCAT_H
10
10
#define LLVM_LIBC_SRC_STRING_STRCAT_H
11
11
12
+ #include " include/llvm-libc-types/size_t.h"
12
13
#include " src/__support/macros/config.h"
13
- #include < string.h>
14
14
15
15
namespace LIBC_NAMESPACE_DECL {
16
16
Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_LIBC_SRC_STRING_STRCPY_H
10
10
#define LLVM_LIBC_SRC_STRING_STRCPY_H
11
11
12
+ #include " include/llvm-libc-types/size_t.h"
12
13
#include " src/__support/macros/config.h"
13
- #include < string.h>
14
14
15
15
namespace LIBC_NAMESPACE_DECL {
16
16
Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_LIBC_SRC_STRING_STRDUP_H
10
10
#define LLVM_LIBC_SRC_STRING_STRDUP_H
11
11
12
+ #include " include/llvm-libc-types/size_t.h"
12
13
#include " src/__support/macros/config.h"
13
- #include < string.h>
14
14
15
15
namespace LIBC_NAMESPACE_DECL {
16
16
Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_LIBC_SRC_STRING_STRLCAT_H
10
10
#define LLVM_LIBC_SRC_STRING_STRLCAT_H
11
11
12
+ #include " include/llvm-libc-types/size_t.h"
12
13
#include " src/__support/macros/config.h"
13
- #include < string.h>
14
14
15
15
namespace LIBC_NAMESPACE_DECL {
16
16
Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_LIBC_SRC_STRING_STRLCPY_H
10
10
#define LLVM_LIBC_SRC_STRING_STRLCPY_H
11
11
12
+ #include " include/llvm-libc-types/size_t.h"
12
13
#include " src/__support/macros/config.h"
13
- #include < string.h>
14
14
15
15
namespace LIBC_NAMESPACE_DECL {
16
16
Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_LIBC_SRC_STRING_STRLEN_H
10
10
#define LLVM_LIBC_SRC_STRING_STRLEN_H
11
11
12
+ #include " include/llvm-libc-types/size_t.h"
12
13
#include " src/__support/macros/config.h"
13
- #include < string.h>
14
14
15
15
namespace LIBC_NAMESPACE_DECL {
16
16
Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_LIBC_SRC_STRING_STRNCAT_H
10
10
#define LLVM_LIBC_SRC_STRING_STRNCAT_H
11
11
12
+ #include " include/llvm-libc-types/size_t.h"
12
13
#include " src/__support/macros/config.h"
13
- #include < string.h>
14
14
15
15
namespace LIBC_NAMESPACE_DECL {
16
16
Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_LIBC_SRC_STRING_STRNDUP_H
10
10
#define LLVM_LIBC_SRC_STRING_STRNDUP_H
11
11
12
+ #include " include/llvm-libc-types/size_t.h"
12
13
#include " src/__support/macros/config.h"
13
- #include < string.h>
14
14
15
15
namespace LIBC_NAMESPACE_DECL {
16
16
You can’t perform that action at this time.
0 commit comments