File tree Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Expand file tree Collapse file tree 2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,6 @@ set(TARGET_LIBC_ENTRYPOINTS
31
31
libc.src.setjmp.setjmp
32
32
33
33
# string.h entrypoints
34
- libc.src.string.bcmp
35
- libc.src.string.bcopy
36
- libc.src.string.bzero
37
- libc.src.string.index
38
34
libc.src.string.memccpy
39
35
libc.src.string.memchr
40
36
libc.src.string.memcmp
@@ -45,10 +41,8 @@ set(TARGET_LIBC_ENTRYPOINTS
45
41
libc.src.string.memrchr
46
42
libc.src.string.memset
47
43
libc.src.string.memset_explicit
48
- libc.src.string.rindex
49
44
libc.src.string.stpcpy
50
45
libc.src.string.stpncpy
51
- libc.src.string.strcasecmp
52
46
libc.src.string.strcasestr
53
47
libc.src.string.strcat
54
48
libc.src.string.strchr
@@ -62,7 +56,6 @@ set(TARGET_LIBC_ENTRYPOINTS
62
56
libc.src.string.strlcat
63
57
libc.src.string.strlcpy
64
58
libc.src.string.strlen
65
- libc.src.string.strncasecmp
66
59
libc.src.string.strncat
67
60
libc.src.string.strncmp
68
61
libc.src.string.strncpy
@@ -76,6 +69,15 @@ set(TARGET_LIBC_ENTRYPOINTS
76
69
libc.src.string.strtok_r
77
70
libc.src.string.strxfrm
78
71
72
+ # strings.h entrypoints
73
+ libc.src.strings.bcmp
74
+ libc.src.strings.bcopy
75
+ libc.src.strings.bzero
76
+ libc.src.strings.index
77
+ libc.src.strings.rindex
78
+ libc.src.strings.strcasecmp
79
+ libc.src.strings.strncasecmp
80
+
79
81
# inttypes.h entrypoints
80
82
libc.src.inttypes.imaxabs
81
83
libc.src.inttypes.imaxdiv
Original file line number Diff line number Diff line change @@ -87,8 +87,8 @@ set(TARGET_LIBC_ENTRYPOINTS
87
87
libc.src.string.strxfrm
88
88
89
89
# strings.h entrypoints
90
- libc.src.string .index
91
- libc.src.string .rindex
90
+ libc.src.strings .index
91
+ libc.src.strings .rindex
92
92
libc.src.strings.bcmp
93
93
libc.src.strings.bcopy
94
94
libc.src.strings.bzero
You can’t perform that action at this time.
0 commit comments