File tree Expand file tree Collapse file tree 4 files changed +13
-2
lines changed Expand file tree Collapse file tree 4 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -970,6 +970,7 @@ if(LLVM_LIBC_FULL_BUILD)
970970 libc.src.stdio.fileno
971971 libc.src.stdio.flockfile
972972 libc.src.stdio.fopen
973+ libc.src.stdio.fopen_s
973974 libc.src.stdio.fopencookie
974975 libc.src.stdio.fputc
975976 libc.src.stdio.fputs
@@ -1000,11 +1001,14 @@ if(LLVM_LIBC_FULL_BUILD)
10001001 # stdlib.h entrypoints
10011002 libc.src.stdlib._Exit
10021003 libc.src.stdlib.abort
1004+ libc.src.stdlib.abort_handler_s
10031005 libc.src.stdlib.at_quick_exit
10041006 libc.src.stdlib.atexit
10051007 libc.src.stdlib.exit
10061008 libc.src.stdlib.getenv
1009+ libc.src.stdlib.ignore_handler_s
10071010 libc.src.stdlib.quick_exit
1011+ libc.src.stdlib.set_constraint_handler_s
10081012
10091013 # signal.h entrypoints
10101014 libc.src.signal.kill
Original file line number Diff line number Diff line change @@ -146,19 +146,22 @@ set(TARGET_LIBC_ENTRYPOINTS
146146
147147 # stdlib.h entrypoints
148148 libc.src.stdlib.abs
149+ libc.src.stdlib.abort_handler_s
149150 libc.src.stdlib.atof
150151 libc.src.stdlib.atoi
151152 libc.src.stdlib.atol
152153 libc.src.stdlib.atoll
153154 libc.src.stdlib.bsearch
154155 libc.src.stdlib.div
156+ libc.src.stdlib.ignore_handler_s
155157 libc.src.stdlib.labs
156158 libc.src.stdlib.ldiv
157159 libc.src.stdlib.llabs
158160 libc.src.stdlib.lldiv
159161 libc.src.stdlib.memalignment
160162 libc.src.stdlib.qsort
161163 libc.src.stdlib.qsort_r
164+ libc.src.stdlib.set_constraint_handler_s
162165 libc.src.stdlib.strtod
163166 libc.src.stdlib.strtof
164167 libc.src.stdlib.strtol
Original file line number Diff line number Diff line change @@ -1096,6 +1096,7 @@ if(LLVM_LIBC_FULL_BUILD)
10961096 libc.src.stdio.fileno
10971097 libc.src.stdio.flockfile
10981098 libc.src.stdio.fopen
1099+ libc.src.stdio.fopen_s
10991100 libc.src.stdio.fopencookie
11001101 libc.src.stdio.fputc
11011102 libc.src.stdio.fputs
@@ -1126,11 +1127,14 @@ if(LLVM_LIBC_FULL_BUILD)
11261127 # stdlib.h entrypoints
11271128 libc.src.stdlib._Exit
11281129 libc.src.stdlib.abort
1130+ libc.src.stdlib.abort_handler_s
11291131 libc.src.stdlib.at_quick_exit
11301132 libc.src.stdlib.atexit
11311133 libc.src.stdlib.exit
11321134 libc.src.stdlib.getenv
1135+ libc.src.stdlib.ignore_handler_s
11331136 libc.src.stdlib.quick_exit
1137+ libc.src.stdlib.set_constraint_handler_s
11341138
11351139 # signal.h entrypoints
11361140 libc.src.signal.kill
Original file line number Diff line number Diff line change @@ -1162,14 +1162,14 @@ if(LLVM_LIBC_FULL_BUILD)
11621162 # stdlib.h entrypoints
11631163 libc.src.stdlib._Exit
11641164 libc.src.stdlib.abort
1165+ libc.src.stdlib.abort_handler_s
11651166 libc.src.stdlib.at_quick_exit
11661167 libc.src.stdlib.atexit
11671168 libc.src.stdlib.exit
11681169 libc.src.stdlib.getenv
1170+ libc.src.stdlib.ignore_handler_s
11691171 libc.src.stdlib.quick_exit
11701172 libc.src.stdlib.set_constraint_handler_s
1171- libc.src.stdlib.abort_handler_s
1172- libc.src.stdlib.ignore_handler_s
11731173
11741174 # signal.h entrypoints
11751175 libc.src.signal.kill
You can’t perform that action at this time.
0 commit comments