File tree Expand file tree Collapse file tree 13 files changed +24
-0
lines changed Expand file tree Collapse file tree 13 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -23,4 +23,5 @@ set(TARGET_PUBLIC_HEADERS
2323 libc.include.time
2424 libc.include.uchar
2525 libc.include.wchar
26+ libc.include.wctype
2627)
Original file line number Diff line number Diff line change @@ -99,6 +99,9 @@ set(TARGET_LIBC_ENTRYPOINTS
9999 libc.src.stdlib.calloc
100100 libc.src.stdlib.realloc
101101 libc.src.stdlib.free
102+
103+ # wctype.h entrypoints
104+ libc.src.wctype.iswalpha
102105)
103106
104107if(LLVM_LIBC_FULL_BUILD)
Original file line number Diff line number Diff line change @@ -11,4 +11,5 @@ set(TARGET_PUBLIC_HEADERS
1111 libc.include.stdlib
1212 libc.include.string
1313 libc.include.strings
14+ libc.include.wctype
1415)
Original file line number Diff line number Diff line change @@ -363,6 +363,9 @@ set(TARGET_LIBC_ENTRYPOINTS
363363 libc.src.wchar.wcslen
364364 libc.src.wchar.wctob
365365
366+ # wctype.h entrypoints
367+ libc.src.wctype.iswalpha
368+
366369 # sys/uio.h entrypoints
367370 libc.src.sys.uio.writev
368371 libc.src.sys.uio.readv
Original file line number Diff line number Diff line change @@ -57,4 +57,5 @@ set(TARGET_PUBLIC_HEADERS
5757 libc.include.uchar
5858 libc.include.unistd
5959 libc.include.wchar
60+ libc.include.wctype
6061)
Original file line number Diff line number Diff line change @@ -191,6 +191,9 @@ set(TARGET_LIBC_ENTRYPOINTS
191191 # sys/time.h entrypoints
192192 libc.src.sys.time.setitimer
193193 libc.src.sys.time.getitimer
194+
195+ # wctype.h entrypoints
196+ libc.src.wctype.iswalpha
194197)
195198
196199if(LLVM_LIBC_FULL_BUILD)
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ set(TARGET_PUBLIC_HEADERS
1717 libc.include.strings
1818 libc.include.uchar
1919 libc.include.wchar
20+ libc.include.wctype
2021
2122 # Disabled due to epoll_wait syscalls not being available on this platform.
2223 # libc.include.sys_epoll
Original file line number Diff line number Diff line change @@ -368,6 +368,9 @@ set(TARGET_LIBC_ENTRYPOINTS
368368 libc.src.wchar.wcslen
369369 libc.src.wchar.wctob
370370
371+ # wctype.h entrypoints
372+ libc.src.wctype.iswalpha
373+
371374 # sys/uio.h entrypoints
372375 libc.src.sys.uio.writev
373376 libc.src.sys.uio.readv
Original file line number Diff line number Diff line change @@ -57,4 +57,5 @@ set(TARGET_PUBLIC_HEADERS
5757 libc.include.uchar
5858 libc.include.unistd
5959 libc.include.wchar
60+ libc.include.wctype
6061)
Original file line number Diff line number Diff line change @@ -396,6 +396,8 @@ set(TARGET_LIBC_ENTRYPOINTS
396396 libc.src.wchar.wcstoul
397397 libc.src.wchar.wcstoull
398398
399+ # wctype.h entrypoints
400+ libc.src.wctype.iswalpha
399401
400402 # sys/uio.h entrypoints
401403 libc.src.sys.uio.writev
You can’t perform that action at this time.
0 commit comments