Skip to content

Commit 8f85a8e

Browse files
Move err/warn/etc from libc to libcextra.
1 parent 58713dc commit 8f85a8e

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

emcc

+3-3
Original file line numberDiff line numberDiff line change
@@ -1446,9 +1446,6 @@ try:
14461446
'floatscan.c',
14471447
'shgetc.c',
14481448
]],
1449-
['legacy', [
1450-
'err.c',
1451-
]],
14521449
['math', [
14531450
'scalbn.c',
14541451
'scalbnl.c',
@@ -1506,6 +1503,9 @@ try:
15061503
['internal', [
15071504
'intscan.c',
15081505
]],
1506+
['legacy', [
1507+
'err.c',
1508+
]],
15091509
['locale', [
15101510
'iconv.c',
15111511
'iswalnum_l.c',

system/lib/libc.symbols

-8
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@
5252
T atof
5353
W bulk_free
5454
W calloc
55-
T err
56-
T errx
5755
W free
5856
W independent_calloc
5957
W independent_comalloc
@@ -81,9 +79,3 @@
8179
T strtold
8280
W strtold_l
8381
W valloc
84-
T verr
85-
T verrx
86-
T vwarn
87-
T vwarnx
88-
T warn
89-
T warnx

system/lib/libcextra.symbols

+8
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
W __wctype_l
2323
T btowc
2424
T ecvt
25+
T err
26+
T errx
2527
T fcvt
2628
T fputwc
2729
W fputwc_unlocked
@@ -120,9 +122,15 @@
120122
T towlower_l
121123
T towupper
122124
T towupper_l
125+
T verr
126+
T verrx
123127
T vfwprintf
124128
T vswprintf
129+
T vwarn
130+
T vwarnx
125131
T vwprintf
132+
T warn
133+
T warnx
126134
T wcpcpy
127135
T wcpncpy
128136
T wcrtomb

0 commit comments

Comments
 (0)