• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import("musl_config.gni")
2
3if (musl_arch == "arm") {
4  musl_src_arch_file = [
5    "src/exit/arm/__aeabi_atexit.c",
6    "src/fenv/arm/fenv-hf.S",
7    "src/fenv/arm/fenv.c",
8    "src/ldso/arm/dlsym.s",
9    "src/ldso/arm/dlsym_time64.S",
10    "src/ldso/arm/find_exidx.c",
11    "src/ldso/arm/tlsdesc.S",
12    "src/math/arm/fabs.c",
13    "src/math/arm/fabsf.c",
14    "src/math/arm/fma.c",
15    "src/math/arm/fmaf.c",
16    "src/math/arm/sqrt.c",
17    "src/math/arm/sqrtf.c",
18    "src/process/arm/vfork.s",
19    "src/setjmp/arm/longjmp.S",
20    "src/setjmp/arm/setjmp.S",
21    "src/signal/arm/restore.s",
22    "src/signal/arm/sigsetjmp.s",
23    "src/string/arm/__aeabi_memcpy.s",
24    "src/string/arm/__aeabi_memset.s",
25    "src/string/arm/memcpy.c",
26    "src/string/arm/memcpy_le.S",
27    "src/thread/arm/__aeabi_read_tp.s",
28    "src/thread/arm/__set_thread_area.c",
29    "src/thread/arm/__unmapself.s",
30    "src/thread/arm/atomics.s",
31    "src/thread/arm/clone.s",
32    "src/thread/arm/syscall_cp.s",
33    "compat/time32/adjtime32.c",
34    "compat/time32/adjtimex_time32.c",
35    "compat/time32/aio_suspend_time32.c",
36    "compat/time32/clock_adjtime32.c",
37    "compat/time32/clock_getres_time32.c",
38    "compat/time32/clock_gettime32.c",
39    "compat/time32/clock_nanosleep_time32.c",
40    "compat/time32/clock_settime32.c",
41    "compat/time32/cnd_timedwait_time32.c",
42    "compat/time32/ctime32.c",
43    "compat/time32/ctime32_r.c",
44    "compat/time32/difftime32.c",
45    "compat/time32/fstatat_time32.c",
46    "compat/time32/fstat_time32.c",
47    "compat/time32/ftime32.c",
48    "compat/time32/futimens_time32.c",
49    "compat/time32/futimesat_time32.c",
50    "compat/time32/futimes_time32.c",
51    "compat/time32/getitimer_time32.c",
52    "compat/time32/getrusage_time32.c",
53    "compat/time32/gettimeofday_time32.c",
54    "compat/time32/gmtime32.c",
55    "compat/time32/gmtime32_r.c",
56    "compat/time32/localtime32.c",
57    "compat/time32/localtime32_r.c",
58    "compat/time32/lstat_time32.c",
59    "compat/time32/lutimes_time32.c",
60    "compat/time32/mktime32.c",
61    "compat/time32/mq_timedreceive_time32.c",
62    "compat/time32/mq_timedsend_time32.c",
63    "compat/time32/mtx_timedlock_time32.c",
64    "compat/time32/nanosleep_time32.c",
65    "compat/time32/ppoll_time32.c",
66    "compat/time32/pselect_time32.c",
67    "compat/time32/pthread_cond_timedwait_time32.c",
68    "compat/time32/pthread_mutex_timedlock_time32.c",
69    "compat/time32/pthread_rwlock_timedrdlock_time32.c",
70    "compat/time32/pthread_rwlock_timedwrlock_time32.c",
71    "compat/time32/pthread_timedjoin_np_time32.c",
72    "compat/time32/recvmmsg_time32.c",
73    "compat/time32/sched_rr_get_interval_time32.c",
74    "compat/time32/select_time32.c",
75    "compat/time32/semtimedop_time32.c",
76    "compat/time32/sem_timedwait_time32.c",
77    "compat/time32/setitimer_time32.c",
78    "compat/time32/settimeofday_time32.c",
79    "compat/time32/sigtimedwait_time32.c",
80    "compat/time32/stat_time32.c",
81    "compat/time32/stime32.c",
82    "compat/time32/thrd_sleep_time32.c",
83    "compat/time32/time32.c",
84    "compat/time32/time32gm.c",
85    "compat/time32/time32.h",
86    "compat/time32/timerfd_gettime32.c",
87    "compat/time32/timerfd_settime32.c",
88    "compat/time32/timer_gettime32.c",
89    "compat/time32/timer_settime32.c",
90    "compat/time32/timespec_get_time32.c",
91    "compat/time32/utimensat_time32.c",
92    "compat/time32/utimes_time32.c",
93    "compat/time32/utime_time32.c",
94    "compat/time32/wait3_time32.c",
95    "compat/time32/wait4_time32.c",
96    "compat/time32/__xstat.c",
97  ]
98} else if (musl_arch == "aarch64") {
99  musl_src_arch_file = [
100    "src/fenv/aarch64/fenv.s",
101    "src/ldso/aarch64/dlsym.s",
102    "src/ldso/aarch64/tlsdesc.s",
103    "src/math/aarch64/ceil.c",
104    "src/math/aarch64/ceilf.c",
105    "src/math/aarch64/fabs.c",
106    "src/math/aarch64/fabsf.c",
107    "src/math/aarch64/floor.c",
108    "src/math/aarch64/floorf.c",
109    "src/math/aarch64/fma.c",
110    "src/math/aarch64/fmaf.c",
111    "src/math/aarch64/fmax.c",
112    "src/math/aarch64/fmaxf.c",
113    "src/math/aarch64/fmin.c",
114    "src/math/aarch64/fminf.c",
115    "src/math/aarch64/llrint.c",
116    "src/math/aarch64/llrintf.c",
117    "src/math/aarch64/llround.c",
118    "src/math/aarch64/llroundf.c",
119    "src/math/aarch64/lrint.c",
120    "src/math/aarch64/lrintf.c",
121    "src/math/aarch64/lround.c",
122    "src/math/aarch64/lroundf.c",
123    "src/math/aarch64/nearbyint.c",
124    "src/math/aarch64/nearbyintf.c",
125    "src/math/aarch64/rint.c",
126    "src/math/aarch64/rintf.c",
127    "src/math/aarch64/round.c",
128    "src/math/aarch64/roundf.c",
129    "src/math/aarch64/sqrt.c",
130    "src/math/aarch64/sqrtf.c",
131    "src/math/aarch64/trunc.c",
132    "src/math/aarch64/truncf.c",
133    "src/setjmp/aarch64/longjmp.s",
134    "src/setjmp/aarch64/setjmp.s",
135    "src/signal/aarch64/restore.s",
136    "src/signal/aarch64/sigsetjmp.s",
137    "src/thread/aarch64/__set_thread_area.s",
138    "src/thread/aarch64/__unmapself.s",
139    "src/thread/aarch64/clone.s",
140    "src/thread/aarch64/syscall_cp.s",
141  ]
142}
143
144musl_src_file = [
145  "src/aio/aio.c",
146  "src/aio/aio_suspend.c",
147  "src/aio/lio_listio.c",
148  "src/complex/__cexp.c",
149  "src/complex/__cexpf.c",
150  "src/complex/cabs.c",
151  "src/complex/cabsf.c",
152  "src/complex/cabsl.c",
153  "src/complex/cacos.c",
154  "src/complex/cacosf.c",
155  "src/complex/cacosh.c",
156  "src/complex/cacoshf.c",
157  "src/complex/cacoshl.c",
158  "src/complex/cacosl.c",
159  "src/complex/carg.c",
160  "src/complex/cargf.c",
161  "src/complex/cargl.c",
162  "src/complex/casin.c",
163  "src/complex/casinf.c",
164  "src/complex/casinh.c",
165  "src/complex/casinhf.c",
166  "src/complex/casinhl.c",
167  "src/complex/casinl.c",
168  "src/complex/catan.c",
169  "src/complex/catanf.c",
170  "src/complex/catanh.c",
171  "src/complex/catanhf.c",
172  "src/complex/catanhl.c",
173  "src/complex/catanl.c",
174  "src/complex/ccos.c",
175  "src/complex/ccosf.c",
176  "src/complex/ccosh.c",
177  "src/complex/ccoshf.c",
178  "src/complex/ccoshl.c",
179  "src/complex/ccosl.c",
180  "src/complex/cexp.c",
181  "src/complex/cexpf.c",
182  "src/complex/cexpl.c",
183  "src/complex/cimag.c",
184  "src/complex/cimagf.c",
185  "src/complex/cimagl.c",
186  "src/complex/clog.c",
187  "src/complex/clogf.c",
188  "src/complex/clogl.c",
189  "src/complex/conj.c",
190  "src/complex/conjf.c",
191  "src/complex/conjl.c",
192  "src/complex/cpow.c",
193  "src/complex/cpowf.c",
194  "src/complex/cpowl.c",
195  "src/complex/cproj.c",
196  "src/complex/cprojf.c",
197  "src/complex/cprojl.c",
198  "src/complex/creal.c",
199  "src/complex/crealf.c",
200  "src/complex/creall.c",
201  "src/complex/csin.c",
202  "src/complex/csinf.c",
203  "src/complex/csinh.c",
204  "src/complex/csinhf.c",
205  "src/complex/csinhl.c",
206  "src/complex/csinl.c",
207  "src/complex/csqrt.c",
208  "src/complex/csqrtf.c",
209  "src/complex/csqrtl.c",
210  "src/complex/ctan.c",
211  "src/complex/ctanf.c",
212  "src/complex/ctanh.c",
213  "src/complex/ctanhf.c",
214  "src/complex/ctanhl.c",
215  "src/complex/ctanl.c",
216  "src/conf/confstr.c",
217  "src/conf/fpathconf.c",
218  "src/conf/legacy.c",
219  "src/conf/pathconf.c",
220  "src/conf/sysconf.c",
221  "src/crypt/crypt.c",
222  "src/crypt/crypt_blowfish.c",
223  "src/crypt/crypt_des.c",
224  "src/crypt/crypt_md5.c",
225  "src/crypt/crypt_r.c",
226  "src/crypt/crypt_sha256.c",
227  "src/crypt/crypt_sha512.c",
228  "src/crypt/encrypt.c",
229  "src/ctype/__ctype_b_loc.c",
230  "src/ctype/__ctype_get_mb_cur_max.c",
231  "src/ctype/__ctype_tolower_loc.c",
232  "src/ctype/__ctype_toupper_loc.c",
233  "src/ctype/isalnum.c",
234  "src/ctype/isalpha.c",
235  "src/ctype/isascii.c",
236  "src/ctype/isblank.c",
237  "src/ctype/iscntrl.c",
238  "src/ctype/isdigit.c",
239  "src/ctype/isgraph.c",
240  "src/ctype/islower.c",
241  "src/ctype/isprint.c",
242  "src/ctype/ispunct.c",
243  "src/ctype/isspace.c",
244  "src/ctype/isupper.c",
245  "src/ctype/iswalnum.c",
246  "src/ctype/iswalpha.c",
247  "src/ctype/iswblank.c",
248  "src/ctype/iswcntrl.c",
249  "src/ctype/iswctype.c",
250  "src/ctype/iswdigit.c",
251  "src/ctype/iswgraph.c",
252  "src/ctype/iswlower.c",
253  "src/ctype/iswprint.c",
254  "src/ctype/iswpunct.c",
255  "src/ctype/iswspace.c",
256  "src/ctype/iswupper.c",
257  "src/ctype/iswxdigit.c",
258  "src/ctype/isxdigit.c",
259  "src/ctype/toascii.c",
260  "src/ctype/tolower.c",
261  "src/ctype/toupper.c",
262  "src/ctype/towctrans.c",
263  "src/ctype/wcswidth.c",
264  "src/ctype/wctrans.c",
265  "src/ctype/wcwidth.c",
266  "src/dirent/alphasort.c",
267  "src/dirent/closedir.c",
268  "src/dirent/dirfd.c",
269  "src/dirent/fdopendir.c",
270  "src/dirent/opendir.c",
271  "src/dirent/readdir.c",
272  "src/dirent/readdir_r.c",
273  "src/dirent/rewinddir.c",
274  "src/dirent/scandir.c",
275  "src/dirent/seekdir.c",
276  "src/dirent/telldir.c",
277  "src/dirent/versionsort.c",
278  "src/env/__environ.c",
279  "src/env/__init_tls.c",
280  "src/env/__libc_start_main.c",
281  "src/env/__reset_tls.c",
282  "src/env/__stack_chk_fail.c",
283  "src/env/clearenv.c",
284  "src/env/getenv.c",
285  "src/env/putenv.c",
286  "src/env/secure_getenv.c",
287  "src/env/setenv.c",
288  "src/env/unsetenv.c",
289  "src/errno/__errno_location.c",
290  "src/errno/strerror.c",
291  "src/exit/_Exit.c",
292  "src/exit/abort.c",
293  "src/exit/assert.c",
294  "src/exit/at_quick_exit.c",
295  "src/exit/atexit.c",
296  "src/exit/exit.c",
297  "src/exit/quick_exit.c",
298  "src/fcntl/creat.c",
299  "src/fcntl/fcntl.c",
300  "src/fcntl/open.c",
301  "src/fcntl/openat.c",
302  "src/fcntl/posix_fadvise.c",
303  "src/fcntl/posix_fallocate.c",
304  "src/fenv/__flt_rounds.c",
305  "src/fenv/fegetexceptflag.c",
306  "src/fenv/feholdexcept.c",
307  "src/fenv/fenv.c",
308  "src/fenv/fesetexceptflag.c",
309  "src/fenv/fesetround.c",
310  "src/fenv/feupdateenv.c",
311  "src/internal/defsysinfo.c",
312  "src/internal/floatscan.c",
313  "src/internal/intscan.c",
314  "src/internal/libc.c",
315  "src/internal/procfdname.c",
316  "src/internal/shgetc.c",
317  "src/internal/syscall_ret.c",
318  "src/internal/vdso.c",
319  "src/internal/version.c",
320  "src/ipc/ftok.c",
321  "src/ipc/msgctl.c",
322  "src/ipc/msgget.c",
323  "src/ipc/msgrcv.c",
324  "src/ipc/msgsnd.c",
325  "src/ipc/semctl.c",
326  "src/ipc/semget.c",
327  "src/ipc/semop.c",
328  "src/ipc/semtimedop.c",
329  "src/ipc/shmat.c",
330  "src/ipc/shmctl.c",
331  "src/ipc/shmdt.c",
332  "src/ipc/shmget.c",
333  "src/ldso/__dlsym.c",
334  "src/ldso/dl_iterate_phdr.c",
335  "src/ldso/dladdr.c",
336  "src/ldso/dlclose.c",
337  "src/ldso/dlerror.c",
338  "src/ldso/dlinfo.c",
339  "src/ldso/dlopen.c",
340  "src/ldso/dlsym.c",
341  "src/ldso/tlsdesc.c",
342  "src/legacy/cuserid.c",
343  "src/legacy/daemon.c",
344  "src/legacy/err.c",
345  "src/legacy/euidaccess.c",
346  "src/legacy/ftw.c",
347  "src/legacy/futimes.c",
348  "src/legacy/getdtablesize.c",
349  "src/legacy/getloadavg.c",
350  "src/legacy/getpagesize.c",
351  "src/legacy/getpass.c",
352  "src/legacy/getusershell.c",
353  "src/legacy/isastream.c",
354  "src/legacy/lutimes.c",
355  "src/legacy/ulimit.c",
356  "src/legacy/utmpx.c",
357  "src/legacy/valloc.c",
358  "src/linux/adjtime.c",
359  "src/linux/adjtimex.c",
360  "src/linux/arch_prctl.c",
361  "src/linux/brk.c",
362  "src/linux/cache.c",
363  "src/linux/cap.c",
364  "src/linux/chroot.c",
365  "src/linux/clock_adjtime.c",
366  "src/linux/clone.c",
367  "src/linux/copy_file_range.c",
368  "src/linux/epoll.c",
369  "src/linux/eventfd.c",
370  "src/linux/fallocate.c",
371  "src/linux/fanotify.c",
372  "src/linux/flock.c",
373  "src/linux/getdents.c",
374  "src/linux/getrandom.c",
375  "src/linux/gettid.c",
376  "src/linux/inotify.c",
377  "src/linux/ioperm.c",
378  "src/linux/iopl.c",
379  "src/linux/klogctl.c",
380  "src/linux/membarrier.c",
381  "src/linux/memfd_create.c",
382  "src/linux/mlock2.c",
383  "src/linux/module.c",
384  "src/linux/mount.c",
385  "src/linux/name_to_handle_at.c",
386  "src/linux/open_by_handle_at.c",
387  "src/linux/personality.c",
388  "src/linux/pivot_root.c",
389  "src/linux/ppoll.c",
390  "src/linux/prctl.c",
391  "src/linux/prlimit.c",
392  "src/linux/process_vm.c",
393  "src/linux/ptrace.c",
394  "src/linux/quotactl.c",
395  "src/linux/readahead.c",
396  "src/linux/reboot.c",
397  "src/linux/remap_file_pages.c",
398  "src/linux/sbrk.c",
399  "src/linux/sendfile.c",
400  "src/linux/setfsgid.c",
401  "src/linux/setfsuid.c",
402  "src/linux/setgroups.c",
403  "src/linux/sethostname.c",
404  "src/linux/setns.c",
405  "src/linux/settimeofday.c",
406  "src/linux/signalfd.c",
407  "src/linux/splice.c",
408  "src/linux/stime.c",
409  "src/linux/swap.c",
410  "src/linux/sync_file_range.c",
411  "src/linux/syncfs.c",
412  "src/linux/sysinfo.c",
413  "src/linux/tee.c",
414  "src/linux/timerfd.c",
415  "src/linux/unshare.c",
416  "src/linux/utimes.c",
417  "src/linux/vhangup.c",
418  "src/linux/vmsplice.c",
419  "src/linux/wait3.c",
420  "src/linux/wait4.c",
421  "src/linux/xattr.c",
422  "src/locale/__lctrans.c",
423  "src/locale/__mo_lookup.c",
424  "src/locale/bind_textdomain_codeset.c",
425  "src/locale/c_locale.c",
426  "src/locale/catclose.c",
427  "src/locale/catgets.c",
428  "src/locale/catopen.c",
429  "src/locale/dcngettext.c",
430  "src/locale/duplocale.c",
431  "src/locale/freelocale.c",
432  "src/locale/iconv.c",
433  "src/locale/iconv_close.c",
434  "src/locale/langinfo.c",
435  "src/locale/locale_map.c",
436  "src/locale/localeconv.c",
437  "src/locale/newlocale.c",
438  "src/locale/pleval.c",
439  "src/locale/setlocale.c",
440  "src/locale/strcoll.c",
441  "src/locale/strfmon.c",
442  "src/locale/strxfrm.c",
443  "src/locale/textdomain.c",
444  "src/locale/uselocale.c",
445  "src/locale/wcscoll.c",
446  "src/locale/wcsxfrm.c",
447  "src/malloc/aligned_alloc.c",
448  "src/malloc/expand_heap.c",
449  "src/malloc/lite_malloc.c",
450  "src/malloc/malloc.c",
451  "src/malloc/malloc_usable_size.c",
452  "src/malloc/mallocng/mallinfo.c",
453  "src/malloc/memalign.c",
454  "src/malloc/posix_memalign.c",
455  "src/math/__cos.c",
456  "src/math/__cosdf.c",
457  "src/math/__cosl.c",
458  "src/math/__expo2.c",
459  "src/math/__expo2f.c",
460  "src/math/__fpclassify.c",
461  "src/math/__fpclassifyf.c",
462  "src/math/__fpclassifyl.c",
463  "src/math/__invtrigl.c",
464  "src/math/__math_divzero.c",
465  "src/math/__math_divzerof.c",
466  "src/math/__math_invalid.c",
467  "src/math/__math_invalidf.c",
468  "src/math/__math_oflow.c",
469  "src/math/__math_oflowf.c",
470  "src/math/__math_uflow.c",
471  "src/math/__math_uflowf.c",
472  "src/math/__math_xflow.c",
473  "src/math/__math_xflowf.c",
474  "src/math/__polevll.c",
475  "src/math/__rem_pio2.c",
476  "src/math/__rem_pio2_large.c",
477  "src/math/__rem_pio2f.c",
478  "src/math/__rem_pio2l.c",
479  "src/math/__signbit.c",
480  "src/math/__signbitf.c",
481  "src/math/__signbitl.c",
482  "src/math/__sin.c",
483  "src/math/__sindf.c",
484  "src/math/__sinl.c",
485  "src/math/__tan.c",
486  "src/math/__tandf.c",
487  "src/math/__tanl.c",
488  "src/math/acos.c",
489  "src/math/acosf.c",
490  "src/math/acosh.c",
491  "src/math/acoshf.c",
492  "src/math/acoshl.c",
493  "src/math/acosl.c",
494  "src/math/asin.c",
495  "src/math/asinf.c",
496  "src/math/asinh.c",
497  "src/math/asinhf.c",
498  "src/math/asinhl.c",
499  "src/math/asinl.c",
500  "src/math/atan.c",
501  "src/math/atan2.c",
502  "src/math/atan2f.c",
503  "src/math/atan2l.c",
504  "src/math/atanf.c",
505  "src/math/atanh.c",
506  "src/math/atanhf.c",
507  "src/math/atanhl.c",
508  "src/math/atanl.c",
509  "src/math/cbrt.c",
510  "src/math/cbrtf.c",
511  "src/math/cbrtl.c",
512  "src/math/ceil.c",
513  "src/math/ceilf.c",
514  "src/math/ceill.c",
515  "src/math/copysign.c",
516  "src/math/copysignf.c",
517  "src/math/copysignl.c",
518  "src/math/cos.c",
519  "src/math/cosf.c",
520  "src/math/cosh.c",
521  "src/math/coshf.c",
522  "src/math/coshl.c",
523  "src/math/cosl.c",
524  "src/math/erf.c",
525  "src/math/erff.c",
526  "src/math/erfl.c",
527  "src/math/exp.c",
528  "src/math/exp10.c",
529  "src/math/exp10f.c",
530  "src/math/exp10l.c",
531  "src/math/exp2.c",
532  "src/math/exp2f.c",
533  "src/math/exp2f_data.c",
534  "src/math/exp2l.c",
535  "src/math/exp_data.c",
536  "src/math/expf.c",
537  "src/math/expl.c",
538  "src/math/expm1.c",
539  "src/math/expm1f.c",
540  "src/math/expm1l.c",
541  "src/math/fabs.c",
542  "src/math/fabsf.c",
543  "src/math/fabsl.c",
544  "src/math/fdim.c",
545  "src/math/fdimf.c",
546  "src/math/fdiml.c",
547  "src/math/finite.c",
548  "src/math/finitef.c",
549  "src/math/floor.c",
550  "src/math/floorf.c",
551  "src/math/floorl.c",
552  "src/math/fma.c",
553  "src/math/fmaf.c",
554  "src/math/fmal.c",
555  "src/math/fmax.c",
556  "src/math/fmaxf.c",
557  "src/math/fmaxl.c",
558  "src/math/fmin.c",
559  "src/math/fminf.c",
560  "src/math/fminl.c",
561  "src/math/fmod.c",
562  "src/math/fmodf.c",
563  "src/math/fmodl.c",
564  "src/math/frexp.c",
565  "src/math/frexpf.c",
566  "src/math/frexpl.c",
567  "src/math/hypot.c",
568  "src/math/hypotf.c",
569  "src/math/hypotl.c",
570  "src/math/ilogb.c",
571  "src/math/ilogbf.c",
572  "src/math/ilogbl.c",
573  "src/math/j0.c",
574  "src/math/j0f.c",
575  "src/math/j1.c",
576  "src/math/j1f.c",
577  "src/math/jn.c",
578  "src/math/jnf.c",
579  "src/math/ldexp.c",
580  "src/math/ldexpf.c",
581  "src/math/ldexpl.c",
582  "src/math/lgamma.c",
583  "src/math/lgamma_r.c",
584  "src/math/lgammaf.c",
585  "src/math/lgammaf_r.c",
586  "src/math/lgammal.c",
587  "src/math/llrint.c",
588  "src/math/llrintf.c",
589  "src/math/llrintl.c",
590  "src/math/llround.c",
591  "src/math/llroundf.c",
592  "src/math/llroundl.c",
593  "src/math/log.c",
594  "src/math/log10.c",
595  "src/math/log10f.c",
596  "src/math/log10l.c",
597  "src/math/log1p.c",
598  "src/math/log1pf.c",
599  "src/math/log1pl.c",
600  "src/math/log2.c",
601  "src/math/log2_data.c",
602  "src/math/log2f.c",
603  "src/math/log2f_data.c",
604  "src/math/log2l.c",
605  "src/math/log_data.c",
606  "src/math/logb.c",
607  "src/math/logbf.c",
608  "src/math/logbl.c",
609  "src/math/logf.c",
610  "src/math/logf_data.c",
611  "src/math/logl.c",
612  "src/math/lrint.c",
613  "src/math/lrintf.c",
614  "src/math/lrintl.c",
615  "src/math/lround.c",
616  "src/math/lroundf.c",
617  "src/math/lroundl.c",
618  "src/math/modf.c",
619  "src/math/modff.c",
620  "src/math/modfl.c",
621  "src/math/nan.c",
622  "src/math/nanf.c",
623  "src/math/nanl.c",
624  "src/math/nearbyint.c",
625  "src/math/nearbyintf.c",
626  "src/math/nearbyintl.c",
627  "src/math/nextafter.c",
628  "src/math/nextafterf.c",
629  "src/math/nextafterl.c",
630  "src/math/nexttoward.c",
631  "src/math/nexttowardf.c",
632  "src/math/nexttowardl.c",
633  "src/math/pow.c",
634  "src/math/pow_data.c",
635  "src/math/powf.c",
636  "src/math/powf_data.c",
637  "src/math/powl.c",
638  "src/math/remainder.c",
639  "src/math/remainderf.c",
640  "src/math/remainderl.c",
641  "src/math/remquo.c",
642  "src/math/remquof.c",
643  "src/math/remquol.c",
644  "src/math/rint.c",
645  "src/math/rintf.c",
646  "src/math/rintl.c",
647  "src/math/round.c",
648  "src/math/roundf.c",
649  "src/math/roundl.c",
650  "src/math/scalb.c",
651  "src/math/scalbf.c",
652  "src/math/scalbln.c",
653  "src/math/scalblnf.c",
654  "src/math/scalblnl.c",
655  "src/math/scalbn.c",
656  "src/math/scalbnf.c",
657  "src/math/scalbnl.c",
658  "src/math/signgam.c",
659  "src/math/significand.c",
660  "src/math/significandf.c",
661  "src/math/sin.c",
662  "src/math/sincos.c",
663  "src/math/sincosf.c",
664  "src/math/sincosl.c",
665  "src/math/sinf.c",
666  "src/math/sinh.c",
667  "src/math/sinhf.c",
668  "src/math/sinhl.c",
669  "src/math/sinl.c",
670  "src/math/sqrt.c",
671  "src/math/sqrtf.c",
672  "src/math/sqrtl.c",
673  "src/math/tan.c",
674  "src/math/tanf.c",
675  "src/math/tanh.c",
676  "src/math/tanhf.c",
677  "src/math/tanhl.c",
678  "src/math/tanl.c",
679  "src/math/tgamma.c",
680  "src/math/tgammaf.c",
681  "src/math/tgammal.c",
682  "src/math/trunc.c",
683  "src/math/truncf.c",
684  "src/math/truncl.c",
685  "src/misc/a64l.c",
686  "src/misc/basename.c",
687  "src/misc/dirname.c",
688  "src/misc/ffs.c",
689  "src/misc/ffsl.c",
690  "src/misc/ffsll.c",
691  "src/misc/fmtmsg.c",
692  "src/misc/forkpty.c",
693  "src/misc/get_current_dir_name.c",
694  "src/misc/getauxval.c",
695  "src/misc/getdomainname.c",
696  "src/misc/getentropy.c",
697  "src/misc/gethostid.c",
698  "src/misc/getopt.c",
699  "src/misc/getopt_long.c",
700  "src/misc/getpriority.c",
701  "src/misc/getresgid.c",
702  "src/misc/getresuid.c",
703  "src/misc/getrlimit.c",
704  "src/misc/getrusage.c",
705  "src/misc/getsubopt.c",
706  "src/misc/initgroups.c",
707  "src/misc/ioctl.c",
708  "src/misc/issetugid.c",
709  "src/misc/lockf.c",
710  "src/misc/login_tty.c",
711  "src/misc/mntent.c",
712  "src/misc/nftw.c",
713  "src/misc/openpty.c",
714  "src/misc/ptsname.c",
715  "src/misc/pty.c",
716  "src/misc/realpath.c",
717  "src/misc/setdomainname.c",
718  "src/misc/setpriority.c",
719  "src/misc/setrlimit.c",
720  "src/misc/syscall.c",
721  "src/misc/syslog.c",
722  "src/misc/uname.c",
723  "src/misc/wordexp.c",
724  "src/mman/madvise.c",
725  "src/mman/mincore.c",
726  "src/mman/mlock.c",
727  "src/mman/mlockall.c",
728  "src/mman/mmap.c",
729  "src/mman/mprotect.c",
730  "src/mman/mremap.c",
731  "src/mman/msync.c",
732  "src/mman/munlock.c",
733  "src/mman/munlockall.c",
734  "src/mman/munmap.c",
735  "src/mman/posix_madvise.c",
736  "src/mman/shm_open.c",
737  "src/mq/mq_close.c",
738  "src/mq/mq_getattr.c",
739  "src/mq/mq_notify.c",
740  "src/mq/mq_open.c",
741  "src/mq/mq_receive.c",
742  "src/mq/mq_send.c",
743  "src/mq/mq_setattr.c",
744  "src/mq/mq_timedreceive.c",
745  "src/mq/mq_timedsend.c",
746  "src/mq/mq_unlink.c",
747  "src/multibyte/btowc.c",
748  "src/multibyte/c16rtomb.c",
749  "src/multibyte/c32rtomb.c",
750  "src/multibyte/internal.c",
751  "src/multibyte/mblen.c",
752  "src/multibyte/mbrlen.c",
753  "src/multibyte/mbrtoc16.c",
754  "src/multibyte/mbrtoc32.c",
755  "src/multibyte/mbrtowc.c",
756  "src/multibyte/mbsinit.c",
757  "src/multibyte/mbsnrtowcs.c",
758  "src/multibyte/mbsrtowcs.c",
759  "src/multibyte/mbstowcs.c",
760  "src/multibyte/mbtowc.c",
761  "src/multibyte/wcrtomb.c",
762  "src/multibyte/wcsnrtombs.c",
763  "src/multibyte/wcsrtombs.c",
764  "src/multibyte/wcstombs.c",
765  "src/multibyte/wctob.c",
766  "src/multibyte/wctomb.c",
767  "src/network/accept.c",
768  "src/network/accept4.c",
769  "src/network/bind.c",
770  "src/network/connect.c",
771  "src/network/dn_comp.c",
772  "src/network/dn_expand.c",
773  "src/network/dn_skipname.c",
774  "src/network/dns_parse.c",
775  "src/network/ent.c",
776  "src/network/ether.c",
777  "src/network/freeaddrinfo.c",
778  "src/network/gai_strerror.c",
779  "src/network/getaddrinfo.c",
780  "src/network/gethostbyaddr.c",
781  "src/network/gethostbyaddr_r.c",
782  "src/network/gethostbyname.c",
783  "src/network/gethostbyname2.c",
784  "src/network/gethostbyname2_r.c",
785  "src/network/gethostbyname_r.c",
786  "src/network/getifaddrs.c",
787  "src/network/getnameinfo.c",
788  "src/network/getpeername.c",
789  "src/network/getservbyname.c",
790  "src/network/getservbyname_r.c",
791  "src/network/getservbyport.c",
792  "src/network/getservbyport_r.c",
793  "src/network/getsockname.c",
794  "src/network/getsockopt.c",
795  "src/network/h_errno.c",
796  "src/network/herror.c",
797  "src/network/hstrerror.c",
798  "src/network/htonl.c",
799  "src/network/htons.c",
800  "src/network/if_freenameindex.c",
801  "src/network/if_indextoname.c",
802  "src/network/if_nameindex.c",
803  "src/network/if_nametoindex.c",
804  "src/network/in6addr_any.c",
805  "src/network/in6addr_loopback.c",
806  "src/network/inet_addr.c",
807  "src/network/inet_aton.c",
808  "src/network/inet_legacy.c",
809  "src/network/inet_ntoa.c",
810  "src/network/inet_ntop.c",
811  "src/network/inet_pton.c",
812  "src/network/listen.c",
813  "src/network/lookup_ipliteral.c",
814  "src/network/lookup_name.c",
815  "src/network/lookup_serv.c",
816  "src/network/netlink.c",
817  "src/network/netname.c",
818  "src/network/ns_parse.c",
819  "src/network/ntohl.c",
820  "src/network/ntohs.c",
821  "src/network/proto.c",
822  "src/network/recv.c",
823  "src/network/recvfrom.c",
824  "src/network/recvmmsg.c",
825  "src/network/recvmsg.c",
826  "src/network/res_init.c",
827  "src/network/res_mkquery.c",
828  "src/network/res_msend.c",
829  "src/network/res_query.c",
830  "src/network/res_querydomain.c",
831  "src/network/res_send.c",
832  "src/network/res_state.c",
833  "src/network/resolvconf.c",
834  "src/network/send.c",
835  "src/network/sendmmsg.c",
836  "src/network/sendmsg.c",
837  "src/network/sendto.c",
838  "src/network/serv.c",
839  "src/network/setsockopt.c",
840  "src/network/shutdown.c",
841  "src/network/sockatmark.c",
842  "src/network/socket.c",
843  "src/network/socketpair.c",
844  "src/passwd/fgetgrent.c",
845  "src/passwd/fgetpwent.c",
846  "src/passwd/fgetspent.c",
847  "src/passwd/getgr_a.c",
848  "src/passwd/getgr_r.c",
849  "src/passwd/getgrent.c",
850  "src/passwd/getgrent_a.c",
851  "src/passwd/getgrouplist.c",
852  "src/passwd/getpw_a.c",
853  "src/passwd/getpw_r.c",
854  "src/passwd/getpwent.c",
855  "src/passwd/getpwent_a.c",
856  "src/passwd/getspent.c",
857  "src/passwd/getspnam.c",
858  "src/passwd/getspnam_r.c",
859  "src/passwd/lckpwdf.c",
860  "src/passwd/nscd_query.c",
861  "src/passwd/putgrent.c",
862  "src/passwd/putpwent.c",
863  "src/passwd/putspent.c",
864  "src/prng/__rand48_step.c",
865  "src/prng/__seed48.c",
866  "src/prng/drand48.c",
867  "src/prng/lcong48.c",
868  "src/prng/lrand48.c",
869  "src/prng/mrand48.c",
870  "src/prng/rand.c",
871  "src/prng/rand_r.c",
872  "src/prng/random.c",
873  "src/prng/seed48.c",
874  "src/prng/srand48.c",
875  "src/process/execl.c",
876  "src/process/execle.c",
877  "src/process/execlp.c",
878  "src/process/execv.c",
879  "src/process/execve.c",
880  "src/process/execvp.c",
881  "src/process/fexecve.c",
882  "src/process/fork.c",
883  "src/process/posix_spawn.c",
884  "src/process/posix_spawn_file_actions_addchdir.c",
885  "src/process/posix_spawn_file_actions_addclose.c",
886  "src/process/posix_spawn_file_actions_adddup2.c",
887  "src/process/posix_spawn_file_actions_addfchdir.c",
888  "src/process/posix_spawn_file_actions_addopen.c",
889  "src/process/posix_spawn_file_actions_destroy.c",
890  "src/process/posix_spawn_file_actions_init.c",
891  "src/process/posix_spawnattr_destroy.c",
892  "src/process/posix_spawnattr_getflags.c",
893  "src/process/posix_spawnattr_getpgroup.c",
894  "src/process/posix_spawnattr_getsigdefault.c",
895  "src/process/posix_spawnattr_getsigmask.c",
896  "src/process/posix_spawnattr_init.c",
897  "src/process/posix_spawnattr_sched.c",
898  "src/process/posix_spawnattr_setflags.c",
899  "src/process/posix_spawnattr_setpgroup.c",
900  "src/process/posix_spawnattr_setsigdefault.c",
901  "src/process/posix_spawnattr_setsigmask.c",
902  "src/process/posix_spawnp.c",
903  "src/process/system.c",
904  "src/process/vfork.c",
905  "src/process/wait.c",
906  "src/process/waitid.c",
907  "src/process/waitpid.c",
908  "src/regex/fnmatch.c",
909  "src/regex/glob.c",
910  "src/regex/regcomp.c",
911  "src/regex/regerror.c",
912  "src/regex/regexec.c",
913  "src/regex/tre-mem.c",
914  "src/sched/affinity.c",
915  "src/sched/sched_cpucount.c",
916  "src/sched/sched_get_priority_max.c",
917  "src/sched/sched_getcpu.c",
918  "src/sched/sched_getparam.c",
919  "src/sched/sched_getscheduler.c",
920  "src/sched/sched_rr_get_interval.c",
921  "src/sched/sched_setparam.c",
922  "src/sched/sched_setscheduler.c",
923  "src/sched/sched_yield.c",
924  "src/search/hsearch.c",
925  "src/search/insque.c",
926  "src/search/lsearch.c",
927  "src/search/tdelete.c",
928  "src/search/tdestroy.c",
929  "src/search/tfind.c",
930  "src/search/tsearch.c",
931  "src/search/twalk.c",
932  "src/select/poll.c",
933  "src/select/pselect.c",
934  "src/select/select.c",
935  "src/setjmp/longjmp.c",
936  "src/setjmp/setjmp.c",
937  "src/signal/block.c",
938  "src/signal/getitimer.c",
939  "src/signal/kill.c",
940  "src/signal/killpg.c",
941  "src/signal/psiginfo.c",
942  "src/signal/psignal.c",
943  "src/signal/raise.c",
944  "src/signal/restore.c",
945  "src/signal/setitimer.c",
946  "src/signal/sigaction.c",
947  "src/signal/sigaddset.c",
948  "src/signal/sigaltstack.c",
949  "src/signal/sigandset.c",
950  "src/signal/sigdelset.c",
951  "src/signal/sigemptyset.c",
952  "src/signal/sigfillset.c",
953  "src/signal/sighold.c",
954  "src/signal/sigignore.c",
955  "src/signal/siginterrupt.c",
956  "src/signal/sigisemptyset.c",
957  "src/signal/sigismember.c",
958  "src/signal/siglongjmp.c",
959  "src/signal/signal.c",
960  "src/signal/sigorset.c",
961  "src/signal/sigpause.c",
962  "src/signal/sigpending.c",
963  "src/signal/sigprocmask.c",
964  "src/signal/sigqueue.c",
965  "src/signal/sigrelse.c",
966  "src/signal/sigrtmax.c",
967  "src/signal/sigrtmin.c",
968  "src/signal/sigset.c",
969  "src/signal/sigsetjmp.c",
970  "src/signal/sigsetjmp_tail.c",
971  "src/signal/sigsuspend.c",
972  "src/signal/sigtimedwait.c",
973  "src/signal/sigwait.c",
974  "src/signal/sigwaitinfo.c",
975  "src/stat/__xstat.c",
976  "src/stat/chmod.c",
977  "src/stat/fchmod.c",
978  "src/stat/fchmodat.c",
979  "src/stat/fstat.c",
980  "src/stat/fstatat.c",
981  "src/stat/futimens.c",
982  "src/stat/futimesat.c",
983  "src/stat/lchmod.c",
984  "src/stat/lstat.c",
985  "src/stat/mkdir.c",
986  "src/stat/mkdirat.c",
987  "src/stat/mkfifo.c",
988  "src/stat/mkfifoat.c",
989  "src/stat/mknod.c",
990  "src/stat/mknodat.c",
991  "src/stat/stat.c",
992  "src/stat/statvfs.c",
993  "src/stat/umask.c",
994  "src/stat/utimensat.c",
995  "src/stdio/__fclose_ca.c",
996  "src/stdio/__fdopen.c",
997  "src/stdio/__fmodeflags.c",
998  "src/stdio/__fopen_rb_ca.c",
999  "src/stdio/__lockfile.c",
1000  "src/stdio/__overflow.c",
1001  "src/stdio/__stdio_close.c",
1002  "src/stdio/__stdio_exit.c",
1003  "src/stdio/__stdio_read.c",
1004  "src/stdio/__stdio_seek.c",
1005  "src/stdio/__stdio_write.c",
1006  "src/stdio/__stdout_write.c",
1007  "src/stdio/__string_read.c",
1008  "src/stdio/__toread.c",
1009  "src/stdio/__towrite.c",
1010  "src/stdio/__uflow.c",
1011  "src/stdio/asprintf.c",
1012  "src/stdio/clearerr.c",
1013  "src/stdio/dprintf.c",
1014  "src/stdio/ext.c",
1015  "src/stdio/ext2.c",
1016  "src/stdio/fclose.c",
1017  "src/stdio/feof.c",
1018  "src/stdio/ferror.c",
1019  "src/stdio/fflush.c",
1020  "src/stdio/fgetc.c",
1021  "src/stdio/fgetln.c",
1022  "src/stdio/fgetpos.c",
1023  "src/stdio/fgets.c",
1024  "src/stdio/fgetwc.c",
1025  "src/stdio/fgetws.c",
1026  "src/stdio/fileno.c",
1027  "src/stdio/flockfile.c",
1028  "src/stdio/fmemopen.c",
1029  "src/stdio/fopen.c",
1030  "src/stdio/fopencookie.c",
1031  "src/stdio/fprintf.c",
1032  "src/stdio/fputc.c",
1033  "src/stdio/fputs.c",
1034  "src/stdio/fputwc.c",
1035  "src/stdio/fputws.c",
1036  "src/stdio/fread.c",
1037  "src/stdio/freopen.c",
1038  "src/stdio/fscanf.c",
1039  "src/stdio/fseek.c",
1040  "src/stdio/fsetpos.c",
1041  "src/stdio/ftell.c",
1042  "src/stdio/ftrylockfile.c",
1043  "src/stdio/funlockfile.c",
1044  "src/stdio/fwide.c",
1045  "src/stdio/fwprintf.c",
1046  "src/stdio/fwrite.c",
1047  "src/stdio/fwscanf.c",
1048  "src/stdio/getc.c",
1049  "src/stdio/getc_unlocked.c",
1050  "src/stdio/getchar.c",
1051  "src/stdio/getchar_unlocked.c",
1052  "src/stdio/getdelim.c",
1053  "src/stdio/getline.c",
1054  "src/stdio/gets.c",
1055  "src/stdio/getw.c",
1056  "src/stdio/getwc.c",
1057  "src/stdio/getwchar.c",
1058  "src/stdio/ofl.c",
1059  "src/stdio/ofl_add.c",
1060  "src/stdio/open_memstream.c",
1061  "src/stdio/open_wmemstream.c",
1062  "src/stdio/pclose.c",
1063  "src/stdio/perror.c",
1064  "src/stdio/popen.c",
1065  "src/stdio/printf.c",
1066  "src/stdio/putc.c",
1067  "src/stdio/putc_unlocked.c",
1068  "src/stdio/putchar.c",
1069  "src/stdio/putchar_unlocked.c",
1070  "src/stdio/puts.c",
1071  "src/stdio/putw.c",
1072  "src/stdio/putwc.c",
1073  "src/stdio/putwchar.c",
1074  "src/stdio/remove.c",
1075  "src/stdio/rename.c",
1076  "src/stdio/rewind.c",
1077  "src/stdio/scanf.c",
1078  "src/stdio/setbuf.c",
1079  "src/stdio/setbuffer.c",
1080  "src/stdio/setlinebuf.c",
1081  "src/stdio/setvbuf.c",
1082  "src/stdio/snprintf.c",
1083  "src/stdio/sprintf.c",
1084  "src/stdio/sscanf.c",
1085  "src/stdio/stderr.c",
1086  "src/stdio/stdin.c",
1087  "src/stdio/stdout.c",
1088  "src/stdio/swprintf.c",
1089  "src/stdio/swscanf.c",
1090  "src/stdio/tempnam.c",
1091  "src/stdio/tmpfile.c",
1092  "src/stdio/tmpnam.c",
1093  "src/stdio/ungetc.c",
1094  "src/stdio/ungetwc.c",
1095  "src/stdio/vasprintf.c",
1096  "src/stdio/vdprintf.c",
1097  "src/stdio/vfprintf.c",
1098  "src/stdio/vfscanf.c",
1099  "src/stdio/vfwprintf.c",
1100  "src/stdio/vfwscanf.c",
1101  "src/stdio/vprintf.c",
1102  "src/stdio/vscanf.c",
1103  "src/stdio/vsnprintf.c",
1104  "src/stdio/vsprintf.c",
1105  "src/stdio/vsscanf.c",
1106  "src/stdio/vswprintf.c",
1107  "src/stdio/vswscanf.c",
1108  "src/stdio/vwprintf.c",
1109  "src/stdio/vwscanf.c",
1110  "src/stdio/wprintf.c",
1111  "src/stdio/wscanf.c",
1112  "src/stdlib/abs.c",
1113  "src/stdlib/atof.c",
1114  "src/stdlib/atoi.c",
1115  "src/stdlib/atol.c",
1116  "src/stdlib/atoll.c",
1117  "src/stdlib/bsearch.c",
1118  "src/stdlib/div.c",
1119  "src/stdlib/ecvt.c",
1120  "src/stdlib/fcvt.c",
1121  "src/stdlib/gcvt.c",
1122  "src/stdlib/imaxabs.c",
1123  "src/stdlib/imaxdiv.c",
1124  "src/stdlib/labs.c",
1125  "src/stdlib/ldiv.c",
1126  "src/stdlib/llabs.c",
1127  "src/stdlib/lldiv.c",
1128  "src/stdlib/qsort.c",
1129  "src/stdlib/strtod.c",
1130  "src/stdlib/strtol.c",
1131  "src/stdlib/wcstod.c",
1132  "src/stdlib/wcstol.c",
1133  "src/string/bcmp.c",
1134  "src/string/bcopy.c",
1135  "src/string/bzero.c",
1136  "src/string/explicit_bzero.c",
1137  "src/string/index.c",
1138  "src/string/memccpy.c",
1139  "src/string/memchr.c",
1140  "src/string/memcmp.c",
1141  "src/string/memcpy.c",
1142  "src/string/memmem.c",
1143  "src/string/memmove.c",
1144  "src/string/mempcpy.c",
1145  "src/string/memrchr.c",
1146  "src/string/memset.c",
1147  "src/string/rindex.c",
1148  "src/string/stpcpy.c",
1149  "src/string/stpncpy.c",
1150  "src/string/strcasecmp.c",
1151  "src/string/strcasestr.c",
1152  "src/string/strcat.c",
1153  "src/string/strchr.c",
1154  "src/string/strchrnul.c",
1155  "src/string/strcmp.c",
1156  "src/string/strcpy.c",
1157  "src/string/strcspn.c",
1158  "src/string/strdup.c",
1159  "src/string/strerror_r.c",
1160  "src/string/strlcat.c",
1161  "src/string/strlcpy.c",
1162  "src/string/strlen.c",
1163  "src/string/strncasecmp.c",
1164  "src/string/strncat.c",
1165  "src/string/strncmp.c",
1166  "src/string/strncpy.c",
1167  "src/string/strndup.c",
1168  "src/string/strnlen.c",
1169  "src/string/strpbrk.c",
1170  "src/string/strrchr.c",
1171  "src/string/strsep.c",
1172  "src/string/strsignal.c",
1173  "src/string/strspn.c",
1174  "src/string/strstr.c",
1175  "src/string/strtok.c",
1176  "src/string/strtok_r.c",
1177  "src/string/strverscmp.c",
1178  "src/string/swab.c",
1179  "src/string/wcpcpy.c",
1180  "src/string/wcpncpy.c",
1181  "src/string/wcscasecmp.c",
1182  "src/string/wcscasecmp_l.c",
1183  "src/string/wcscat.c",
1184  "src/string/wcschr.c",
1185  "src/string/wcscmp.c",
1186  "src/string/wcscpy.c",
1187  "src/string/wcscspn.c",
1188  "src/string/wcsdup.c",
1189  "src/string/wcslen.c",
1190  "src/string/wcsncasecmp.c",
1191  "src/string/wcsncasecmp_l.c",
1192  "src/string/wcsncat.c",
1193  "src/string/wcsncmp.c",
1194  "src/string/wcsncpy.c",
1195  "src/string/wcsnlen.c",
1196  "src/string/wcspbrk.c",
1197  "src/string/wcsrchr.c",
1198  "src/string/wcsspn.c",
1199  "src/string/wcsstr.c",
1200  "src/string/wcstok.c",
1201  "src/string/wcswcs.c",
1202  "src/string/wmemchr.c",
1203  "src/string/wmemcmp.c",
1204  "src/string/wmemcpy.c",
1205  "src/string/wmemmove.c",
1206  "src/string/wmemset.c",
1207  "src/temp/__randname.c",
1208  "src/temp/mkdtemp.c",
1209  "src/temp/mkostemp.c",
1210  "src/temp/mkostemps.c",
1211  "src/temp/mkstemp.c",
1212  "src/temp/mkstemps.c",
1213  "src/temp/mktemp.c",
1214  "src/termios/cfgetospeed.c",
1215  "src/termios/cfmakeraw.c",
1216  "src/termios/cfsetospeed.c",
1217  "src/termios/tcdrain.c",
1218  "src/termios/tcflow.c",
1219  "src/termios/tcflush.c",
1220  "src/termios/tcgetattr.c",
1221  "src/termios/tcgetsid.c",
1222  "src/termios/tcsendbreak.c",
1223  "src/termios/tcsetattr.c",
1224  "src/thread/__lock.c",
1225  "src/thread/__set_thread_area.c",
1226  "src/thread/__syscall_cp.c",
1227  "src/thread/__timedwait.c",
1228  "src/thread/__tls_get_addr.c",
1229  "src/thread/__unmapself.c",
1230  "src/thread/__wait.c",
1231  "src/thread/call_once.c",
1232  "src/thread/clone.c",
1233  "src/thread/cnd_broadcast.c",
1234  "src/thread/cnd_destroy.c",
1235  "src/thread/cnd_init.c",
1236  "src/thread/cnd_signal.c",
1237  "src/thread/cnd_timedwait.c",
1238  "src/thread/cnd_wait.c",
1239  "src/thread/default_attr.c",
1240  "src/thread/lock_ptc.c",
1241  "src/thread/mtx_destroy.c",
1242  "src/thread/mtx_init.c",
1243  "src/thread/mtx_lock.c",
1244  "src/thread/mtx_timedlock.c",
1245  "src/thread/mtx_trylock.c",
1246  "src/thread/mtx_unlock.c",
1247  "src/thread/pthread_atfork.c",
1248  "src/thread/pthread_attr_destroy.c",
1249  "src/thread/pthread_attr_get.c",
1250  "src/thread/pthread_attr_init.c",
1251  "src/thread/pthread_attr_setdetachstate.c",
1252  "src/thread/pthread_attr_setguardsize.c",
1253  "src/thread/pthread_attr_setinheritsched.c",
1254  "src/thread/pthread_attr_setschedparam.c",
1255  "src/thread/pthread_attr_setschedpolicy.c",
1256  "src/thread/pthread_attr_setscope.c",
1257  "src/thread/pthread_attr_setstack.c",
1258  "src/thread/pthread_attr_setstacksize.c",
1259  "src/thread/pthread_barrier_destroy.c",
1260  "src/thread/pthread_barrier_init.c",
1261  "src/thread/pthread_barrier_wait.c",
1262  "src/thread/pthread_barrierattr_destroy.c",
1263  "src/thread/pthread_barrierattr_init.c",
1264  "src/thread/pthread_barrierattr_setpshared.c",
1265  "src/thread/pthread_cancel.c",
1266  "src/thread/pthread_cleanup_push.c",
1267  "src/thread/pthread_cond_broadcast.c",
1268  "src/thread/pthread_cond_destroy.c",
1269  "src/thread/pthread_cond_init.c",
1270  "src/thread/pthread_cond_signal.c",
1271  "src/thread/pthread_cond_timedwait.c",
1272  "src/thread/pthread_cond_wait.c",
1273  "src/thread/pthread_condattr_destroy.c",
1274  "src/thread/pthread_condattr_init.c",
1275  "src/thread/pthread_condattr_setclock.c",
1276  "src/thread/pthread_condattr_setpshared.c",
1277  "src/thread/pthread_create.c",
1278  "src/thread/pthread_detach.c",
1279  "src/thread/pthread_equal.c",
1280  "src/thread/pthread_getattr_np.c",
1281  "src/thread/pthread_getconcurrency.c",
1282  "src/thread/pthread_getcpuclockid.c",
1283  "src/thread/pthread_getschedparam.c",
1284  "src/thread/pthread_getspecific.c",
1285  "src/thread/pthread_join.c",
1286  "src/thread/pthread_key_create.c",
1287  "src/thread/pthread_kill.c",
1288  "src/thread/pthread_mutex_consistent.c",
1289  "src/thread/pthread_mutex_destroy.c",
1290  "src/thread/pthread_mutex_getprioceiling.c",
1291  "src/thread/pthread_mutex_init.c",
1292  "src/thread/pthread_mutex_lock.c",
1293  "src/thread/pthread_mutex_setprioceiling.c",
1294  "src/thread/pthread_mutex_timedlock.c",
1295  "src/thread/pthread_mutex_trylock.c",
1296  "src/thread/pthread_mutex_unlock.c",
1297  "src/thread/pthread_mutexattr_destroy.c",
1298  "src/thread/pthread_mutexattr_init.c",
1299  "src/thread/pthread_mutexattr_setprotocol.c",
1300  "src/thread/pthread_mutexattr_setpshared.c",
1301  "src/thread/pthread_mutexattr_setrobust.c",
1302  "src/thread/pthread_mutexattr_settype.c",
1303  "src/thread/pthread_once.c",
1304  "src/thread/pthread_rwlock_destroy.c",
1305  "src/thread/pthread_rwlock_init.c",
1306  "src/thread/pthread_rwlock_rdlock.c",
1307  "src/thread/pthread_rwlock_timedrdlock.c",
1308  "src/thread/pthread_rwlock_timedwrlock.c",
1309  "src/thread/pthread_rwlock_tryrdlock.c",
1310  "src/thread/pthread_rwlock_trywrlock.c",
1311  "src/thread/pthread_rwlock_unlock.c",
1312  "src/thread/pthread_rwlock_wrlock.c",
1313  "src/thread/pthread_rwlockattr_destroy.c",
1314  "src/thread/pthread_rwlockattr_init.c",
1315  "src/thread/pthread_rwlockattr_setpshared.c",
1316  "src/thread/pthread_self.c",
1317  "src/thread/pthread_setattr_default_np.c",
1318  "src/thread/pthread_setcancelstate.c",
1319  "src/thread/pthread_setcanceltype.c",
1320  "src/thread/pthread_setconcurrency.c",
1321  "src/thread/pthread_setname_np.c",
1322  "src/thread/pthread_setschedparam.c",
1323  "src/thread/pthread_setschedprio.c",
1324  "src/thread/pthread_setspecific.c",
1325  "src/thread/pthread_sigmask.c",
1326  "src/thread/pthread_spin_destroy.c",
1327  "src/thread/pthread_spin_init.c",
1328  "src/thread/pthread_spin_lock.c",
1329  "src/thread/pthread_spin_trylock.c",
1330  "src/thread/pthread_spin_unlock.c",
1331  "src/thread/pthread_testcancel.c",
1332  "src/thread/sem_destroy.c",
1333  "src/thread/sem_getvalue.c",
1334  "src/thread/sem_init.c",
1335  "src/thread/sem_open.c",
1336  "src/thread/sem_post.c",
1337  "src/thread/sem_timedwait.c",
1338  "src/thread/sem_trywait.c",
1339  "src/thread/sem_unlink.c",
1340  "src/thread/sem_wait.c",
1341  "src/thread/synccall.c",
1342  "src/thread/syscall_cp.c",
1343  "src/thread/thrd_create.c",
1344  "src/thread/thrd_exit.c",
1345  "src/thread/thrd_join.c",
1346  "src/thread/thrd_sleep.c",
1347  "src/thread/thrd_yield.c",
1348  "src/thread/tls.c",
1349  "src/thread/tss_create.c",
1350  "src/thread/tss_delete.c",
1351  "src/thread/tss_set.c",
1352  "src/thread/vmlock.c",
1353  "src/time/__map_file.c",
1354  "src/time/__month_to_secs.c",
1355  "src/time/__secs_to_tm.c",
1356  "src/time/__tm_to_secs.c",
1357  "src/time/__tz.c",
1358  "src/time/__year_to_secs.c",
1359  "src/time/asctime.c",
1360  "src/time/asctime_r.c",
1361  "src/time/clock.c",
1362  "src/time/clock_getcpuclockid.c",
1363  "src/time/clock_getres.c",
1364  "src/time/clock_gettime.c",
1365  "src/time/clock_nanosleep.c",
1366  "src/time/clock_settime.c",
1367  "src/time/ctime.c",
1368  "src/time/ctime_r.c",
1369  "src/time/difftime.c",
1370  "src/time/ftime.c",
1371  "src/time/getdate.c",
1372  "src/time/gettimeofday.c",
1373  "src/time/gmtime.c",
1374  "src/time/gmtime_r.c",
1375  "src/time/localtime.c",
1376  "src/time/localtime_r.c",
1377  "src/time/mktime.c",
1378  "src/time/nanosleep.c",
1379  "src/time/strftime.c",
1380  "src/time/strptime.c",
1381  "src/time/time.c",
1382  "src/time/timegm.c",
1383  "src/time/timer_create.c",
1384  "src/time/timer_delete.c",
1385  "src/time/timer_getoverrun.c",
1386  "src/time/timer_gettime.c",
1387  "src/time/timer_settime.c",
1388  "src/time/times.c",
1389  "src/time/timespec_get.c",
1390  "src/time/utime.c",
1391  "src/time/wcsftime.c",
1392  "src/unistd/_exit.c",
1393  "src/unistd/access.c",
1394  "src/unistd/acct.c",
1395  "src/unistd/alarm.c",
1396  "src/unistd/chdir.c",
1397  "src/unistd/chown.c",
1398  "src/unistd/close.c",
1399  "src/unistd/ctermid.c",
1400  "src/unistd/dup.c",
1401  "src/unistd/dup2.c",
1402  "src/unistd/dup3.c",
1403  "src/unistd/faccessat.c",
1404  "src/unistd/fchdir.c",
1405  "src/unistd/fchown.c",
1406  "src/unistd/fchownat.c",
1407  "src/unistd/fdatasync.c",
1408  "src/unistd/fsync.c",
1409  "src/unistd/ftruncate.c",
1410  "src/unistd/getcwd.c",
1411  "src/unistd/getegid.c",
1412  "src/unistd/geteuid.c",
1413  "src/unistd/getgid.c",
1414  "src/unistd/getgroups.c",
1415  "src/unistd/gethostname.c",
1416  "src/unistd/getlogin.c",
1417  "src/unistd/getlogin_r.c",
1418  "src/unistd/getpgid.c",
1419  "src/unistd/getpgrp.c",
1420  "src/unistd/getpid.c",
1421  "src/unistd/getppid.c",
1422  "src/unistd/getsid.c",
1423  "src/unistd/getuid.c",
1424  "src/unistd/isatty.c",
1425  "src/unistd/lchown.c",
1426  "src/unistd/link.c",
1427  "src/unistd/linkat.c",
1428  "src/unistd/lseek.c",
1429  "src/unistd/nice.c",
1430  "src/unistd/pause.c",
1431  "src/unistd/pipe.c",
1432  "src/unistd/pipe2.c",
1433  "src/unistd/posix_close.c",
1434  "src/unistd/pread.c",
1435  "src/unistd/preadv.c",
1436  "src/unistd/pwrite.c",
1437  "src/unistd/pwritev.c",
1438  "src/unistd/read.c",
1439  "src/unistd/readlink.c",
1440  "src/unistd/readlinkat.c",
1441  "src/unistd/readv.c",
1442  "src/unistd/renameat.c",
1443  "src/unistd/rmdir.c",
1444  "src/unistd/setegid.c",
1445  "src/unistd/seteuid.c",
1446  "src/unistd/setgid.c",
1447  "src/unistd/setpgid.c",
1448  "src/unistd/setpgrp.c",
1449  "src/unistd/setregid.c",
1450  "src/unistd/setresgid.c",
1451  "src/unistd/setresuid.c",
1452  "src/unistd/setreuid.c",
1453  "src/unistd/setsid.c",
1454  "src/unistd/setuid.c",
1455  "src/unistd/setxid.c",
1456  "src/unistd/sleep.c",
1457  "src/unistd/symlink.c",
1458  "src/unistd/symlinkat.c",
1459  "src/unistd/sync.c",
1460  "src/unistd/tcgetpgrp.c",
1461  "src/unistd/tcsetpgrp.c",
1462  "src/unistd/truncate.c",
1463  "src/unistd/ttyname.c",
1464  "src/unistd/ttyname_r.c",
1465  "src/unistd/ualarm.c",
1466  "src/unistd/unlink.c",
1467  "src/unistd/unlinkat.c",
1468  "src/unistd/usleep.c",
1469  "src/unistd/write.c",
1470  "src/unistd/writev.c",
1471]
1472
1473if (musl_arch == "arm") {
1474  musl_src_filterout = [
1475    "src/fenv/fenv.c",
1476    "src/ldso/dlsym.c",
1477    "src/ldso/tlsdesc.c",
1478    "src/math/fabs.c",
1479    "src/math/fabsf.c",
1480    "src/math/fma.c",
1481    "src/math/fmaf.c",
1482    "src/math/sqrt.c",
1483    "src/math/sqrtf.c",
1484    "src/process/vfork.c",
1485    "src/setjmp/longjmp.c",
1486    "src/setjmp/setjmp.c",
1487    "src/signal/restore.c",
1488    "src/signal/sigsetjmp.c",
1489    "src/string/memcpy.c",
1490    "src/thread/__set_thread_area.c",
1491    "src/thread/__unmapself.c",
1492    "src/thread/clone.c",
1493    "src/thread/syscall_cp.c",
1494  ]
1495} else if (musl_arch == "aarch64") {
1496  musl_src_filterout = [
1497    "src/fenv/fenv.c",
1498    "src/ldso/dlsym.c",
1499    "src/ldso/tlsdesc.c",
1500    "src/math/ceil.c",
1501    "src/math/ceilf.c",
1502    "src/math/fabs.c",
1503    "src/math/fabsf.c",
1504    "src/math/floor.c",
1505    "src/math/floorf.c",
1506    "src/math/fma.c",
1507    "src/math/fmaf.c",
1508    "src/math/fmax.c",
1509    "src/math/fmaxf.c",
1510    "src/math/fmin.c",
1511    "src/math/fminf.c",
1512    "src/math/llrint.c",
1513    "src/math/llrintf.c",
1514    "src/math/llround.c",
1515    "src/math/llroundf.c",
1516    "src/math/lrint.c",
1517    "src/math/lrintf.c",
1518    "src/math/lround.c",
1519    "src/math/lroundf.c",
1520    "src/math/nearbyint.c",
1521    "src/math/nearbyintf.c",
1522    "src/math/rint.c",
1523    "src/math/rintf.c",
1524    "src/math/round.c",
1525    "src/math/roundf.c",
1526    "src/math/sqrt.c",
1527    "src/math/sqrtf.c",
1528    "src/math/trunc.c",
1529    "src/math/truncf.c",
1530    "src/setjmp/longjmp.c",
1531    "src/setjmp/setjmp.c",
1532    "src/signal/restore.c",
1533    "src/signal/sigsetjmp.c",
1534    "src/thread/__set_thread_area.c",
1535    "src/thread/__unmapself.c",
1536    "src/thread/clone.c",
1537    "src/thread/syscall_cp.c",
1538  ]
1539}
1540
1541musl_src_ldso = [
1542  "ldso/dlstart.c",
1543  "ldso/dynlink.c",
1544]
1545
1546if (musl_arch == "arm") {
1547  musl_inc_bits_files = [
1548    "arch/arm/bits/fcntl.h",
1549    "arch/arm/bits/fenv.h",
1550    "arch/arm/bits/float.h",
1551    "arch/arm/bits/hwcap.h",
1552    "arch/arm/bits/ioctl_fix.h",
1553    "arch/arm/bits/ipcstat.h",
1554    "arch/arm/bits/msg.h",
1555    "arch/arm/bits/posix.h",
1556    "arch/arm/bits/ptrace.h",
1557    "arch/arm/bits/reg.h",
1558    "arch/arm/bits/sem.h",
1559    "arch/arm/bits/setjmp.h",
1560    "arch/arm/bits/shm.h",
1561    "arch/arm/bits/signal.h",
1562    "arch/arm/bits/stat.h",
1563    "arch/arm/bits/stdint.h",
1564    "arch/arm/bits/user.h",
1565
1566    "arch/generic/bits/dirent.h",
1567    "arch/generic/bits/errno.h",
1568    "arch/generic/bits/ioctl.h",
1569    "arch/generic/bits/io.h",
1570    "arch/generic/bits/ipc.h",
1571    "arch/generic/bits/kd.h",
1572    "arch/generic/bits/limits.h",
1573    "arch/generic/bits/link.h",
1574    "arch/generic/bits/mman.h",
1575    "arch/generic/bits/poll.h",
1576    "arch/generic/bits/resource.h",
1577    "arch/generic/bits/socket.h",
1578    "arch/generic/bits/soundcard.h",
1579    "arch/generic/bits/statfs.h",
1580    "arch/generic/bits/termios.h",
1581    "arch/generic/bits/vt.h",
1582  ]
1583} else if (musl_arch == "aarch64") {
1584  musl_inc_bits_files = [
1585    "arch/aarch64/bits/fcntl.h",
1586    "arch/aarch64/bits/fenv.h",
1587    "arch/aarch64/bits/float.h",
1588    "arch/aarch64/bits/hwcap.h",
1589    "arch/aarch64/bits/posix.h",
1590    "arch/aarch64/bits/reg.h",
1591    "arch/aarch64/bits/setjmp.h",
1592    "arch/aarch64/bits/signal.h",
1593    "arch/aarch64/bits/stat.h",
1594    "arch/aarch64/bits/stdint.h",
1595    "arch/aarch64/bits/user.h",
1596
1597    "arch/generic/bits/dirent.h",
1598    "arch/generic/bits/errno.h",
1599    "arch/generic/bits/ioctl_fix.h",
1600    "arch/generic/bits/ioctl.h",
1601    "arch/generic/bits/io.h",
1602    "arch/generic/bits/ipc.h",
1603    "arch/generic/bits/ipcstat.h",
1604    "arch/generic/bits/kd.h",
1605    "arch/generic/bits/limits.h",
1606    "arch/generic/bits/link.h",
1607    "arch/generic/bits/mman.h",
1608    "arch/generic/bits/msg.h",
1609    "arch/generic/bits/poll.h",
1610    "arch/generic/bits/ptrace.h",
1611    "arch/generic/bits/resource.h",
1612    "arch/generic/bits/sem.h",
1613    "arch/generic/bits/shm.h",
1614    "arch/generic/bits/socket.h",
1615    "arch/generic/bits/soundcard.h",
1616    "arch/generic/bits/statfs.h",
1617    "arch/generic/bits/termios.h",
1618    "arch/generic/bits/vt.h",
1619  ]
1620}
1621
1622musl_inc_arpa_files = [
1623  "include/arpa/ftp.h",
1624  "include/arpa/inet.h",
1625  "include/arpa/nameser_compat.h",
1626  "include/arpa/nameser.h",
1627  "include/arpa/telnet.h",
1628  "include/arpa/tftp.h",
1629]
1630
1631musl_inc_net_files = [
1632  "include/net/ethernet.h",
1633  "include/net/if_arp.h",
1634  "include/net/if.h",
1635  "include/net/route.h",
1636]
1637
1638musl_inc_netinet_files = [
1639  "include/netinet/ether.h",
1640  "include/netinet/icmp6.h",
1641  "include/netinet/if_ether.h",
1642  "include/netinet/igmp.h",
1643  "include/netinet/in.h",
1644  "include/netinet/in_systm.h",
1645  "include/netinet/ip6.h",
1646  "include/netinet/ip.h",
1647  "include/netinet/ip_icmp.h",
1648  "include/netinet/tcp.h",
1649  "include/netinet/udp.h",
1650]
1651
1652musl_inc_netpacket_files = [ "include/netpacket/packet.h" ]
1653
1654musl_inc_scsi_files = [
1655  "include/scsi/scsi.h",
1656  "include/scsi/scsi_ioctl.h",
1657  "include/scsi/sg.h",
1658]
1659
1660musl_inc_sys_files = [
1661  "include/sys/acct.h",
1662  "include/sys/auxv.h",
1663  "include/sys/cachectl.h",
1664  "include/sys/capability.h",
1665  "include/sys/dir.h",
1666  "include/sys/epoll.h",
1667  "include/sys/errno.h",
1668  "include/sys/eventfd.h",
1669  "include/sys/fanotify.h",
1670  "include/sys/fcntl.h",
1671  "include/sys/file.h",
1672  "include/sys/fsuid.h",
1673  "include/sys/inotify.h",
1674  "include/sys/ioctl.h",
1675  "include/sys/io.h",
1676  "include/sys/ipc.h",
1677  "include/sys/kd.h",
1678  "include/sys/klog.h",
1679  "include/sys/membarrier.h",
1680  "include/sys/mman.h",
1681  "include/sys/mount.h",
1682  "include/sys/msg.h",
1683  "include/sys/mtio.h",
1684  "include/sys/param.h",
1685  "include/sys/personality.h",
1686  "include/sys/poll.h",
1687  "include/sys/prctl.h",
1688  "include/sys/procfs.h",
1689  "include/sys/ptrace.h",
1690  "include/sys/quota.h",
1691  "include/sys/random.h",
1692  "include/sys/reboot.h",
1693  "include/sys/reg.h",
1694  "include/sys/resource.h",
1695  "include/sys/select.h",
1696  "include/sys/sem.h",
1697  "include/sys/sendfile.h",
1698  "include/sys/shm.h",
1699  "include/sys/signalfd.h",
1700  "include/sys/signal.h",
1701  "include/sys/socket.h",
1702  "include/sys/soundcard.h",
1703  "include/sys/statfs.h",
1704  "include/sys/stat.h",
1705  "include/sys/statvfs.h",
1706  "include/sys/stropts.h",
1707  "include/sys/swap.h",
1708  "include/sys/syscall.h",
1709  "include/sys/sysinfo.h",
1710  "include/sys/syslog.h",
1711  "include/sys/sysmacros.h",
1712  "include/sys/termios.h",
1713  "include/sys/timeb.h",
1714  "include/sys/time.h",
1715  "include/sys/timerfd.h",
1716  "include/sys/times.h",
1717  "include/sys/timex.h",
1718  "include/sys/ttydefaults.h",
1719  "include/sys/types.h",
1720  "include/sys/ucontext.h",
1721  "include/sys/uio.h",
1722  "include/sys/un.h",
1723  "include/sys/user.h",
1724  "include/sys/utsname.h",
1725  "include/sys/vfs.h",
1726  "include/sys/vt.h",
1727  "include/sys/wait.h",
1728  "include/sys/xattr.h",
1729]
1730
1731musl_inc_root_files = [
1732  "include/aio.h",
1733  "include/alloca.h",
1734  "include/ar.h",
1735  "include/assert.h",
1736  "include/byteswap.h",
1737  "include/complex.h",
1738  "include/cpio.h",
1739  "include/crypt.h",
1740  "include/ctype.h",
1741  "include/dirent.h",
1742  "include/dlfcn.h",
1743  "include/elf.h",
1744  "include/endian.h",
1745  "include/err.h",
1746  "include/errno.h",
1747  "include/fcntl.h",
1748  "include/features.h",
1749  "include/fenv.h",
1750  "include/float.h",
1751  "include/fmtmsg.h",
1752  "include/fnmatch.h",
1753  "include/ftw.h",
1754  "include/getopt.h",
1755  "include/glob.h",
1756  "include/grp.h",
1757  "include/iconv.h",
1758  "include/ifaddrs.h",
1759  "include/inttypes.h",
1760  "include/iso646.h",
1761  "include/langinfo.h",
1762  "include/lastlog.h",
1763  "include/libgen.h",
1764  "include/libintl.h",
1765  "include/limits.h",
1766  "include/link.h",
1767  "include/locale.h",
1768  "include/malloc.h",
1769  "include/math.h",
1770  "include/memory.h",
1771  "include/mntent.h",
1772  "include/monetary.h",
1773  "include/mqueue.h",
1774  "include/netdb.h",
1775  "include/nl_types.h",
1776  "include/paths.h",
1777  "include/poll.h",
1778  "include/pthread.h",
1779  "include/pty.h",
1780  "include/pwd.h",
1781  "include/regex.h",
1782  "include/resolv.h",
1783  "include/sched.h",
1784  "include/search.h",
1785  "include/semaphore.h",
1786  "include/setjmp.h",
1787  "include/shadow.h",
1788  "include/signal.h",
1789  "include/spawn.h",
1790  "include/stdalign.h",
1791  "include/stdarg.h",
1792  "include/stdbool.h",
1793  "include/stdc-predef.h",
1794  "include/stddef.h",
1795  "include/stdint.h",
1796  "include/stdio_ext.h",
1797  "include/stdio.h",
1798  "include/stdlib.h",
1799  "include/stdnoreturn.h",
1800  "include/string.h",
1801  "include/strings.h",
1802  "include/stropts.h",
1803  "include/syscall.h",
1804  "include/sysexits.h",
1805  "include/syslog.h",
1806  "include/tar.h",
1807  "include/termios.h",
1808  "include/tgmath.h",
1809  "include/threads.h",
1810  "include/time.h",
1811  "include/uchar.h",
1812  "include/ucontext.h",
1813  "include/ulimit.h",
1814  "include/unistd.h",
1815  "include/utime.h",
1816  "include/utmp.h",
1817  "include/utmpx.h",
1818  "include/values.h",
1819  "include/wait.h",
1820  "include/wchar.h",
1821  "include/wctype.h",
1822  "include/wordexp.h",
1823]
1824
1825musl_src_porting_file = [
1826  "arch/arm/bits/fenv.h",
1827  "arch/generic/bits/shm.h",
1828  "arch/generic/crtbrand.s",
1829  "include/ctype.h",
1830  "include/pthread.h",
1831  "include/sys/capability.h",
1832  "include/sys/socket.h",
1833  "include/sys/sysinfo.h",
1834  "src/internal/dynlink.h",
1835  "include/unistd.h",
1836  "include/dlfcn.h",
1837  "src/env/__init_tls.c",
1838  "src/internal/pthread_impl.h",
1839  "src/internal/syscall.h",
1840  "src/legacy/ulimit.c",
1841  "src/linux/gettid.c",
1842  "src/malloc/malloc.c",
1843  "src/multibyte/wcsnrtombs.c",
1844  "src/network/inet_legacy.c",
1845  "src/passwd/getspnam_r.c",
1846  "src/sched/sched_setparam.c",
1847  "src/sched/sched_getparam.c",
1848  "src/sched/sched_setscheduler.c",
1849  "src/sched/sched_getscheduler.c",
1850  "src/thread/arm/clone.s",
1851  "src/thread/arm/syscall_cp.s",
1852  "src/ldso/dlclose.c",
1853  "ldso/dynlink.c",
1854  "crt/arm/crti.s",
1855  "crt/aarch64/crti.s",
1856]
1857
1858musl_inc_hook_files = [
1859  "porting/linux/user/src/hook/musl_malloc_dispatch_table.h",
1860  "porting/linux/user/src/hook/musl_malloc_dispatch.h",
1861  "porting/linux/user/src/hook/musl_preinit_common.h",
1862]
1863