From 6096dc5f94bf69cb73b0fc89d36bf125f7ff6467 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sun, 14 Jul 2019 03:06:20 -0400 Subject: [PATCH 01/13] move some of the installation from cmake to zig build This moves the installation of shipped source files from large CMakeLists.txt lists to zig build recursive directory installation. On my computer a cmake `make install` takes 2.4 seconds even when it has to do nothing, and prints a lot of unnecessary lines to stdout that say "up-to-date: [some file it is installing]". After this commit, the default output of `make` is down to 1 second, and it does not print any junk to stdout. Further, a `make install` is no longer required and `make` is sufficient. This closes #2874. It also closes #2585. `make` now always invokes `zig build` for installing files and libuserland.a, and zig's own caching system makes that go fast. --- CMakeLists.txt | 6505 +---------------------------------- build.zig | 66 +- src/config.h.in | 2 - src/main.cpp | 4 +- std/build.zig | 115 +- std/c.zig | 3 + std/fs.zig | 151 +- std/fs/file.zig | 64 +- std/os.zig | 39 + std/os/linux.zig | 9 + std/os/windows.zig | 20 + std/os/windows/bits.zig | 13 + std/os/windows/kernel32.zig | 5 + 13 files changed, 414 insertions(+), 6582 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 96a6fca5cd..e0b9f921d5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -458,417 +458,6 @@ set(ZIG_CPP_SOURCES "${CMAKE_SOURCE_DIR}/src/windows_sdk.cpp" ) -set(ZIG_STD_FILES - "array_list.zig" - "ascii.zig" - "atomic.zig" - "atomic/int.zig" - "atomic/queue.zig" - "atomic/stack.zig" - "base64.zig" - "buf_map.zig" - "buf_set.zig" - "buffer.zig" - "build.zig" - "build/fmt.zig" - "c.zig" - "c/darwin.zig" - "c/freebsd.zig" - "c/linux.zig" - "c/netbsd.zig" - "c/windows.zig" - "child_process.zig" - "coff.zig" - "crypto.zig" - "crypto/blake2.zig" - "crypto/chacha20.zig" - "crypto/gimli.zig" - "crypto/hmac.zig" - "crypto/md5.zig" - "crypto/poly1305.zig" - "crypto/sha1.zig" - "crypto/sha2.zig" - "crypto/sha3.zig" - "crypto/x25519.zig" - "cstr.zig" - "debug.zig" - "debug/failing_allocator.zig" - "debug/leb128.zig" - "dwarf.zig" - "dynamic_library.zig" - "elf.zig" - "event.zig" - "event/channel.zig" - "event/fs.zig" - "event/future.zig" - "event/group.zig" - "event/io.zig" - "event/lock.zig" - "event/locked.zig" - "event/loop.zig" - "event/net.zig" - "event/rwlock.zig" - "event/rwlocked.zig" - "fmt.zig" - "fmt/errol.zig" - "fmt/errol/enum3.zig" - "fmt/errol/lookup.zig" - "fmt/parse_float.zig" - "fs.zig" - "fs/file.zig" - "fs/get_app_data_dir.zig" - "fs/path.zig" - "hash.zig" - "hash/adler.zig" - "hash/crc.zig" - "hash/fnv.zig" - "hash/siphash.zig" - "hash/murmur.zig" - "hash/cityhash.zig" - "hash_map.zig" - "heap.zig" - "heap/logging_allocator.zig" - "http.zig" - "http/headers.zig" - "io.zig" - "io/c_out_stream.zig" - "io/seekable_stream.zig" - "json.zig" - "lazy_init.zig" - "linked_list.zig" - "macho.zig" - "math.zig" - "math/acos.zig" - "math/acosh.zig" - "math/asin.zig" - "math/asinh.zig" - "math/atan.zig" - "math/atan2.zig" - "math/atanh.zig" - "math/big.zig" - "math/big/int.zig" - "math/big/rational.zig" - "math/cbrt.zig" - "math/ceil.zig" - "math/complex.zig" - "math/complex/abs.zig" - "math/complex/acos.zig" - "math/complex/acosh.zig" - "math/complex/arg.zig" - "math/complex/asin.zig" - "math/complex/asinh.zig" - "math/complex/atan.zig" - "math/complex/atanh.zig" - "math/complex/conj.zig" - "math/complex/cos.zig" - "math/complex/cosh.zig" - "math/complex/exp.zig" - "math/complex/ldexp.zig" - "math/complex/log.zig" - "math/complex/pow.zig" - "math/complex/proj.zig" - "math/complex/sin.zig" - "math/complex/sinh.zig" - "math/complex/sqrt.zig" - "math/complex/tan.zig" - "math/complex/tanh.zig" - "math/copysign.zig" - "math/cos.zig" - "math/cosh.zig" - "math/exp.zig" - "math/exp2.zig" - "math/expm1.zig" - "math/expo2.zig" - "math/fabs.zig" - "math/floor.zig" - "math/fma.zig" - "math/frexp.zig" - "math/hypot.zig" - "math/ilogb.zig" - "math/inf.zig" - "math/isfinite.zig" - "math/isinf.zig" - "math/isnan.zig" - "math/isnormal.zig" - "math/ln.zig" - "math/log.zig" - "math/log10.zig" - "math/log1p.zig" - "math/log2.zig" - "math/modf.zig" - "math/nan.zig" - "math/pow.zig" - "math/powi.zig" - "math/round.zig" - "math/scalbn.zig" - "math/signbit.zig" - "math/sin.zig" - "math/sinh.zig" - "math/sqrt.zig" - "math/tan.zig" - "math/tanh.zig" - "math/trunc.zig" - "mem.zig" - "meta.zig" - "meta/trait.zig" - "mutex.zig" - "net.zig" - "os.zig" - "os/bits.zig" - "os/bits/darwin.zig" - "os/bits/freebsd.zig" - "os/bits/linux.zig" - "os/bits/linux/arm64.zig" - "os/bits/linux/errno.zig" - "os/bits/linux/x86_64.zig" - "os/bits/netbsd.zig" - "os/bits/wasi.zig" - "os/bits/windows.zig" - "os/darwin.zig" - "os/freebsd.zig" - "os/linux.zig" - "os/linux/arm64.zig" - "os/linux/tls.zig" - "os/linux/vdso.zig" - "os/linux/x86_64.zig" - "os/netbsd.zig" - "os/uefi.zig" - "os/wasi.zig" - "os/windows.zig" - "os/windows/advapi32.zig" - "os/windows/bits.zig" - "os/windows/error.zig" - "os/windows/kernel32.zig" - "os/windows/lang.zig" - "os/windows/ntdll.zig" - "os/windows/ole32.zig" - "os/windows/shell32.zig" - "os/windows/sublang.zig" - "os/zen.zig" - "packed_int_array.zig" - "pdb.zig" - "priority_queue.zig" - "process.zig" - "rand.zig" - "rand/ziggurat.zig" - "rb.zig" - "segmented_list.zig" - "sort.zig" - "special/start.zig" - "special/start_lib.zig" - "special/start_windows_tls.zig" - "special/build_runner.zig" - "special/c.zig" - "special/compiler_rt.zig" - "special/compiler_rt/addXf3.zig" - "special/compiler_rt/arm/aeabi_dcmp.zig" - "special/compiler_rt/arm/aeabi_fcmp.zig" - "special/compiler_rt/ashlti3.zig" - "special/compiler_rt/ashrti3.zig" - "special/compiler_rt/aulldiv.zig" - "special/compiler_rt/aullrem.zig" - "special/compiler_rt/comparedf2.zig" - "special/compiler_rt/comparesf2.zig" - "special/compiler_rt/comparetf2.zig" - "special/compiler_rt/divdf3.zig" - "special/compiler_rt/divsf3.zig" - "special/compiler_rt/divti3.zig" - "special/compiler_rt/extendXfYf2.zig" - "special/compiler_rt/fixdfdi.zig" - "special/compiler_rt/fixdfsi.zig" - "special/compiler_rt/fixdfti.zig" - "special/compiler_rt/fixint.zig" - "special/compiler_rt/fixsfdi.zig" - "special/compiler_rt/fixsfsi.zig" - "special/compiler_rt/fixsfti.zig" - "special/compiler_rt/fixtfdi.zig" - "special/compiler_rt/fixtfsi.zig" - "special/compiler_rt/fixtfti.zig" - "special/compiler_rt/fixuint.zig" - "special/compiler_rt/fixunsdfdi.zig" - "special/compiler_rt/fixunsdfsi.zig" - "special/compiler_rt/fixunsdfti.zig" - "special/compiler_rt/fixunssfdi.zig" - "special/compiler_rt/fixunssfsi.zig" - "special/compiler_rt/fixunssfti.zig" - "special/compiler_rt/fixunstfdi.zig" - "special/compiler_rt/fixunstfsi.zig" - "special/compiler_rt/fixunstfti.zig" - "special/compiler_rt/floatdidf.zig" - "special/compiler_rt/floatsiXf.zig" - "special/compiler_rt/floattidf.zig" - "special/compiler_rt/floattisf.zig" - "special/compiler_rt/floattitf.zig" - "special/compiler_rt/floatundidf.zig" - "special/compiler_rt/floatunditf.zig" - "special/compiler_rt/floatunsidf.zig" - "special/compiler_rt/floatunsitf.zig" - "special/compiler_rt/floatuntidf.zig" - "special/compiler_rt/floatuntisf.zig" - "special/compiler_rt/floatuntitf.zig" - "special/compiler_rt/lshrti3.zig" - "special/compiler_rt/modti3.zig" - "special/compiler_rt/mulXf3.zig" - "special/compiler_rt/mulodi4.zig" - "special/compiler_rt/muloti4.zig" - "special/compiler_rt/multi3.zig" - "special/compiler_rt/negXf2.zig" - "special/compiler_rt/popcountdi2.zig" - "special/compiler_rt/stack_probe.zig" - "special/compiler_rt/truncXfYf2.zig" - "special/compiler_rt/udivmod.zig" - "special/compiler_rt/udivmoddi4.zig" - "special/compiler_rt/udivmodti4.zig" - "special/compiler_rt/udivti3.zig" - "special/compiler_rt/umodti3.zig" - "special/init-exe/build.zig" - "special/init-exe/src/main.zig" - "special/init-lib/build.zig" - "special/init-lib/src/main.zig" - "special/panic.zig" - "special/test_runner.zig" - "spinlock.zig" - "statically_initialized_mutex.zig" - "std.zig" - "testing.zig" - "thread.zig" - "time.zig" - "time/epoch.zig" - "unicode.zig" - "valgrind.zig" - "valgrind/callgrind.zig" - "valgrind/memcheck.zig" - "zig.zig" - "zig/ast.zig" - "zig/parse.zig" - "zig/parse_string_literal.zig" - "zig/render.zig" - "zig/tokenizer.zig" -) - -set(ZIG_C_HEADER_FILES - "__clang_cuda_builtin_vars.h" - "__clang_cuda_cmath.h" - "__clang_cuda_complex_builtins.h" - "__clang_cuda_device_functions.h" - "__clang_cuda_intrinsics.h" - "__clang_cuda_libdevice_declares.h" - "__clang_cuda_math_forward_declares.h" - "__clang_cuda_runtime_wrapper.h" - "__stddef_max_align_t.h" - "__wmmintrin_aes.h" - "__wmmintrin_pclmul.h" - "adxintrin.h" - "altivec.h" - "ammintrin.h" - "arm64intr.h" - "arm_acle.h" - "arm_fp16.h" - "arm_neon.h" - "armintr.h" - "avx2intrin.h" - "avx512bitalgintrin.h" - "avx512bwintrin.h" - "avx512cdintrin.h" - "avx512dqintrin.h" - "avx512erintrin.h" - "avx512fintrin.h" - "avx512ifmaintrin.h" - "avx512ifmavlintrin.h" - "avx512pfintrin.h" - "avx512vbmi2intrin.h" - "avx512vbmiintrin.h" - "avx512vbmivlintrin.h" - "avx512vlbitalgintrin.h" - "avx512vlbwintrin.h" - "avx512vlcdintrin.h" - "avx512vldqintrin.h" - "avx512vlintrin.h" - "avx512vlvbmi2intrin.h" - "avx512vlvnniintrin.h" - "avx512vnniintrin.h" - "avx512vpopcntdqintrin.h" - "avx512vpopcntdqvlintrin.h" - "avxintrin.h" - "bmi2intrin.h" - "bmiintrin.h" - "cetintrin.h" - "cldemoteintrin.h" - "clflushoptintrin.h" - "clwbintrin.h" - "clzerointrin.h" - "cpuid.h" - "cuda_wrappers/algorithm" - "cuda_wrappers/complex" - "cuda_wrappers/new" - "emmintrin.h" - "f16cintrin.h" - "float.h" - "fma4intrin.h" - "fmaintrin.h" - "fxsrintrin.h" - "gfniintrin.h" - "htmintrin.h" - "htmxlintrin.h" - "ia32intrin.h" - "immintrin.h" - "intrin.h" - "inttypes.h" - "invpcidintrin.h" - "iso646.h" - "limits.h" - "lwpintrin.h" - "lzcntintrin.h" - "mm3dnow.h" - "mm_malloc.h" - "mmintrin.h" - "module.modulemap" - "movdirintrin.h" - "msa.h" - "mwaitxintrin.h" - "nmmintrin.h" - "opencl-c.h" - "pconfigintrin.h" - "pkuintrin.h" - "pmmintrin.h" - "popcntintrin.h" - "prfchwintrin.h" - "ptwriteintrin.h" - "rdseedintrin.h" - "rtmintrin.h" - "s390intrin.h" - "sgxintrin.h" - "shaintrin.h" - "smmintrin.h" - "stdalign.h" - "stdarg.h" - "stdatomic.h" - "stdbool.h" - "stddef.h" - "stdint.h" - "stdnoreturn.h" - "tbmintrin.h" - "tgmath.h" - "tmmintrin.h" - "unwind.h" - "vadefs.h" - "vaesintrin.h" - "varargs.h" - "vecintrin.h" - "vpclmulqdqintrin.h" - "waitpkgintrin.h" - "wbnoinvdintrin.h" - "wmmintrin.h" - "x86intrin.h" - "xmmintrin.h" - "xopintrin.h" - "xsavecintrin.h" - "xsaveintrin.h" - "xsaveoptintrin.h" - "xsavesintrin.h" - "xtestintrin.h" -) - set(ZIG_MUSL_SRC_FILES "musl/src/aio/aio.c" "musl/src/aio/aio_suspend.c" @@ -2669,6054 +2258,6 @@ set(ZIG_MUSL_SRC_FILES "musl/src/unistd/writev.c" ) -set(ZIG_LIBC_FILES - "glibc/abi.txt" - "glibc/fns.txt" - "glibc/vers.txt" - "glibc/bits/byteswap.h" - "glibc/bits/endian.h" - "glibc/bits/floatn-common.h" - "glibc/bits/libc-header-start.h" - "glibc/bits/long-double.h" - "glibc/bits/pthreadtypes.h" - "glibc/bits/select.h" - "glibc/bits/signum-generic.h" - "glibc/bits/stat.h" - "glibc/bits/stdint-intn.h" - "glibc/bits/stdlib-bsearch.h" - "glibc/bits/time64.h" - "glibc/bits/timesize.h" - "glibc/bits/types/__sigset_t.h" - "glibc/bits/types/struct_sched_param.h" - "glibc/bits/typesizes.h" - "glibc/bits/uintn-identity.h" - "glibc/bits/waitflags.h" - "glibc/bits/waitstatus.h" - "glibc/csu/abi-note.S" - "glibc/csu/abi-tag.h" - "glibc/csu/elf-init.c" - "glibc/debug/stack_chk_fail_local.c" - "glibc/elf/elf.h" - "glibc/include/alloca.h" - "glibc/include/bits/cpu-set.h" - "glibc/include/bits/statx.h" - "glibc/include/bits/stdlib-float.h" - "glibc/include/bits/types.h" - "glibc/include/bits/types/__locale_t.h" - "glibc/include/bits/types/clock_t.h" - "glibc/include/bits/types/clockid_t.h" - "glibc/include/bits/types/locale_t.h" - "glibc/include/bits/types/sig_atomic_t.h" - "glibc/include/bits/types/sigset_t.h" - "glibc/include/bits/types/struct_itimerspec.h" - "glibc/include/bits/types/struct_timespec.h" - "glibc/include/bits/types/struct_timeval.h" - "glibc/include/bits/types/struct_tm.h" - "glibc/include/bits/types/time_t.h" - "glibc/include/bits/types/timer_t.h" - "glibc/include/config.h" - "glibc/include/dso_handle.h" - "glibc/include/elf.h" - "glibc/include/endian.h" - "glibc/include/features.h" - "glibc/include/gnu/stubs.h" - "glibc/include/libc-modules.h" - "glibc/include/libc-pointer-arith.h" - "glibc/include/libc-symbols.h" - "glibc/include/pthread.h" - "glibc/include/signal.h" - "glibc/include/stap-probe.h" - "glibc/include/stdc-predef.h" - "glibc/include/stdlib.h" - "glibc/include/sys/cdefs.h" - "glibc/include/sys/select.h" - "glibc/include/sys/signal.h" - "glibc/include/sys/stat.h" - "glibc/include/sys/types.h" - "glibc/include/syscall.h" - "glibc/io/bits/statx.h" - "glibc/io/fstat.c" - "glibc/io/fstat64.c" - "glibc/io/fstatat.c" - "glibc/io/fstatat64.c" - "glibc/io/lstat.c" - "glibc/io/lstat64.c" - "glibc/io/mknod.c" - "glibc/io/mknodat.c" - "glibc/io/stat.c" - "glibc/io/stat64.c" - "glibc/io/sys/stat.h" - "glibc/locale/bits/types/__locale_t.h" - "glibc/locale/bits/types/locale_t.h" - "glibc/misc/sys/cdefs.h" - "glibc/misc/sys/select.h" - "glibc/misc/syscall.h" - "glibc/nptl/pthread_atfork.c" - "glibc/posix/bits/cpu-set.h" - "glibc/posix/bits/types.h" - "glibc/posix/sys/types.h" - "glibc/signal/bits/types/sig_atomic_t.h" - "glibc/signal/bits/types/sigset_t.h" - "glibc/signal/signal.h" - "glibc/signal/sys/signal.h" - "glibc/stdlib/alloca.h" - "glibc/stdlib/at_quick_exit.c" - "glibc/stdlib/atexit.c" - "glibc/stdlib/bits/stdlib-float.h" - "glibc/stdlib/exit.h" - "glibc/stdlib/stdlib.h" - "glibc/string/endian.h" - "glibc/sysdeps/aarch64/bits/endian.h" - "glibc/sysdeps/aarch64/crti.S" - "glibc/sysdeps/aarch64/crtn.S" - "glibc/sysdeps/aarch64/dl-sysdep.h" - "glibc/sysdeps/aarch64/nptl/bits/pthreadtypes-arch.h" - "glibc/sysdeps/aarch64/start.S" - "glibc/sysdeps/aarch64/sysdep.h" - "glibc/sysdeps/alpha/bits/endian.h" - "glibc/sysdeps/alpha/crti.S" - "glibc/sysdeps/alpha/crtn.S" - "glibc/sysdeps/alpha/dl-dtprocnum.h" - "glibc/sysdeps/alpha/dl-sysdep.h" - "glibc/sysdeps/alpha/nptl/bits/pthreadtypes-arch.h" - "glibc/sysdeps/alpha/start.S" - "glibc/sysdeps/arm/bits/endian.h" - "glibc/sysdeps/arm/crti.S" - "glibc/sysdeps/arm/crtn.S" - "glibc/sysdeps/arm/dl-sysdep.h" - "glibc/sysdeps/arm/nptl/bits/pthreadtypes-arch.h" - "glibc/sysdeps/arm/start.S" - "glibc/sysdeps/arm/sysdep.h" - "glibc/sysdeps/generic/dl-dtprocnum.h" - "glibc/sysdeps/generic/dl-sysdep.h" - "glibc/sysdeps/generic/dwarf2.h" - "glibc/sysdeps/generic/libc-lock.h" - "glibc/sysdeps/generic/symbol-hacks.h" - "glibc/sysdeps/generic/sys/syscall.h" - "glibc/sysdeps/generic/sysdep.h" - "glibc/sysdeps/generic/tls.h" - "glibc/sysdeps/hppa/bits/endian.h" - "glibc/sysdeps/hppa/crti.S" - "glibc/sysdeps/hppa/crtn.S" - "glibc/sysdeps/hppa/nptl/bits/pthreadtypes-arch.h" - "glibc/sysdeps/hppa/start.S" - "glibc/sysdeps/hppa/sysdep.h" - "glibc/sysdeps/htl/bits/pthread.h" - "glibc/sysdeps/htl/bits/thread-shared-types.h" - "glibc/sysdeps/htl/libc-lockP.h" - "glibc/sysdeps/htl/pthread.h" - "glibc/sysdeps/i386/crti.S" - "glibc/sysdeps/i386/crtn.S" - "glibc/sysdeps/i386/htl/bits/pthreadtypes-arch.h" - "glibc/sysdeps/i386/start.S" - "glibc/sysdeps/i386/symbol-hacks.h" - "glibc/sysdeps/i386/sysdep.h" - "glibc/sysdeps/ia64/crti.S" - "glibc/sysdeps/ia64/crtn.S" - "glibc/sysdeps/ia64/dl-dtprocnum.h" - "glibc/sysdeps/ia64/dl-sysdep.h" - "glibc/sysdeps/ia64/nptl/bits/pthreadtypes-arch.h" - "glibc/sysdeps/ia64/start.S" - "glibc/sysdeps/ia64/sysdep.h" - "glibc/sysdeps/init_array/crti.S" - "glibc/sysdeps/init_array/crtn.S" - "glibc/sysdeps/m68k/bits/endian.h" - "glibc/sysdeps/m68k/coldfire/sysdep.h" - "glibc/sysdeps/m68k/crti.S" - "glibc/sysdeps/m68k/crtn.S" - "glibc/sysdeps/m68k/m680x0/sysdep.h" - "glibc/sysdeps/m68k/nptl/bits/pthreadtypes-arch.h" - "glibc/sysdeps/m68k/start.S" - "glibc/sysdeps/m68k/symbol-hacks.h" - "glibc/sysdeps/m68k/sysdep.h" - "glibc/sysdeps/mach/hurd/bits/stat.h" - "glibc/sysdeps/mach/hurd/bits/typesizes.h" - "glibc/sysdeps/mach/hurd/dl-sysdep.h" - "glibc/sysdeps/mach/hurd/kernel-features.h" - "glibc/sysdeps/mach/i386/sysdep.h" - "glibc/sysdeps/mach/libc-lock.h" - "glibc/sysdeps/mach/sys/syscall.h" - "glibc/sysdeps/mach/sysdep.h" - "glibc/sysdeps/microblaze/bits/endian.h" - "glibc/sysdeps/microblaze/crti.S" - "glibc/sysdeps/microblaze/crtn.S" - "glibc/sysdeps/microblaze/nptl/bits/pthreadtypes-arch.h" - "glibc/sysdeps/microblaze/start.S" - "glibc/sysdeps/microblaze/sysdep.h" - "glibc/sysdeps/mips/bits/endian.h" - "glibc/sysdeps/mips/dl-dtprocnum.h" - "glibc/sysdeps/mips/mips32/crti.S" - "glibc/sysdeps/mips/mips32/crtn.S" - "glibc/sysdeps/mips/mips64/n32/crti.S" - "glibc/sysdeps/mips/mips64/n32/crtn.S" - "glibc/sysdeps/mips/mips64/n64/crti.S" - "glibc/sysdeps/mips/mips64/n64/crtn.S" - "glibc/sysdeps/mips/nptl/bits/pthreadtypes-arch.h" - "glibc/sysdeps/mips/start.S" - "glibc/sysdeps/nptl/bits/pthreadtypes.h" - "glibc/sysdeps/nptl/bits/thread-shared-types.h" - "glibc/sysdeps/nptl/libc-lock.h" - "glibc/sysdeps/nptl/libc-lockP.h" - "glibc/sysdeps/nptl/pthread.h" - "glibc/sysdeps/powerpc/bits/endian.h" - "glibc/sysdeps/powerpc/nptl/bits/pthreadtypes-arch.h" - "glibc/sysdeps/powerpc/powerpc32/crti.S" - "glibc/sysdeps/powerpc/powerpc32/crtn.S" - "glibc/sysdeps/powerpc/powerpc32/dl-dtprocnum.h" - "glibc/sysdeps/powerpc/powerpc32/start.S" - "glibc/sysdeps/powerpc/powerpc32/symbol-hacks.h" - "glibc/sysdeps/powerpc/powerpc32/sysdep.h" - "glibc/sysdeps/powerpc/powerpc64/crti.S" - "glibc/sysdeps/powerpc/powerpc64/crtn.S" - "glibc/sysdeps/powerpc/powerpc64/dl-dtprocnum.h" - "glibc/sysdeps/powerpc/powerpc64/start.S" - "glibc/sysdeps/powerpc/powerpc64/sysdep.h" - "glibc/sysdeps/powerpc/sysdep.h" - "glibc/sysdeps/riscv/bits/endian.h" - "glibc/sysdeps/riscv/nptl/bits/pthreadtypes-arch.h" - "glibc/sysdeps/riscv/start.S" - "glibc/sysdeps/s390/bits/endian.h" - "glibc/sysdeps/s390/nptl/bits/pthreadtypes-arch.h" - "glibc/sysdeps/s390/s390-32/crti.S" - "glibc/sysdeps/s390/s390-32/crtn.S" - "glibc/sysdeps/s390/s390-32/dl-sysdep.h" - "glibc/sysdeps/s390/s390-32/start.S" - "glibc/sysdeps/s390/s390-32/symbol-hacks.h" - "glibc/sysdeps/s390/s390-32/sysdep.h" - "glibc/sysdeps/s390/s390-64/crti.S" - "glibc/sysdeps/s390/s390-64/crtn.S" - "glibc/sysdeps/s390/s390-64/start.S" - "glibc/sysdeps/s390/s390-64/sysdep.h" - "glibc/sysdeps/sh/bits/endian.h" - "glibc/sysdeps/sh/crti.S" - "glibc/sysdeps/sh/crtn.S" - "glibc/sysdeps/sh/nptl/bits/pthreadtypes-arch.h" - "glibc/sysdeps/sh/start.S" - "glibc/sysdeps/sh/sysdep.h" - "glibc/sysdeps/sparc/bits/endian.h" - "glibc/sysdeps/sparc/crti.S" - "glibc/sysdeps/sparc/crtn.S" - "glibc/sysdeps/sparc/dl-dtprocnum.h" - "glibc/sysdeps/sparc/dl-sysdep.h" - "glibc/sysdeps/sparc/nptl/bits/pthreadtypes-arch.h" - "glibc/sysdeps/sparc/sparc32/start.S" - "glibc/sysdeps/sparc/sparc64/start.S" - "glibc/sysdeps/sparc/sysdep.h" - "glibc/sysdeps/unix/alpha/sysdep.h" - "glibc/sysdeps/unix/arm/sysdep.h" - "glibc/sysdeps/unix/i386/sysdep.h" - "glibc/sysdeps/unix/mips/mips32/sysdep.h" - "glibc/sysdeps/unix/mips/mips64/n32/sysdep.h" - "glibc/sysdeps/unix/mips/mips64/n64/sysdep.h" - "glibc/sysdeps/unix/mips/sysdep.h" - "glibc/sysdeps/unix/powerpc/sysdep.h" - "glibc/sysdeps/unix/sh/sysdep.h" - "glibc/sysdeps/unix/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/aarch64/kernel-features.h" - "glibc/sysdeps/unix/sysv/linux/aarch64/sys/elf.h" - "glibc/sysdeps/unix/sysv/linux/aarch64/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/alpha/bits/stat.h" - "glibc/sysdeps/unix/sysv/linux/alpha/bits/typesizes.h" - "glibc/sysdeps/unix/sysv/linux/alpha/kernel-features.h" - "glibc/sysdeps/unix/sysv/linux/alpha/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/arm/kernel-features.h" - "glibc/sysdeps/unix/sysv/linux/arm/sys/elf.h" - "glibc/sysdeps/unix/sysv/linux/arm/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/bits/stat.h" - "glibc/sysdeps/unix/sysv/linux/bits/timex.h" - "glibc/sysdeps/unix/sysv/linux/dl-sysdep.h" - "glibc/sysdeps/unix/sysv/linux/generic/bits/stat.h" - "glibc/sysdeps/unix/sysv/linux/generic/bits/typesizes.h" - "glibc/sysdeps/unix/sysv/linux/generic/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/hppa/kernel-features.h" - "glibc/sysdeps/unix/sysv/linux/hppa/pthread.h" - "glibc/sysdeps/unix/sysv/linux/hppa/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/i386/dl-sysdep.h" - "glibc/sysdeps/unix/sysv/linux/i386/kernel-features.h" - "glibc/sysdeps/unix/sysv/linux/i386/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/ia64/bits/endian.h" - "glibc/sysdeps/unix/sysv/linux/ia64/bits/stat.h" - "glibc/sysdeps/unix/sysv/linux/ia64/dl-sysdep.h" - "glibc/sysdeps/unix/sysv/linux/ia64/kernel-features.h" - "glibc/sysdeps/unix/sysv/linux/ia64/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/include/bits/syscall.h" - "glibc/sysdeps/unix/sysv/linux/include/sys/timex.h" - "glibc/sysdeps/unix/sysv/linux/kernel-features.h" - "glibc/sysdeps/unix/sysv/linux/m68k/bits/stat.h" - "glibc/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/m68k/kernel-features.h" - "glibc/sysdeps/unix/sysv/linux/m68k/m680x0/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/m68k/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/microblaze/bits/stat.h" - "glibc/sysdeps/unix/sysv/linux/microblaze/kernel-features.h" - "glibc/sysdeps/unix/sysv/linux/microblaze/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/mips/bits/stat.h" - "glibc/sysdeps/unix/sysv/linux/mips/kernel-features.h" - "glibc/sysdeps/unix/sysv/linux/mips/mips32/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/powerpc/bits/stat.h" - "glibc/sysdeps/unix/sysv/linux/powerpc/kernel-features.h" - "glibc/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/riscv/kernel-features.h" - "glibc/sysdeps/unix/sysv/linux/riscv/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/s390/bits/stat.h" - "glibc/sysdeps/unix/sysv/linux/s390/bits/typesizes.h" - "glibc/sysdeps/unix/sysv/linux/s390/kernel-features.h" - "glibc/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/s390/sys/elf.h" - "glibc/sysdeps/unix/sysv/linux/sh/kernel-features.h" - "glibc/sysdeps/unix/sysv/linux/sh/sh4/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/sh/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/sparc/bits/stat.h" - "glibc/sysdeps/unix/sysv/linux/sparc/bits/typesizes.h" - "glibc/sysdeps/unix/sysv/linux/sparc/kernel-features.h" - "glibc/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/sparc/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/sys/syscall.h" - "glibc/sysdeps/unix/sysv/linux/sys/timex.h" - "glibc/sysdeps/unix/sysv/linux/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/x86/bits/stat.h" - "glibc/sysdeps/unix/sysv/linux/x86/bits/typesizes.h" - "glibc/sysdeps/unix/sysv/linux/x86/sys/elf.h" - "glibc/sysdeps/unix/sysv/linux/x86_64/kernel-features.h" - "glibc/sysdeps/unix/sysv/linux/x86_64/sysdep.h" - "glibc/sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h" - "glibc/sysdeps/unix/x86_64/sysdep.h" - "glibc/sysdeps/wordsize-32/divdi3-symbol-hacks.h" - "glibc/sysdeps/x86/bits/endian.h" - "glibc/sysdeps/x86/bits/select.h" - "glibc/sysdeps/x86/bits/wordsize.h" - "glibc/sysdeps/x86/nptl/bits/pthreadtypes-arch.h" - "glibc/sysdeps/x86/sysdep.h" - "glibc/sysdeps/x86_64/crti.S" - "glibc/sysdeps/x86_64/crtn.S" - "glibc/sysdeps/x86_64/start.S" - "glibc/sysdeps/x86_64/sysdep.h" - "glibc/sysdeps/x86_64/x32/symbol-hacks.h" - "glibc/sysdeps/x86_64/x32/sysdep.h" - "glibc/time/bits/types/clock_t.h" - "glibc/time/bits/types/clockid_t.h" - "glibc/time/bits/types/struct_itimerspec.h" - "glibc/time/bits/types/struct_timespec.h" - "glibc/time/bits/types/struct_timeval.h" - "glibc/time/bits/types/struct_tm.h" - "glibc/time/bits/types/time_t.h" - "glibc/time/bits/types/timer_t.h" - "include/aarch64-linux-any/asm/auxvec.h" - "include/aarch64-linux-any/asm/bitsperlong.h" - "include/aarch64-linux-any/asm/bpf_perf_event.h" - "include/aarch64-linux-any/asm/byteorder.h" - "include/aarch64-linux-any/asm/fcntl.h" - "include/aarch64-linux-any/asm/hwcap.h" - "include/aarch64-linux-any/asm/kvm.h" - "include/aarch64-linux-any/asm/kvm_para.h" - "include/aarch64-linux-any/asm/param.h" - "include/aarch64-linux-any/asm/perf_regs.h" - "include/aarch64-linux-any/asm/posix_types.h" - "include/aarch64-linux-any/asm/ptrace.h" - "include/aarch64-linux-any/asm/setup.h" - "include/aarch64-linux-any/asm/sigcontext.h" - "include/aarch64-linux-any/asm/siginfo.h" - "include/aarch64-linux-any/asm/signal.h" - "include/aarch64-linux-any/asm/stat.h" - "include/aarch64-linux-any/asm/statfs.h" - "include/aarch64-linux-any/asm/ucontext.h" - "include/aarch64-linux-any/asm/unistd.h" - "include/aarch64-linux-gnu/bits/endian.h" - "include/aarch64-linux-gnu/bits/fcntl.h" - "include/aarch64-linux-gnu/bits/fenv.h" - "include/aarch64-linux-gnu/bits/floatn.h" - "include/aarch64-linux-gnu/bits/fp-fast.h" - "include/aarch64-linux-gnu/bits/hwcap.h" - "include/aarch64-linux-gnu/bits/ipc.h" - "include/aarch64-linux-gnu/bits/link.h" - "include/aarch64-linux-gnu/bits/local_lim.h" - "include/aarch64-linux-gnu/bits/long-double.h" - "include/aarch64-linux-gnu/bits/procfs.h" - "include/aarch64-linux-gnu/bits/pthreadtypes-arch.h" - "include/aarch64-linux-gnu/bits/semaphore.h" - "include/aarch64-linux-gnu/bits/setjmp.h" - "include/aarch64-linux-gnu/bits/sigstack.h" - "include/aarch64-linux-gnu/bits/stat.h" - "include/aarch64-linux-gnu/bits/statfs.h" - "include/aarch64-linux-gnu/bits/typesizes.h" - "include/aarch64-linux-gnu/bits/wordsize.h" - "include/aarch64-linux-gnu/fpu_control.h" - "include/aarch64-linux-gnu/gnu/lib-names-lp64.h" - "include/aarch64-linux-gnu/gnu/lib-names.h" - "include/aarch64-linux-gnu/gnu/stubs-lp64.h" - "include/aarch64-linux-gnu/gnu/stubs.h" - "include/aarch64-linux-gnu/ieee754.h" - "include/aarch64-linux-gnu/sys/elf.h" - "include/aarch64-linux-gnu/sys/ptrace.h" - "include/aarch64-linux-gnu/sys/ucontext.h" - "include/aarch64-linux-gnu/sys/user.h" - "include/aarch64-linux-musleabi/bfd_stdint.h" - "include/aarch64-linux-musleabi/bits/alltypes.h" - "include/aarch64-linux-musleabi/bits/endian.h" - "include/aarch64-linux-musleabi/bits/fenv.h" - "include/aarch64-linux-musleabi/bits/float.h" - "include/aarch64-linux-musleabi/bits/hwcap.h" - "include/aarch64-linux-musleabi/bits/ipc.h" - "include/aarch64-linux-musleabi/bits/limits.h" - "include/aarch64-linux-musleabi/bits/posix.h" - "include/aarch64-linux-musleabi/bits/reg.h" - "include/aarch64-linux-musleabi/bits/sem.h" - "include/aarch64-linux-musleabi/bits/setjmp.h" - "include/aarch64-linux-musleabi/bits/signal.h" - "include/aarch64-linux-musleabi/bits/socket.h" - "include/aarch64-linux-musleabi/bits/stat.h" - "include/aarch64-linux-musleabi/bits/syscall.h" - "include/aarch64-linux-musleabi/bits/user.h" - "include/aarch64_be-linux-any/asm/auxvec.h" - "include/aarch64_be-linux-any/asm/bitsperlong.h" - "include/aarch64_be-linux-any/asm/bpf_perf_event.h" - "include/aarch64_be-linux-any/asm/byteorder.h" - "include/aarch64_be-linux-any/asm/fcntl.h" - "include/aarch64_be-linux-any/asm/hwcap.h" - "include/aarch64_be-linux-any/asm/kvm.h" - "include/aarch64_be-linux-any/asm/kvm_para.h" - "include/aarch64_be-linux-any/asm/param.h" - "include/aarch64_be-linux-any/asm/perf_regs.h" - "include/aarch64_be-linux-any/asm/posix_types.h" - "include/aarch64_be-linux-any/asm/ptrace.h" - "include/aarch64_be-linux-any/asm/setup.h" - "include/aarch64_be-linux-any/asm/sigcontext.h" - "include/aarch64_be-linux-any/asm/siginfo.h" - "include/aarch64_be-linux-any/asm/signal.h" - "include/aarch64_be-linux-any/asm/stat.h" - "include/aarch64_be-linux-any/asm/statfs.h" - "include/aarch64_be-linux-any/asm/ucontext.h" - "include/aarch64_be-linux-any/asm/unistd.h" - "include/aarch64_be-linux-gnu/bits/endian.h" - "include/aarch64_be-linux-gnu/bits/fcntl.h" - "include/aarch64_be-linux-gnu/bits/fenv.h" - "include/aarch64_be-linux-gnu/bits/floatn.h" - "include/aarch64_be-linux-gnu/bits/fp-fast.h" - "include/aarch64_be-linux-gnu/bits/hwcap.h" - "include/aarch64_be-linux-gnu/bits/ipc.h" - "include/aarch64_be-linux-gnu/bits/link.h" - "include/aarch64_be-linux-gnu/bits/local_lim.h" - "include/aarch64_be-linux-gnu/bits/long-double.h" - "include/aarch64_be-linux-gnu/bits/procfs.h" - "include/aarch64_be-linux-gnu/bits/pthreadtypes-arch.h" - "include/aarch64_be-linux-gnu/bits/semaphore.h" - "include/aarch64_be-linux-gnu/bits/setjmp.h" - "include/aarch64_be-linux-gnu/bits/sigstack.h" - "include/aarch64_be-linux-gnu/bits/stat.h" - "include/aarch64_be-linux-gnu/bits/statfs.h" - "include/aarch64_be-linux-gnu/bits/typesizes.h" - "include/aarch64_be-linux-gnu/bits/wordsize.h" - "include/aarch64_be-linux-gnu/fpu_control.h" - "include/aarch64_be-linux-gnu/gnu/lib-names-lp64_be.h" - "include/aarch64_be-linux-gnu/gnu/lib-names.h" - "include/aarch64_be-linux-gnu/gnu/stubs-lp64_be.h" - "include/aarch64_be-linux-gnu/gnu/stubs.h" - "include/aarch64_be-linux-gnu/ieee754.h" - "include/aarch64_be-linux-gnu/sys/elf.h" - "include/aarch64_be-linux-gnu/sys/ptrace.h" - "include/aarch64_be-linux-gnu/sys/ucontext.h" - "include/aarch64_be-linux-gnu/sys/user.h" - "include/aarch64_be-linux-musl/bfd_stdint.h" - "include/aarch64_be-linux-musl/bits/alltypes.h" - "include/aarch64_be-linux-musl/bits/endian.h" - "include/aarch64_be-linux-musl/bits/fenv.h" - "include/aarch64_be-linux-musl/bits/float.h" - "include/aarch64_be-linux-musl/bits/hwcap.h" - "include/aarch64_be-linux-musl/bits/ipc.h" - "include/aarch64_be-linux-musl/bits/limits.h" - "include/aarch64_be-linux-musl/bits/posix.h" - "include/aarch64_be-linux-musl/bits/reg.h" - "include/aarch64_be-linux-musl/bits/sem.h" - "include/aarch64_be-linux-musl/bits/setjmp.h" - "include/aarch64_be-linux-musl/bits/signal.h" - "include/aarch64_be-linux-musl/bits/socket.h" - "include/aarch64_be-linux-musl/bits/stat.h" - "include/aarch64_be-linux-musl/bits/syscall.h" - "include/aarch64_be-linux-musl/bits/user.h" - "include/any-linux-any/asm-generic/auxvec.h" - "include/any-linux-any/asm-generic/bitsperlong.h" - "include/any-linux-any/asm-generic/bpf_perf_event.h" - "include/any-linux-any/asm-generic/errno-base.h" - "include/any-linux-any/asm-generic/errno.h" - "include/any-linux-any/asm-generic/fcntl.h" - "include/any-linux-any/asm-generic/hugetlb_encode.h" - "include/any-linux-any/asm-generic/int-l64.h" - "include/any-linux-any/asm-generic/int-ll64.h" - "include/any-linux-any/asm-generic/ioctl.h" - "include/any-linux-any/asm-generic/ioctls.h" - "include/any-linux-any/asm-generic/ipcbuf.h" - "include/any-linux-any/asm-generic/kvm_para.h" - "include/any-linux-any/asm-generic/mman-common.h" - "include/any-linux-any/asm-generic/mman.h" - "include/any-linux-any/asm-generic/msgbuf.h" - "include/any-linux-any/asm-generic/param.h" - "include/any-linux-any/asm-generic/poll.h" - "include/any-linux-any/asm-generic/posix_types.h" - "include/any-linux-any/asm-generic/resource.h" - "include/any-linux-any/asm-generic/sembuf.h" - "include/any-linux-any/asm-generic/setup.h" - "include/any-linux-any/asm-generic/shmbuf.h" - "include/any-linux-any/asm-generic/shmparam.h" - "include/any-linux-any/asm-generic/siginfo.h" - "include/any-linux-any/asm-generic/signal-defs.h" - "include/any-linux-any/asm-generic/signal.h" - "include/any-linux-any/asm-generic/socket.h" - "include/any-linux-any/asm-generic/sockios.h" - "include/any-linux-any/asm-generic/stat.h" - "include/any-linux-any/asm-generic/statfs.h" - "include/any-linux-any/asm-generic/swab.h" - "include/any-linux-any/asm-generic/termbits.h" - "include/any-linux-any/asm-generic/termios.h" - "include/any-linux-any/asm-generic/types.h" - "include/any-linux-any/asm-generic/ucontext.h" - "include/any-linux-any/asm-generic/unistd.h" - "include/any-linux-any/asm/a.out.h" - "include/any-linux-any/asm/auxvec.h" - "include/any-linux-any/asm/bitfield.h" - "include/any-linux-any/asm/bitsperlong.h" - "include/any-linux-any/asm/boot.h" - "include/any-linux-any/asm/bootparam.h" - "include/any-linux-any/asm/bootx.h" - "include/any-linux-any/asm/bpf_perf_event.h" - "include/any-linux-any/asm/break.h" - "include/any-linux-any/asm/byteorder.h" - "include/any-linux-any/asm/cachectl.h" - "include/any-linux-any/asm/cputable.h" - "include/any-linux-any/asm/debugreg.h" - "include/any-linux-any/asm/e820.h" - "include/any-linux-any/asm/eeh.h" - "include/any-linux-any/asm/elf.h" - "include/any-linux-any/asm/epapr_hcalls.h" - "include/any-linux-any/asm/errno.h" - "include/any-linux-any/asm/fcntl.h" - "include/any-linux-any/asm/hw_breakpoint.h" - "include/any-linux-any/asm/hwcap.h" - "include/any-linux-any/asm/hwcap2.h" - "include/any-linux-any/asm/inst.h" - "include/any-linux-any/asm/ioctl.h" - "include/any-linux-any/asm/ioctls.h" - "include/any-linux-any/asm/ipcbuf.h" - "include/any-linux-any/asm/ist.h" - "include/any-linux-any/asm/kvm.h" - "include/any-linux-any/asm/kvm_para.h" - "include/any-linux-any/asm/kvm_perf.h" - "include/any-linux-any/asm/ldt.h" - "include/any-linux-any/asm/mce.h" - "include/any-linux-any/asm/mman.h" - "include/any-linux-any/asm/msgbuf.h" - "include/any-linux-any/asm/msr.h" - "include/any-linux-any/asm/mtrr.h" - "include/any-linux-any/asm/nvram.h" - "include/any-linux-any/asm/opal-prd.h" - "include/any-linux-any/asm/param.h" - "include/any-linux-any/asm/perf_event.h" - "include/any-linux-any/asm/perf_regs.h" - "include/any-linux-any/asm/poll.h" - "include/any-linux-any/asm/posix_types.h" - "include/any-linux-any/asm/posix_types_32.h" - "include/any-linux-any/asm/posix_types_64.h" - "include/any-linux-any/asm/posix_types_x32.h" - "include/any-linux-any/asm/prctl.h" - "include/any-linux-any/asm/processor-flags.h" - "include/any-linux-any/asm/ps3fb.h" - "include/any-linux-any/asm/ptrace-abi.h" - "include/any-linux-any/asm/ptrace.h" - "include/any-linux-any/asm/reg.h" - "include/any-linux-any/asm/resource.h" - "include/any-linux-any/asm/sembuf.h" - "include/any-linux-any/asm/setup.h" - "include/any-linux-any/asm/sgidefs.h" - "include/any-linux-any/asm/shmbuf.h" - "include/any-linux-any/asm/sigcontext.h" - "include/any-linux-any/asm/sigcontext32.h" - "include/any-linux-any/asm/siginfo.h" - "include/any-linux-any/asm/signal.h" - "include/any-linux-any/asm/socket.h" - "include/any-linux-any/asm/sockios.h" - "include/any-linux-any/asm/spu_info.h" - "include/any-linux-any/asm/stat.h" - "include/any-linux-any/asm/statfs.h" - "include/any-linux-any/asm/svm.h" - "include/any-linux-any/asm/swab.h" - "include/any-linux-any/asm/syscalls.h" - "include/any-linux-any/asm/sysmips.h" - "include/any-linux-any/asm/termbits.h" - "include/any-linux-any/asm/termios.h" - "include/any-linux-any/asm/tm.h" - "include/any-linux-any/asm/types.h" - "include/any-linux-any/asm/ucontext.h" - "include/any-linux-any/asm/unistd-common.h" - "include/any-linux-any/asm/unistd-eabi.h" - "include/any-linux-any/asm/unistd-oabi.h" - "include/any-linux-any/asm/unistd.h" - "include/any-linux-any/asm/unistd_32.h" - "include/any-linux-any/asm/unistd_64.h" - "include/any-linux-any/asm/unistd_x32.h" - "include/any-linux-any/asm/vm86.h" - "include/any-linux-any/asm/vmx.h" - "include/any-linux-any/asm/vsyscall.h" - "include/any-linux-any/linux/a.out.h" - "include/any-linux-any/linux/acct.h" - "include/any-linux-any/linux/adb.h" - "include/any-linux-any/linux/adfs_fs.h" - "include/any-linux-any/linux/affs_hardblocks.h" - "include/any-linux-any/linux/agpgart.h" - "include/any-linux-any/linux/aio_abi.h" - "include/any-linux-any/linux/am437x-vpfe.h" - "include/any-linux-any/linux/android/binder.h" - "include/any-linux-any/linux/apm_bios.h" - "include/any-linux-any/linux/arcfb.h" - "include/any-linux-any/linux/arm_sdei.h" - "include/any-linux-any/linux/aspeed-lpc-ctrl.h" - "include/any-linux-any/linux/atalk.h" - "include/any-linux-any/linux/atm.h" - "include/any-linux-any/linux/atm_eni.h" - "include/any-linux-any/linux/atm_he.h" - "include/any-linux-any/linux/atm_idt77105.h" - "include/any-linux-any/linux/atm_nicstar.h" - "include/any-linux-any/linux/atm_tcp.h" - "include/any-linux-any/linux/atm_zatm.h" - "include/any-linux-any/linux/atmapi.h" - "include/any-linux-any/linux/atmarp.h" - "include/any-linux-any/linux/atmbr2684.h" - "include/any-linux-any/linux/atmclip.h" - "include/any-linux-any/linux/atmdev.h" - "include/any-linux-any/linux/atmioc.h" - "include/any-linux-any/linux/atmlec.h" - "include/any-linux-any/linux/atmmpc.h" - "include/any-linux-any/linux/atmppp.h" - "include/any-linux-any/linux/atmsap.h" - "include/any-linux-any/linux/atmsvc.h" - "include/any-linux-any/linux/audit.h" - "include/any-linux-any/linux/auto_dev-ioctl.h" - "include/any-linux-any/linux/auto_fs.h" - "include/any-linux-any/linux/auto_fs4.h" - "include/any-linux-any/linux/auxvec.h" - "include/any-linux-any/linux/ax25.h" - "include/any-linux-any/linux/b1lli.h" - "include/any-linux-any/linux/batadv_packet.h" - "include/any-linux-any/linux/batman_adv.h" - "include/any-linux-any/linux/baycom.h" - "include/any-linux-any/linux/bcache.h" - "include/any-linux-any/linux/bcm933xx_hcs.h" - "include/any-linux-any/linux/bfs_fs.h" - "include/any-linux-any/linux/binfmts.h" - "include/any-linux-any/linux/blkpg.h" - "include/any-linux-any/linux/blktrace_api.h" - "include/any-linux-any/linux/blkzoned.h" - "include/any-linux-any/linux/bpf.h" - "include/any-linux-any/linux/bpf_common.h" - "include/any-linux-any/linux/bpf_perf_event.h" - "include/any-linux-any/linux/bpfilter.h" - "include/any-linux-any/linux/bpqether.h" - "include/any-linux-any/linux/bsg.h" - "include/any-linux-any/linux/bt-bmc.h" - "include/any-linux-any/linux/btf.h" - "include/any-linux-any/linux/btrfs.h" - "include/any-linux-any/linux/btrfs_tree.h" - "include/any-linux-any/linux/byteorder/big_endian.h" - "include/any-linux-any/linux/byteorder/little_endian.h" - "include/any-linux-any/linux/caif/caif_socket.h" - "include/any-linux-any/linux/caif/if_caif.h" - "include/any-linux-any/linux/can.h" - "include/any-linux-any/linux/can/bcm.h" - "include/any-linux-any/linux/can/error.h" - "include/any-linux-any/linux/can/gw.h" - "include/any-linux-any/linux/can/netlink.h" - "include/any-linux-any/linux/can/raw.h" - "include/any-linux-any/linux/can/vxcan.h" - "include/any-linux-any/linux/capability.h" - "include/any-linux-any/linux/capi.h" - "include/any-linux-any/linux/cciss_defs.h" - "include/any-linux-any/linux/cciss_ioctl.h" - "include/any-linux-any/linux/cdrom.h" - "include/any-linux-any/linux/cec-funcs.h" - "include/any-linux-any/linux/cec.h" - "include/any-linux-any/linux/cgroupstats.h" - "include/any-linux-any/linux/chio.h" - "include/any-linux-any/linux/cifs/cifs_mount.h" - "include/any-linux-any/linux/cm4000_cs.h" - "include/any-linux-any/linux/cn_proc.h" - "include/any-linux-any/linux/coda.h" - "include/any-linux-any/linux/coda_psdev.h" - "include/any-linux-any/linux/coff.h" - "include/any-linux-any/linux/connector.h" - "include/any-linux-any/linux/const.h" - "include/any-linux-any/linux/coresight-stm.h" - "include/any-linux-any/linux/cramfs_fs.h" - "include/any-linux-any/linux/cryptouser.h" - "include/any-linux-any/linux/cuda.h" - "include/any-linux-any/linux/cyclades.h" - "include/any-linux-any/linux/cycx_cfm.h" - "include/any-linux-any/linux/dcbnl.h" - "include/any-linux-any/linux/dccp.h" - "include/any-linux-any/linux/devlink.h" - "include/any-linux-any/linux/dlm.h" - "include/any-linux-any/linux/dlm_device.h" - "include/any-linux-any/linux/dlm_netlink.h" - "include/any-linux-any/linux/dlm_plock.h" - "include/any-linux-any/linux/dlmconstants.h" - "include/any-linux-any/linux/dm-ioctl.h" - "include/any-linux-any/linux/dm-log-userspace.h" - "include/any-linux-any/linux/dma-buf.h" - "include/any-linux-any/linux/dn.h" - "include/any-linux-any/linux/dqblk_xfs.h" - "include/any-linux-any/linux/dvb/audio.h" - "include/any-linux-any/linux/dvb/ca.h" - "include/any-linux-any/linux/dvb/dmx.h" - "include/any-linux-any/linux/dvb/frontend.h" - "include/any-linux-any/linux/dvb/net.h" - "include/any-linux-any/linux/dvb/osd.h" - "include/any-linux-any/linux/dvb/version.h" - "include/any-linux-any/linux/dvb/video.h" - "include/any-linux-any/linux/edd.h" - "include/any-linux-any/linux/efs_fs_sb.h" - "include/any-linux-any/linux/elf-em.h" - "include/any-linux-any/linux/elf-fdpic.h" - "include/any-linux-any/linux/elf.h" - "include/any-linux-any/linux/elfcore.h" - "include/any-linux-any/linux/errno.h" - "include/any-linux-any/linux/errqueue.h" - "include/any-linux-any/linux/erspan.h" - "include/any-linux-any/linux/ethtool.h" - "include/any-linux-any/linux/eventpoll.h" - "include/any-linux-any/linux/fadvise.h" - "include/any-linux-any/linux/falloc.h" - "include/any-linux-any/linux/fanotify.h" - "include/any-linux-any/linux/fb.h" - "include/any-linux-any/linux/fcntl.h" - "include/any-linux-any/linux/fd.h" - "include/any-linux-any/linux/fdreg.h" - "include/any-linux-any/linux/fib_rules.h" - "include/any-linux-any/linux/fiemap.h" - "include/any-linux-any/linux/filter.h" - "include/any-linux-any/linux/firewire-cdev.h" - "include/any-linux-any/linux/firewire-constants.h" - "include/any-linux-any/linux/flat.h" - "include/any-linux-any/linux/fou.h" - "include/any-linux-any/linux/fpga-dfl.h" - "include/any-linux-any/linux/fs.h" - "include/any-linux-any/linux/fsi.h" - "include/any-linux-any/linux/fsl_hypervisor.h" - "include/any-linux-any/linux/fsmap.h" - "include/any-linux-any/linux/fuse.h" - "include/any-linux-any/linux/futex.h" - "include/any-linux-any/linux/gameport.h" - "include/any-linux-any/linux/gen_stats.h" - "include/any-linux-any/linux/genetlink.h" - "include/any-linux-any/linux/genwqe/genwqe_card.h" - "include/any-linux-any/linux/gfs2_ondisk.h" - "include/any-linux-any/linux/gigaset_dev.h" - "include/any-linux-any/linux/gpio.h" - "include/any-linux-any/linux/gsmmux.h" - "include/any-linux-any/linux/gtp.h" - "include/any-linux-any/linux/hash_info.h" - "include/any-linux-any/linux/hdlc.h" - "include/any-linux-any/linux/hdlc/ioctl.h" - "include/any-linux-any/linux/hdlcdrv.h" - "include/any-linux-any/linux/hdreg.h" - "include/any-linux-any/linux/hid.h" - "include/any-linux-any/linux/hiddev.h" - "include/any-linux-any/linux/hidraw.h" - "include/any-linux-any/linux/hpet.h" - "include/any-linux-any/linux/hsi/cs-protocol.h" - "include/any-linux-any/linux/hsi/hsi_char.h" - "include/any-linux-any/linux/hsr_netlink.h" - "include/any-linux-any/linux/hw_breakpoint.h" - "include/any-linux-any/linux/hyperv.h" - "include/any-linux-any/linux/hysdn_if.h" - "include/any-linux-any/linux/i2c-dev.h" - "include/any-linux-any/linux/i2c.h" - "include/any-linux-any/linux/i2o-dev.h" - "include/any-linux-any/linux/i8k.h" - "include/any-linux-any/linux/icmp.h" - "include/any-linux-any/linux/icmpv6.h" - "include/any-linux-any/linux/if.h" - "include/any-linux-any/linux/if_addr.h" - "include/any-linux-any/linux/if_addrlabel.h" - "include/any-linux-any/linux/if_alg.h" - "include/any-linux-any/linux/if_arcnet.h" - "include/any-linux-any/linux/if_arp.h" - "include/any-linux-any/linux/if_bonding.h" - "include/any-linux-any/linux/if_bridge.h" - "include/any-linux-any/linux/if_cablemodem.h" - "include/any-linux-any/linux/if_eql.h" - "include/any-linux-any/linux/if_ether.h" - "include/any-linux-any/linux/if_fc.h" - "include/any-linux-any/linux/if_fddi.h" - "include/any-linux-any/linux/if_frad.h" - "include/any-linux-any/linux/if_hippi.h" - "include/any-linux-any/linux/if_infiniband.h" - "include/any-linux-any/linux/if_link.h" - "include/any-linux-any/linux/if_ltalk.h" - "include/any-linux-any/linux/if_macsec.h" - "include/any-linux-any/linux/if_packet.h" - "include/any-linux-any/linux/if_phonet.h" - "include/any-linux-any/linux/if_plip.h" - "include/any-linux-any/linux/if_ppp.h" - "include/any-linux-any/linux/if_pppol2tp.h" - "include/any-linux-any/linux/if_pppox.h" - "include/any-linux-any/linux/if_slip.h" - "include/any-linux-any/linux/if_team.h" - "include/any-linux-any/linux/if_tun.h" - "include/any-linux-any/linux/if_tunnel.h" - "include/any-linux-any/linux/if_vlan.h" - "include/any-linux-any/linux/if_x25.h" - "include/any-linux-any/linux/if_xdp.h" - "include/any-linux-any/linux/ife.h" - "include/any-linux-any/linux/igmp.h" - "include/any-linux-any/linux/iio/events.h" - "include/any-linux-any/linux/iio/types.h" - "include/any-linux-any/linux/ila.h" - "include/any-linux-any/linux/in.h" - "include/any-linux-any/linux/in6.h" - "include/any-linux-any/linux/in_route.h" - "include/any-linux-any/linux/inet_diag.h" - "include/any-linux-any/linux/inotify.h" - "include/any-linux-any/linux/input-event-codes.h" - "include/any-linux-any/linux/input.h" - "include/any-linux-any/linux/ioctl.h" - "include/any-linux-any/linux/ip.h" - "include/any-linux-any/linux/ip6_tunnel.h" - "include/any-linux-any/linux/ip_vs.h" - "include/any-linux-any/linux/ipc.h" - "include/any-linux-any/linux/ipmi.h" - "include/any-linux-any/linux/ipmi_bmc.h" - "include/any-linux-any/linux/ipmi_msgdefs.h" - "include/any-linux-any/linux/ipsec.h" - "include/any-linux-any/linux/ipv6.h" - "include/any-linux-any/linux/ipv6_route.h" - "include/any-linux-any/linux/ipx.h" - "include/any-linux-any/linux/irqnr.h" - "include/any-linux-any/linux/isdn.h" - "include/any-linux-any/linux/isdn/capicmd.h" - "include/any-linux-any/linux/isdn_divertif.h" - "include/any-linux-any/linux/isdn_ppp.h" - "include/any-linux-any/linux/isdnif.h" - "include/any-linux-any/linux/iso_fs.h" - "include/any-linux-any/linux/ivtv.h" - "include/any-linux-any/linux/ivtvfb.h" - "include/any-linux-any/linux/jffs2.h" - "include/any-linux-any/linux/joystick.h" - "include/any-linux-any/linux/kcm.h" - "include/any-linux-any/linux/kcmp.h" - "include/any-linux-any/linux/kcov.h" - "include/any-linux-any/linux/kd.h" - "include/any-linux-any/linux/kdev_t.h" - "include/any-linux-any/linux/kernel-page-flags.h" - "include/any-linux-any/linux/kernel.h" - "include/any-linux-any/linux/kernelcapi.h" - "include/any-linux-any/linux/kexec.h" - "include/any-linux-any/linux/keyboard.h" - "include/any-linux-any/linux/keyctl.h" - "include/any-linux-any/linux/kfd_ioctl.h" - "include/any-linux-any/linux/kvm.h" - "include/any-linux-any/linux/kvm_para.h" - "include/any-linux-any/linux/l2tp.h" - "include/any-linux-any/linux/libc-compat.h" - "include/any-linux-any/linux/lightnvm.h" - "include/any-linux-any/linux/limits.h" - "include/any-linux-any/linux/lirc.h" - "include/any-linux-any/linux/llc.h" - "include/any-linux-any/linux/loop.h" - "include/any-linux-any/linux/lp.h" - "include/any-linux-any/linux/lwtunnel.h" - "include/any-linux-any/linux/magic.h" - "include/any-linux-any/linux/major.h" - "include/any-linux-any/linux/map_to_7segment.h" - "include/any-linux-any/linux/matroxfb.h" - "include/any-linux-any/linux/max2175.h" - "include/any-linux-any/linux/mdio.h" - "include/any-linux-any/linux/media-bus-format.h" - "include/any-linux-any/linux/media.h" - "include/any-linux-any/linux/mei.h" - "include/any-linux-any/linux/membarrier.h" - "include/any-linux-any/linux/memfd.h" - "include/any-linux-any/linux/mempolicy.h" - "include/any-linux-any/linux/meye.h" - "include/any-linux-any/linux/mic_common.h" - "include/any-linux-any/linux/mic_ioctl.h" - "include/any-linux-any/linux/mii.h" - "include/any-linux-any/linux/minix_fs.h" - "include/any-linux-any/linux/mman.h" - "include/any-linux-any/linux/mmc/ioctl.h" - "include/any-linux-any/linux/mmtimer.h" - "include/any-linux-any/linux/module.h" - "include/any-linux-any/linux/mpls.h" - "include/any-linux-any/linux/mpls_iptunnel.h" - "include/any-linux-any/linux/mqueue.h" - "include/any-linux-any/linux/mroute.h" - "include/any-linux-any/linux/mroute6.h" - "include/any-linux-any/linux/msdos_fs.h" - "include/any-linux-any/linux/msg.h" - "include/any-linux-any/linux/mtio.h" - "include/any-linux-any/linux/n_r3964.h" - "include/any-linux-any/linux/nbd-netlink.h" - "include/any-linux-any/linux/nbd.h" - "include/any-linux-any/linux/ncsi.h" - "include/any-linux-any/linux/ndctl.h" - "include/any-linux-any/linux/neighbour.h" - "include/any-linux-any/linux/net.h" - "include/any-linux-any/linux/net_dropmon.h" - "include/any-linux-any/linux/net_namespace.h" - "include/any-linux-any/linux/net_tstamp.h" - "include/any-linux-any/linux/netconf.h" - "include/any-linux-any/linux/netdevice.h" - "include/any-linux-any/linux/netfilter.h" - "include/any-linux-any/linux/netfilter/ipset/ip_set.h" - "include/any-linux-any/linux/netfilter/ipset/ip_set_bitmap.h" - "include/any-linux-any/linux/netfilter/ipset/ip_set_hash.h" - "include/any-linux-any/linux/netfilter/ipset/ip_set_list.h" - "include/any-linux-any/linux/netfilter/nf_conntrack_common.h" - "include/any-linux-any/linux/netfilter/nf_conntrack_ftp.h" - "include/any-linux-any/linux/netfilter/nf_conntrack_sctp.h" - "include/any-linux-any/linux/netfilter/nf_conntrack_tcp.h" - "include/any-linux-any/linux/netfilter/nf_conntrack_tuple_common.h" - "include/any-linux-any/linux/netfilter/nf_log.h" - "include/any-linux-any/linux/netfilter/nf_nat.h" - "include/any-linux-any/linux/netfilter/nf_tables.h" - "include/any-linux-any/linux/netfilter/nf_tables_compat.h" - "include/any-linux-any/linux/netfilter/nfnetlink.h" - "include/any-linux-any/linux/netfilter/nfnetlink_acct.h" - "include/any-linux-any/linux/netfilter/nfnetlink_compat.h" - "include/any-linux-any/linux/netfilter/nfnetlink_conntrack.h" - "include/any-linux-any/linux/netfilter/nfnetlink_cthelper.h" - "include/any-linux-any/linux/netfilter/nfnetlink_cttimeout.h" - "include/any-linux-any/linux/netfilter/nfnetlink_log.h" - "include/any-linux-any/linux/netfilter/nfnetlink_osf.h" - "include/any-linux-any/linux/netfilter/nfnetlink_queue.h" - "include/any-linux-any/linux/netfilter/x_tables.h" - "include/any-linux-any/linux/netfilter/xt_AUDIT.h" - "include/any-linux-any/linux/netfilter/xt_CHECKSUM.h" - "include/any-linux-any/linux/netfilter/xt_CLASSIFY.h" - "include/any-linux-any/linux/netfilter/xt_CONNSECMARK.h" - "include/any-linux-any/linux/netfilter/xt_CT.h" - "include/any-linux-any/linux/netfilter/xt_HMARK.h" - "include/any-linux-any/linux/netfilter/xt_IDLETIMER.h" - "include/any-linux-any/linux/netfilter/xt_LED.h" - "include/any-linux-any/linux/netfilter/xt_LOG.h" - "include/any-linux-any/linux/netfilter/xt_NFLOG.h" - "include/any-linux-any/linux/netfilter/xt_NFQUEUE.h" - "include/any-linux-any/linux/netfilter/xt_SECMARK.h" - "include/any-linux-any/linux/netfilter/xt_SYNPROXY.h" - "include/any-linux-any/linux/netfilter/xt_TCPOPTSTRIP.h" - "include/any-linux-any/linux/netfilter/xt_TEE.h" - "include/any-linux-any/linux/netfilter/xt_TPROXY.h" - "include/any-linux-any/linux/netfilter/xt_addrtype.h" - "include/any-linux-any/linux/netfilter/xt_bpf.h" - "include/any-linux-any/linux/netfilter/xt_cgroup.h" - "include/any-linux-any/linux/netfilter/xt_cluster.h" - "include/any-linux-any/linux/netfilter/xt_comment.h" - "include/any-linux-any/linux/netfilter/xt_connbytes.h" - "include/any-linux-any/linux/netfilter/xt_connlabel.h" - "include/any-linux-any/linux/netfilter/xt_connlimit.h" - "include/any-linux-any/linux/netfilter/xt_connmark.h" - "include/any-linux-any/linux/netfilter/xt_conntrack.h" - "include/any-linux-any/linux/netfilter/xt_cpu.h" - "include/any-linux-any/linux/netfilter/xt_dccp.h" - "include/any-linux-any/linux/netfilter/xt_devgroup.h" - "include/any-linux-any/linux/netfilter/xt_dscp.h" - "include/any-linux-any/linux/netfilter/xt_ecn.h" - "include/any-linux-any/linux/netfilter/xt_esp.h" - "include/any-linux-any/linux/netfilter/xt_hashlimit.h" - "include/any-linux-any/linux/netfilter/xt_helper.h" - "include/any-linux-any/linux/netfilter/xt_ipcomp.h" - "include/any-linux-any/linux/netfilter/xt_iprange.h" - "include/any-linux-any/linux/netfilter/xt_ipvs.h" - "include/any-linux-any/linux/netfilter/xt_l2tp.h" - "include/any-linux-any/linux/netfilter/xt_length.h" - "include/any-linux-any/linux/netfilter/xt_limit.h" - "include/any-linux-any/linux/netfilter/xt_mac.h" - "include/any-linux-any/linux/netfilter/xt_mark.h" - "include/any-linux-any/linux/netfilter/xt_multiport.h" - "include/any-linux-any/linux/netfilter/xt_nfacct.h" - "include/any-linux-any/linux/netfilter/xt_osf.h" - "include/any-linux-any/linux/netfilter/xt_owner.h" - "include/any-linux-any/linux/netfilter/xt_physdev.h" - "include/any-linux-any/linux/netfilter/xt_pkttype.h" - "include/any-linux-any/linux/netfilter/xt_policy.h" - "include/any-linux-any/linux/netfilter/xt_quota.h" - "include/any-linux-any/linux/netfilter/xt_rateest.h" - "include/any-linux-any/linux/netfilter/xt_realm.h" - "include/any-linux-any/linux/netfilter/xt_recent.h" - "include/any-linux-any/linux/netfilter/xt_rpfilter.h" - "include/any-linux-any/linux/netfilter/xt_sctp.h" - "include/any-linux-any/linux/netfilter/xt_set.h" - "include/any-linux-any/linux/netfilter/xt_socket.h" - "include/any-linux-any/linux/netfilter/xt_state.h" - "include/any-linux-any/linux/netfilter/xt_statistic.h" - "include/any-linux-any/linux/netfilter/xt_string.h" - "include/any-linux-any/linux/netfilter/xt_tcpmss.h" - "include/any-linux-any/linux/netfilter/xt_tcpudp.h" - "include/any-linux-any/linux/netfilter/xt_time.h" - "include/any-linux-any/linux/netfilter/xt_u32.h" - "include/any-linux-any/linux/netfilter_arp.h" - "include/any-linux-any/linux/netfilter_arp/arp_tables.h" - "include/any-linux-any/linux/netfilter_arp/arpt_mangle.h" - "include/any-linux-any/linux/netfilter_bridge.h" - "include/any-linux-any/linux/netfilter_bridge/ebt_802_3.h" - "include/any-linux-any/linux/netfilter_bridge/ebt_among.h" - "include/any-linux-any/linux/netfilter_bridge/ebt_arp.h" - "include/any-linux-any/linux/netfilter_bridge/ebt_arpreply.h" - "include/any-linux-any/linux/netfilter_bridge/ebt_ip.h" - "include/any-linux-any/linux/netfilter_bridge/ebt_ip6.h" - "include/any-linux-any/linux/netfilter_bridge/ebt_limit.h" - "include/any-linux-any/linux/netfilter_bridge/ebt_log.h" - "include/any-linux-any/linux/netfilter_bridge/ebt_mark_m.h" - "include/any-linux-any/linux/netfilter_bridge/ebt_mark_t.h" - "include/any-linux-any/linux/netfilter_bridge/ebt_nat.h" - "include/any-linux-any/linux/netfilter_bridge/ebt_nflog.h" - "include/any-linux-any/linux/netfilter_bridge/ebt_pkttype.h" - "include/any-linux-any/linux/netfilter_bridge/ebt_redirect.h" - "include/any-linux-any/linux/netfilter_bridge/ebt_stp.h" - "include/any-linux-any/linux/netfilter_bridge/ebt_vlan.h" - "include/any-linux-any/linux/netfilter_bridge/ebtables.h" - "include/any-linux-any/linux/netfilter_decnet.h" - "include/any-linux-any/linux/netfilter_ipv4.h" - "include/any-linux-any/linux/netfilter_ipv4/ip_tables.h" - "include/any-linux-any/linux/netfilter_ipv4/ipt_CLUSTERIP.h" - "include/any-linux-any/linux/netfilter_ipv4/ipt_LOG.h" - "include/any-linux-any/linux/netfilter_ipv4/ipt_REJECT.h" - "include/any-linux-any/linux/netfilter_ipv4/ipt_ah.h" - "include/any-linux-any/linux/netfilter_ipv4/ipt_ecn.h" - "include/any-linux-any/linux/netfilter_ipv4/ipt_ttl.h" - "include/any-linux-any/linux/netfilter_ipv6.h" - "include/any-linux-any/linux/netfilter_ipv6/ip6_tables.h" - "include/any-linux-any/linux/netfilter_ipv6/ip6t_LOG.h" - "include/any-linux-any/linux/netfilter_ipv6/ip6t_NPT.h" - "include/any-linux-any/linux/netfilter_ipv6/ip6t_REJECT.h" - "include/any-linux-any/linux/netfilter_ipv6/ip6t_ah.h" - "include/any-linux-any/linux/netfilter_ipv6/ip6t_frag.h" - "include/any-linux-any/linux/netfilter_ipv6/ip6t_hl.h" - "include/any-linux-any/linux/netfilter_ipv6/ip6t_ipv6header.h" - "include/any-linux-any/linux/netfilter_ipv6/ip6t_mh.h" - "include/any-linux-any/linux/netfilter_ipv6/ip6t_opts.h" - "include/any-linux-any/linux/netfilter_ipv6/ip6t_rt.h" - "include/any-linux-any/linux/netfilter_ipv6/ip6t_srh.h" - "include/any-linux-any/linux/netlink.h" - "include/any-linux-any/linux/netlink_diag.h" - "include/any-linux-any/linux/netrom.h" - "include/any-linux-any/linux/nfc.h" - "include/any-linux-any/linux/nfs.h" - "include/any-linux-any/linux/nfs2.h" - "include/any-linux-any/linux/nfs3.h" - "include/any-linux-any/linux/nfs4.h" - "include/any-linux-any/linux/nfs4_mount.h" - "include/any-linux-any/linux/nfs_fs.h" - "include/any-linux-any/linux/nfs_idmap.h" - "include/any-linux-any/linux/nfs_mount.h" - "include/any-linux-any/linux/nfsacl.h" - "include/any-linux-any/linux/nfsd/cld.h" - "include/any-linux-any/linux/nfsd/debug.h" - "include/any-linux-any/linux/nfsd/export.h" - "include/any-linux-any/linux/nfsd/nfsfh.h" - "include/any-linux-any/linux/nfsd/stats.h" - "include/any-linux-any/linux/nilfs2_api.h" - "include/any-linux-any/linux/nilfs2_ondisk.h" - "include/any-linux-any/linux/nl80211.h" - "include/any-linux-any/linux/nsfs.h" - "include/any-linux-any/linux/nubus.h" - "include/any-linux-any/linux/nvme_ioctl.h" - "include/any-linux-any/linux/nvram.h" - "include/any-linux-any/linux/omap3isp.h" - "include/any-linux-any/linux/omapfb.h" - "include/any-linux-any/linux/oom.h" - "include/any-linux-any/linux/openvswitch.h" - "include/any-linux-any/linux/packet_diag.h" - "include/any-linux-any/linux/param.h" - "include/any-linux-any/linux/parport.h" - "include/any-linux-any/linux/patchkey.h" - "include/any-linux-any/linux/pci.h" - "include/any-linux-any/linux/pci_regs.h" - "include/any-linux-any/linux/pcitest.h" - "include/any-linux-any/linux/perf_event.h" - "include/any-linux-any/linux/personality.h" - "include/any-linux-any/linux/pfkeyv2.h" - "include/any-linux-any/linux/pg.h" - "include/any-linux-any/linux/phantom.h" - "include/any-linux-any/linux/phonet.h" - "include/any-linux-any/linux/pkt_cls.h" - "include/any-linux-any/linux/pkt_sched.h" - "include/any-linux-any/linux/pktcdvd.h" - "include/any-linux-any/linux/pmu.h" - "include/any-linux-any/linux/poll.h" - "include/any-linux-any/linux/posix_acl.h" - "include/any-linux-any/linux/posix_acl_xattr.h" - "include/any-linux-any/linux/posix_types.h" - "include/any-linux-any/linux/ppdev.h" - "include/any-linux-any/linux/ppp-comp.h" - "include/any-linux-any/linux/ppp-ioctl.h" - "include/any-linux-any/linux/ppp_defs.h" - "include/any-linux-any/linux/pps.h" - "include/any-linux-any/linux/pr.h" - "include/any-linux-any/linux/prctl.h" - "include/any-linux-any/linux/psample.h" - "include/any-linux-any/linux/psci.h" - "include/any-linux-any/linux/psp-sev.h" - "include/any-linux-any/linux/ptp_clock.h" - "include/any-linux-any/linux/ptrace.h" - "include/any-linux-any/linux/qemu_fw_cfg.h" - "include/any-linux-any/linux/qnx4_fs.h" - "include/any-linux-any/linux/qnxtypes.h" - "include/any-linux-any/linux/qrtr.h" - "include/any-linux-any/linux/quota.h" - "include/any-linux-any/linux/radeonfb.h" - "include/any-linux-any/linux/raid/md_p.h" - "include/any-linux-any/linux/raid/md_u.h" - "include/any-linux-any/linux/random.h" - "include/any-linux-any/linux/raw.h" - "include/any-linux-any/linux/rds.h" - "include/any-linux-any/linux/reboot.h" - "include/any-linux-any/linux/reiserfs_fs.h" - "include/any-linux-any/linux/reiserfs_xattr.h" - "include/any-linux-any/linux/resource.h" - "include/any-linux-any/linux/rfkill.h" - "include/any-linux-any/linux/rio_cm_cdev.h" - "include/any-linux-any/linux/rio_mport_cdev.h" - "include/any-linux-any/linux/romfs_fs.h" - "include/any-linux-any/linux/rose.h" - "include/any-linux-any/linux/route.h" - "include/any-linux-any/linux/rpmsg.h" - "include/any-linux-any/linux/rseq.h" - "include/any-linux-any/linux/rtc.h" - "include/any-linux-any/linux/rtnetlink.h" - "include/any-linux-any/linux/rxrpc.h" - "include/any-linux-any/linux/scc.h" - "include/any-linux-any/linux/sched.h" - "include/any-linux-any/linux/sched/types.h" - "include/any-linux-any/linux/scif_ioctl.h" - "include/any-linux-any/linux/screen_info.h" - "include/any-linux-any/linux/sctp.h" - "include/any-linux-any/linux/sdla.h" - "include/any-linux-any/linux/seccomp.h" - "include/any-linux-any/linux/securebits.h" - "include/any-linux-any/linux/sed-opal.h" - "include/any-linux-any/linux/seg6.h" - "include/any-linux-any/linux/seg6_genl.h" - "include/any-linux-any/linux/seg6_hmac.h" - "include/any-linux-any/linux/seg6_iptunnel.h" - "include/any-linux-any/linux/seg6_local.h" - "include/any-linux-any/linux/selinux_netlink.h" - "include/any-linux-any/linux/sem.h" - "include/any-linux-any/linux/serial.h" - "include/any-linux-any/linux/serial_core.h" - "include/any-linux-any/linux/serial_reg.h" - "include/any-linux-any/linux/serio.h" - "include/any-linux-any/linux/shm.h" - "include/any-linux-any/linux/signal.h" - "include/any-linux-any/linux/signalfd.h" - "include/any-linux-any/linux/smc.h" - "include/any-linux-any/linux/smc_diag.h" - "include/any-linux-any/linux/smiapp.h" - "include/any-linux-any/linux/snmp.h" - "include/any-linux-any/linux/sock_diag.h" - "include/any-linux-any/linux/socket.h" - "include/any-linux-any/linux/sockios.h" - "include/any-linux-any/linux/sonet.h" - "include/any-linux-any/linux/sonypi.h" - "include/any-linux-any/linux/sound.h" - "include/any-linux-any/linux/soundcard.h" - "include/any-linux-any/linux/spi/spidev.h" - "include/any-linux-any/linux/stat.h" - "include/any-linux-any/linux/stddef.h" - "include/any-linux-any/linux/stm.h" - "include/any-linux-any/linux/string.h" - "include/any-linux-any/linux/sunrpc/debug.h" - "include/any-linux-any/linux/suspend_ioctls.h" - "include/any-linux-any/linux/swab.h" - "include/any-linux-any/linux/switchtec_ioctl.h" - "include/any-linux-any/linux/sync_file.h" - "include/any-linux-any/linux/synclink.h" - "include/any-linux-any/linux/sysctl.h" - "include/any-linux-any/linux/sysinfo.h" - "include/any-linux-any/linux/target_core_user.h" - "include/any-linux-any/linux/taskstats.h" - "include/any-linux-any/linux/tc_act/tc_bpf.h" - "include/any-linux-any/linux/tc_act/tc_connmark.h" - "include/any-linux-any/linux/tc_act/tc_csum.h" - "include/any-linux-any/linux/tc_act/tc_defact.h" - "include/any-linux-any/linux/tc_act/tc_gact.h" - "include/any-linux-any/linux/tc_act/tc_ife.h" - "include/any-linux-any/linux/tc_act/tc_ipt.h" - "include/any-linux-any/linux/tc_act/tc_mirred.h" - "include/any-linux-any/linux/tc_act/tc_nat.h" - "include/any-linux-any/linux/tc_act/tc_pedit.h" - "include/any-linux-any/linux/tc_act/tc_sample.h" - "include/any-linux-any/linux/tc_act/tc_skbedit.h" - "include/any-linux-any/linux/tc_act/tc_skbmod.h" - "include/any-linux-any/linux/tc_act/tc_tunnel_key.h" - "include/any-linux-any/linux/tc_act/tc_vlan.h" - "include/any-linux-any/linux/tc_ematch/tc_em_cmp.h" - "include/any-linux-any/linux/tc_ematch/tc_em_ipt.h" - "include/any-linux-any/linux/tc_ematch/tc_em_meta.h" - "include/any-linux-any/linux/tc_ematch/tc_em_nbyte.h" - "include/any-linux-any/linux/tc_ematch/tc_em_text.h" - "include/any-linux-any/linux/tcp.h" - "include/any-linux-any/linux/tcp_metrics.h" - "include/any-linux-any/linux/tee.h" - "include/any-linux-any/linux/termios.h" - "include/any-linux-any/linux/thermal.h" - "include/any-linux-any/linux/time.h" - "include/any-linux-any/linux/timerfd.h" - "include/any-linux-any/linux/times.h" - "include/any-linux-any/linux/timex.h" - "include/any-linux-any/linux/tiocl.h" - "include/any-linux-any/linux/tipc.h" - "include/any-linux-any/linux/tipc_config.h" - "include/any-linux-any/linux/tipc_netlink.h" - "include/any-linux-any/linux/tipc_sockets_diag.h" - "include/any-linux-any/linux/tls.h" - "include/any-linux-any/linux/toshiba.h" - "include/any-linux-any/linux/tty.h" - "include/any-linux-any/linux/tty_flags.h" - "include/any-linux-any/linux/types.h" - "include/any-linux-any/linux/udf_fs_i.h" - "include/any-linux-any/linux/udp.h" - "include/any-linux-any/linux/uhid.h" - "include/any-linux-any/linux/uinput.h" - "include/any-linux-any/linux/uio.h" - "include/any-linux-any/linux/uleds.h" - "include/any-linux-any/linux/ultrasound.h" - "include/any-linux-any/linux/un.h" - "include/any-linux-any/linux/unistd.h" - "include/any-linux-any/linux/unix_diag.h" - "include/any-linux-any/linux/usb/audio.h" - "include/any-linux-any/linux/usb/cdc-wdm.h" - "include/any-linux-any/linux/usb/cdc.h" - "include/any-linux-any/linux/usb/ch11.h" - "include/any-linux-any/linux/usb/ch9.h" - "include/any-linux-any/linux/usb/charger.h" - "include/any-linux-any/linux/usb/functionfs.h" - "include/any-linux-any/linux/usb/g_printer.h" - "include/any-linux-any/linux/usb/g_uvc.h" - "include/any-linux-any/linux/usb/gadgetfs.h" - "include/any-linux-any/linux/usb/midi.h" - "include/any-linux-any/linux/usb/tmc.h" - "include/any-linux-any/linux/usb/video.h" - "include/any-linux-any/linux/usbdevice_fs.h" - "include/any-linux-any/linux/usbip.h" - "include/any-linux-any/linux/userfaultfd.h" - "include/any-linux-any/linux/userio.h" - "include/any-linux-any/linux/utime.h" - "include/any-linux-any/linux/utsname.h" - "include/any-linux-any/linux/uuid.h" - "include/any-linux-any/linux/uvcvideo.h" - "include/any-linux-any/linux/v4l2-common.h" - "include/any-linux-any/linux/v4l2-controls.h" - "include/any-linux-any/linux/v4l2-dv-timings.h" - "include/any-linux-any/linux/v4l2-mediabus.h" - "include/any-linux-any/linux/v4l2-subdev.h" - "include/any-linux-any/linux/vbox_err.h" - "include/any-linux-any/linux/vbox_vmmdev_types.h" - "include/any-linux-any/linux/vboxguest.h" - "include/any-linux-any/linux/version.h" - "include/any-linux-any/linux/veth.h" - "include/any-linux-any/linux/vfio.h" - "include/any-linux-any/linux/vfio_ccw.h" - "include/any-linux-any/linux/vhost.h" - "include/any-linux-any/linux/videodev2.h" - "include/any-linux-any/linux/virtio_9p.h" - "include/any-linux-any/linux/virtio_balloon.h" - "include/any-linux-any/linux/virtio_blk.h" - "include/any-linux-any/linux/virtio_config.h" - "include/any-linux-any/linux/virtio_console.h" - "include/any-linux-any/linux/virtio_crypto.h" - "include/any-linux-any/linux/virtio_gpu.h" - "include/any-linux-any/linux/virtio_ids.h" - "include/any-linux-any/linux/virtio_input.h" - "include/any-linux-any/linux/virtio_mmio.h" - "include/any-linux-any/linux/virtio_net.h" - "include/any-linux-any/linux/virtio_pci.h" - "include/any-linux-any/linux/virtio_ring.h" - "include/any-linux-any/linux/virtio_rng.h" - "include/any-linux-any/linux/virtio_scsi.h" - "include/any-linux-any/linux/virtio_types.h" - "include/any-linux-any/linux/virtio_vsock.h" - "include/any-linux-any/linux/vm_sockets.h" - "include/any-linux-any/linux/vm_sockets_diag.h" - "include/any-linux-any/linux/vmcore.h" - "include/any-linux-any/linux/vsockmon.h" - "include/any-linux-any/linux/vt.h" - "include/any-linux-any/linux/vtpm_proxy.h" - "include/any-linux-any/linux/wait.h" - "include/any-linux-any/linux/wanrouter.h" - "include/any-linux-any/linux/watchdog.h" - "include/any-linux-any/linux/wimax.h" - "include/any-linux-any/linux/wimax/i2400m.h" - "include/any-linux-any/linux/wireless.h" - "include/any-linux-any/linux/wmi.h" - "include/any-linux-any/linux/x25.h" - "include/any-linux-any/linux/xattr.h" - "include/any-linux-any/linux/xfrm.h" - "include/any-linux-any/linux/xilinx-v4l2-controls.h" - "include/any-linux-any/linux/zorro.h" - "include/any-linux-any/linux/zorro_ids.h" - "include/any-windows-any/GL/gl.h" - "include/any-windows-any/GL/glaux.h" - "include/any-windows-any/GL/glcorearb.h" - "include/any-windows-any/GL/glext.h" - "include/any-windows-any/GL/glu.h" - "include/any-windows-any/GL/glxext.h" - "include/any-windows-any/GL/wglext.h" - "include/any-windows-any/_bsd_types.h" - "include/any-windows-any/_cygwin.h" - "include/any-windows-any/_dbdao.h" - "include/any-windows-any/_mingw.h" - "include/any-windows-any/_mingw_dxhelper.h" - "include/any-windows-any/_mingw_mac.h" - "include/any-windows-any/_mingw_off_t.h" - "include/any-windows-any/_mingw_print_pop.h" - "include/any-windows-any/_mingw_print_push.h" - "include/any-windows-any/_mingw_secapi.h" - "include/any-windows-any/_mingw_stat64.h" - "include/any-windows-any/_mingw_stdarg.h" - "include/any-windows-any/_mingw_unicode.h" - "include/any-windows-any/_timeval.h" - "include/any-windows-any/accctrl.h" - "include/any-windows-any/aclapi.h" - "include/any-windows-any/aclui.h" - "include/any-windows-any/activation.h" - "include/any-windows-any/activaut.h" - "include/any-windows-any/activdbg.h" - "include/any-windows-any/activdbg100.h" - "include/any-windows-any/activecf.h" - "include/any-windows-any/activeds.h" - "include/any-windows-any/activprof.h" - "include/any-windows-any/activscp.h" - "include/any-windows-any/adc.h" - "include/any-windows-any/adhoc.h" - "include/any-windows-any/admex.h" - "include/any-windows-any/adoctint.h" - "include/any-windows-any/adodef.h" - "include/any-windows-any/adogpool.h" - "include/any-windows-any/adogpool_backcompat.h" - "include/any-windows-any/adoguids.h" - "include/any-windows-any/adoid.h" - "include/any-windows-any/adoint.h" - "include/any-windows-any/adoint_backcompat.h" - "include/any-windows-any/adojet.h" - "include/any-windows-any/adomd.h" - "include/any-windows-any/adptif.h" - "include/any-windows-any/adsdb.h" - "include/any-windows-any/adserr.h" - "include/any-windows-any/adshlp.h" - "include/any-windows-any/adsiid.h" - "include/any-windows-any/adsnms.h" - "include/any-windows-any/adsprop.h" - "include/any-windows-any/adssts.h" - "include/any-windows-any/adtgen.h" - "include/any-windows-any/advpub.h" - "include/any-windows-any/af_irda.h" - "include/any-windows-any/afxres.h" - "include/any-windows-any/agtctl.h" - "include/any-windows-any/agterr.h" - "include/any-windows-any/agtsvr.h" - "include/any-windows-any/alg.h" - "include/any-windows-any/alink.h" - "include/any-windows-any/amaudio.h" - "include/any-windows-any/amstream.h" - "include/any-windows-any/amstream.idl" - "include/any-windows-any/amvideo.h" - "include/any-windows-any/amvideo.idl" - "include/any-windows-any/apdevpkey.h" - "include/any-windows-any/apiset.h" - "include/any-windows-any/apisetcconv.h" - "include/any-windows-any/appmgmt.h" - "include/any-windows-any/aqadmtyp.h" - "include/any-windows-any/asptlb.h" - "include/any-windows-any/assert.h" - "include/any-windows-any/atacct.h" - "include/any-windows-any/atalkwsh.h" - "include/any-windows-any/atsmedia.h" - "include/any-windows-any/audevcod.h" - "include/any-windows-any/audioapotypes.h" - "include/any-windows-any/audioclient.h" - "include/any-windows-any/audioendpoints.h" - "include/any-windows-any/audioengineendpoint.h" - "include/any-windows-any/audiopolicy.h" - "include/any-windows-any/audiosessiontypes.h" - "include/any-windows-any/austream.h" - "include/any-windows-any/austream.idl" - "include/any-windows-any/authif.h" - "include/any-windows-any/authz.h" - "include/any-windows-any/aux_ulib.h" - "include/any-windows-any/avifmt.h" - "include/any-windows-any/aviriff.h" - "include/any-windows-any/avrfsdk.h" - "include/any-windows-any/avrt.h" - "include/any-windows-any/axextendenums.h" - "include/any-windows-any/azroles.h" - "include/any-windows-any/basetsd.h" - "include/any-windows-any/basetyps.h" - "include/any-windows-any/batclass.h" - "include/any-windows-any/bcrypt.h" - "include/any-windows-any/bdaiface.h" - "include/any-windows-any/bdaiface_enums.h" - "include/any-windows-any/bdamedia.h" - "include/any-windows-any/bdatypes.h" - "include/any-windows-any/bemapiset.h" - "include/any-windows-any/bh.h" - "include/any-windows-any/bidispl.h" - "include/any-windows-any/bits.h" - "include/any-windows-any/bits1_5.h" - "include/any-windows-any/bits2_0.h" - "include/any-windows-any/bitscfg.h" - "include/any-windows-any/bitsmsg.h" - "include/any-windows-any/blberr.h" - "include/any-windows-any/bluetoothapis.h" - "include/any-windows-any/bthdef.h" - "include/any-windows-any/bthsdpdef.h" - "include/any-windows-any/bugcodes.h" - "include/any-windows-any/callobj.h" - "include/any-windows-any/cardmod.h" - "include/any-windows-any/casetup.h" - "include/any-windows-any/cchannel.h" - "include/any-windows-any/cderr.h" - "include/any-windows-any/cdoex.h" - "include/any-windows-any/cdoexerr.h" - "include/any-windows-any/cdoexm.h" - "include/any-windows-any/cdoexstr.h" - "include/any-windows-any/cdonts.h" - "include/any-windows-any/cdosys.h" - "include/any-windows-any/cdosyserr.h" - "include/any-windows-any/cdosysstr.h" - "include/any-windows-any/celib.h" - "include/any-windows-any/certadm.h" - "include/any-windows-any/certbase.h" - "include/any-windows-any/certbcli.h" - "include/any-windows-any/certcli.h" - "include/any-windows-any/certenc.h" - "include/any-windows-any/certenroll.h" - "include/any-windows-any/certexit.h" - "include/any-windows-any/certif.h" - "include/any-windows-any/certmod.h" - "include/any-windows-any/certpol.h" - "include/any-windows-any/certreqd.h" - "include/any-windows-any/certsrv.h" - "include/any-windows-any/certview.h" - "include/any-windows-any/cfg.h" - "include/any-windows-any/cfgmgr32.h" - "include/any-windows-any/cguid.h" - "include/any-windows-any/chanmgr.h" - "include/any-windows-any/cierror.h" - "include/any-windows-any/clfs.h" - "include/any-windows-any/clfsmgmt.h" - "include/any-windows-any/clfsmgmtw32.h" - "include/any-windows-any/clfsw32.h" - "include/any-windows-any/cluadmex.h" - "include/any-windows-any/clusapi.h" - "include/any-windows-any/cluscfgguids.h" - "include/any-windows-any/cluscfgserver.h" - "include/any-windows-any/cluscfgwizard.h" - "include/any-windows-any/cmdtree.h" - "include/any-windows-any/cmnquery.h" - "include/any-windows-any/codecapi.h" - "include/any-windows-any/color.dlg" - "include/any-windows-any/colordlg.h" - "include/any-windows-any/comadmin.h" - "include/any-windows-any/combaseapi.h" - "include/any-windows-any/comcat.h" - "include/any-windows-any/comdef.h" - "include/any-windows-any/comdefsp.h" - "include/any-windows-any/comip.h" - "include/any-windows-any/comlite.h" - "include/any-windows-any/commapi.h" - "include/any-windows-any/commctrl.h" - "include/any-windows-any/commctrl.rh" - "include/any-windows-any/commdlg.h" - "include/any-windows-any/common.ver" - "include/any-windows-any/commoncontrols.h" - "include/any-windows-any/complex.h" - "include/any-windows-any/compobj.h" - "include/any-windows-any/compressapi.h" - "include/any-windows-any/compstui.h" - "include/any-windows-any/comsvcs.h" - "include/any-windows-any/comutil.h" - "include/any-windows-any/confpriv.h" - "include/any-windows-any/conio.h" - "include/any-windows-any/control.h" - "include/any-windows-any/cor.h" - "include/any-windows-any/corecrt_startup.h" - "include/any-windows-any/corerror.h" - "include/any-windows-any/corhdr.h" - "include/any-windows-any/correg.h" - "include/any-windows-any/cpl.h" - "include/any-windows-any/cplext.h" - "include/any-windows-any/credssp.h" - "include/any-windows-any/crtdbg.h" - "include/any-windows-any/crtdefs.h" - "include/any-windows-any/cryptuiapi.h" - "include/any-windows-any/cryptxml.h" - "include/any-windows-any/cscapi.h" - "include/any-windows-any/cscobj.h" - "include/any-windows-any/ctfutb.h" - "include/any-windows-any/ctxtcall.h" - "include/any-windows-any/ctype.h" - "include/any-windows-any/custcntl.h" - "include/any-windows-any/d2d1.h" - "include/any-windows-any/d2d1_1.h" - "include/any-windows-any/d2d1_1helper.h" - "include/any-windows-any/d2d1effectauthor.h" - "include/any-windows-any/d2d1effecthelpers.h" - "include/any-windows-any/d2d1effects.h" - "include/any-windows-any/d2d1helper.h" - "include/any-windows-any/d2dbasetypes.h" - "include/any-windows-any/d2derr.h" - "include/any-windows-any/d3d.h" - "include/any-windows-any/d3d10.h" - "include/any-windows-any/d3d10.idl" - "include/any-windows-any/d3d10_1.h" - "include/any-windows-any/d3d10_1.idl" - "include/any-windows-any/d3d10_1shader.h" - "include/any-windows-any/d3d10effect.h" - "include/any-windows-any/d3d10misc.h" - "include/any-windows-any/d3d10sdklayers.h" - "include/any-windows-any/d3d10sdklayers.idl" - "include/any-windows-any/d3d10shader.h" - "include/any-windows-any/d3d11.h" - "include/any-windows-any/d3d11.idl" - "include/any-windows-any/d3d11_1.h" - "include/any-windows-any/d3d11_1.idl" - "include/any-windows-any/d3d11_2.h" - "include/any-windows-any/d3d11_2.idl" - "include/any-windows-any/d3d11_3.h" - "include/any-windows-any/d3d11_3.idl" - "include/any-windows-any/d3d11_4.h" - "include/any-windows-any/d3d11_4.idl" - "include/any-windows-any/d3d11sdklayers.h" - "include/any-windows-any/d3d11sdklayers.idl" - "include/any-windows-any/d3d11shader.h" - "include/any-windows-any/d3d8.h" - "include/any-windows-any/d3d8caps.h" - "include/any-windows-any/d3d8types.h" - "include/any-windows-any/d3d9.h" - "include/any-windows-any/d3d9caps.h" - "include/any-windows-any/d3d9types.h" - "include/any-windows-any/d3dcaps.h" - "include/any-windows-any/d3dcommon.h" - "include/any-windows-any/d3dcommon.idl" - "include/any-windows-any/d3dcompiler.h" - "include/any-windows-any/d3dhal.h" - "include/any-windows-any/d3drm.h" - "include/any-windows-any/d3drmdef.h" - "include/any-windows-any/d3drmobj.h" - "include/any-windows-any/d3dtypes.h" - "include/any-windows-any/d3dvec.inl" - "include/any-windows-any/d3dx9.h" - "include/any-windows-any/d3dx9anim.h" - "include/any-windows-any/d3dx9core.h" - "include/any-windows-any/d3dx9effect.h" - "include/any-windows-any/d3dx9math.h" - "include/any-windows-any/d3dx9math.inl" - "include/any-windows-any/d3dx9mesh.h" - "include/any-windows-any/d3dx9shader.h" - "include/any-windows-any/d3dx9shape.h" - "include/any-windows-any/d3dx9tex.h" - "include/any-windows-any/d3dx9xof.h" - "include/any-windows-any/daogetrw.h" - "include/any-windows-any/datapath.h" - "include/any-windows-any/datetimeapi.h" - "include/any-windows-any/davclnt.h" - "include/any-windows-any/dbdaoerr.h" - "include/any-windows-any/dbdaoid.h" - "include/any-windows-any/dbdaoint.h" - "include/any-windows-any/dbgautoattach.h" - "include/any-windows-any/dbgeng.h" - "include/any-windows-any/dbghelp.h" - "include/any-windows-any/dbgprop.h" - "include/any-windows-any/dbt.h" - "include/any-windows-any/dciddi.h" - "include/any-windows-any/dciman.h" - "include/any-windows-any/dcommon.h" - "include/any-windows-any/dcomp.h" - "include/any-windows-any/dcompanimation.h" - "include/any-windows-any/dcomptypes.h" - "include/any-windows-any/dde.h" - "include/any-windows-any/dde.rh" - "include/any-windows-any/ddeml.h" - "include/any-windows-any/ddk/acpiioct.h" - "include/any-windows-any/ddk/afilter.h" - "include/any-windows-any/ddk/amtvuids.h" - "include/any-windows-any/ddk/atm.h" - "include/any-windows-any/ddk/bdasup.h" - "include/any-windows-any/ddk/classpnp.h" - "include/any-windows-any/ddk/csq.h" - "include/any-windows-any/ddk/d3dhal.h" - "include/any-windows-any/ddk/d3dhalex.h" - "include/any-windows-any/ddk/d4drvif.h" - "include/any-windows-any/ddk/d4iface.h" - "include/any-windows-any/ddk/dderror.h" - "include/any-windows-any/ddk/dmusicks.h" - "include/any-windows-any/ddk/drivinit.h" - "include/any-windows-any/ddk/drmk.h" - "include/any-windows-any/ddk/dxapi.h" - "include/any-windows-any/ddk/fltsafe.h" - "include/any-windows-any/ddk/hidclass.h" - "include/any-windows-any/ddk/hubbusif.h" - "include/any-windows-any/ddk/ide.h" - "include/any-windows-any/ddk/ioaccess.h" - "include/any-windows-any/ddk/kbdmou.h" - "include/any-windows-any/ddk/mcd.h" - "include/any-windows-any/ddk/mce.h" - "include/any-windows-any/ddk/miniport.h" - "include/any-windows-any/ddk/minitape.h" - "include/any-windows-any/ddk/mountdev.h" - "include/any-windows-any/ddk/mountmgr.h" - "include/any-windows-any/ddk/msports.h" - "include/any-windows-any/ddk/ndis.h" - "include/any-windows-any/ddk/ndisguid.h" - "include/any-windows-any/ddk/ndistapi.h" - "include/any-windows-any/ddk/ndiswan.h" - "include/any-windows-any/ddk/netpnp.h" - "include/any-windows-any/ddk/ntagp.h" - "include/any-windows-any/ddk/ntddk.h" - "include/any-windows-any/ddk/ntddpcm.h" - "include/any-windows-any/ddk/ntddsnd.h" - "include/any-windows-any/ddk/ntifs.h" - "include/any-windows-any/ddk/ntimage.h" - "include/any-windows-any/ddk/ntnls.h" - "include/any-windows-any/ddk/ntpoapi.h" - "include/any-windows-any/ddk/ntstrsafe.h" - "include/any-windows-any/ddk/oprghdlr.h" - "include/any-windows-any/ddk/parallel.h" - "include/any-windows-any/ddk/pfhook.h" - "include/any-windows-any/ddk/poclass.h" - "include/any-windows-any/ddk/portcls.h" - "include/any-windows-any/ddk/punknown.h" - "include/any-windows-any/ddk/scsi.h" - "include/any-windows-any/ddk/scsiscan.h" - "include/any-windows-any/ddk/scsiwmi.h" - "include/any-windows-any/ddk/smbus.h" - "include/any-windows-any/ddk/srb.h" - "include/any-windows-any/ddk/stdunk.h" - "include/any-windows-any/ddk/storport.h" - "include/any-windows-any/ddk/strmini.h" - "include/any-windows-any/ddk/swenum.h" - "include/any-windows-any/ddk/tdikrnl.h" - "include/any-windows-any/ddk/tdistat.h" - "include/any-windows-any/ddk/upssvc.h" - "include/any-windows-any/ddk/usbbusif.h" - "include/any-windows-any/ddk/usbdlib.h" - "include/any-windows-any/ddk/usbdrivr.h" - "include/any-windows-any/ddk/usbkern.h" - "include/any-windows-any/ddk/usbprint.h" - "include/any-windows-any/ddk/usbprotocoldefs.h" - "include/any-windows-any/ddk/usbscan.h" - "include/any-windows-any/ddk/usbstorioctl.h" - "include/any-windows-any/ddk/video.h" - "include/any-windows-any/ddk/videoagp.h" - "include/any-windows-any/ddk/wdm.h" - "include/any-windows-any/ddk/wdmguid.h" - "include/any-windows-any/ddk/wmidata.h" - "include/any-windows-any/ddk/wmilib.h" - "include/any-windows-any/ddk/ws2san.h" - "include/any-windows-any/ddk/xfilter.h" - "include/any-windows-any/ddraw.h" - "include/any-windows-any/ddrawgdi.h" - "include/any-windows-any/ddrawi.h" - "include/any-windows-any/ddstream.h" - "include/any-windows-any/ddstream.idl" - "include/any-windows-any/debugapi.h" - "include/any-windows-any/delayimp.h" - "include/any-windows-any/devguid.h" - "include/any-windows-any/devicetopology.h" - "include/any-windows-any/devioctl.h" - "include/any-windows-any/devpkey.h" - "include/any-windows-any/devpropdef.h" - "include/any-windows-any/dhcpcsdk.h" - "include/any-windows-any/dhcpsapi.h" - "include/any-windows-any/dhcpssdk.h" - "include/any-windows-any/dhcpv6csdk.h" - "include/any-windows-any/dhtmldid.h" - "include/any-windows-any/dhtmled.h" - "include/any-windows-any/dhtmliid.h" - "include/any-windows-any/digitalv.h" - "include/any-windows-any/dimm.h" - "include/any-windows-any/dinput.h" - "include/any-windows-any/dir.h" - "include/any-windows-any/direct.h" - "include/any-windows-any/dirent.h" - "include/any-windows-any/diskguid.h" - "include/any-windows-any/dispatch.h" - "include/any-windows-any/dispdib.h" - "include/any-windows-any/dispex.h" - "include/any-windows-any/dlcapi.h" - "include/any-windows-any/dlgs.h" - "include/any-windows-any/dls1.h" - "include/any-windows-any/dls2.h" - "include/any-windows-any/dmdls.h" - "include/any-windows-any/dmemmgr.h" - "include/any-windows-any/dmerror.h" - "include/any-windows-any/dmksctrl.h" - "include/any-windows-any/dmo.h" - "include/any-windows-any/dmodshow.h" - "include/any-windows-any/dmodshow.idl" - "include/any-windows-any/dmoreg.h" - "include/any-windows-any/dmort.h" - "include/any-windows-any/dmplugin.h" - "include/any-windows-any/dmusbuff.h" - "include/any-windows-any/dmusicc.h" - "include/any-windows-any/dmusicf.h" - "include/any-windows-any/dmusici.h" - "include/any-windows-any/dmusics.h" - "include/any-windows-any/docobj.h" - "include/any-windows-any/docobjectservice.h" - "include/any-windows-any/documenttarget.h" - "include/any-windows-any/domdid.h" - "include/any-windows-any/dos.h" - "include/any-windows-any/downloadmgr.h" - "include/any-windows-any/dpaddr.h" - "include/any-windows-any/dpapi.h" - "include/any-windows-any/dpfilter.h" - "include/any-windows-any/dplay.h" - "include/any-windows-any/dplay8.h" - "include/any-windows-any/dplobby.h" - "include/any-windows-any/dplobby8.h" - "include/any-windows-any/dpnathlp.h" - "include/any-windows-any/driverspecs.h" - "include/any-windows-any/drmexternals.h" - "include/any-windows-any/dsadmin.h" - "include/any-windows-any/dsclient.h" - "include/any-windows-any/dsconf.h" - "include/any-windows-any/dsdriver.h" - "include/any-windows-any/dsgetdc.h" - "include/any-windows-any/dshow.h" - "include/any-windows-any/dskquota.h" - "include/any-windows-any/dsound.h" - "include/any-windows-any/dsquery.h" - "include/any-windows-any/dsrole.h" - "include/any-windows-any/dssec.h" - "include/any-windows-any/dtchelp.h" - "include/any-windows-any/dvbsiparser.h" - "include/any-windows-any/dvdevcod.h" - "include/any-windows-any/dvdmedia.h" - "include/any-windows-any/dvec.h" - "include/any-windows-any/dvobj.h" - "include/any-windows-any/dwmapi.h" - "include/any-windows-any/dwrite.h" - "include/any-windows-any/dwrite_1.h" - "include/any-windows-any/dwrite_2.h" - "include/any-windows-any/dwrite_3.h" - "include/any-windows-any/dxdiag.h" - "include/any-windows-any/dxerr8.h" - "include/any-windows-any/dxerr9.h" - "include/any-windows-any/dxfile.h" - "include/any-windows-any/dxgi.h" - "include/any-windows-any/dxgi.idl" - "include/any-windows-any/dxgi1_2.h" - "include/any-windows-any/dxgi1_2.idl" - "include/any-windows-any/dxgi1_3.h" - "include/any-windows-any/dxgi1_3.idl" - "include/any-windows-any/dxgi1_4.h" - "include/any-windows-any/dxgi1_4.idl" - "include/any-windows-any/dxgi1_5.h" - "include/any-windows-any/dxgi1_5.idl" - "include/any-windows-any/dxgi1_6.h" - "include/any-windows-any/dxgi1_6.idl" - "include/any-windows-any/dxgicommon.h" - "include/any-windows-any/dxgicommon.idl" - "include/any-windows-any/dxgiformat.h" - "include/any-windows-any/dxgiformat.idl" - "include/any-windows-any/dxgitype.h" - "include/any-windows-any/dxgitype.idl" - "include/any-windows-any/dxtmpl.h" - "include/any-windows-any/dxva.h" - "include/any-windows-any/dxva2api.h" - "include/any-windows-any/dxvahd.h" - "include/any-windows-any/eapauthenticatoractiondefine.h" - "include/any-windows-any/eapauthenticatortypes.h" - "include/any-windows-any/eaphosterror.h" - "include/any-windows-any/eaphostpeerconfigapis.h" - "include/any-windows-any/eaphostpeertypes.h" - "include/any-windows-any/eapmethodauthenticatorapis.h" - "include/any-windows-any/eapmethodpeerapis.h" - "include/any-windows-any/eapmethodtypes.h" - "include/any-windows-any/eappapis.h" - "include/any-windows-any/eaptypes.h" - "include/any-windows-any/edevdefs.h" - "include/any-windows-any/eh.h" - "include/any-windows-any/ehstorapi.h" - "include/any-windows-any/elscore.h" - "include/any-windows-any/emostore.h" - "include/any-windows-any/emptyvc.h" - "include/any-windows-any/endpointvolume.h" - "include/any-windows-any/errhandlingapi.h" - "include/any-windows-any/errno.h" - "include/any-windows-any/error.h" - "include/any-windows-any/errorrep.h" - "include/any-windows-any/errors.h" - "include/any-windows-any/esent.h" - "include/any-windows-any/evcode.h" - "include/any-windows-any/evcoll.h" - "include/any-windows-any/eventsys.h" - "include/any-windows-any/evntcons.h" - "include/any-windows-any/evntprov.h" - "include/any-windows-any/evntrace.h" - "include/any-windows-any/evr.h" - "include/any-windows-any/evr9.h" - "include/any-windows-any/exchform.h" - "include/any-windows-any/excpt.h" - "include/any-windows-any/exdisp.h" - "include/any-windows-any/exdispid.h" - "include/any-windows-any/fci.h" - "include/any-windows-any/fcntl.h" - "include/any-windows-any/fdi.h" - "include/any-windows-any/fenv.h" - "include/any-windows-any/fibersapi.h" - "include/any-windows-any/fileapi.h" - "include/any-windows-any/fileextd.h" - "include/any-windows-any/filehc.h" - "include/any-windows-any/fileopen.dlg" - "include/any-windows-any/filter.h" - "include/any-windows-any/filterr.h" - "include/any-windows-any/findtext.dlg" - "include/any-windows-any/float.h" - "include/any-windows-any/fltdefs.h" - "include/any-windows-any/fltuser.h" - "include/any-windows-any/fltuserstructures.h" - "include/any-windows-any/fltwinerror.h" - "include/any-windows-any/font.dlg" - "include/any-windows-any/fpieee.h" - "include/any-windows-any/fsrm.h" - "include/any-windows-any/fsrmenums.h" - "include/any-windows-any/fsrmerr.h" - "include/any-windows-any/fsrmpipeline.h" - "include/any-windows-any/fsrmquota.h" - "include/any-windows-any/fsrmreports.h" - "include/any-windows-any/fsrmscreen.h" - "include/any-windows-any/ftsiface.h" - "include/any-windows-any/ftw.h" - "include/any-windows-any/functiondiscoveryapi.h" - "include/any-windows-any/functiondiscoverycategories.h" - "include/any-windows-any/functiondiscoveryconstraints.h" - "include/any-windows-any/functiondiscoverykeys.h" - "include/any-windows-any/functiondiscoverykeys_devpkey.h" - "include/any-windows-any/functiondiscoverynotification.h" - "include/any-windows-any/fusion.h" - "include/any-windows-any/fvec.h" - "include/any-windows-any/fwpmtypes.h" - "include/any-windows-any/fwpmu.h" - "include/any-windows-any/fwptypes.h" - "include/any-windows-any/gb18030.h" - "include/any-windows-any/gdiplus.h" - "include/any-windows-any/gdiplus/gdiplus.h" - "include/any-windows-any/gdiplus/gdiplusbase.h" - "include/any-windows-any/gdiplus/gdiplusbrush.h" - "include/any-windows-any/gdiplus/gdipluscolor.h" - "include/any-windows-any/gdiplus/gdipluscolormatrix.h" - "include/any-windows-any/gdiplus/gdipluseffects.h" - "include/any-windows-any/gdiplus/gdiplusenums.h" - "include/any-windows-any/gdiplus/gdiplusflat.h" - "include/any-windows-any/gdiplus/gdiplusgpstubs.h" - "include/any-windows-any/gdiplus/gdiplusgraphics.h" - "include/any-windows-any/gdiplus/gdiplusheaders.h" - "include/any-windows-any/gdiplus/gdiplusimageattributes.h" - "include/any-windows-any/gdiplus/gdiplusimagecodec.h" - "include/any-windows-any/gdiplus/gdiplusimaging.h" - "include/any-windows-any/gdiplus/gdiplusimpl.h" - "include/any-windows-any/gdiplus/gdiplusinit.h" - "include/any-windows-any/gdiplus/gdipluslinecaps.h" - "include/any-windows-any/gdiplus/gdiplusmatrix.h" - "include/any-windows-any/gdiplus/gdiplusmem.h" - "include/any-windows-any/gdiplus/gdiplusmetafile.h" - "include/any-windows-any/gdiplus/gdiplusmetaheader.h" - "include/any-windows-any/gdiplus/gdipluspath.h" - "include/any-windows-any/gdiplus/gdipluspen.h" - "include/any-windows-any/gdiplus/gdipluspixelformats.h" - "include/any-windows-any/gdiplus/gdiplusstringformat.h" - "include/any-windows-any/gdiplus/gdiplustypes.h" - "include/any-windows-any/getopt.h" - "include/any-windows-any/gpedit.h" - "include/any-windows-any/gpio.h" - "include/any-windows-any/gpmgmt.h" - "include/any-windows-any/guiddef.h" - "include/any-windows-any/h323priv.h" - "include/any-windows-any/handleapi.h" - "include/any-windows-any/heapapi.h" - "include/any-windows-any/hidclass.h" - "include/any-windows-any/hidpi.h" - "include/any-windows-any/hidsdi.h" - "include/any-windows-any/hidusage.h" - "include/any-windows-any/highlevelmonitorconfigurationapi.h" - "include/any-windows-any/hlguids.h" - "include/any-windows-any/hliface.h" - "include/any-windows-any/hlink.h" - "include/any-windows-any/hostinfo.h" - "include/any-windows-any/hstring.h" - "include/any-windows-any/htiface.h" - "include/any-windows-any/htiframe.h" - "include/any-windows-any/htmlguid.h" - "include/any-windows-any/htmlhelp.h" - "include/any-windows-any/http.h" - "include/any-windows-any/httpext.h" - "include/any-windows-any/httpfilt.h" - "include/any-windows-any/httprequestid.h" - "include/any-windows-any/i_cryptasn1tls.h" - "include/any-windows-any/ia64reg.h" - "include/any-windows-any/iaccess.h" - "include/any-windows-any/iadmext.h" - "include/any-windows-any/iadmw.h" - "include/any-windows-any/iads.h" - "include/any-windows-any/icftypes.h" - "include/any-windows-any/icm.h" - "include/any-windows-any/icmpapi.h" - "include/any-windows-any/icmui.dlg" - "include/any-windows-any/icodecapi.h" - "include/any-windows-any/icrsint.h" - "include/any-windows-any/identitycommon.h" - "include/any-windows-any/identitystore.h" - "include/any-windows-any/idf.h" - "include/any-windows-any/idispids.h" - "include/any-windows-any/iedial.h" - "include/any-windows-any/ieeefp.h" - "include/any-windows-any/ieverp.h" - "include/any-windows-any/ifdef.h" - "include/any-windows-any/iiis.h" - "include/any-windows-any/iiisext.h" - "include/any-windows-any/iimgctx.h" - "include/any-windows-any/iiscnfg.h" - "include/any-windows-any/iisrsta.h" - "include/any-windows-any/iketypes.h" - "include/any-windows-any/ilogobj.hxx" - "include/any-windows-any/imagehlp.h" - "include/any-windows-any/ime.h" - "include/any-windows-any/imessage.h" - "include/any-windows-any/imm.h" - "include/any-windows-any/in6addr.h" - "include/any-windows-any/inaddr.h" - "include/any-windows-any/indexsrv.h" - "include/any-windows-any/inetreg.h" - "include/any-windows-any/inetsdk.h" - "include/any-windows-any/infstr.h" - "include/any-windows-any/initguid.h" - "include/any-windows-any/initoid.h" - "include/any-windows-any/inputscope.h" - "include/any-windows-any/inspectable.h" - "include/any-windows-any/interlockedapi.h" - "include/any-windows-any/intrin.h" - "include/any-windows-any/intsafe.h" - "include/any-windows-any/intshcut.h" - "include/any-windows-any/inttypes.h" - "include/any-windows-any/invkprxy.h" - "include/any-windows-any/io.h" - "include/any-windows-any/ioapiset.h" - "include/any-windows-any/ioevent.h" - "include/any-windows-any/ipexport.h" - "include/any-windows-any/iphlpapi.h" - "include/any-windows-any/ipifcons.h" - "include/any-windows-any/ipinfoid.h" - "include/any-windows-any/ipmib.h" - "include/any-windows-any/ipmsp.h" - "include/any-windows-any/iprtrmib.h" - "include/any-windows-any/ipsectypes.h" - "include/any-windows-any/iptypes.h" - "include/any-windows-any/ipxconst.h" - "include/any-windows-any/ipxrip.h" - "include/any-windows-any/ipxrtdef.h" - "include/any-windows-any/ipxsap.h" - "include/any-windows-any/ipxtfflt.h" - "include/any-windows-any/iscsidsc.h" - "include/any-windows-any/isguids.h" - "include/any-windows-any/issper16.h" - "include/any-windows-any/issperr.h" - "include/any-windows-any/isysmon.h" - "include/any-windows-any/ivec.h" - "include/any-windows-any/iwamreg.h" - "include/any-windows-any/jobapi.h" - "include/any-windows-any/kcom.h" - "include/any-windows-any/knownfolders.h" - "include/any-windows-any/ks.h" - "include/any-windows-any/ksdebug.h" - "include/any-windows-any/ksguid.h" - "include/any-windows-any/ksmedia.h" - "include/any-windows-any/ksproxy.h" - "include/any-windows-any/ksuuids.h" - "include/any-windows-any/ktmtypes.h" - "include/any-windows-any/ktmw32.h" - "include/any-windows-any/kxia64.h" - "include/any-windows-any/l2cmn.h" - "include/any-windows-any/libgen.h" - "include/any-windows-any/libloaderapi.h" - "include/any-windows-any/limits.h" - "include/any-windows-any/lm.h" - "include/any-windows-any/lmaccess.h" - "include/any-windows-any/lmalert.h" - "include/any-windows-any/lmapibuf.h" - "include/any-windows-any/lmat.h" - "include/any-windows-any/lmaudit.h" - "include/any-windows-any/lmconfig.h" - "include/any-windows-any/lmcons.h" - "include/any-windows-any/lmdfs.h" - "include/any-windows-any/lmerr.h" - "include/any-windows-any/lmerrlog.h" - "include/any-windows-any/lmjoin.h" - "include/any-windows-any/lmmsg.h" - "include/any-windows-any/lmon.h" - "include/any-windows-any/lmremutl.h" - "include/any-windows-any/lmrepl.h" - "include/any-windows-any/lmserver.h" - "include/any-windows-any/lmshare.h" - "include/any-windows-any/lmsname.h" - "include/any-windows-any/lmstats.h" - "include/any-windows-any/lmsvc.h" - "include/any-windows-any/lmuse.h" - "include/any-windows-any/lmuseflg.h" - "include/any-windows-any/lmwksta.h" - "include/any-windows-any/loadperf.h" - "include/any-windows-any/locale.h" - "include/any-windows-any/locationapi.h" - "include/any-windows-any/lpmapi.h" - "include/any-windows-any/lzexpand.h" - "include/any-windows-any/madcapcl.h" - "include/any-windows-any/magnification.h" - "include/any-windows-any/mailmsgprops.h" - "include/any-windows-any/malloc.h" - "include/any-windows-any/manipulations.h" - "include/any-windows-any/mapi.h" - "include/any-windows-any/mapicode.h" - "include/any-windows-any/mapidbg.h" - "include/any-windows-any/mapidefs.h" - "include/any-windows-any/mapiform.h" - "include/any-windows-any/mapiguid.h" - "include/any-windows-any/mapihook.h" - "include/any-windows-any/mapinls.h" - "include/any-windows-any/mapioid.h" - "include/any-windows-any/mapispi.h" - "include/any-windows-any/mapitags.h" - "include/any-windows-any/mapiutil.h" - "include/any-windows-any/mapival.h" - "include/any-windows-any/mapiwin.h" - "include/any-windows-any/mapiwz.h" - "include/any-windows-any/mapix.h" - "include/any-windows-any/math.h" - "include/any-windows-any/mbctype.h" - "include/any-windows-any/mbstring.h" - "include/any-windows-any/mciavi.h" - "include/any-windows-any/mcx.h" - "include/any-windows-any/mdbrole.hxx" - "include/any-windows-any/mdcommsg.h" - "include/any-windows-any/mddefw.h" - "include/any-windows-any/mdhcp.h" - "include/any-windows-any/mdmsg.h" - "include/any-windows-any/mediaerr.h" - "include/any-windows-any/mediaobj.h" - "include/any-windows-any/mediaobj.idl" - "include/any-windows-any/medparam.h" - "include/any-windows-any/medparam.idl" - "include/any-windows-any/mem.h" - "include/any-windows-any/memory.h" - "include/any-windows-any/memoryapi.h" - "include/any-windows-any/mergemod.h" - "include/any-windows-any/mfapi.h" - "include/any-windows-any/mferror.h" - "include/any-windows-any/mfidl.h" - "include/any-windows-any/mfmp2dlna.h" - "include/any-windows-any/mfobjects.h" - "include/any-windows-any/mfplay.h" - "include/any-windows-any/mfreadwrite.h" - "include/any-windows-any/mftransform.h" - "include/any-windows-any/mgm.h" - "include/any-windows-any/mgmtapi.h" - "include/any-windows-any/midles.h" - "include/any-windows-any/mimedisp.h" - "include/any-windows-any/mimeinfo.h" - "include/any-windows-any/minmax.h" - "include/any-windows-any/minwinbase.h" - "include/any-windows-any/minwindef.h" - "include/any-windows-any/mlang.h" - "include/any-windows-any/mmc.h" - "include/any-windows-any/mmcobj.h" - "include/any-windows-any/mmdeviceapi.h" - "include/any-windows-any/mmreg.h" - "include/any-windows-any/mmstream.h" - "include/any-windows-any/mmstream.idl" - "include/any-windows-any/mmsystem.h" - "include/any-windows-any/mobsync.h" - "include/any-windows-any/moniker.h" - "include/any-windows-any/mpeg2bits.h" - "include/any-windows-any/mpeg2data.h" - "include/any-windows-any/mpeg2psiparser.h" - "include/any-windows-any/mpeg2structs.h" - "include/any-windows-any/mprapi.h" - "include/any-windows-any/mprerror.h" - "include/any-windows-any/mq.h" - "include/any-windows-any/mqmail.h" - "include/any-windows-any/mqoai.h" - "include/any-windows-any/msacm.h" - "include/any-windows-any/msacmdlg.dlg" - "include/any-windows-any/msacmdlg.h" - "include/any-windows-any/msado15.h" - "include/any-windows-any/msasn1.h" - "include/any-windows-any/msber.h" - "include/any-windows-any/mscat.h" - "include/any-windows-any/mschapp.h" - "include/any-windows-any/msclus.h" - "include/any-windows-any/mscoree.h" - "include/any-windows-any/msctf.h" - "include/any-windows-any/msctfmonitorapi.h" - "include/any-windows-any/msdadc.h" - "include/any-windows-any/msdaguid.h" - "include/any-windows-any/msdaipp.h" - "include/any-windows-any/msdaipper.h" - "include/any-windows-any/msdaora.h" - "include/any-windows-any/msdaosp.h" - "include/any-windows-any/msdasc.h" - "include/any-windows-any/msdasql.h" - "include/any-windows-any/msdatsrc.h" - "include/any-windows-any/msdrm.h" - "include/any-windows-any/msdrmdefs.h" - "include/any-windows-any/msdshape.h" - "include/any-windows-any/msfs.h" - "include/any-windows-any/mshtmcid.h" - "include/any-windows-any/mshtmdid.h" - "include/any-windows-any/mshtmhst.h" - "include/any-windows-any/mshtml.h" - "include/any-windows-any/mshtmlc.h" - "include/any-windows-any/msi.h" - "include/any-windows-any/msidefs.h" - "include/any-windows-any/msimcntl.h" - "include/any-windows-any/msimcsdk.h" - "include/any-windows-any/msinkaut.h" - "include/any-windows-any/msinkaut_i.c" - "include/any-windows-any/msiquery.h" - "include/any-windows-any/msoav.h" - "include/any-windows-any/msopc.h" - "include/any-windows-any/msp.h" - "include/any-windows-any/mspab.h" - "include/any-windows-any/mspaddr.h" - "include/any-windows-any/mspbase.h" - "include/any-windows-any/mspcall.h" - "include/any-windows-any/mspcoll.h" - "include/any-windows-any/mspenum.h" - "include/any-windows-any/msplog.h" - "include/any-windows-any/mspst.h" - "include/any-windows-any/mspstrm.h" - "include/any-windows-any/mspterm.h" - "include/any-windows-any/mspthrd.h" - "include/any-windows-any/msptrmac.h" - "include/any-windows-any/msptrmar.h" - "include/any-windows-any/msptrmvc.h" - "include/any-windows-any/msputils.h" - "include/any-windows-any/msrdc.h" - "include/any-windows-any/msremote.h" - "include/any-windows-any/mssip.h" - "include/any-windows-any/msstkppg.h" - "include/any-windows-any/mstask.h" - "include/any-windows-any/mstcpip.h" - "include/any-windows-any/msterr.h" - "include/any-windows-any/mswsock.h" - "include/any-windows-any/msxml.h" - "include/any-windows-any/msxml2.h" - "include/any-windows-any/msxml2did.h" - "include/any-windows-any/msxmldid.h" - "include/any-windows-any/mtsadmin.h" - "include/any-windows-any/mtsevents.h" - "include/any-windows-any/mtsgrp.h" - "include/any-windows-any/mtx.h" - "include/any-windows-any/mtxadmin.h" - "include/any-windows-any/mtxattr.h" - "include/any-windows-any/mtxdm.h" - "include/any-windows-any/muiload.h" - "include/any-windows-any/multimon.h" - "include/any-windows-any/multinfo.h" - "include/any-windows-any/mxdc.h" - "include/any-windows-any/namedpipeapi.h" - "include/any-windows-any/namespaceapi.h" - "include/any-windows-any/napcertrelyingparty.h" - "include/any-windows-any/napcommon.h" - "include/any-windows-any/napenforcementclient.h" - "include/any-windows-any/napmanagement.h" - "include/any-windows-any/napmicrosoftvendorids.h" - "include/any-windows-any/napprotocol.h" - "include/any-windows-any/napservermanagement.h" - "include/any-windows-any/napsystemhealthagent.h" - "include/any-windows-any/napsystemhealthvalidator.h" - "include/any-windows-any/naptypes.h" - "include/any-windows-any/naputil.h" - "include/any-windows-any/nb30.h" - "include/any-windows-any/ncrypt.h" - "include/any-windows-any/ndattrib.h" - "include/any-windows-any/ndfapi.h" - "include/any-windows-any/ndhelper.h" - "include/any-windows-any/ndkinfo.h" - "include/any-windows-any/ndr64types.h" - "include/any-windows-any/ndrtypes.h" - "include/any-windows-any/netcon.h" - "include/any-windows-any/neterr.h" - "include/any-windows-any/netevent.h" - "include/any-windows-any/netfw.h" - "include/any-windows-any/netioapi.h" - "include/any-windows-any/netlistmgr.h" - "include/any-windows-any/netmon.h" - "include/any-windows-any/netprov.h" - "include/any-windows-any/nettypes.h" - "include/any-windows-any/new.h" - "include/any-windows-any/newapis.h" - "include/any-windows-any/newdev.h" - "include/any-windows-any/nldef.h" - "include/any-windows-any/nmsupp.h" - "include/any-windows-any/npapi.h" - "include/any-windows-any/nsemail.h" - "include/any-windows-any/nspapi.h" - "include/any-windows-any/ntdd1394.h" - "include/any-windows-any/ntdd8042.h" - "include/any-windows-any/ntddbeep.h" - "include/any-windows-any/ntddcdrm.h" - "include/any-windows-any/ntddcdvd.h" - "include/any-windows-any/ntddchgr.h" - "include/any-windows-any/ntdddisk.h" - "include/any-windows-any/ntddft.h" - "include/any-windows-any/ntddkbd.h" - "include/any-windows-any/ntddmmc.h" - "include/any-windows-any/ntddmodm.h" - "include/any-windows-any/ntddmou.h" - "include/any-windows-any/ntddndis.h" - "include/any-windows-any/ntddpar.h" - "include/any-windows-any/ntddpsch.h" - "include/any-windows-any/ntddscsi.h" - "include/any-windows-any/ntddser.h" - "include/any-windows-any/ntddstor.h" - "include/any-windows-any/ntddtape.h" - "include/any-windows-any/ntddtdi.h" - "include/any-windows-any/ntddvdeo.h" - "include/any-windows-any/ntddvol.h" - "include/any-windows-any/ntdef.h" - "include/any-windows-any/ntdsapi.h" - "include/any-windows-any/ntdsbcli.h" - "include/any-windows-any/ntdsbmsg.h" - "include/any-windows-any/ntgdi.h" - "include/any-windows-any/ntiologc.h" - "include/any-windows-any/ntldap.h" - "include/any-windows-any/ntmsapi.h" - "include/any-windows-any/ntmsmli.h" - "include/any-windows-any/ntquery.h" - "include/any-windows-any/ntsdexts.h" - "include/any-windows-any/ntsecapi.h" - "include/any-windows-any/ntsecpkg.h" - "include/any-windows-any/ntstatus.h" - "include/any-windows-any/ntverp.h" - "include/any-windows-any/oaidl.h" - "include/any-windows-any/objbase.h" - "include/any-windows-any/objectarray.h" - "include/any-windows-any/objerror.h" - "include/any-windows-any/objidl.h" - "include/any-windows-any/objidlbase.h" - "include/any-windows-any/objsafe.h" - "include/any-windows-any/objsel.h" - "include/any-windows-any/ocidl.h" - "include/any-windows-any/ocmm.h" - "include/any-windows-any/odbcinst.h" - "include/any-windows-any/odbcss.h" - "include/any-windows-any/ole.h" - "include/any-windows-any/ole2.h" - "include/any-windows-any/ole2ver.h" - "include/any-windows-any/oleacc.h" - "include/any-windows-any/oleauto.h" - "include/any-windows-any/olectl.h" - "include/any-windows-any/olectlid.h" - "include/any-windows-any/oledb.h" - "include/any-windows-any/oledbdep.h" - "include/any-windows-any/oledberr.h" - "include/any-windows-any/oledbguid.h" - "include/any-windows-any/oledlg.dlg" - "include/any-windows-any/oledlg.h" - "include/any-windows-any/oleidl.h" - "include/any-windows-any/oletx2xa.h" - "include/any-windows-any/opmapi.h" - "include/any-windows-any/optary.h" - "include/any-windows-any/p2p.h" - "include/any-windows-any/packoff.h" - "include/any-windows-any/packon.h" - "include/any-windows-any/parser.h" - "include/any-windows-any/patchapi.h" - "include/any-windows-any/patchwiz.h" - "include/any-windows-any/pathcch.h" - "include/any-windows-any/pbt.h" - "include/any-windows-any/pchannel.h" - "include/any-windows-any/pciprop.h" - "include/any-windows-any/pcrt32.h" - "include/any-windows-any/pdh.h" - "include/any-windows-any/pdhmsg.h" - "include/any-windows-any/penwin.h" - "include/any-windows-any/perflib.h" - "include/any-windows-any/perhist.h" - "include/any-windows-any/persist.h" - "include/any-windows-any/pgobootrun.h" - "include/any-windows-any/physicalmonitorenumerationapi.h" - "include/any-windows-any/pla.h" - "include/any-windows-any/pnrpdef.h" - "include/any-windows-any/pnrpns.h" - "include/any-windows-any/poclass.h" - "include/any-windows-any/polarity.h" - "include/any-windows-any/poppack.h" - "include/any-windows-any/portabledeviceconnectapi.h" - "include/any-windows-any/portabledevicetypes.h" - "include/any-windows-any/powrprof.h" - "include/any-windows-any/prnasnot.h" - "include/any-windows-any/prnsetup.dlg" - "include/any-windows-any/prntfont.h" - "include/any-windows-any/process.h" - "include/any-windows-any/processenv.h" - "include/any-windows-any/processthreadsapi.h" - "include/any-windows-any/processtopologyapi.h" - "include/any-windows-any/profile.h" - "include/any-windows-any/profileapi.h" - "include/any-windows-any/profinfo.h" - "include/any-windows-any/propidl.h" - "include/any-windows-any/propkey.h" - "include/any-windows-any/propkeydef.h" - "include/any-windows-any/propsys.h" - "include/any-windows-any/propvarutil.h" - "include/any-windows-any/prsht.h" - "include/any-windows-any/psapi.h" - "include/any-windows-any/psdk_inc/_dbg_LOAD_IMAGE.h" - "include/any-windows-any/psdk_inc/_dbg_common.h" - "include/any-windows-any/psdk_inc/_fd_types.h" - "include/any-windows-any/psdk_inc/_ip_mreq1.h" - "include/any-windows-any/psdk_inc/_ip_types.h" - "include/any-windows-any/psdk_inc/_pop_BOOL.h" - "include/any-windows-any/psdk_inc/_push_BOOL.h" - "include/any-windows-any/psdk_inc/_socket_types.h" - "include/any-windows-any/psdk_inc/_varenum.h" - "include/any-windows-any/psdk_inc/_ws1_undef.h" - "include/any-windows-any/psdk_inc/_wsa_errnos.h" - "include/any-windows-any/psdk_inc/_wsadata.h" - "include/any-windows-any/psdk_inc/_xmitfile.h" - "include/any-windows-any/psdk_inc/intrin-impl.h" - "include/any-windows-any/pshpack1.h" - "include/any-windows-any/pshpack2.h" - "include/any-windows-any/pshpack4.h" - "include/any-windows-any/pshpack8.h" - "include/any-windows-any/pshpck16.h" - "include/any-windows-any/pstore.h" - "include/any-windows-any/pthread_signal.h" - "include/any-windows-any/pthread_time.h" - "include/any-windows-any/pthread_unistd.h" - "include/any-windows-any/qedit.h" - "include/any-windows-any/qedit.idl" - "include/any-windows-any/qmgr.h" - "include/any-windows-any/qnetwork.h" - "include/any-windows-any/qnetwork.idl" - "include/any-windows-any/qos.h" - "include/any-windows-any/qos2.h" - "include/any-windows-any/qosname.h" - "include/any-windows-any/qospol.h" - "include/any-windows-any/qossp.h" - "include/any-windows-any/ras.h" - "include/any-windows-any/rasdlg.h" - "include/any-windows-any/raseapif.h" - "include/any-windows-any/raserror.h" - "include/any-windows-any/rassapi.h" - "include/any-windows-any/rasshost.h" - "include/any-windows-any/ratings.h" - "include/any-windows-any/rdpencomapi.h" - "include/any-windows-any/realtimeapiset.h" - "include/any-windows-any/reason.h" - "include/any-windows-any/recguids.h" - "include/any-windows-any/reconcil.h" - "include/any-windows-any/regbag.h" - "include/any-windows-any/regstr.h" - "include/any-windows-any/rend.h" - "include/any-windows-any/resapi.h" - "include/any-windows-any/restartmanager.h" - "include/any-windows-any/richedit.h" - "include/any-windows-any/richole.h" - "include/any-windows-any/rkeysvcc.h" - "include/any-windows-any/rnderr.h" - "include/any-windows-any/roapi.h" - "include/any-windows-any/routprot.h" - "include/any-windows-any/rpc.h" - "include/any-windows-any/rpcasync.h" - "include/any-windows-any/rpcdce.h" - "include/any-windows-any/rpcdcep.h" - "include/any-windows-any/rpcndr.h" - "include/any-windows-any/rpcnsi.h" - "include/any-windows-any/rpcnsip.h" - "include/any-windows-any/rpcnterr.h" - "include/any-windows-any/rpcproxy.h" - "include/any-windows-any/rpcsal.h" - "include/any-windows-any/rpcssl.h" - "include/any-windows-any/rrascfg.h" - "include/any-windows-any/rtcapi.h" - "include/any-windows-any/rtccore.h" - "include/any-windows-any/rtcerr.h" - "include/any-windows-any/rtinfo.h" - "include/any-windows-any/rtm.h" - "include/any-windows-any/rtmv2.h" - "include/any-windows-any/rtutils.h" - "include/any-windows-any/sal.h" - "include/any-windows-any/sapi.h" - "include/any-windows-any/sapi51.h" - "include/any-windows-any/sapi53.h" - "include/any-windows-any/sapi54.h" - "include/any-windows-any/sas.h" - "include/any-windows-any/sbe.h" - "include/any-windows-any/scarddat.h" - "include/any-windows-any/scarderr.h" - "include/any-windows-any/scardmgr.h" - "include/any-windows-any/scardsrv.h" - "include/any-windows-any/scardssp.h" - "include/any-windows-any/scesvc.h" - "include/any-windows-any/schannel.h" - "include/any-windows-any/schedule.h" - "include/any-windows-any/schemadef.h" - "include/any-windows-any/schnlsp.h" - "include/any-windows-any/scode.h" - "include/any-windows-any/scrnsave.h" - "include/any-windows-any/scrptids.h" - "include/any-windows-any/sddl.h" - "include/any-windows-any/sdkddkver.h" - "include/any-windows-any/sdks/_mingw_ddk.h" - "include/any-windows-any/sdks/_mingw_directx.h" - "include/any-windows-any/sdoias.h" - "include/any-windows-any/sdpblb.h" - "include/any-windows-any/sdperr.h" - "include/any-windows-any/search.h" - "include/any-windows-any/sec_api/conio_s.h" - "include/any-windows-any/sec_api/crtdbg_s.h" - "include/any-windows-any/sec_api/mbstring_s.h" - "include/any-windows-any/sec_api/search_s.h" - "include/any-windows-any/sec_api/stdio_s.h" - "include/any-windows-any/sec_api/stdlib_s.h" - "include/any-windows-any/sec_api/stralign_s.h" - "include/any-windows-any/sec_api/string_s.h" - "include/any-windows-any/sec_api/sys/timeb_s.h" - "include/any-windows-any/sec_api/tchar_s.h" - "include/any-windows-any/sec_api/wchar_s.h" - "include/any-windows-any/secext.h" - "include/any-windows-any/security.h" - "include/any-windows-any/securityappcontainer.h" - "include/any-windows-any/securitybaseapi.h" - "include/any-windows-any/sehmap.h" - "include/any-windows-any/sens.h" - "include/any-windows-any/sensapi.h" - "include/any-windows-any/sensevts.h" - "include/any-windows-any/sensors.h" - "include/any-windows-any/sensorsapi.h" - "include/any-windows-any/servprov.h" - "include/any-windows-any/setjmp.h" - "include/any-windows-any/setjmpex.h" - "include/any-windows-any/setupapi.h" - "include/any-windows-any/sfc.h" - "include/any-windows-any/shappmgr.h" - "include/any-windows-any/share.h" - "include/any-windows-any/shdeprecated.h" - "include/any-windows-any/shdispid.h" - "include/any-windows-any/shellapi.h" - "include/any-windows-any/sherrors.h" - "include/any-windows-any/shfolder.h" - "include/any-windows-any/shldisp.h" - "include/any-windows-any/shlguid.h" - "include/any-windows-any/shlobj.h" - "include/any-windows-any/shlwapi.h" - "include/any-windows-any/shobjidl.h" - "include/any-windows-any/shtypes.h" - "include/any-windows-any/signal.h" - "include/any-windows-any/simpdata.h" - "include/any-windows-any/simpdc.h" - "include/any-windows-any/sipbase.h" - "include/any-windows-any/sisbkup.h" - "include/any-windows-any/slerror.h" - "include/any-windows-any/slpublic.h" - "include/any-windows-any/smpab.h" - "include/any-windows-any/smpms.h" - "include/any-windows-any/smpxp.h" - "include/any-windows-any/smtpguid.h" - "include/any-windows-any/smx.h" - "include/any-windows-any/snmp.h" - "include/any-windows-any/softpub.h" - "include/any-windows-any/specstrings.h" - "include/any-windows-any/sperror.h" - "include/any-windows-any/sphelper.h" - "include/any-windows-any/sporder.h" - "include/any-windows-any/sql.h" - "include/any-windows-any/sql_1.h" - "include/any-windows-any/sqlext.h" - "include/any-windows-any/sqloledb.h" - "include/any-windows-any/sqltypes.h" - "include/any-windows-any/sqlucode.h" - "include/any-windows-any/srrestoreptapi.h" - "include/any-windows-any/srv.h" - "include/any-windows-any/sspguid.h" - "include/any-windows-any/sspi.h" - "include/any-windows-any/sspserr.h" - "include/any-windows-any/sspsidl.h" - "include/any-windows-any/stdarg.h" - "include/any-windows-any/stddef.h" - "include/any-windows-any/stdexcpt.h" - "include/any-windows-any/stdint.h" - "include/any-windows-any/stdio.h" - "include/any-windows-any/stdlib.h" - "include/any-windows-any/sti.h" - "include/any-windows-any/stierr.h" - "include/any-windows-any/stireg.h" - "include/any-windows-any/stllock.h" - "include/any-windows-any/stm.h" - "include/any-windows-any/storage.h" - "include/any-windows-any/storduid.h" - "include/any-windows-any/storprop.h" - "include/any-windows-any/stralign.h" - "include/any-windows-any/string.h" - "include/any-windows-any/stringapiset.h" - "include/any-windows-any/strings.h" - "include/any-windows-any/strmif.h" - "include/any-windows-any/strsafe.h" - "include/any-windows-any/structuredquerycondition.h" - "include/any-windows-any/subauth.h" - "include/any-windows-any/subsmgr.h" - "include/any-windows-any/svcguid.h" - "include/any-windows-any/svrapi.h" - "include/any-windows-any/swprintf.inl" - "include/any-windows-any/synchapi.h" - "include/any-windows-any/sys/cdefs.h" - "include/any-windows-any/sys/fcntl.h" - "include/any-windows-any/sys/file.h" - "include/any-windows-any/sys/locking.h" - "include/any-windows-any/sys/param.h" - "include/any-windows-any/sys/stat.h" - "include/any-windows-any/sys/time.h" - "include/any-windows-any/sys/timeb.h" - "include/any-windows-any/sys/types.h" - "include/any-windows-any/sys/unistd.h" - "include/any-windows-any/sys/utime.h" - "include/any-windows-any/sysinfoapi.h" - "include/any-windows-any/syslimits.h" - "include/any-windows-any/systemtopologyapi.h" - "include/any-windows-any/t2embapi.h" - "include/any-windows-any/tabflicks.h" - "include/any-windows-any/tapi.h" - "include/any-windows-any/tapi3.h" - "include/any-windows-any/tapi3cc.h" - "include/any-windows-any/tapi3ds.h" - "include/any-windows-any/tapi3err.h" - "include/any-windows-any/tapi3if.h" - "include/any-windows-any/taskschd.h" - "include/any-windows-any/tbs.h" - "include/any-windows-any/tcerror.h" - "include/any-windows-any/tcguid.h" - "include/any-windows-any/tchar.h" - "include/any-windows-any/tcpestats.h" - "include/any-windows-any/tcpmib.h" - "include/any-windows-any/tdh.h" - "include/any-windows-any/tdi.h" - "include/any-windows-any/tdiinfo.h" - "include/any-windows-any/termmgr.h" - "include/any-windows-any/textserv.h" - "include/any-windows-any/textstor.h" - "include/any-windows-any/threadpoolapiset.h" - "include/any-windows-any/threadpoollegacyapiset.h" - "include/any-windows-any/time.h" - "include/any-windows-any/timeprov.h" - "include/any-windows-any/timezoneapi.h" - "include/any-windows-any/tlbref.h" - "include/any-windows-any/tlhelp32.h" - "include/any-windows-any/tlogstg.h" - "include/any-windows-any/tmschema.h" - "include/any-windows-any/tnef.h" - "include/any-windows-any/tom.h" - "include/any-windows-any/tpcshrd.h" - "include/any-windows-any/traffic.h" - "include/any-windows-any/transact.h" - "include/any-windows-any/triedcid.h" - "include/any-windows-any/triediid.h" - "include/any-windows-any/triedit.h" - "include/any-windows-any/tsattrs.h" - "include/any-windows-any/tspi.h" - "include/any-windows-any/tssbx.h" - "include/any-windows-any/tsuserex.h" - "include/any-windows-any/tuner.h" - "include/any-windows-any/tvout.h" - "include/any-windows-any/txcoord.h" - "include/any-windows-any/txctx.h" - "include/any-windows-any/txdtc.h" - "include/any-windows-any/txfw32.h" - "include/any-windows-any/typeinfo.h" - "include/any-windows-any/uastrfnc.h" - "include/any-windows-any/uchar.h" - "include/any-windows-any/udpmib.h" - "include/any-windows-any/uianimation.h" - "include/any-windows-any/uiautomation.h" - "include/any-windows-any/uiautomationclient.h" - "include/any-windows-any/uiautomationcore.h" - "include/any-windows-any/uiautomationcoreapi.h" - "include/any-windows-any/uiviewsettingsinterop.h" - "include/any-windows-any/umx.h" - "include/any-windows-any/unistd.h" - "include/any-windows-any/unknown.h" - "include/any-windows-any/unknwn.h" - "include/any-windows-any/unknwnbase.h" - "include/any-windows-any/urlhist.h" - "include/any-windows-any/urlmon.h" - "include/any-windows-any/usb.h" - "include/any-windows-any/usb100.h" - "include/any-windows-any/usb200.h" - "include/any-windows-any/usbcamdi.h" - "include/any-windows-any/usbdi.h" - "include/any-windows-any/usbioctl.h" - "include/any-windows-any/usbiodef.h" - "include/any-windows-any/usbprint.h" - "include/any-windows-any/usbrpmif.h" - "include/any-windows-any/usbscan.h" - "include/any-windows-any/usbspec.h" - "include/any-windows-any/usbuser.h" - "include/any-windows-any/userenv.h" - "include/any-windows-any/usp10.h" - "include/any-windows-any/utilapiset.h" - "include/any-windows-any/utime.h" - "include/any-windows-any/uuids.h" - "include/any-windows-any/uxtheme.h" - "include/any-windows-any/vadefs.h" - "include/any-windows-any/varargs.h" - "include/any-windows-any/vcr.h" - "include/any-windows-any/vdmdbg.h" - "include/any-windows-any/vds.h" - "include/any-windows-any/vdslun.h" - "include/any-windows-any/verinfo.ver" - "include/any-windows-any/versionhelpers.h" - "include/any-windows-any/vfw.h" - "include/any-windows-any/vfwmsgs.h" - "include/any-windows-any/virtdisk.h" - "include/any-windows-any/vmr9.h" - "include/any-windows-any/vmr9.idl" - "include/any-windows-any/vsadmin.h" - "include/any-windows-any/vsbackup.h" - "include/any-windows-any/vsmgmt.h" - "include/any-windows-any/vsprov.h" - "include/any-windows-any/vss.h" - "include/any-windows-any/vsstyle.h" - "include/any-windows-any/vssym32.h" - "include/any-windows-any/vswriter.h" - "include/any-windows-any/w32api.h" - "include/any-windows-any/wab.h" - "include/any-windows-any/wabapi.h" - "include/any-windows-any/wabcode.h" - "include/any-windows-any/wabdefs.h" - "include/any-windows-any/wabiab.h" - "include/any-windows-any/wabmem.h" - "include/any-windows-any/wabnot.h" - "include/any-windows-any/wabtags.h" - "include/any-windows-any/wabutil.h" - "include/any-windows-any/wbemads.h" - "include/any-windows-any/wbemcli.h" - "include/any-windows-any/wbemdisp.h" - "include/any-windows-any/wbemidl.h" - "include/any-windows-any/wbemprov.h" - "include/any-windows-any/wbemtran.h" - "include/any-windows-any/wchar.h" - "include/any-windows-any/wcmconfig.h" - "include/any-windows-any/wcsplugin.h" - "include/any-windows-any/wct.h" - "include/any-windows-any/wctype.h" - "include/any-windows-any/wdsbp.h" - "include/any-windows-any/wdsclientapi.h" - "include/any-windows-any/wdspxe.h" - "include/any-windows-any/wdstci.h" - "include/any-windows-any/wdstpdi.h" - "include/any-windows-any/wdstptmgmt.h" - "include/any-windows-any/werapi.h" - "include/any-windows-any/wfext.h" - "include/any-windows-any/wia.h" - "include/any-windows-any/wiadef.h" - "include/any-windows-any/wiadevd.h" - "include/any-windows-any/wiavideo.h" - "include/any-windows-any/winable.h" - "include/any-windows-any/winapifamily.h" - "include/any-windows-any/winbase.h" - "include/any-windows-any/winber.h" - "include/any-windows-any/wincodec.h" - "include/any-windows-any/wincon.h" - "include/any-windows-any/wincred.h" - "include/any-windows-any/wincrypt.h" - "include/any-windows-any/winddi.h" - "include/any-windows-any/winddiui.h" - "include/any-windows-any/windef.h" - "include/any-windows-any/windns.h" - "include/any-windows-any/windot11.h" - "include/any-windows-any/windows.foundation.h" - "include/any-windows-any/windows.h" - "include/any-windows-any/windows.security.cryptography.h" - "include/any-windows-any/windows.storage.h" - "include/any-windows-any/windows.storage.streams.h" - "include/any-windows-any/windows.system.threading.h" - "include/any-windows-any/windowsx.h" - "include/any-windows-any/windowsx.h16" - "include/any-windows-any/winefs.h" - "include/any-windows-any/winerror.h" - "include/any-windows-any/winevt.h" - "include/any-windows-any/wingdi.h" - "include/any-windows-any/winhttp.h" - "include/any-windows-any/wininet.h" - "include/any-windows-any/winineti.h" - "include/any-windows-any/winioctl.h" - "include/any-windows-any/winldap.h" - "include/any-windows-any/winnetwk.h" - "include/any-windows-any/winnls.h" - "include/any-windows-any/winnls32.h" - "include/any-windows-any/winnt.h" - "include/any-windows-any/winnt.rh" - "include/any-windows-any/winperf.h" - "include/any-windows-any/winreg.h" - "include/any-windows-any/winresrc.h" - "include/any-windows-any/winsafer.h" - "include/any-windows-any/winsatcominterfacei.h" - "include/any-windows-any/winscard.h" - "include/any-windows-any/winsdkver.h" - "include/any-windows-any/winsmcrd.h" - "include/any-windows-any/winsnmp.h" - "include/any-windows-any/winsock.h" - "include/any-windows-any/winsock2.h" - "include/any-windows-any/winsplp.h" - "include/any-windows-any/winspool.h" - "include/any-windows-any/winstring.h" - "include/any-windows-any/winsvc.h" - "include/any-windows-any/winsxs.h" - "include/any-windows-any/winsync.h" - "include/any-windows-any/winternl.h" - "include/any-windows-any/wintrust.h" - "include/any-windows-any/winusb.h" - "include/any-windows-any/winusbio.h" - "include/any-windows-any/winuser.h" - "include/any-windows-any/winuser.rh" - "include/any-windows-any/winver.h" - "include/any-windows-any/winwlx.h" - "include/any-windows-any/wlanapi.h" - "include/any-windows-any/wlanihvtypes.h" - "include/any-windows-any/wlantypes.h" - "include/any-windows-any/wmcodecdsp.h" - "include/any-windows-any/wmcontainer.h" - "include/any-windows-any/wmdrmsdk.h" - "include/any-windows-any/wmiatlprov.h" - "include/any-windows-any/wmistr.h" - "include/any-windows-any/wmiutils.h" - "include/any-windows-any/wmsbuffer.h" - "include/any-windows-any/wmsdkidl.h" - "include/any-windows-any/wnnc.h" - "include/any-windows-any/wow64apiset.h" - "include/any-windows-any/wownt16.h" - "include/any-windows-any/wownt32.h" - "include/any-windows-any/wpapi.h" - "include/any-windows-any/wpapimsg.h" - "include/any-windows-any/wpcapi.h" - "include/any-windows-any/wpcevent.h" - "include/any-windows-any/wpcrsmsg.h" - "include/any-windows-any/wpftpmsg.h" - "include/any-windows-any/wppstmsg.h" - "include/any-windows-any/wpspihlp.h" - "include/any-windows-any/wptypes.h" - "include/any-windows-any/wpwizmsg.h" - "include/any-windows-any/wrl.h" - "include/any-windows-any/wrl/client.h" - "include/any-windows-any/wrl/internal.h" - "include/any-windows-any/wrl/module.h" - "include/any-windows-any/wrl/wrappers/corewrappers.h" - "include/any-windows-any/ws2atm.h" - "include/any-windows-any/ws2bth.h" - "include/any-windows-any/ws2def.h" - "include/any-windows-any/ws2dnet.h" - "include/any-windows-any/ws2ipdef.h" - "include/any-windows-any/ws2spi.h" - "include/any-windows-any/ws2tcpip.h" - "include/any-windows-any/wsdapi.h" - "include/any-windows-any/wsdattachment.h" - "include/any-windows-any/wsdbase.h" - "include/any-windows-any/wsdclient.h" - "include/any-windows-any/wsddisco.h" - "include/any-windows-any/wsdhost.h" - "include/any-windows-any/wsdtypes.h" - "include/any-windows-any/wsdutil.h" - "include/any-windows-any/wsdxml.h" - "include/any-windows-any/wsdxmldom.h" - "include/any-windows-any/wshisotp.h" - "include/any-windows-any/wsipv6ok.h" - "include/any-windows-any/wsipx.h" - "include/any-windows-any/wsman.h" - "include/any-windows-any/wsmandisp.h" - "include/any-windows-any/wsnetbs.h" - "include/any-windows-any/wsnwlink.h" - "include/any-windows-any/wspiapi.h" - "include/any-windows-any/wsrm.h" - "include/any-windows-any/wsvns.h" - "include/any-windows-any/wtsapi32.h" - "include/any-windows-any/wtypes.h" - "include/any-windows-any/wtypesbase.h" - "include/any-windows-any/xa.h" - "include/any-windows-any/xcmc.h" - "include/any-windows-any/xcmcext.h" - "include/any-windows-any/xcmcmsx2.h" - "include/any-windows-any/xcmcmsxt.h" - "include/any-windows-any/xenroll.h" - "include/any-windows-any/xinput.h" - "include/any-windows-any/xlocinfo.h" - "include/any-windows-any/xmath.h" - "include/any-windows-any/xmldomdid.h" - "include/any-windows-any/xmldsodid.h" - "include/any-windows-any/xmllite.h" - "include/any-windows-any/xmltrnsf.h" - "include/any-windows-any/xolehlp.h" - "include/any-windows-any/xpsdigitalsignature.h" - "include/any-windows-any/xpsobjectmodel.h" - "include/any-windows-any/xpsobjectmodel_1.h" - "include/any-windows-any/xpsprint.h" - "include/any-windows-any/xpsrassvc.h" - "include/any-windows-any/ymath.h" - "include/any-windows-any/yvals.h" - "include/any-windows-any/zmouse.h" - "include/arm-linux-any/asm/fcntl.h" - "include/arm-linux-any/asm/ioctls.h" - "include/arm-linux-any/asm/mman.h" - "include/arm-linux-any/asm/statfs.h" - "include/arm-linux-any/asm/swab.h" - "include/arm-linux-any/asm/types.h" - "include/arm-linux-gnueabi/bits/endian.h" - "include/arm-linux-gnueabi/bits/fcntl.h" - "include/arm-linux-gnueabi/bits/fenv.h" - "include/arm-linux-gnueabi/bits/floatn.h" - "include/arm-linux-gnueabi/bits/hwcap.h" - "include/arm-linux-gnueabi/bits/link.h" - "include/arm-linux-gnueabi/bits/long-double.h" - "include/arm-linux-gnueabi/bits/procfs-id.h" - "include/arm-linux-gnueabi/bits/procfs.h" - "include/arm-linux-gnueabi/bits/pthreadtypes-arch.h" - "include/arm-linux-gnueabi/bits/semaphore.h" - "include/arm-linux-gnueabi/bits/setjmp.h" - "include/arm-linux-gnueabi/bits/shmlba.h" - "include/arm-linux-gnueabi/bits/stat.h" - "include/arm-linux-gnueabi/bits/wordsize.h" - "include/arm-linux-gnueabi/fpu_control.h" - "include/arm-linux-gnueabi/gnu/lib-names.h" - "include/arm-linux-gnueabi/gnu/stubs.h" - "include/arm-linux-gnueabi/sys/ptrace.h" - "include/arm-linux-gnueabi/sys/ucontext.h" - "include/arm-linux-gnueabi/sys/user.h" - "include/arm-linux-gnueabihf/bits/endian.h" - "include/arm-linux-gnueabihf/bits/fcntl.h" - "include/arm-linux-gnueabihf/bits/fenv.h" - "include/arm-linux-gnueabihf/bits/floatn.h" - "include/arm-linux-gnueabihf/bits/hwcap.h" - "include/arm-linux-gnueabihf/bits/link.h" - "include/arm-linux-gnueabihf/bits/long-double.h" - "include/arm-linux-gnueabihf/bits/procfs-id.h" - "include/arm-linux-gnueabihf/bits/procfs.h" - "include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h" - "include/arm-linux-gnueabihf/bits/semaphore.h" - "include/arm-linux-gnueabihf/bits/setjmp.h" - "include/arm-linux-gnueabihf/bits/shmlba.h" - "include/arm-linux-gnueabihf/bits/stat.h" - "include/arm-linux-gnueabihf/bits/wordsize.h" - "include/arm-linux-gnueabihf/fpu_control.h" - "include/arm-linux-gnueabihf/gnu/lib-names.h" - "include/arm-linux-gnueabihf/gnu/stubs.h" - "include/arm-linux-gnueabihf/sys/ptrace.h" - "include/arm-linux-gnueabihf/sys/ucontext.h" - "include/arm-linux-gnueabihf/sys/user.h" - "include/arm-linux-musleabi/bfd.h" - "include/arm-linux-musleabi/bfd_stdint.h" - "include/arm-linux-musleabi/bits/fcntl.h" - "include/arm-linux-musleabi/bits/hwcap.h" - "include/arm-linux-musleabi/bits/ioctl_fix.h" - "include/arm-linux-musleabi/bits/msg.h" - "include/arm-linux-musleabi/bits/ptrace.h" - "include/arm-linux-musleabi/bits/shm.h" - "include/arm-linux-musleabi/bits/stdint.h" - "include/arm-linux-musleabihf/bfd.h" - "include/arm-linux-musleabihf/bfd_stdint.h" - "include/arm-linux-musleabihf/bits/fcntl.h" - "include/arm-linux-musleabihf/bits/hwcap.h" - "include/arm-linux-musleabihf/bits/ioctl_fix.h" - "include/arm-linux-musleabihf/bits/msg.h" - "include/arm-linux-musleabihf/bits/ptrace.h" - "include/arm-linux-musleabihf/bits/shm.h" - "include/arm-linux-musleabihf/bits/stdint.h" - "include/armeb-linux-any/asm/fcntl.h" - "include/armeb-linux-any/asm/ioctls.h" - "include/armeb-linux-any/asm/mman.h" - "include/armeb-linux-any/asm/statfs.h" - "include/armeb-linux-any/asm/swab.h" - "include/armeb-linux-any/asm/types.h" - "include/armeb-linux-gnueabi/bits/endian.h" - "include/armeb-linux-gnueabi/bits/fcntl.h" - "include/armeb-linux-gnueabi/bits/fenv.h" - "include/armeb-linux-gnueabi/bits/floatn.h" - "include/armeb-linux-gnueabi/bits/hwcap.h" - "include/armeb-linux-gnueabi/bits/link.h" - "include/armeb-linux-gnueabi/bits/long-double.h" - "include/armeb-linux-gnueabi/bits/procfs-id.h" - "include/armeb-linux-gnueabi/bits/procfs.h" - "include/armeb-linux-gnueabi/bits/pthreadtypes-arch.h" - "include/armeb-linux-gnueabi/bits/semaphore.h" - "include/armeb-linux-gnueabi/bits/setjmp.h" - "include/armeb-linux-gnueabi/bits/shmlba.h" - "include/armeb-linux-gnueabi/bits/stat.h" - "include/armeb-linux-gnueabi/bits/wordsize.h" - "include/armeb-linux-gnueabi/fpu_control.h" - "include/armeb-linux-gnueabi/gnu/lib-names.h" - "include/armeb-linux-gnueabi/gnu/stubs.h" - "include/armeb-linux-gnueabi/sys/ptrace.h" - "include/armeb-linux-gnueabi/sys/ucontext.h" - "include/armeb-linux-gnueabi/sys/user.h" - "include/armeb-linux-gnueabihf/bits/endian.h" - "include/armeb-linux-gnueabihf/bits/fcntl.h" - "include/armeb-linux-gnueabihf/bits/fenv.h" - "include/armeb-linux-gnueabihf/bits/floatn.h" - "include/armeb-linux-gnueabihf/bits/hwcap.h" - "include/armeb-linux-gnueabihf/bits/link.h" - "include/armeb-linux-gnueabihf/bits/long-double.h" - "include/armeb-linux-gnueabihf/bits/procfs-id.h" - "include/armeb-linux-gnueabihf/bits/procfs.h" - "include/armeb-linux-gnueabihf/bits/pthreadtypes-arch.h" - "include/armeb-linux-gnueabihf/bits/semaphore.h" - "include/armeb-linux-gnueabihf/bits/setjmp.h" - "include/armeb-linux-gnueabihf/bits/shmlba.h" - "include/armeb-linux-gnueabihf/bits/stat.h" - "include/armeb-linux-gnueabihf/bits/wordsize.h" - "include/armeb-linux-gnueabihf/fpu_control.h" - "include/armeb-linux-gnueabihf/gnu/lib-names.h" - "include/armeb-linux-gnueabihf/gnu/stubs.h" - "include/armeb-linux-gnueabihf/sys/ptrace.h" - "include/armeb-linux-gnueabihf/sys/ucontext.h" - "include/armeb-linux-gnueabihf/sys/user.h" - "include/armeb-linux-musleabi/bfd.h" - "include/armeb-linux-musleabi/bfd_stdint.h" - "include/armeb-linux-musleabi/bits/fcntl.h" - "include/armeb-linux-musleabi/bits/hwcap.h" - "include/armeb-linux-musleabi/bits/ioctl_fix.h" - "include/armeb-linux-musleabi/bits/msg.h" - "include/armeb-linux-musleabi/bits/ptrace.h" - "include/armeb-linux-musleabi/bits/shm.h" - "include/armeb-linux-musleabi/bits/stdint.h" - "include/armeb-linux-musleabihf/bfd.h" - "include/armeb-linux-musleabihf/bfd_stdint.h" - "include/armeb-linux-musleabihf/bits/fcntl.h" - "include/armeb-linux-musleabihf/bits/hwcap.h" - "include/armeb-linux-musleabihf/bits/ioctl_fix.h" - "include/armeb-linux-musleabihf/bits/msg.h" - "include/armeb-linux-musleabihf/bits/ptrace.h" - "include/armeb-linux-musleabihf/bits/shm.h" - "include/armeb-linux-musleabihf/bits/stdint.h" - "include/generic-glibc/a.out.h" - "include/generic-glibc/aio.h" - "include/generic-glibc/aliases.h" - "include/generic-glibc/alloca.h" - "include/generic-glibc/ar.h" - "include/generic-glibc/argp.h" - "include/generic-glibc/argz.h" - "include/generic-glibc/arpa/ftp.h" - "include/generic-glibc/arpa/inet.h" - "include/generic-glibc/arpa/nameser.h" - "include/generic-glibc/arpa/nameser_compat.h" - "include/generic-glibc/arpa/telnet.h" - "include/generic-glibc/arpa/tftp.h" - "include/generic-glibc/assert.h" - "include/generic-glibc/bits/a.out.h" - "include/generic-glibc/bits/argp-ldbl.h" - "include/generic-glibc/bits/byteswap.h" - "include/generic-glibc/bits/cmathcalls.h" - "include/generic-glibc/bits/confname.h" - "include/generic-glibc/bits/cpu-set.h" - "include/generic-glibc/bits/dirent.h" - "include/generic-glibc/bits/dlfcn.h" - "include/generic-glibc/bits/elfclass.h" - "include/generic-glibc/bits/endian.h" - "include/generic-glibc/bits/environments.h" - "include/generic-glibc/bits/epoll.h" - "include/generic-glibc/bits/err-ldbl.h" - "include/generic-glibc/bits/errno.h" - "include/generic-glibc/bits/error-ldbl.h" - "include/generic-glibc/bits/error.h" - "include/generic-glibc/bits/eventfd.h" - "include/generic-glibc/bits/fcntl-linux.h" - "include/generic-glibc/bits/fcntl.h" - "include/generic-glibc/bits/fcntl2.h" - "include/generic-glibc/bits/fenv.h" - "include/generic-glibc/bits/fenvinline.h" - "include/generic-glibc/bits/floatn-common.h" - "include/generic-glibc/bits/floatn.h" - "include/generic-glibc/bits/flt-eval-method.h" - "include/generic-glibc/bits/fp-fast.h" - "include/generic-glibc/bits/fp-logb.h" - "include/generic-glibc/bits/getopt_core.h" - "include/generic-glibc/bits/getopt_ext.h" - "include/generic-glibc/bits/getopt_posix.h" - "include/generic-glibc/bits/hwcap.h" - "include/generic-glibc/bits/in.h" - "include/generic-glibc/bits/indirect-return.h" - "include/generic-glibc/bits/initspin.h" - "include/generic-glibc/bits/inotify.h" - "include/generic-glibc/bits/ioctl-types.h" - "include/generic-glibc/bits/ioctls.h" - "include/generic-glibc/bits/ipc.h" - "include/generic-glibc/bits/ipctypes.h" - "include/generic-glibc/bits/iscanonical.h" - "include/generic-glibc/bits/libc-header-start.h" - "include/generic-glibc/bits/libm-simd-decl-stubs.h" - "include/generic-glibc/bits/link.h" - "include/generic-glibc/bits/local_lim.h" - "include/generic-glibc/bits/locale.h" - "include/generic-glibc/bits/long-double.h" - "include/generic-glibc/bits/math-finite.h" - "include/generic-glibc/bits/math-vector-fortran.h" - "include/generic-glibc/bits/math-vector.h" - "include/generic-glibc/bits/mathcalls-helper-functions.h" - "include/generic-glibc/bits/mathcalls-narrow.h" - "include/generic-glibc/bits/mathcalls.h" - "include/generic-glibc/bits/mathdef.h" - "include/generic-glibc/bits/mathinline.h" - "include/generic-glibc/bits/mman-linux.h" - "include/generic-glibc/bits/mman-map-flags-generic.h" - "include/generic-glibc/bits/mman-shared.h" - "include/generic-glibc/bits/mman.h" - "include/generic-glibc/bits/monetary-ldbl.h" - "include/generic-glibc/bits/mqueue.h" - "include/generic-glibc/bits/mqueue2.h" - "include/generic-glibc/bits/msq-pad.h" - "include/generic-glibc/bits/msq.h" - "include/generic-glibc/bits/netdb.h" - "include/generic-glibc/bits/param.h" - "include/generic-glibc/bits/poll.h" - "include/generic-glibc/bits/poll2.h" - "include/generic-glibc/bits/posix1_lim.h" - "include/generic-glibc/bits/posix2_lim.h" - "include/generic-glibc/bits/posix_opt.h" - "include/generic-glibc/bits/ppc.h" - "include/generic-glibc/bits/printf-ldbl.h" - "include/generic-glibc/bits/procfs-extra.h" - "include/generic-glibc/bits/procfs-id.h" - "include/generic-glibc/bits/procfs-prregset.h" - "include/generic-glibc/bits/procfs.h" - "include/generic-glibc/bits/pthreadtypes-arch.h" - "include/generic-glibc/bits/pthreadtypes.h" - "include/generic-glibc/bits/ptrace-shared.h" - "include/generic-glibc/bits/resource.h" - "include/generic-glibc/bits/sched.h" - "include/generic-glibc/bits/select.h" - "include/generic-glibc/bits/select2.h" - "include/generic-glibc/bits/sem-pad.h" - "include/generic-glibc/bits/sem.h" - "include/generic-glibc/bits/semaphore.h" - "include/generic-glibc/bits/setjmp.h" - "include/generic-glibc/bits/setjmp2.h" - "include/generic-glibc/bits/shm-pad.h" - "include/generic-glibc/bits/shm.h" - "include/generic-glibc/bits/shmlba.h" - "include/generic-glibc/bits/sigaction.h" - "include/generic-glibc/bits/sigcontext.h" - "include/generic-glibc/bits/sigevent-consts.h" - "include/generic-glibc/bits/siginfo-arch.h" - "include/generic-glibc/bits/siginfo-consts-arch.h" - "include/generic-glibc/bits/siginfo-consts.h" - "include/generic-glibc/bits/signalfd.h" - "include/generic-glibc/bits/signum-generic.h" - "include/generic-glibc/bits/signum.h" - "include/generic-glibc/bits/sigstack.h" - "include/generic-glibc/bits/sigthread.h" - "include/generic-glibc/bits/sockaddr.h" - "include/generic-glibc/bits/socket.h" - "include/generic-glibc/bits/socket2.h" - "include/generic-glibc/bits/socket_type.h" - "include/generic-glibc/bits/ss_flags.h" - "include/generic-glibc/bits/stab.def" - "include/generic-glibc/bits/stat.h" - "include/generic-glibc/bits/statfs.h" - "include/generic-glibc/bits/statvfs.h" - "include/generic-glibc/bits/statx.h" - "include/generic-glibc/bits/stdint-intn.h" - "include/generic-glibc/bits/stdint-uintn.h" - "include/generic-glibc/bits/stdio-ldbl.h" - "include/generic-glibc/bits/stdio.h" - "include/generic-glibc/bits/stdio2.h" - "include/generic-glibc/bits/stdio_lim.h" - "include/generic-glibc/bits/stdlib-bsearch.h" - "include/generic-glibc/bits/stdlib-float.h" - "include/generic-glibc/bits/stdlib-ldbl.h" - "include/generic-glibc/bits/stdlib.h" - "include/generic-glibc/bits/string_fortified.h" - "include/generic-glibc/bits/strings_fortified.h" - "include/generic-glibc/bits/stropts.h" - "include/generic-glibc/bits/sys_errlist.h" - "include/generic-glibc/bits/syscall.h" - "include/generic-glibc/bits/sysctl.h" - "include/generic-glibc/bits/syslog-ldbl.h" - "include/generic-glibc/bits/syslog-path.h" - "include/generic-glibc/bits/syslog.h" - "include/generic-glibc/bits/sysmacros.h" - "include/generic-glibc/bits/termios-baud.h" - "include/generic-glibc/bits/termios-c_cc.h" - "include/generic-glibc/bits/termios-c_cflag.h" - "include/generic-glibc/bits/termios-c_iflag.h" - "include/generic-glibc/bits/termios-c_lflag.h" - "include/generic-glibc/bits/termios-c_oflag.h" - "include/generic-glibc/bits/termios-misc.h" - "include/generic-glibc/bits/termios-struct.h" - "include/generic-glibc/bits/termios-tcflow.h" - "include/generic-glibc/bits/termios.h" - "include/generic-glibc/bits/thread-shared-types.h" - "include/generic-glibc/bits/time.h" - "include/generic-glibc/bits/time64.h" - "include/generic-glibc/bits/timerfd.h" - "include/generic-glibc/bits/timesize.h" - "include/generic-glibc/bits/timex.h" - "include/generic-glibc/bits/types.h" - "include/generic-glibc/bits/types/FILE.h" - "include/generic-glibc/bits/types/__FILE.h" - "include/generic-glibc/bits/types/__fpos64_t.h" - "include/generic-glibc/bits/types/__fpos_t.h" - "include/generic-glibc/bits/types/__locale_t.h" - "include/generic-glibc/bits/types/__mbstate_t.h" - "include/generic-glibc/bits/types/__sigset_t.h" - "include/generic-glibc/bits/types/__sigval_t.h" - "include/generic-glibc/bits/types/clock_t.h" - "include/generic-glibc/bits/types/clockid_t.h" - "include/generic-glibc/bits/types/cookie_io_functions_t.h" - "include/generic-glibc/bits/types/error_t.h" - "include/generic-glibc/bits/types/locale_t.h" - "include/generic-glibc/bits/types/mbstate_t.h" - "include/generic-glibc/bits/types/res_state.h" - "include/generic-glibc/bits/types/sig_atomic_t.h" - "include/generic-glibc/bits/types/sigevent_t.h" - "include/generic-glibc/bits/types/siginfo_t.h" - "include/generic-glibc/bits/types/sigset_t.h" - "include/generic-glibc/bits/types/sigval_t.h" - "include/generic-glibc/bits/types/stack_t.h" - "include/generic-glibc/bits/types/struct_FILE.h" - "include/generic-glibc/bits/types/struct_iovec.h" - "include/generic-glibc/bits/types/struct_itimerspec.h" - "include/generic-glibc/bits/types/struct_osockaddr.h" - "include/generic-glibc/bits/types/struct_rusage.h" - "include/generic-glibc/bits/types/struct_sched_param.h" - "include/generic-glibc/bits/types/struct_sigstack.h" - "include/generic-glibc/bits/types/struct_timespec.h" - "include/generic-glibc/bits/types/struct_timeval.h" - "include/generic-glibc/bits/types/struct_tm.h" - "include/generic-glibc/bits/types/time_t.h" - "include/generic-glibc/bits/types/timer_t.h" - "include/generic-glibc/bits/types/wint_t.h" - "include/generic-glibc/bits/typesizes.h" - "include/generic-glibc/bits/uintn-identity.h" - "include/generic-glibc/bits/uio-ext.h" - "include/generic-glibc/bits/uio_lim.h" - "include/generic-glibc/bits/unistd.h" - "include/generic-glibc/bits/unistd_ext.h" - "include/generic-glibc/bits/utmp.h" - "include/generic-glibc/bits/utmpx.h" - "include/generic-glibc/bits/utsname.h" - "include/generic-glibc/bits/waitflags.h" - "include/generic-glibc/bits/waitstatus.h" - "include/generic-glibc/bits/wchar-ldbl.h" - "include/generic-glibc/bits/wchar.h" - "include/generic-glibc/bits/wchar2.h" - "include/generic-glibc/bits/wctype-wchar.h" - "include/generic-glibc/bits/wordsize.h" - "include/generic-glibc/bits/xopen_lim.h" - "include/generic-glibc/bits/xtitypes.h" - "include/generic-glibc/byteswap.h" - "include/generic-glibc/complex.h" - "include/generic-glibc/cpio.h" - "include/generic-glibc/crypt.h" - "include/generic-glibc/ctype.h" - "include/generic-glibc/dirent.h" - "include/generic-glibc/dlfcn.h" - "include/generic-glibc/elf.h" - "include/generic-glibc/endian.h" - "include/generic-glibc/envz.h" - "include/generic-glibc/err.h" - "include/generic-glibc/errno.h" - "include/generic-glibc/error.h" - "include/generic-glibc/execinfo.h" - "include/generic-glibc/fcntl.h" - "include/generic-glibc/features.h" - "include/generic-glibc/fenv.h" - "include/generic-glibc/fmtmsg.h" - "include/generic-glibc/fnmatch.h" - "include/generic-glibc/fpregdef.h" - "include/generic-glibc/fpu_control.h" - "include/generic-glibc/fstab.h" - "include/generic-glibc/fts.h" - "include/generic-glibc/ftw.h" - "include/generic-glibc/gconv.h" - "include/generic-glibc/getopt.h" - "include/generic-glibc/glob.h" - "include/generic-glibc/gnu-versions.h" - "include/generic-glibc/gnu/lib-names-32.h" - "include/generic-glibc/gnu/lib-names-hard.h" - "include/generic-glibc/gnu/lib-names-n32_hard.h" - "include/generic-glibc/gnu/lib-names-n64_hard.h" - "include/generic-glibc/gnu/lib-names-o32_hard.h" - "include/generic-glibc/gnu/lib-names-soft.h" - "include/generic-glibc/gnu/lib-names.h" - "include/generic-glibc/gnu/libc-version.h" - "include/generic-glibc/gnu/stubs-32.h" - "include/generic-glibc/gnu/stubs-hard.h" - "include/generic-glibc/gnu/stubs-n32_hard.h" - "include/generic-glibc/gnu/stubs-n64_hard.h" - "include/generic-glibc/gnu/stubs-o32_hard.h" - "include/generic-glibc/gnu/stubs-soft.h" - "include/generic-glibc/gnu/stubs.h" - "include/generic-glibc/grp.h" - "include/generic-glibc/gshadow.h" - "include/generic-glibc/iconv.h" - "include/generic-glibc/ieee754.h" - "include/generic-glibc/ifaddrs.h" - "include/generic-glibc/inttypes.h" - "include/generic-glibc/langinfo.h" - "include/generic-glibc/lastlog.h" - "include/generic-glibc/libgen.h" - "include/generic-glibc/libintl.h" - "include/generic-glibc/limits.h" - "include/generic-glibc/link.h" - "include/generic-glibc/locale.h" - "include/generic-glibc/malloc.h" - "include/generic-glibc/math.h" - "include/generic-glibc/mcheck.h" - "include/generic-glibc/memory.h" - "include/generic-glibc/mntent.h" - "include/generic-glibc/monetary.h" - "include/generic-glibc/mqueue.h" - "include/generic-glibc/net/ethernet.h" - "include/generic-glibc/net/if.h" - "include/generic-glibc/net/if_arp.h" - "include/generic-glibc/net/if_packet.h" - "include/generic-glibc/net/if_ppp.h" - "include/generic-glibc/net/if_shaper.h" - "include/generic-glibc/net/if_slip.h" - "include/generic-glibc/net/ppp-comp.h" - "include/generic-glibc/net/ppp_defs.h" - "include/generic-glibc/net/route.h" - "include/generic-glibc/netash/ash.h" - "include/generic-glibc/netatalk/at.h" - "include/generic-glibc/netax25/ax25.h" - "include/generic-glibc/netdb.h" - "include/generic-glibc/neteconet/ec.h" - "include/generic-glibc/netinet/ether.h" - "include/generic-glibc/netinet/icmp6.h" - "include/generic-glibc/netinet/if_ether.h" - "include/generic-glibc/netinet/if_fddi.h" - "include/generic-glibc/netinet/if_tr.h" - "include/generic-glibc/netinet/igmp.h" - "include/generic-glibc/netinet/in.h" - "include/generic-glibc/netinet/in_systm.h" - "include/generic-glibc/netinet/ip.h" - "include/generic-glibc/netinet/ip6.h" - "include/generic-glibc/netinet/ip_icmp.h" - "include/generic-glibc/netinet/tcp.h" - "include/generic-glibc/netinet/udp.h" - "include/generic-glibc/netipx/ipx.h" - "include/generic-glibc/netiucv/iucv.h" - "include/generic-glibc/netpacket/packet.h" - "include/generic-glibc/netrom/netrom.h" - "include/generic-glibc/netrose/rose.h" - "include/generic-glibc/nfs/nfs.h" - "include/generic-glibc/nl_types.h" - "include/generic-glibc/nss.h" - "include/generic-glibc/obstack.h" - "include/generic-glibc/paths.h" - "include/generic-glibc/poll.h" - "include/generic-glibc/printf.h" - "include/generic-glibc/proc_service.h" - "include/generic-glibc/protocols/routed.h" - "include/generic-glibc/protocols/rwhod.h" - "include/generic-glibc/protocols/talkd.h" - "include/generic-glibc/protocols/timed.h" - "include/generic-glibc/pthread.h" - "include/generic-glibc/pty.h" - "include/generic-glibc/pwd.h" - "include/generic-glibc/re_comp.h" - "include/generic-glibc/regdef.h" - "include/generic-glibc/regex.h" - "include/generic-glibc/regexp.h" - "include/generic-glibc/resolv.h" - "include/generic-glibc/rpc/netdb.h" - "include/generic-glibc/sched.h" - "include/generic-glibc/scsi/scsi.h" - "include/generic-glibc/scsi/scsi_ioctl.h" - "include/generic-glibc/scsi/sg.h" - "include/generic-glibc/search.h" - "include/generic-glibc/semaphore.h" - "include/generic-glibc/setjmp.h" - "include/generic-glibc/sgidefs.h" - "include/generic-glibc/sgtty.h" - "include/generic-glibc/shadow.h" - "include/generic-glibc/signal.h" - "include/generic-glibc/spawn.h" - "include/generic-glibc/stab.h" - "include/generic-glibc/stdc-predef.h" - "include/generic-glibc/stdint.h" - "include/generic-glibc/stdio.h" - "include/generic-glibc/stdio_ext.h" - "include/generic-glibc/stdlib.h" - "include/generic-glibc/string.h" - "include/generic-glibc/strings.h" - "include/generic-glibc/stropts.h" - "include/generic-glibc/sys/acct.h" - "include/generic-glibc/sys/asm.h" - "include/generic-glibc/sys/auxv.h" - "include/generic-glibc/sys/bitypes.h" - "include/generic-glibc/sys/cachectl.h" - "include/generic-glibc/sys/cdefs.h" - "include/generic-glibc/sys/debugreg.h" - "include/generic-glibc/sys/dir.h" - "include/generic-glibc/sys/elf.h" - "include/generic-glibc/sys/epoll.h" - "include/generic-glibc/sys/errno.h" - "include/generic-glibc/sys/eventfd.h" - "include/generic-glibc/sys/fanotify.h" - "include/generic-glibc/sys/fcntl.h" - "include/generic-glibc/sys/file.h" - "include/generic-glibc/sys/fpregdef.h" - "include/generic-glibc/sys/fsuid.h" - "include/generic-glibc/sys/gmon.h" - "include/generic-glibc/sys/gmon_out.h" - "include/generic-glibc/sys/inotify.h" - "include/generic-glibc/sys/io.h" - "include/generic-glibc/sys/ioctl.h" - "include/generic-glibc/sys/ipc.h" - "include/generic-glibc/sys/kd.h" - "include/generic-glibc/sys/klog.h" - "include/generic-glibc/sys/mman.h" - "include/generic-glibc/sys/mount.h" - "include/generic-glibc/sys/msg.h" - "include/generic-glibc/sys/mtio.h" - "include/generic-glibc/sys/param.h" - "include/generic-glibc/sys/pci.h" - "include/generic-glibc/sys/perm.h" - "include/generic-glibc/sys/personality.h" - "include/generic-glibc/sys/platform/ppc.h" - "include/generic-glibc/sys/poll.h" - "include/generic-glibc/sys/prctl.h" - "include/generic-glibc/sys/procfs.h" - "include/generic-glibc/sys/profil.h" - "include/generic-glibc/sys/ptrace.h" - "include/generic-glibc/sys/queue.h" - "include/generic-glibc/sys/quota.h" - "include/generic-glibc/sys/random.h" - "include/generic-glibc/sys/raw.h" - "include/generic-glibc/sys/reboot.h" - "include/generic-glibc/sys/reg.h" - "include/generic-glibc/sys/regdef.h" - "include/generic-glibc/sys/resource.h" - "include/generic-glibc/sys/select.h" - "include/generic-glibc/sys/sem.h" - "include/generic-glibc/sys/sendfile.h" - "include/generic-glibc/sys/shm.h" - "include/generic-glibc/sys/signal.h" - "include/generic-glibc/sys/signalfd.h" - "include/generic-glibc/sys/socket.h" - "include/generic-glibc/sys/socketvar.h" - "include/generic-glibc/sys/soundcard.h" - "include/generic-glibc/sys/stat.h" - "include/generic-glibc/sys/statfs.h" - "include/generic-glibc/sys/statvfs.h" - "include/generic-glibc/sys/stropts.h" - "include/generic-glibc/sys/swap.h" - "include/generic-glibc/sys/syscall.h" - "include/generic-glibc/sys/sysctl.h" - "include/generic-glibc/sys/sysinfo.h" - "include/generic-glibc/sys/syslog.h" - "include/generic-glibc/sys/sysmacros.h" - "include/generic-glibc/sys/sysmips.h" - "include/generic-glibc/sys/tas.h" - "include/generic-glibc/sys/termios.h" - "include/generic-glibc/sys/time.h" - "include/generic-glibc/sys/timeb.h" - "include/generic-glibc/sys/timerfd.h" - "include/generic-glibc/sys/times.h" - "include/generic-glibc/sys/timex.h" - "include/generic-glibc/sys/ttychars.h" - "include/generic-glibc/sys/ttydefaults.h" - "include/generic-glibc/sys/types.h" - "include/generic-glibc/sys/ucontext.h" - "include/generic-glibc/sys/uio.h" - "include/generic-glibc/sys/un.h" - "include/generic-glibc/sys/unistd.h" - "include/generic-glibc/sys/user.h" - "include/generic-glibc/sys/utsname.h" - "include/generic-glibc/sys/vfs.h" - "include/generic-glibc/sys/vlimit.h" - "include/generic-glibc/sys/vm86.h" - "include/generic-glibc/sys/vt.h" - "include/generic-glibc/sys/vtimes.h" - "include/generic-glibc/sys/wait.h" - "include/generic-glibc/sys/xattr.h" - "include/generic-glibc/syscall.h" - "include/generic-glibc/sysexits.h" - "include/generic-glibc/syslog.h" - "include/generic-glibc/tar.h" - "include/generic-glibc/termio.h" - "include/generic-glibc/termios.h" - "include/generic-glibc/tgmath.h" - "include/generic-glibc/thread_db.h" - "include/generic-glibc/threads.h" - "include/generic-glibc/time.h" - "include/generic-glibc/ttyent.h" - "include/generic-glibc/uchar.h" - "include/generic-glibc/ucontext.h" - "include/generic-glibc/ulimit.h" - "include/generic-glibc/unistd.h" - "include/generic-glibc/utime.h" - "include/generic-glibc/utmp.h" - "include/generic-glibc/utmpx.h" - "include/generic-glibc/values.h" - "include/generic-glibc/wait.h" - "include/generic-glibc/wchar.h" - "include/generic-glibc/wctype.h" - "include/generic-glibc/wordexp.h" - "include/generic-musl/aio.h" - "include/generic-musl/alloca.h" - "include/generic-musl/ansidecl.h" - "include/generic-musl/ar.h" - "include/generic-musl/arpa/ftp.h" - "include/generic-musl/arpa/inet.h" - "include/generic-musl/arpa/nameser.h" - "include/generic-musl/arpa/nameser_compat.h" - "include/generic-musl/arpa/telnet.h" - "include/generic-musl/arpa/tftp.h" - "include/generic-musl/assert.h" - "include/generic-musl/bfd.h" - "include/generic-musl/bfdlink.h" - "include/generic-musl/bits/alltypes.h" - "include/generic-musl/bits/endian.h" - "include/generic-musl/bits/errno.h" - "include/generic-musl/bits/fcntl.h" - "include/generic-musl/bits/fenv.h" - "include/generic-musl/bits/float.h" - "include/generic-musl/bits/hwcap.h" - "include/generic-musl/bits/io.h" - "include/generic-musl/bits/ioctl.h" - "include/generic-musl/bits/ioctl_fix.h" - "include/generic-musl/bits/ipc.h" - "include/generic-musl/bits/kd.h" - "include/generic-musl/bits/limits.h" - "include/generic-musl/bits/link.h" - "include/generic-musl/bits/mman.h" - "include/generic-musl/bits/msg.h" - "include/generic-musl/bits/poll.h" - "include/generic-musl/bits/posix.h" - "include/generic-musl/bits/ptrace.h" - "include/generic-musl/bits/reg.h" - "include/generic-musl/bits/resource.h" - "include/generic-musl/bits/sem.h" - "include/generic-musl/bits/setjmp.h" - "include/generic-musl/bits/shm.h" - "include/generic-musl/bits/signal.h" - "include/generic-musl/bits/socket.h" - "include/generic-musl/bits/soundcard.h" - "include/generic-musl/bits/stat.h" - "include/generic-musl/bits/statfs.h" - "include/generic-musl/bits/stdint.h" - "include/generic-musl/bits/syscall.h" - "include/generic-musl/bits/termios.h" - "include/generic-musl/bits/user.h" - "include/generic-musl/bits/vt.h" - "include/generic-musl/byteswap.h" - "include/generic-musl/complex.h" - "include/generic-musl/cpio.h" - "include/generic-musl/crypt.h" - "include/generic-musl/ctype.h" - "include/generic-musl/diagnostics.h" - "include/generic-musl/dirent.h" - "include/generic-musl/dis-asm.h" - "include/generic-musl/dlfcn.h" - "include/generic-musl/drm/amdgpu_drm.h" - "include/generic-musl/drm/armada_drm.h" - "include/generic-musl/drm/drm.h" - "include/generic-musl/drm/drm_fourcc.h" - "include/generic-musl/drm/drm_mode.h" - "include/generic-musl/drm/drm_sarea.h" - "include/generic-musl/drm/etnaviv_drm.h" - "include/generic-musl/drm/exynos_drm.h" - "include/generic-musl/drm/i810_drm.h" - "include/generic-musl/drm/i915_drm.h" - "include/generic-musl/drm/mga_drm.h" - "include/generic-musl/drm/msm_drm.h" - "include/generic-musl/drm/nouveau_drm.h" - "include/generic-musl/drm/omap_drm.h" - "include/generic-musl/drm/qxl_drm.h" - "include/generic-musl/drm/r128_drm.h" - "include/generic-musl/drm/radeon_drm.h" - "include/generic-musl/drm/savage_drm.h" - "include/generic-musl/drm/sis_drm.h" - "include/generic-musl/drm/tegra_drm.h" - "include/generic-musl/drm/v3d_drm.h" - "include/generic-musl/drm/vc4_drm.h" - "include/generic-musl/drm/vgem_drm.h" - "include/generic-musl/drm/via_drm.h" - "include/generic-musl/drm/virtgpu_drm.h" - "include/generic-musl/drm/vmwgfx_drm.h" - "include/generic-musl/elf.h" - "include/generic-musl/endian.h" - "include/generic-musl/err.h" - "include/generic-musl/errno.h" - "include/generic-musl/fcntl.h" - "include/generic-musl/features.h" - "include/generic-musl/fenv.h" - "include/generic-musl/float.h" - "include/generic-musl/fmtmsg.h" - "include/generic-musl/fnmatch.h" - "include/generic-musl/ftw.h" - "include/generic-musl/getopt.h" - "include/generic-musl/glob.h" - "include/generic-musl/grp.h" - "include/generic-musl/iconv.h" - "include/generic-musl/ifaddrs.h" - "include/generic-musl/inttypes.h" - "include/generic-musl/iso646.h" - "include/generic-musl/langinfo.h" - "include/generic-musl/lastlog.h" - "include/generic-musl/libgen.h" - "include/generic-musl/libintl.h" - "include/generic-musl/limits.h" - "include/generic-musl/link.h" - "include/generic-musl/locale.h" - "include/generic-musl/malloc.h" - "include/generic-musl/math.h" - "include/generic-musl/memory.h" - "include/generic-musl/misc/cxl.h" - "include/generic-musl/misc/ocxl.h" - "include/generic-musl/mntent.h" - "include/generic-musl/monetary.h" - "include/generic-musl/mqueue.h" - "include/generic-musl/mtd/inftl-user.h" - "include/generic-musl/mtd/mtd-abi.h" - "include/generic-musl/mtd/mtd-user.h" - "include/generic-musl/mtd/nftl-user.h" - "include/generic-musl/mtd/ubi-user.h" - "include/generic-musl/net/ethernet.h" - "include/generic-musl/net/if.h" - "include/generic-musl/net/if_arp.h" - "include/generic-musl/net/route.h" - "include/generic-musl/netdb.h" - "include/generic-musl/netinet/ether.h" - "include/generic-musl/netinet/icmp6.h" - "include/generic-musl/netinet/if_ether.h" - "include/generic-musl/netinet/igmp.h" - "include/generic-musl/netinet/in.h" - "include/generic-musl/netinet/in_systm.h" - "include/generic-musl/netinet/ip.h" - "include/generic-musl/netinet/ip6.h" - "include/generic-musl/netinet/ip_icmp.h" - "include/generic-musl/netinet/tcp.h" - "include/generic-musl/netinet/udp.h" - "include/generic-musl/netpacket/packet.h" - "include/generic-musl/nl_types.h" - "include/generic-musl/paths.h" - "include/generic-musl/plugin-api.h" - "include/generic-musl/poll.h" - "include/generic-musl/pthread.h" - "include/generic-musl/pty.h" - "include/generic-musl/pwd.h" - "include/generic-musl/rdma/bnxt_re-abi.h" - "include/generic-musl/rdma/cxgb3-abi.h" - "include/generic-musl/rdma/cxgb4-abi.h" - "include/generic-musl/rdma/hfi/hfi1_ioctl.h" - "include/generic-musl/rdma/hfi/hfi1_user.h" - "include/generic-musl/rdma/hns-abi.h" - "include/generic-musl/rdma/i40iw-abi.h" - "include/generic-musl/rdma/ib_user_cm.h" - "include/generic-musl/rdma/ib_user_ioctl_cmds.h" - "include/generic-musl/rdma/ib_user_ioctl_verbs.h" - "include/generic-musl/rdma/ib_user_mad.h" - "include/generic-musl/rdma/ib_user_sa.h" - "include/generic-musl/rdma/ib_user_verbs.h" - "include/generic-musl/rdma/mlx4-abi.h" - "include/generic-musl/rdma/mlx5-abi.h" - "include/generic-musl/rdma/mlx5_user_ioctl_cmds.h" - "include/generic-musl/rdma/mlx5_user_ioctl_verbs.h" - "include/generic-musl/rdma/mthca-abi.h" - "include/generic-musl/rdma/nes-abi.h" - "include/generic-musl/rdma/ocrdma-abi.h" - "include/generic-musl/rdma/qedr-abi.h" - "include/generic-musl/rdma/rdma_netlink.h" - "include/generic-musl/rdma/rdma_user_cm.h" - "include/generic-musl/rdma/rdma_user_ioctl.h" - "include/generic-musl/rdma/rdma_user_ioctl_cmds.h" - "include/generic-musl/rdma/rdma_user_rxe.h" - "include/generic-musl/rdma/vmw_pvrdma-abi.h" - "include/generic-musl/regex.h" - "include/generic-musl/resolv.h" - "include/generic-musl/sched.h" - "include/generic-musl/scsi/cxlflash_ioctl.h" - "include/generic-musl/scsi/fc/fc_els.h" - "include/generic-musl/scsi/fc/fc_fs.h" - "include/generic-musl/scsi/fc/fc_gs.h" - "include/generic-musl/scsi/fc/fc_ns.h" - "include/generic-musl/scsi/scsi.h" - "include/generic-musl/scsi/scsi_bsg_fc.h" - "include/generic-musl/scsi/scsi_ioctl.h" - "include/generic-musl/scsi/scsi_netlink.h" - "include/generic-musl/scsi/scsi_netlink_fc.h" - "include/generic-musl/scsi/sg.h" - "include/generic-musl/search.h" - "include/generic-musl/semaphore.h" - "include/generic-musl/setjmp.h" - "include/generic-musl/shadow.h" - "include/generic-musl/signal.h" - "include/generic-musl/sound/asequencer.h" - "include/generic-musl/sound/asoc.h" - "include/generic-musl/sound/asound.h" - "include/generic-musl/sound/asound_fm.h" - "include/generic-musl/sound/compress_offload.h" - "include/generic-musl/sound/compress_params.h" - "include/generic-musl/sound/emu10k1.h" - "include/generic-musl/sound/firewire.h" - "include/generic-musl/sound/hdsp.h" - "include/generic-musl/sound/hdspm.h" - "include/generic-musl/sound/sb16_csp.h" - "include/generic-musl/sound/sfnt_info.h" - "include/generic-musl/sound/skl-tplg-interface.h" - "include/generic-musl/sound/snd_sst_tokens.h" - "include/generic-musl/sound/tlv.h" - "include/generic-musl/sound/usb_stream.h" - "include/generic-musl/spawn.h" - "include/generic-musl/stdalign.h" - "include/generic-musl/stdarg.h" - "include/generic-musl/stdbool.h" - "include/generic-musl/stdc-predef.h" - "include/generic-musl/stddef.h" - "include/generic-musl/stdint.h" - "include/generic-musl/stdio.h" - "include/generic-musl/stdio_ext.h" - "include/generic-musl/stdlib.h" - "include/generic-musl/stdnoreturn.h" - "include/generic-musl/string.h" - "include/generic-musl/strings.h" - "include/generic-musl/stropts.h" - "include/generic-musl/symcat.h" - "include/generic-musl/sys/acct.h" - "include/generic-musl/sys/auxv.h" - "include/generic-musl/sys/cachectl.h" - "include/generic-musl/sys/dir.h" - "include/generic-musl/sys/epoll.h" - "include/generic-musl/sys/errno.h" - "include/generic-musl/sys/eventfd.h" - "include/generic-musl/sys/fanotify.h" - "include/generic-musl/sys/fcntl.h" - "include/generic-musl/sys/file.h" - "include/generic-musl/sys/fsuid.h" - "include/generic-musl/sys/inotify.h" - "include/generic-musl/sys/io.h" - "include/generic-musl/sys/ioctl.h" - "include/generic-musl/sys/ipc.h" - "include/generic-musl/sys/kd.h" - "include/generic-musl/sys/klog.h" - "include/generic-musl/sys/mman.h" - "include/generic-musl/sys/mount.h" - "include/generic-musl/sys/msg.h" - "include/generic-musl/sys/mtio.h" - "include/generic-musl/sys/param.h" - "include/generic-musl/sys/personality.h" - "include/generic-musl/sys/poll.h" - "include/generic-musl/sys/prctl.h" - "include/generic-musl/sys/procfs.h" - "include/generic-musl/sys/ptrace.h" - "include/generic-musl/sys/quota.h" - "include/generic-musl/sys/random.h" - "include/generic-musl/sys/reboot.h" - "include/generic-musl/sys/reg.h" - "include/generic-musl/sys/resource.h" - "include/generic-musl/sys/select.h" - "include/generic-musl/sys/sem.h" - "include/generic-musl/sys/sendfile.h" - "include/generic-musl/sys/shm.h" - "include/generic-musl/sys/signal.h" - "include/generic-musl/sys/signalfd.h" - "include/generic-musl/sys/socket.h" - "include/generic-musl/sys/soundcard.h" - "include/generic-musl/sys/stat.h" - "include/generic-musl/sys/statfs.h" - "include/generic-musl/sys/statvfs.h" - "include/generic-musl/sys/stropts.h" - "include/generic-musl/sys/swap.h" - "include/generic-musl/sys/syscall.h" - "include/generic-musl/sys/sysinfo.h" - "include/generic-musl/sys/syslog.h" - "include/generic-musl/sys/sysmacros.h" - "include/generic-musl/sys/termios.h" - "include/generic-musl/sys/time.h" - "include/generic-musl/sys/timeb.h" - "include/generic-musl/sys/timerfd.h" - "include/generic-musl/sys/times.h" - "include/generic-musl/sys/timex.h" - "include/generic-musl/sys/ttydefaults.h" - "include/generic-musl/sys/types.h" - "include/generic-musl/sys/ucontext.h" - "include/generic-musl/sys/uio.h" - "include/generic-musl/sys/un.h" - "include/generic-musl/sys/user.h" - "include/generic-musl/sys/utsname.h" - "include/generic-musl/sys/vfs.h" - "include/generic-musl/sys/vt.h" - "include/generic-musl/sys/wait.h" - "include/generic-musl/sys/xattr.h" - "include/generic-musl/syscall.h" - "include/generic-musl/sysexits.h" - "include/generic-musl/syslog.h" - "include/generic-musl/tar.h" - "include/generic-musl/termios.h" - "include/generic-musl/tgmath.h" - "include/generic-musl/threads.h" - "include/generic-musl/time.h" - "include/generic-musl/uchar.h" - "include/generic-musl/ucontext.h" - "include/generic-musl/ulimit.h" - "include/generic-musl/unistd.h" - "include/generic-musl/utime.h" - "include/generic-musl/utmp.h" - "include/generic-musl/utmpx.h" - "include/generic-musl/values.h" - "include/generic-musl/video/edid.h" - "include/generic-musl/video/sisfb.h" - "include/generic-musl/video/uvesafb.h" - "include/generic-musl/wait.h" - "include/generic-musl/wchar.h" - "include/generic-musl/wctype.h" - "include/generic-musl/wordexp.h" - "include/generic-musl/xen/evtchn.h" - "include/generic-musl/xen/gntalloc.h" - "include/generic-musl/xen/gntdev.h" - "include/generic-musl/xen/privcmd.h" - "include/i386-linux-any/asm/auxvec.h" - "include/i386-linux-any/asm/bitsperlong.h" - "include/i386-linux-any/asm/byteorder.h" - "include/i386-linux-any/asm/kvm.h" - "include/i386-linux-any/asm/kvm_para.h" - "include/i386-linux-any/asm/mman.h" - "include/i386-linux-any/asm/msgbuf.h" - "include/i386-linux-any/asm/perf_regs.h" - "include/i386-linux-any/asm/posix_types.h" - "include/i386-linux-any/asm/ptrace.h" - "include/i386-linux-any/asm/sembuf.h" - "include/i386-linux-any/asm/setup.h" - "include/i386-linux-any/asm/shmbuf.h" - "include/i386-linux-any/asm/sigcontext.h" - "include/i386-linux-any/asm/siginfo.h" - "include/i386-linux-any/asm/signal.h" - "include/i386-linux-any/asm/stat.h" - "include/i386-linux-any/asm/statfs.h" - "include/i386-linux-any/asm/swab.h" - "include/i386-linux-any/asm/types.h" - "include/i386-linux-any/asm/ucontext.h" - "include/i386-linux-any/asm/unistd.h" - "include/i386-linux-gnu/bits/a.out.h" - "include/i386-linux-gnu/bits/endian.h" - "include/i386-linux-gnu/bits/environments.h" - "include/i386-linux-gnu/bits/epoll.h" - "include/i386-linux-gnu/bits/fcntl.h" - "include/i386-linux-gnu/bits/fenv.h" - "include/i386-linux-gnu/bits/floatn.h" - "include/i386-linux-gnu/bits/flt-eval-method.h" - "include/i386-linux-gnu/bits/fp-logb.h" - "include/i386-linux-gnu/bits/indirect-return.h" - "include/i386-linux-gnu/bits/ipctypes.h" - "include/i386-linux-gnu/bits/iscanonical.h" - "include/i386-linux-gnu/bits/link.h" - "include/i386-linux-gnu/bits/long-double.h" - "include/i386-linux-gnu/bits/math-vector-fortran.h" - "include/i386-linux-gnu/bits/math-vector.h" - "include/i386-linux-gnu/bits/mman.h" - "include/i386-linux-gnu/bits/procfs-id.h" - "include/i386-linux-gnu/bits/procfs.h" - "include/i386-linux-gnu/bits/pthreadtypes-arch.h" - "include/i386-linux-gnu/bits/select.h" - "include/i386-linux-gnu/bits/sem-pad.h" - "include/i386-linux-gnu/bits/semaphore.h" - "include/i386-linux-gnu/bits/setjmp.h" - "include/i386-linux-gnu/bits/sigcontext.h" - "include/i386-linux-gnu/bits/siginfo-arch.h" - "include/i386-linux-gnu/bits/stat.h" - "include/i386-linux-gnu/bits/sysctl.h" - "include/i386-linux-gnu/bits/timesize.h" - "include/i386-linux-gnu/bits/typesizes.h" - "include/i386-linux-gnu/bits/wordsize.h" - "include/i386-linux-gnu/bits/xtitypes.h" - "include/i386-linux-gnu/fpu_control.h" - "include/i386-linux-gnu/gnu/lib-names.h" - "include/i386-linux-gnu/gnu/stubs.h" - "include/i386-linux-gnu/sys/elf.h" - "include/i386-linux-gnu/sys/io.h" - "include/i386-linux-gnu/sys/ptrace.h" - "include/i386-linux-gnu/sys/ucontext.h" - "include/i386-linux-gnu/sys/user.h" - "include/i386-linux-musl/bfd.h" - "include/i386-linux-musl/bfd_stdint.h" - "include/i386-linux-musl/bits/alltypes.h" - "include/i386-linux-musl/bits/endian.h" - "include/i386-linux-musl/bits/fcntl.h" - "include/i386-linux-musl/bits/fenv.h" - "include/i386-linux-musl/bits/float.h" - "include/i386-linux-musl/bits/io.h" - "include/i386-linux-musl/bits/limits.h" - "include/i386-linux-musl/bits/mman.h" - "include/i386-linux-musl/bits/msg.h" - "include/i386-linux-musl/bits/ptrace.h" - "include/i386-linux-musl/bits/reg.h" - "include/i386-linux-musl/bits/setjmp.h" - "include/i386-linux-musl/bits/shm.h" - "include/i386-linux-musl/bits/signal.h" - "include/i386-linux-musl/bits/stdint.h" - "include/i386-linux-musl/bits/syscall.h" - "include/i386-linux-musl/bits/user.h" - "include/mips-linux-any/asm/auxvec.h" - "include/mips-linux-any/asm/bitsperlong.h" - "include/mips-linux-any/asm/byteorder.h" - "include/mips-linux-any/asm/errno.h" - "include/mips-linux-any/asm/fcntl.h" - "include/mips-linux-any/asm/hwcap.h" - "include/mips-linux-any/asm/ioctl.h" - "include/mips-linux-any/asm/ioctls.h" - "include/mips-linux-any/asm/kvm.h" - "include/mips-linux-any/asm/kvm_para.h" - "include/mips-linux-any/asm/mman.h" - "include/mips-linux-any/asm/msgbuf.h" - "include/mips-linux-any/asm/param.h" - "include/mips-linux-any/asm/poll.h" - "include/mips-linux-any/asm/posix_types.h" - "include/mips-linux-any/asm/ptrace.h" - "include/mips-linux-any/asm/resource.h" - "include/mips-linux-any/asm/sembuf.h" - "include/mips-linux-any/asm/setup.h" - "include/mips-linux-any/asm/shmbuf.h" - "include/mips-linux-any/asm/sigcontext.h" - "include/mips-linux-any/asm/siginfo.h" - "include/mips-linux-any/asm/signal.h" - "include/mips-linux-any/asm/socket.h" - "include/mips-linux-any/asm/sockios.h" - "include/mips-linux-any/asm/stat.h" - "include/mips-linux-any/asm/statfs.h" - "include/mips-linux-any/asm/swab.h" - "include/mips-linux-any/asm/termbits.h" - "include/mips-linux-any/asm/termios.h" - "include/mips-linux-any/asm/types.h" - "include/mips-linux-any/asm/unistd.h" - "include/mips-linux-gnu/bits/dlfcn.h" - "include/mips-linux-gnu/bits/errno.h" - "include/mips-linux-gnu/bits/eventfd.h" - "include/mips-linux-gnu/bits/inotify.h" - "include/mips-linux-gnu/bits/ioctl-types.h" - "include/mips-linux-gnu/bits/ipc.h" - "include/mips-linux-gnu/bits/ipctypes.h" - "include/mips-linux-gnu/bits/local_lim.h" - "include/mips-linux-gnu/bits/mman.h" - "include/mips-linux-gnu/bits/msq-pad.h" - "include/mips-linux-gnu/bits/poll.h" - "include/mips-linux-gnu/bits/resource.h" - "include/mips-linux-gnu/bits/sem-pad.h" - "include/mips-linux-gnu/bits/shm-pad.h" - "include/mips-linux-gnu/bits/shmlba.h" - "include/mips-linux-gnu/bits/sigaction.h" - "include/mips-linux-gnu/bits/sigcontext.h" - "include/mips-linux-gnu/bits/siginfo-arch.h" - "include/mips-linux-gnu/bits/signalfd.h" - "include/mips-linux-gnu/bits/signum.h" - "include/mips-linux-gnu/bits/socket_type.h" - "include/mips-linux-gnu/bits/statfs.h" - "include/mips-linux-gnu/bits/termios-c_cc.h" - "include/mips-linux-gnu/bits/termios-c_lflag.h" - "include/mips-linux-gnu/bits/termios-struct.h" - "include/mips-linux-gnu/bits/termios-tcflow.h" - "include/mips-linux-gnu/bits/timerfd.h" - "include/mips-linux-gnu/bits/types/stack_t.h" - "include/mips-linux-gnu/ieee754.h" - "include/mips-linux-musl/bfd.h" - "include/mips-linux-musl/bfd_stdint.h" - "include/mips-linux-musl/bits/alltypes.h" - "include/mips-linux-musl/bits/endian.h" - "include/mips-linux-musl/bits/errno.h" - "include/mips-linux-musl/bits/fcntl.h" - "include/mips-linux-musl/bits/fenv.h" - "include/mips-linux-musl/bits/hwcap.h" - "include/mips-linux-musl/bits/ioctl.h" - "include/mips-linux-musl/bits/mman.h" - "include/mips-linux-musl/bits/msg.h" - "include/mips-linux-musl/bits/poll.h" - "include/mips-linux-musl/bits/ptrace.h" - "include/mips-linux-musl/bits/reg.h" - "include/mips-linux-musl/bits/resource.h" - "include/mips-linux-musl/bits/sem.h" - "include/mips-linux-musl/bits/setjmp.h" - "include/mips-linux-musl/bits/signal.h" - "include/mips-linux-musl/bits/socket.h" - "include/mips-linux-musl/bits/stat.h" - "include/mips-linux-musl/bits/statfs.h" - "include/mips-linux-musl/bits/stdint.h" - "include/mips-linux-musl/bits/syscall.h" - "include/mips-linux-musl/bits/termios.h" - "include/mips-linux-musl/bits/user.h" - "include/mips64-linux-any/asm/auxvec.h" - "include/mips64-linux-any/asm/bitsperlong.h" - "include/mips64-linux-any/asm/byteorder.h" - "include/mips64-linux-any/asm/errno.h" - "include/mips64-linux-any/asm/fcntl.h" - "include/mips64-linux-any/asm/hwcap.h" - "include/mips64-linux-any/asm/ioctl.h" - "include/mips64-linux-any/asm/ioctls.h" - "include/mips64-linux-any/asm/kvm.h" - "include/mips64-linux-any/asm/kvm_para.h" - "include/mips64-linux-any/asm/mman.h" - "include/mips64-linux-any/asm/msgbuf.h" - "include/mips64-linux-any/asm/param.h" - "include/mips64-linux-any/asm/poll.h" - "include/mips64-linux-any/asm/posix_types.h" - "include/mips64-linux-any/asm/ptrace.h" - "include/mips64-linux-any/asm/resource.h" - "include/mips64-linux-any/asm/sembuf.h" - "include/mips64-linux-any/asm/setup.h" - "include/mips64-linux-any/asm/shmbuf.h" - "include/mips64-linux-any/asm/sigcontext.h" - "include/mips64-linux-any/asm/siginfo.h" - "include/mips64-linux-any/asm/signal.h" - "include/mips64-linux-any/asm/socket.h" - "include/mips64-linux-any/asm/sockios.h" - "include/mips64-linux-any/asm/stat.h" - "include/mips64-linux-any/asm/statfs.h" - "include/mips64-linux-any/asm/swab.h" - "include/mips64-linux-any/asm/termbits.h" - "include/mips64-linux-any/asm/termios.h" - "include/mips64-linux-any/asm/types.h" - "include/mips64-linux-any/asm/unistd.h" - "include/mips64-linux-gnuabi64/bits/dlfcn.h" - "include/mips64-linux-gnuabi64/bits/errno.h" - "include/mips64-linux-gnuabi64/bits/eventfd.h" - "include/mips64-linux-gnuabi64/bits/inotify.h" - "include/mips64-linux-gnuabi64/bits/ioctl-types.h" - "include/mips64-linux-gnuabi64/bits/ipc.h" - "include/mips64-linux-gnuabi64/bits/ipctypes.h" - "include/mips64-linux-gnuabi64/bits/local_lim.h" - "include/mips64-linux-gnuabi64/bits/mman.h" - "include/mips64-linux-gnuabi64/bits/msq-pad.h" - "include/mips64-linux-gnuabi64/bits/poll.h" - "include/mips64-linux-gnuabi64/bits/resource.h" - "include/mips64-linux-gnuabi64/bits/sem-pad.h" - "include/mips64-linux-gnuabi64/bits/shm-pad.h" - "include/mips64-linux-gnuabi64/bits/shmlba.h" - "include/mips64-linux-gnuabi64/bits/sigaction.h" - "include/mips64-linux-gnuabi64/bits/sigcontext.h" - "include/mips64-linux-gnuabi64/bits/siginfo-arch.h" - "include/mips64-linux-gnuabi64/bits/signalfd.h" - "include/mips64-linux-gnuabi64/bits/signum.h" - "include/mips64-linux-gnuabi64/bits/socket_type.h" - "include/mips64-linux-gnuabi64/bits/statfs.h" - "include/mips64-linux-gnuabi64/bits/termios-c_cc.h" - "include/mips64-linux-gnuabi64/bits/termios-c_lflag.h" - "include/mips64-linux-gnuabi64/bits/termios-struct.h" - "include/mips64-linux-gnuabi64/bits/termios-tcflow.h" - "include/mips64-linux-gnuabi64/bits/timerfd.h" - "include/mips64-linux-gnuabi64/bits/types/stack_t.h" - "include/mips64-linux-gnuabi64/ieee754.h" - "include/mips64-linux-gnuabin32/bits/dlfcn.h" - "include/mips64-linux-gnuabin32/bits/errno.h" - "include/mips64-linux-gnuabin32/bits/eventfd.h" - "include/mips64-linux-gnuabin32/bits/inotify.h" - "include/mips64-linux-gnuabin32/bits/ioctl-types.h" - "include/mips64-linux-gnuabin32/bits/ipc.h" - "include/mips64-linux-gnuabin32/bits/ipctypes.h" - "include/mips64-linux-gnuabin32/bits/local_lim.h" - "include/mips64-linux-gnuabin32/bits/mman.h" - "include/mips64-linux-gnuabin32/bits/msq-pad.h" - "include/mips64-linux-gnuabin32/bits/poll.h" - "include/mips64-linux-gnuabin32/bits/resource.h" - "include/mips64-linux-gnuabin32/bits/sem-pad.h" - "include/mips64-linux-gnuabin32/bits/shm-pad.h" - "include/mips64-linux-gnuabin32/bits/shmlba.h" - "include/mips64-linux-gnuabin32/bits/sigaction.h" - "include/mips64-linux-gnuabin32/bits/sigcontext.h" - "include/mips64-linux-gnuabin32/bits/siginfo-arch.h" - "include/mips64-linux-gnuabin32/bits/signalfd.h" - "include/mips64-linux-gnuabin32/bits/signum.h" - "include/mips64-linux-gnuabin32/bits/socket_type.h" - "include/mips64-linux-gnuabin32/bits/statfs.h" - "include/mips64-linux-gnuabin32/bits/termios-c_cc.h" - "include/mips64-linux-gnuabin32/bits/termios-c_lflag.h" - "include/mips64-linux-gnuabin32/bits/termios-struct.h" - "include/mips64-linux-gnuabin32/bits/termios-tcflow.h" - "include/mips64-linux-gnuabin32/bits/timerfd.h" - "include/mips64-linux-gnuabin32/bits/types/stack_t.h" - "include/mips64-linux-gnuabin32/ieee754.h" - "include/mips64-linux-musl/bfd_stdint.h" - "include/mips64-linux-musl/bits/alltypes.h" - "include/mips64-linux-musl/bits/endian.h" - "include/mips64-linux-musl/bits/errno.h" - "include/mips64-linux-musl/bits/fcntl.h" - "include/mips64-linux-musl/bits/fenv.h" - "include/mips64-linux-musl/bits/float.h" - "include/mips64-linux-musl/bits/hwcap.h" - "include/mips64-linux-musl/bits/ioctl.h" - "include/mips64-linux-musl/bits/ipc.h" - "include/mips64-linux-musl/bits/limits.h" - "include/mips64-linux-musl/bits/mman.h" - "include/mips64-linux-musl/bits/poll.h" - "include/mips64-linux-musl/bits/posix.h" - "include/mips64-linux-musl/bits/ptrace.h" - "include/mips64-linux-musl/bits/reg.h" - "include/mips64-linux-musl/bits/resource.h" - "include/mips64-linux-musl/bits/sem.h" - "include/mips64-linux-musl/bits/setjmp.h" - "include/mips64-linux-musl/bits/signal.h" - "include/mips64-linux-musl/bits/socket.h" - "include/mips64-linux-musl/bits/stat.h" - "include/mips64-linux-musl/bits/statfs.h" - "include/mips64-linux-musl/bits/syscall.h" - "include/mips64-linux-musl/bits/termios.h" - "include/mips64-linux-musl/bits/user.h" - "include/mips64el-linux-any/asm/auxvec.h" - "include/mips64el-linux-any/asm/bitsperlong.h" - "include/mips64el-linux-any/asm/byteorder.h" - "include/mips64el-linux-any/asm/errno.h" - "include/mips64el-linux-any/asm/fcntl.h" - "include/mips64el-linux-any/asm/hwcap.h" - "include/mips64el-linux-any/asm/ioctl.h" - "include/mips64el-linux-any/asm/ioctls.h" - "include/mips64el-linux-any/asm/kvm.h" - "include/mips64el-linux-any/asm/kvm_para.h" - "include/mips64el-linux-any/asm/mman.h" - "include/mips64el-linux-any/asm/msgbuf.h" - "include/mips64el-linux-any/asm/param.h" - "include/mips64el-linux-any/asm/poll.h" - "include/mips64el-linux-any/asm/posix_types.h" - "include/mips64el-linux-any/asm/ptrace.h" - "include/mips64el-linux-any/asm/resource.h" - "include/mips64el-linux-any/asm/sembuf.h" - "include/mips64el-linux-any/asm/setup.h" - "include/mips64el-linux-any/asm/shmbuf.h" - "include/mips64el-linux-any/asm/sigcontext.h" - "include/mips64el-linux-any/asm/siginfo.h" - "include/mips64el-linux-any/asm/signal.h" - "include/mips64el-linux-any/asm/socket.h" - "include/mips64el-linux-any/asm/sockios.h" - "include/mips64el-linux-any/asm/stat.h" - "include/mips64el-linux-any/asm/statfs.h" - "include/mips64el-linux-any/asm/swab.h" - "include/mips64el-linux-any/asm/termbits.h" - "include/mips64el-linux-any/asm/termios.h" - "include/mips64el-linux-any/asm/types.h" - "include/mips64el-linux-any/asm/unistd.h" - "include/mips64el-linux-gnuabi64/bits/dlfcn.h" - "include/mips64el-linux-gnuabi64/bits/errno.h" - "include/mips64el-linux-gnuabi64/bits/eventfd.h" - "include/mips64el-linux-gnuabi64/bits/inotify.h" - "include/mips64el-linux-gnuabi64/bits/ioctl-types.h" - "include/mips64el-linux-gnuabi64/bits/ipc.h" - "include/mips64el-linux-gnuabi64/bits/ipctypes.h" - "include/mips64el-linux-gnuabi64/bits/local_lim.h" - "include/mips64el-linux-gnuabi64/bits/mman.h" - "include/mips64el-linux-gnuabi64/bits/msq-pad.h" - "include/mips64el-linux-gnuabi64/bits/poll.h" - "include/mips64el-linux-gnuabi64/bits/resource.h" - "include/mips64el-linux-gnuabi64/bits/sem-pad.h" - "include/mips64el-linux-gnuabi64/bits/shm-pad.h" - "include/mips64el-linux-gnuabi64/bits/shmlba.h" - "include/mips64el-linux-gnuabi64/bits/sigaction.h" - "include/mips64el-linux-gnuabi64/bits/sigcontext.h" - "include/mips64el-linux-gnuabi64/bits/siginfo-arch.h" - "include/mips64el-linux-gnuabi64/bits/signalfd.h" - "include/mips64el-linux-gnuabi64/bits/signum.h" - "include/mips64el-linux-gnuabi64/bits/socket_type.h" - "include/mips64el-linux-gnuabi64/bits/statfs.h" - "include/mips64el-linux-gnuabi64/bits/termios-c_cc.h" - "include/mips64el-linux-gnuabi64/bits/termios-c_lflag.h" - "include/mips64el-linux-gnuabi64/bits/termios-struct.h" - "include/mips64el-linux-gnuabi64/bits/termios-tcflow.h" - "include/mips64el-linux-gnuabi64/bits/timerfd.h" - "include/mips64el-linux-gnuabi64/bits/types/stack_t.h" - "include/mips64el-linux-gnuabi64/ieee754.h" - "include/mips64el-linux-gnuabin32/bits/dlfcn.h" - "include/mips64el-linux-gnuabin32/bits/errno.h" - "include/mips64el-linux-gnuabin32/bits/eventfd.h" - "include/mips64el-linux-gnuabin32/bits/inotify.h" - "include/mips64el-linux-gnuabin32/bits/ioctl-types.h" - "include/mips64el-linux-gnuabin32/bits/ipc.h" - "include/mips64el-linux-gnuabin32/bits/ipctypes.h" - "include/mips64el-linux-gnuabin32/bits/local_lim.h" - "include/mips64el-linux-gnuabin32/bits/mman.h" - "include/mips64el-linux-gnuabin32/bits/msq-pad.h" - "include/mips64el-linux-gnuabin32/bits/poll.h" - "include/mips64el-linux-gnuabin32/bits/resource.h" - "include/mips64el-linux-gnuabin32/bits/sem-pad.h" - "include/mips64el-linux-gnuabin32/bits/shm-pad.h" - "include/mips64el-linux-gnuabin32/bits/shmlba.h" - "include/mips64el-linux-gnuabin32/bits/sigaction.h" - "include/mips64el-linux-gnuabin32/bits/sigcontext.h" - "include/mips64el-linux-gnuabin32/bits/siginfo-arch.h" - "include/mips64el-linux-gnuabin32/bits/signalfd.h" - "include/mips64el-linux-gnuabin32/bits/signum.h" - "include/mips64el-linux-gnuabin32/bits/socket_type.h" - "include/mips64el-linux-gnuabin32/bits/statfs.h" - "include/mips64el-linux-gnuabin32/bits/termios-c_cc.h" - "include/mips64el-linux-gnuabin32/bits/termios-c_lflag.h" - "include/mips64el-linux-gnuabin32/bits/termios-struct.h" - "include/mips64el-linux-gnuabin32/bits/termios-tcflow.h" - "include/mips64el-linux-gnuabin32/bits/timerfd.h" - "include/mips64el-linux-gnuabin32/bits/types/stack_t.h" - "include/mips64el-linux-gnuabin32/ieee754.h" - "include/mips64el-linux-musl/bfd_stdint.h" - "include/mips64el-linux-musl/bits/alltypes.h" - "include/mips64el-linux-musl/bits/endian.h" - "include/mips64el-linux-musl/bits/errno.h" - "include/mips64el-linux-musl/bits/fcntl.h" - "include/mips64el-linux-musl/bits/fenv.h" - "include/mips64el-linux-musl/bits/float.h" - "include/mips64el-linux-musl/bits/hwcap.h" - "include/mips64el-linux-musl/bits/ioctl.h" - "include/mips64el-linux-musl/bits/ipc.h" - "include/mips64el-linux-musl/bits/limits.h" - "include/mips64el-linux-musl/bits/mman.h" - "include/mips64el-linux-musl/bits/poll.h" - "include/mips64el-linux-musl/bits/posix.h" - "include/mips64el-linux-musl/bits/ptrace.h" - "include/mips64el-linux-musl/bits/reg.h" - "include/mips64el-linux-musl/bits/resource.h" - "include/mips64el-linux-musl/bits/sem.h" - "include/mips64el-linux-musl/bits/setjmp.h" - "include/mips64el-linux-musl/bits/signal.h" - "include/mips64el-linux-musl/bits/socket.h" - "include/mips64el-linux-musl/bits/stat.h" - "include/mips64el-linux-musl/bits/statfs.h" - "include/mips64el-linux-musl/bits/syscall.h" - "include/mips64el-linux-musl/bits/termios.h" - "include/mips64el-linux-musl/bits/user.h" - "include/mipsel-linux-any/asm/auxvec.h" - "include/mipsel-linux-any/asm/bitsperlong.h" - "include/mipsel-linux-any/asm/byteorder.h" - "include/mipsel-linux-any/asm/errno.h" - "include/mipsel-linux-any/asm/fcntl.h" - "include/mipsel-linux-any/asm/hwcap.h" - "include/mipsel-linux-any/asm/ioctl.h" - "include/mipsel-linux-any/asm/ioctls.h" - "include/mipsel-linux-any/asm/kvm.h" - "include/mipsel-linux-any/asm/kvm_para.h" - "include/mipsel-linux-any/asm/mman.h" - "include/mipsel-linux-any/asm/msgbuf.h" - "include/mipsel-linux-any/asm/param.h" - "include/mipsel-linux-any/asm/poll.h" - "include/mipsel-linux-any/asm/posix_types.h" - "include/mipsel-linux-any/asm/ptrace.h" - "include/mipsel-linux-any/asm/resource.h" - "include/mipsel-linux-any/asm/sembuf.h" - "include/mipsel-linux-any/asm/setup.h" - "include/mipsel-linux-any/asm/shmbuf.h" - "include/mipsel-linux-any/asm/sigcontext.h" - "include/mipsel-linux-any/asm/siginfo.h" - "include/mipsel-linux-any/asm/signal.h" - "include/mipsel-linux-any/asm/socket.h" - "include/mipsel-linux-any/asm/sockios.h" - "include/mipsel-linux-any/asm/stat.h" - "include/mipsel-linux-any/asm/statfs.h" - "include/mipsel-linux-any/asm/swab.h" - "include/mipsel-linux-any/asm/termbits.h" - "include/mipsel-linux-any/asm/termios.h" - "include/mipsel-linux-any/asm/types.h" - "include/mipsel-linux-any/asm/unistd.h" - "include/mipsel-linux-gnu/bits/dlfcn.h" - "include/mipsel-linux-gnu/bits/errno.h" - "include/mipsel-linux-gnu/bits/eventfd.h" - "include/mipsel-linux-gnu/bits/inotify.h" - "include/mipsel-linux-gnu/bits/ioctl-types.h" - "include/mipsel-linux-gnu/bits/ipc.h" - "include/mipsel-linux-gnu/bits/ipctypes.h" - "include/mipsel-linux-gnu/bits/local_lim.h" - "include/mipsel-linux-gnu/bits/mman.h" - "include/mipsel-linux-gnu/bits/msq-pad.h" - "include/mipsel-linux-gnu/bits/poll.h" - "include/mipsel-linux-gnu/bits/resource.h" - "include/mipsel-linux-gnu/bits/sem-pad.h" - "include/mipsel-linux-gnu/bits/shm-pad.h" - "include/mipsel-linux-gnu/bits/shmlba.h" - "include/mipsel-linux-gnu/bits/sigaction.h" - "include/mipsel-linux-gnu/bits/sigcontext.h" - "include/mipsel-linux-gnu/bits/siginfo-arch.h" - "include/mipsel-linux-gnu/bits/signalfd.h" - "include/mipsel-linux-gnu/bits/signum.h" - "include/mipsel-linux-gnu/bits/socket_type.h" - "include/mipsel-linux-gnu/bits/statfs.h" - "include/mipsel-linux-gnu/bits/termios-c_cc.h" - "include/mipsel-linux-gnu/bits/termios-c_lflag.h" - "include/mipsel-linux-gnu/bits/termios-struct.h" - "include/mipsel-linux-gnu/bits/termios-tcflow.h" - "include/mipsel-linux-gnu/bits/timerfd.h" - "include/mipsel-linux-gnu/bits/types/stack_t.h" - "include/mipsel-linux-gnu/ieee754.h" - "include/mipsel-linux-musl/bfd.h" - "include/mipsel-linux-musl/bfd_stdint.h" - "include/mipsel-linux-musl/bits/alltypes.h" - "include/mipsel-linux-musl/bits/endian.h" - "include/mipsel-linux-musl/bits/errno.h" - "include/mipsel-linux-musl/bits/fcntl.h" - "include/mipsel-linux-musl/bits/fenv.h" - "include/mipsel-linux-musl/bits/hwcap.h" - "include/mipsel-linux-musl/bits/ioctl.h" - "include/mipsel-linux-musl/bits/mman.h" - "include/mipsel-linux-musl/bits/msg.h" - "include/mipsel-linux-musl/bits/poll.h" - "include/mipsel-linux-musl/bits/ptrace.h" - "include/mipsel-linux-musl/bits/reg.h" - "include/mipsel-linux-musl/bits/resource.h" - "include/mipsel-linux-musl/bits/sem.h" - "include/mipsel-linux-musl/bits/setjmp.h" - "include/mipsel-linux-musl/bits/signal.h" - "include/mipsel-linux-musl/bits/socket.h" - "include/mipsel-linux-musl/bits/stat.h" - "include/mipsel-linux-musl/bits/statfs.h" - "include/mipsel-linux-musl/bits/stdint.h" - "include/mipsel-linux-musl/bits/syscall.h" - "include/mipsel-linux-musl/bits/termios.h" - "include/mipsel-linux-musl/bits/user.h" - "include/powerpc-linux-any/asm/auxvec.h" - "include/powerpc-linux-any/asm/bitsperlong.h" - "include/powerpc-linux-any/asm/byteorder.h" - "include/powerpc-linux-any/asm/errno.h" - "include/powerpc-linux-any/asm/fcntl.h" - "include/powerpc-linux-any/asm/ioctl.h" - "include/powerpc-linux-any/asm/ioctls.h" - "include/powerpc-linux-any/asm/ipcbuf.h" - "include/powerpc-linux-any/asm/kvm.h" - "include/powerpc-linux-any/asm/kvm_para.h" - "include/powerpc-linux-any/asm/mman.h" - "include/powerpc-linux-any/asm/msgbuf.h" - "include/powerpc-linux-any/asm/perf_regs.h" - "include/powerpc-linux-any/asm/posix_types.h" - "include/powerpc-linux-any/asm/ptrace.h" - "include/powerpc-linux-any/asm/sembuf.h" - "include/powerpc-linux-any/asm/setup.h" - "include/powerpc-linux-any/asm/shmbuf.h" - "include/powerpc-linux-any/asm/sigcontext.h" - "include/powerpc-linux-any/asm/siginfo.h" - "include/powerpc-linux-any/asm/signal.h" - "include/powerpc-linux-any/asm/socket.h" - "include/powerpc-linux-any/asm/stat.h" - "include/powerpc-linux-any/asm/swab.h" - "include/powerpc-linux-any/asm/termbits.h" - "include/powerpc-linux-any/asm/termios.h" - "include/powerpc-linux-any/asm/types.h" - "include/powerpc-linux-any/asm/ucontext.h" - "include/powerpc-linux-any/asm/unistd.h" - "include/powerpc-linux-gnu/bits/endian.h" - "include/powerpc-linux-gnu/bits/environments.h" - "include/powerpc-linux-gnu/bits/fcntl.h" - "include/powerpc-linux-gnu/bits/fenv.h" - "include/powerpc-linux-gnu/bits/fenvinline.h" - "include/powerpc-linux-gnu/bits/floatn.h" - "include/powerpc-linux-gnu/bits/fp-fast.h" - "include/powerpc-linux-gnu/bits/hwcap.h" - "include/powerpc-linux-gnu/bits/ioctl-types.h" - "include/powerpc-linux-gnu/bits/ipc.h" - "include/powerpc-linux-gnu/bits/iscanonical.h" - "include/powerpc-linux-gnu/bits/link.h" - "include/powerpc-linux-gnu/bits/local_lim.h" - "include/powerpc-linux-gnu/bits/long-double.h" - "include/powerpc-linux-gnu/bits/mman.h" - "include/powerpc-linux-gnu/bits/msq-pad.h" - "include/powerpc-linux-gnu/bits/procfs.h" - "include/powerpc-linux-gnu/bits/pthreadtypes-arch.h" - "include/powerpc-linux-gnu/bits/sem-pad.h" - "include/powerpc-linux-gnu/bits/semaphore.h" - "include/powerpc-linux-gnu/bits/setjmp.h" - "include/powerpc-linux-gnu/bits/shm-pad.h" - "include/powerpc-linux-gnu/bits/sigstack.h" - "include/powerpc-linux-gnu/bits/stat.h" - "include/powerpc-linux-gnu/bits/termios-baud.h" - "include/powerpc-linux-gnu/bits/termios-c_cc.h" - "include/powerpc-linux-gnu/bits/termios-c_cflag.h" - "include/powerpc-linux-gnu/bits/termios-c_iflag.h" - "include/powerpc-linux-gnu/bits/termios-c_lflag.h" - "include/powerpc-linux-gnu/bits/termios-c_oflag.h" - "include/powerpc-linux-gnu/bits/termios-misc.h" - "include/powerpc-linux-gnu/bits/wordsize.h" - "include/powerpc-linux-gnu/fpu_control.h" - "include/powerpc-linux-gnu/gnu/lib-names-32.h" - "include/powerpc-linux-gnu/gnu/lib-names.h" - "include/powerpc-linux-gnu/gnu/stubs.h" - "include/powerpc-linux-gnu/ieee754.h" - "include/powerpc-linux-gnu/sys/ptrace.h" - "include/powerpc-linux-gnu/sys/ucontext.h" - "include/powerpc-linux-gnu/sys/user.h" - "include/powerpc-linux-musl/bfd.h" - "include/powerpc-linux-musl/bfd_stdint.h" - "include/powerpc-linux-musl/bits/alltypes.h" - "include/powerpc-linux-musl/bits/endian.h" - "include/powerpc-linux-musl/bits/errno.h" - "include/powerpc-linux-musl/bits/fcntl.h" - "include/powerpc-linux-musl/bits/fenv.h" - "include/powerpc-linux-musl/bits/hwcap.h" - "include/powerpc-linux-musl/bits/ioctl.h" - "include/powerpc-linux-musl/bits/ipc.h" - "include/powerpc-linux-musl/bits/mman.h" - "include/powerpc-linux-musl/bits/msg.h" - "include/powerpc-linux-musl/bits/ptrace.h" - "include/powerpc-linux-musl/bits/sem.h" - "include/powerpc-linux-musl/bits/setjmp.h" - "include/powerpc-linux-musl/bits/shm.h" - "include/powerpc-linux-musl/bits/signal.h" - "include/powerpc-linux-musl/bits/socket.h" - "include/powerpc-linux-musl/bits/stat.h" - "include/powerpc-linux-musl/bits/stdint.h" - "include/powerpc-linux-musl/bits/syscall.h" - "include/powerpc-linux-musl/bits/termios.h" - "include/powerpc-linux-musl/bits/user.h" - "include/powerpc64-linux-any/asm/auxvec.h" - "include/powerpc64-linux-any/asm/bitsperlong.h" - "include/powerpc64-linux-any/asm/byteorder.h" - "include/powerpc64-linux-any/asm/errno.h" - "include/powerpc64-linux-any/asm/fcntl.h" - "include/powerpc64-linux-any/asm/ioctl.h" - "include/powerpc64-linux-any/asm/ioctls.h" - "include/powerpc64-linux-any/asm/ipcbuf.h" - "include/powerpc64-linux-any/asm/kvm.h" - "include/powerpc64-linux-any/asm/kvm_para.h" - "include/powerpc64-linux-any/asm/mman.h" - "include/powerpc64-linux-any/asm/msgbuf.h" - "include/powerpc64-linux-any/asm/perf_regs.h" - "include/powerpc64-linux-any/asm/posix_types.h" - "include/powerpc64-linux-any/asm/ptrace.h" - "include/powerpc64-linux-any/asm/sembuf.h" - "include/powerpc64-linux-any/asm/setup.h" - "include/powerpc64-linux-any/asm/shmbuf.h" - "include/powerpc64-linux-any/asm/sigcontext.h" - "include/powerpc64-linux-any/asm/siginfo.h" - "include/powerpc64-linux-any/asm/signal.h" - "include/powerpc64-linux-any/asm/socket.h" - "include/powerpc64-linux-any/asm/stat.h" - "include/powerpc64-linux-any/asm/swab.h" - "include/powerpc64-linux-any/asm/termbits.h" - "include/powerpc64-linux-any/asm/termios.h" - "include/powerpc64-linux-any/asm/types.h" - "include/powerpc64-linux-any/asm/ucontext.h" - "include/powerpc64-linux-any/asm/unistd.h" - "include/powerpc64-linux-gnu/bits/endian.h" - "include/powerpc64-linux-gnu/bits/environments.h" - "include/powerpc64-linux-gnu/bits/fcntl.h" - "include/powerpc64-linux-gnu/bits/fenv.h" - "include/powerpc64-linux-gnu/bits/fenvinline.h" - "include/powerpc64-linux-gnu/bits/floatn.h" - "include/powerpc64-linux-gnu/bits/fp-fast.h" - "include/powerpc64-linux-gnu/bits/hwcap.h" - "include/powerpc64-linux-gnu/bits/ioctl-types.h" - "include/powerpc64-linux-gnu/bits/ipc.h" - "include/powerpc64-linux-gnu/bits/iscanonical.h" - "include/powerpc64-linux-gnu/bits/link.h" - "include/powerpc64-linux-gnu/bits/local_lim.h" - "include/powerpc64-linux-gnu/bits/long-double.h" - "include/powerpc64-linux-gnu/bits/mman.h" - "include/powerpc64-linux-gnu/bits/msq-pad.h" - "include/powerpc64-linux-gnu/bits/procfs.h" - "include/powerpc64-linux-gnu/bits/pthreadtypes-arch.h" - "include/powerpc64-linux-gnu/bits/sem-pad.h" - "include/powerpc64-linux-gnu/bits/semaphore.h" - "include/powerpc64-linux-gnu/bits/setjmp.h" - "include/powerpc64-linux-gnu/bits/shm-pad.h" - "include/powerpc64-linux-gnu/bits/sigstack.h" - "include/powerpc64-linux-gnu/bits/stat.h" - "include/powerpc64-linux-gnu/bits/termios-baud.h" - "include/powerpc64-linux-gnu/bits/termios-c_cc.h" - "include/powerpc64-linux-gnu/bits/termios-c_cflag.h" - "include/powerpc64-linux-gnu/bits/termios-c_iflag.h" - "include/powerpc64-linux-gnu/bits/termios-c_lflag.h" - "include/powerpc64-linux-gnu/bits/termios-c_oflag.h" - "include/powerpc64-linux-gnu/bits/termios-misc.h" - "include/powerpc64-linux-gnu/bits/wordsize.h" - "include/powerpc64-linux-gnu/fpu_control.h" - "include/powerpc64-linux-gnu/gnu/lib-names-64-v1.h" - "include/powerpc64-linux-gnu/gnu/lib-names.h" - "include/powerpc64-linux-gnu/gnu/stubs-64-v1.h" - "include/powerpc64-linux-gnu/gnu/stubs.h" - "include/powerpc64-linux-gnu/ieee754.h" - "include/powerpc64-linux-gnu/sys/ptrace.h" - "include/powerpc64-linux-gnu/sys/ucontext.h" - "include/powerpc64-linux-gnu/sys/user.h" - "include/powerpc64-linux-musl/bfd_stdint.h" - "include/powerpc64-linux-musl/bits/alltypes.h" - "include/powerpc64-linux-musl/bits/endian.h" - "include/powerpc64-linux-musl/bits/errno.h" - "include/powerpc64-linux-musl/bits/fcntl.h" - "include/powerpc64-linux-musl/bits/fenv.h" - "include/powerpc64-linux-musl/bits/hwcap.h" - "include/powerpc64-linux-musl/bits/ioctl.h" - "include/powerpc64-linux-musl/bits/ipc.h" - "include/powerpc64-linux-musl/bits/limits.h" - "include/powerpc64-linux-musl/bits/mman.h" - "include/powerpc64-linux-musl/bits/msg.h" - "include/powerpc64-linux-musl/bits/posix.h" - "include/powerpc64-linux-musl/bits/ptrace.h" - "include/powerpc64-linux-musl/bits/reg.h" - "include/powerpc64-linux-musl/bits/sem.h" - "include/powerpc64-linux-musl/bits/setjmp.h" - "include/powerpc64-linux-musl/bits/shm.h" - "include/powerpc64-linux-musl/bits/signal.h" - "include/powerpc64-linux-musl/bits/socket.h" - "include/powerpc64-linux-musl/bits/stat.h" - "include/powerpc64-linux-musl/bits/syscall.h" - "include/powerpc64-linux-musl/bits/termios.h" - "include/powerpc64-linux-musl/bits/user.h" - "include/powerpc64le-linux-any/asm/auxvec.h" - "include/powerpc64le-linux-any/asm/bitsperlong.h" - "include/powerpc64le-linux-any/asm/byteorder.h" - "include/powerpc64le-linux-any/asm/errno.h" - "include/powerpc64le-linux-any/asm/fcntl.h" - "include/powerpc64le-linux-any/asm/ioctl.h" - "include/powerpc64le-linux-any/asm/ioctls.h" - "include/powerpc64le-linux-any/asm/ipcbuf.h" - "include/powerpc64le-linux-any/asm/kvm.h" - "include/powerpc64le-linux-any/asm/kvm_para.h" - "include/powerpc64le-linux-any/asm/mman.h" - "include/powerpc64le-linux-any/asm/msgbuf.h" - "include/powerpc64le-linux-any/asm/perf_regs.h" - "include/powerpc64le-linux-any/asm/posix_types.h" - "include/powerpc64le-linux-any/asm/ptrace.h" - "include/powerpc64le-linux-any/asm/sembuf.h" - "include/powerpc64le-linux-any/asm/setup.h" - "include/powerpc64le-linux-any/asm/shmbuf.h" - "include/powerpc64le-linux-any/asm/sigcontext.h" - "include/powerpc64le-linux-any/asm/siginfo.h" - "include/powerpc64le-linux-any/asm/signal.h" - "include/powerpc64le-linux-any/asm/socket.h" - "include/powerpc64le-linux-any/asm/stat.h" - "include/powerpc64le-linux-any/asm/swab.h" - "include/powerpc64le-linux-any/asm/termbits.h" - "include/powerpc64le-linux-any/asm/termios.h" - "include/powerpc64le-linux-any/asm/types.h" - "include/powerpc64le-linux-any/asm/ucontext.h" - "include/powerpc64le-linux-any/asm/unistd.h" - "include/powerpc64le-linux-gnu/bits/endian.h" - "include/powerpc64le-linux-gnu/bits/environments.h" - "include/powerpc64le-linux-gnu/bits/fcntl.h" - "include/powerpc64le-linux-gnu/bits/fenv.h" - "include/powerpc64le-linux-gnu/bits/fenvinline.h" - "include/powerpc64le-linux-gnu/bits/floatn.h" - "include/powerpc64le-linux-gnu/bits/fp-fast.h" - "include/powerpc64le-linux-gnu/bits/hwcap.h" - "include/powerpc64le-linux-gnu/bits/ioctl-types.h" - "include/powerpc64le-linux-gnu/bits/ipc.h" - "include/powerpc64le-linux-gnu/bits/iscanonical.h" - "include/powerpc64le-linux-gnu/bits/link.h" - "include/powerpc64le-linux-gnu/bits/local_lim.h" - "include/powerpc64le-linux-gnu/bits/long-double.h" - "include/powerpc64le-linux-gnu/bits/mman.h" - "include/powerpc64le-linux-gnu/bits/msq-pad.h" - "include/powerpc64le-linux-gnu/bits/procfs.h" - "include/powerpc64le-linux-gnu/bits/pthreadtypes-arch.h" - "include/powerpc64le-linux-gnu/bits/sem-pad.h" - "include/powerpc64le-linux-gnu/bits/semaphore.h" - "include/powerpc64le-linux-gnu/bits/setjmp.h" - "include/powerpc64le-linux-gnu/bits/shm-pad.h" - "include/powerpc64le-linux-gnu/bits/sigstack.h" - "include/powerpc64le-linux-gnu/bits/stat.h" - "include/powerpc64le-linux-gnu/bits/termios-baud.h" - "include/powerpc64le-linux-gnu/bits/termios-c_cc.h" - "include/powerpc64le-linux-gnu/bits/termios-c_cflag.h" - "include/powerpc64le-linux-gnu/bits/termios-c_iflag.h" - "include/powerpc64le-linux-gnu/bits/termios-c_lflag.h" - "include/powerpc64le-linux-gnu/bits/termios-c_oflag.h" - "include/powerpc64le-linux-gnu/bits/termios-misc.h" - "include/powerpc64le-linux-gnu/bits/wordsize.h" - "include/powerpc64le-linux-gnu/fpu_control.h" - "include/powerpc64le-linux-gnu/gnu/lib-names-64-v2.h" - "include/powerpc64le-linux-gnu/gnu/lib-names.h" - "include/powerpc64le-linux-gnu/gnu/stubs-64-v2.h" - "include/powerpc64le-linux-gnu/gnu/stubs.h" - "include/powerpc64le-linux-gnu/ieee754.h" - "include/powerpc64le-linux-gnu/sys/ptrace.h" - "include/powerpc64le-linux-gnu/sys/ucontext.h" - "include/powerpc64le-linux-gnu/sys/user.h" - "include/powerpc64le-linux-musl/bfd_stdint.h" - "include/powerpc64le-linux-musl/bits/alltypes.h" - "include/powerpc64le-linux-musl/bits/endian.h" - "include/powerpc64le-linux-musl/bits/errno.h" - "include/powerpc64le-linux-musl/bits/fcntl.h" - "include/powerpc64le-linux-musl/bits/fenv.h" - "include/powerpc64le-linux-musl/bits/hwcap.h" - "include/powerpc64le-linux-musl/bits/ioctl.h" - "include/powerpc64le-linux-musl/bits/ipc.h" - "include/powerpc64le-linux-musl/bits/limits.h" - "include/powerpc64le-linux-musl/bits/mman.h" - "include/powerpc64le-linux-musl/bits/msg.h" - "include/powerpc64le-linux-musl/bits/posix.h" - "include/powerpc64le-linux-musl/bits/ptrace.h" - "include/powerpc64le-linux-musl/bits/reg.h" - "include/powerpc64le-linux-musl/bits/sem.h" - "include/powerpc64le-linux-musl/bits/setjmp.h" - "include/powerpc64le-linux-musl/bits/shm.h" - "include/powerpc64le-linux-musl/bits/signal.h" - "include/powerpc64le-linux-musl/bits/socket.h" - "include/powerpc64le-linux-musl/bits/stat.h" - "include/powerpc64le-linux-musl/bits/syscall.h" - "include/powerpc64le-linux-musl/bits/termios.h" - "include/powerpc64le-linux-musl/bits/user.h" - "include/riscv32-linux-any/asm/auxvec.h" - "include/riscv32-linux-any/asm/bitsperlong.h" - "include/riscv32-linux-any/asm/byteorder.h" - "include/riscv32-linux-any/asm/elf.h" - "include/riscv32-linux-any/asm/hwcap.h" - "include/riscv32-linux-any/asm/posix_types.h" - "include/riscv32-linux-any/asm/ptrace.h" - "include/riscv32-linux-any/asm/setup.h" - "include/riscv32-linux-any/asm/sigcontext.h" - "include/riscv32-linux-any/asm/siginfo.h" - "include/riscv32-linux-any/asm/signal.h" - "include/riscv32-linux-any/asm/stat.h" - "include/riscv32-linux-any/asm/ucontext.h" - "include/riscv32-linux-any/asm/unistd.h" - "include/riscv32-linux-musl/bfd.h" - "include/riscv32-linux-musl/bfd_stdint.h" - "include/riscv32-linux-musl/bits/alltypes.h" - "include/riscv32-linux-musl/bits/endian.h" - "include/riscv32-linux-musl/bits/fenv.h" - "include/riscv32-linux-musl/bits/float.h" - "include/riscv32-linux-musl/bits/ipc.h" - "include/riscv32-linux-musl/bits/posix.h" - "include/riscv32-linux-musl/bits/reg.h" - "include/riscv32-linux-musl/bits/sem.h" - "include/riscv32-linux-musl/bits/setjmp.h" - "include/riscv32-linux-musl/bits/shm.h" - "include/riscv32-linux-musl/bits/signal.h" - "include/riscv32-linux-musl/bits/socket.h" - "include/riscv32-linux-musl/bits/stat.h" - "include/riscv32-linux-musl/bits/stdint.h" - "include/riscv32-linux-musl/bits/syscall.h" - "include/riscv32-linux-musl/bits/user.h" - "include/riscv32-linux-musl/elf.h" - "include/riscv32-linux-musl/netinet/tcp.h" - "include/riscv32-linux-musl/netinet/udp.h" - "include/riscv32-linux-musl/signal.h" - "include/riscv32-linux-musl/sys/signalfd.h" - "include/riscv32-linux-musl/sys/socket.h" - "include/riscv64-linux-any/asm/auxvec.h" - "include/riscv64-linux-any/asm/bitsperlong.h" - "include/riscv64-linux-any/asm/byteorder.h" - "include/riscv64-linux-any/asm/elf.h" - "include/riscv64-linux-any/asm/hwcap.h" - "include/riscv64-linux-any/asm/posix_types.h" - "include/riscv64-linux-any/asm/ptrace.h" - "include/riscv64-linux-any/asm/setup.h" - "include/riscv64-linux-any/asm/sigcontext.h" - "include/riscv64-linux-any/asm/siginfo.h" - "include/riscv64-linux-any/asm/signal.h" - "include/riscv64-linux-any/asm/stat.h" - "include/riscv64-linux-any/asm/ucontext.h" - "include/riscv64-linux-any/asm/unistd.h" - "include/riscv64-linux-gnu/bits/endian.h" - "include/riscv64-linux-gnu/bits/fcntl.h" - "include/riscv64-linux-gnu/bits/fenv.h" - "include/riscv64-linux-gnu/bits/floatn.h" - "include/riscv64-linux-gnu/bits/link.h" - "include/riscv64-linux-gnu/bits/long-double.h" - "include/riscv64-linux-gnu/bits/procfs.h" - "include/riscv64-linux-gnu/bits/pthreadtypes-arch.h" - "include/riscv64-linux-gnu/bits/semaphore.h" - "include/riscv64-linux-gnu/bits/setjmp.h" - "include/riscv64-linux-gnu/bits/sigcontext.h" - "include/riscv64-linux-gnu/bits/stat.h" - "include/riscv64-linux-gnu/bits/statfs.h" - "include/riscv64-linux-gnu/bits/typesizes.h" - "include/riscv64-linux-gnu/bits/wordsize.h" - "include/riscv64-linux-gnu/fpu_control.h" - "include/riscv64-linux-gnu/gnu/lib-names-lp64.h" - "include/riscv64-linux-gnu/gnu/lib-names.h" - "include/riscv64-linux-gnu/gnu/stubs-lp64.h" - "include/riscv64-linux-gnu/gnu/stubs.h" - "include/riscv64-linux-gnu/ieee754.h" - "include/riscv64-linux-gnu/sys/asm.h" - "include/riscv64-linux-gnu/sys/cachectl.h" - "include/riscv64-linux-gnu/sys/ucontext.h" - "include/riscv64-linux-gnu/sys/user.h" - "include/riscv64-linux-musl/bfd_stdint.h" - "include/riscv64-linux-musl/bits/alltypes.h" - "include/riscv64-linux-musl/bits/endian.h" - "include/riscv64-linux-musl/bits/fenv.h" - "include/riscv64-linux-musl/bits/float.h" - "include/riscv64-linux-musl/bits/ipc.h" - "include/riscv64-linux-musl/bits/limits.h" - "include/riscv64-linux-musl/bits/mman.h" - "include/riscv64-linux-musl/bits/posix.h" - "include/riscv64-linux-musl/bits/reg.h" - "include/riscv64-linux-musl/bits/sem.h" - "include/riscv64-linux-musl/bits/setjmp.h" - "include/riscv64-linux-musl/bits/shm.h" - "include/riscv64-linux-musl/bits/signal.h" - "include/riscv64-linux-musl/bits/socket.h" - "include/riscv64-linux-musl/bits/stat.h" - "include/riscv64-linux-musl/bits/syscall.h" - "include/riscv64-linux-musl/bits/user.h" - "include/riscv64-linux-musl/elf.h" - "include/riscv64-linux-musl/netinet/tcp.h" - "include/riscv64-linux-musl/netinet/udp.h" - "include/riscv64-linux-musl/signal.h" - "include/riscv64-linux-musl/sys/signalfd.h" - "include/riscv64-linux-musl/sys/socket.h" - "include/s390x-linux-any/asm/auxvec.h" - "include/s390x-linux-any/asm/bitsperlong.h" - "include/s390x-linux-any/asm/bpf_perf_event.h" - "include/s390x-linux-any/asm/byteorder.h" - "include/s390x-linux-any/asm/chpid.h" - "include/s390x-linux-any/asm/chsc.h" - "include/s390x-linux-any/asm/clp.h" - "include/s390x-linux-any/asm/cmb.h" - "include/s390x-linux-any/asm/dasd.h" - "include/s390x-linux-any/asm/debug.h" - "include/s390x-linux-any/asm/guarded_storage.h" - "include/s390x-linux-any/asm/hypfs.h" - "include/s390x-linux-any/asm/ioctls.h" - "include/s390x-linux-any/asm/ipcbuf.h" - "include/s390x-linux-any/asm/kvm.h" - "include/s390x-linux-any/asm/kvm_para.h" - "include/s390x-linux-any/asm/kvm_perf.h" - "include/s390x-linux-any/asm/monwriter.h" - "include/s390x-linux-any/asm/perf_regs.h" - "include/s390x-linux-any/asm/pkey.h" - "include/s390x-linux-any/asm/posix_types.h" - "include/s390x-linux-any/asm/ptrace.h" - "include/s390x-linux-any/asm/qeth.h" - "include/s390x-linux-any/asm/runtime_instr.h" - "include/s390x-linux-any/asm/schid.h" - "include/s390x-linux-any/asm/sclp_ctl.h" - "include/s390x-linux-any/asm/setup.h" - "include/s390x-linux-any/asm/sie.h" - "include/s390x-linux-any/asm/sigcontext.h" - "include/s390x-linux-any/asm/siginfo.h" - "include/s390x-linux-any/asm/signal.h" - "include/s390x-linux-any/asm/socket.h" - "include/s390x-linux-any/asm/stat.h" - "include/s390x-linux-any/asm/statfs.h" - "include/s390x-linux-any/asm/sthyi.h" - "include/s390x-linux-any/asm/tape390.h" - "include/s390x-linux-any/asm/termios.h" - "include/s390x-linux-any/asm/types.h" - "include/s390x-linux-any/asm/ucontext.h" - "include/s390x-linux-any/asm/unistd.h" - "include/s390x-linux-any/asm/unistd_32.h" - "include/s390x-linux-any/asm/unistd_64.h" - "include/s390x-linux-any/asm/virtio-ccw.h" - "include/s390x-linux-any/asm/vmcp.h" - "include/s390x-linux-any/asm/vtoc.h" - "include/s390x-linux-any/asm/zcrypt.h" - "include/s390x-linux-gnu/bits/elfclass.h" - "include/s390x-linux-gnu/bits/endian.h" - "include/s390x-linux-gnu/bits/environments.h" - "include/s390x-linux-gnu/bits/fcntl.h" - "include/s390x-linux-gnu/bits/fenv.h" - "include/s390x-linux-gnu/bits/floatn.h" - "include/s390x-linux-gnu/bits/flt-eval-method.h" - "include/s390x-linux-gnu/bits/hwcap.h" - "include/s390x-linux-gnu/bits/ipc.h" - "include/s390x-linux-gnu/bits/link.h" - "include/s390x-linux-gnu/bits/long-double.h" - "include/s390x-linux-gnu/bits/procfs-extra.h" - "include/s390x-linux-gnu/bits/procfs-id.h" - "include/s390x-linux-gnu/bits/procfs.h" - "include/s390x-linux-gnu/bits/pthreadtypes-arch.h" - "include/s390x-linux-gnu/bits/semaphore.h" - "include/s390x-linux-gnu/bits/setjmp.h" - "include/s390x-linux-gnu/bits/sigaction.h" - "include/s390x-linux-gnu/bits/stat.h" - "include/s390x-linux-gnu/bits/statfs.h" - "include/s390x-linux-gnu/bits/typesizes.h" - "include/s390x-linux-gnu/bits/utmp.h" - "include/s390x-linux-gnu/bits/utmpx.h" - "include/s390x-linux-gnu/bits/wordsize.h" - "include/s390x-linux-gnu/bits/xtitypes.h" - "include/s390x-linux-gnu/fpu_control.h" - "include/s390x-linux-gnu/gnu/lib-names-64.h" - "include/s390x-linux-gnu/gnu/lib-names.h" - "include/s390x-linux-gnu/gnu/stubs-64.h" - "include/s390x-linux-gnu/gnu/stubs.h" - "include/s390x-linux-gnu/ieee754.h" - "include/s390x-linux-gnu/sys/elf.h" - "include/s390x-linux-gnu/sys/ptrace.h" - "include/s390x-linux-gnu/sys/ucontext.h" - "include/s390x-linux-gnu/sys/user.h" - "include/s390x-linux-musl/bfd_stdint.h" - "include/s390x-linux-musl/bits/alltypes.h" - "include/s390x-linux-musl/bits/endian.h" - "include/s390x-linux-musl/bits/fcntl.h" - "include/s390x-linux-musl/bits/fenv.h" - "include/s390x-linux-musl/bits/float.h" - "include/s390x-linux-musl/bits/hwcap.h" - "include/s390x-linux-musl/bits/ioctl_fix.h" - "include/s390x-linux-musl/bits/ipc.h" - "include/s390x-linux-musl/bits/limits.h" - "include/s390x-linux-musl/bits/link.h" - "include/s390x-linux-musl/bits/msg.h" - "include/s390x-linux-musl/bits/posix.h" - "include/s390x-linux-musl/bits/ptrace.h" - "include/s390x-linux-musl/bits/reg.h" - "include/s390x-linux-musl/bits/sem.h" - "include/s390x-linux-musl/bits/setjmp.h" - "include/s390x-linux-musl/bits/signal.h" - "include/s390x-linux-musl/bits/socket.h" - "include/s390x-linux-musl/bits/stat.h" - "include/s390x-linux-musl/bits/statfs.h" - "include/s390x-linux-musl/bits/syscall.h" - "include/s390x-linux-musl/bits/user.h" - "include/sparc-linux-gnu/a.out.h" - "include/sparc-linux-gnu/bits/a.out.h" - "include/sparc-linux-gnu/bits/endian.h" - "include/sparc-linux-gnu/bits/environments.h" - "include/sparc-linux-gnu/bits/epoll.h" - "include/sparc-linux-gnu/bits/errno.h" - "include/sparc-linux-gnu/bits/eventfd.h" - "include/sparc-linux-gnu/bits/fcntl.h" - "include/sparc-linux-gnu/bits/fenv.h" - "include/sparc-linux-gnu/bits/floatn.h" - "include/sparc-linux-gnu/bits/hwcap.h" - "include/sparc-linux-gnu/bits/inotify.h" - "include/sparc-linux-gnu/bits/ioctls.h" - "include/sparc-linux-gnu/bits/ipc.h" - "include/sparc-linux-gnu/bits/link.h" - "include/sparc-linux-gnu/bits/local_lim.h" - "include/sparc-linux-gnu/bits/long-double.h" - "include/sparc-linux-gnu/bits/mman.h" - "include/sparc-linux-gnu/bits/msq-pad.h" - "include/sparc-linux-gnu/bits/poll.h" - "include/sparc-linux-gnu/bits/procfs-extra.h" - "include/sparc-linux-gnu/bits/procfs-id.h" - "include/sparc-linux-gnu/bits/procfs.h" - "include/sparc-linux-gnu/bits/pthreadtypes-arch.h" - "include/sparc-linux-gnu/bits/resource.h" - "include/sparc-linux-gnu/bits/sem-pad.h" - "include/sparc-linux-gnu/bits/semaphore.h" - "include/sparc-linux-gnu/bits/setjmp.h" - "include/sparc-linux-gnu/bits/shm-pad.h" - "include/sparc-linux-gnu/bits/shmlba.h" - "include/sparc-linux-gnu/bits/sigaction.h" - "include/sparc-linux-gnu/bits/sigcontext.h" - "include/sparc-linux-gnu/bits/siginfo-arch.h" - "include/sparc-linux-gnu/bits/siginfo-consts-arch.h" - "include/sparc-linux-gnu/bits/signalfd.h" - "include/sparc-linux-gnu/bits/signum.h" - "include/sparc-linux-gnu/bits/sigstack.h" - "include/sparc-linux-gnu/bits/socket_type.h" - "include/sparc-linux-gnu/bits/stat.h" - "include/sparc-linux-gnu/bits/termios-baud.h" - "include/sparc-linux-gnu/bits/termios-c_cc.h" - "include/sparc-linux-gnu/bits/termios-c_oflag.h" - "include/sparc-linux-gnu/bits/termios-struct.h" - "include/sparc-linux-gnu/bits/timerfd.h" - "include/sparc-linux-gnu/bits/typesizes.h" - "include/sparc-linux-gnu/bits/wordsize.h" - "include/sparc-linux-gnu/fpu_control.h" - "include/sparc-linux-gnu/gnu/lib-names-64.h" - "include/sparc-linux-gnu/gnu/lib-names.h" - "include/sparc-linux-gnu/gnu/stubs-64.h" - "include/sparc-linux-gnu/gnu/stubs.h" - "include/sparc-linux-gnu/ieee754.h" - "include/sparc-linux-gnu/sys/ptrace.h" - "include/sparc-linux-gnu/sys/ucontext.h" - "include/sparc-linux-gnu/sys/user.h" - "include/sparcv9-linux-gnu/a.out.h" - "include/sparcv9-linux-gnu/bits/a.out.h" - "include/sparcv9-linux-gnu/bits/endian.h" - "include/sparcv9-linux-gnu/bits/environments.h" - "include/sparcv9-linux-gnu/bits/epoll.h" - "include/sparcv9-linux-gnu/bits/errno.h" - "include/sparcv9-linux-gnu/bits/eventfd.h" - "include/sparcv9-linux-gnu/bits/fcntl.h" - "include/sparcv9-linux-gnu/bits/fenv.h" - "include/sparcv9-linux-gnu/bits/floatn.h" - "include/sparcv9-linux-gnu/bits/hwcap.h" - "include/sparcv9-linux-gnu/bits/inotify.h" - "include/sparcv9-linux-gnu/bits/ioctls.h" - "include/sparcv9-linux-gnu/bits/ipc.h" - "include/sparcv9-linux-gnu/bits/link.h" - "include/sparcv9-linux-gnu/bits/local_lim.h" - "include/sparcv9-linux-gnu/bits/long-double.h" - "include/sparcv9-linux-gnu/bits/mman.h" - "include/sparcv9-linux-gnu/bits/msq-pad.h" - "include/sparcv9-linux-gnu/bits/poll.h" - "include/sparcv9-linux-gnu/bits/procfs-extra.h" - "include/sparcv9-linux-gnu/bits/procfs-id.h" - "include/sparcv9-linux-gnu/bits/procfs.h" - "include/sparcv9-linux-gnu/bits/pthreadtypes-arch.h" - "include/sparcv9-linux-gnu/bits/resource.h" - "include/sparcv9-linux-gnu/bits/sem-pad.h" - "include/sparcv9-linux-gnu/bits/semaphore.h" - "include/sparcv9-linux-gnu/bits/setjmp.h" - "include/sparcv9-linux-gnu/bits/shm-pad.h" - "include/sparcv9-linux-gnu/bits/shmlba.h" - "include/sparcv9-linux-gnu/bits/sigaction.h" - "include/sparcv9-linux-gnu/bits/sigcontext.h" - "include/sparcv9-linux-gnu/bits/siginfo-arch.h" - "include/sparcv9-linux-gnu/bits/siginfo-consts-arch.h" - "include/sparcv9-linux-gnu/bits/signalfd.h" - "include/sparcv9-linux-gnu/bits/signum.h" - "include/sparcv9-linux-gnu/bits/sigstack.h" - "include/sparcv9-linux-gnu/bits/socket_type.h" - "include/sparcv9-linux-gnu/bits/stat.h" - "include/sparcv9-linux-gnu/bits/termios-baud.h" - "include/sparcv9-linux-gnu/bits/termios-c_cc.h" - "include/sparcv9-linux-gnu/bits/termios-c_oflag.h" - "include/sparcv9-linux-gnu/bits/termios-struct.h" - "include/sparcv9-linux-gnu/bits/timerfd.h" - "include/sparcv9-linux-gnu/bits/typesizes.h" - "include/sparcv9-linux-gnu/bits/wordsize.h" - "include/sparcv9-linux-gnu/fpu_control.h" - "include/sparcv9-linux-gnu/gnu/lib-names.h" - "include/sparcv9-linux-gnu/gnu/stubs-32.h" - "include/sparcv9-linux-gnu/gnu/stubs.h" - "include/sparcv9-linux-gnu/ieee754.h" - "include/sparcv9-linux-gnu/sys/ptrace.h" - "include/sparcv9-linux-gnu/sys/ucontext.h" - "include/sparcv9-linux-gnu/sys/user.h" - "include/x86_64-linux-any/asm/auxvec.h" - "include/x86_64-linux-any/asm/bitsperlong.h" - "include/x86_64-linux-any/asm/byteorder.h" - "include/x86_64-linux-any/asm/kvm.h" - "include/x86_64-linux-any/asm/kvm_para.h" - "include/x86_64-linux-any/asm/mman.h" - "include/x86_64-linux-any/asm/msgbuf.h" - "include/x86_64-linux-any/asm/perf_regs.h" - "include/x86_64-linux-any/asm/posix_types.h" - "include/x86_64-linux-any/asm/ptrace.h" - "include/x86_64-linux-any/asm/sembuf.h" - "include/x86_64-linux-any/asm/setup.h" - "include/x86_64-linux-any/asm/shmbuf.h" - "include/x86_64-linux-any/asm/sigcontext.h" - "include/x86_64-linux-any/asm/siginfo.h" - "include/x86_64-linux-any/asm/signal.h" - "include/x86_64-linux-any/asm/stat.h" - "include/x86_64-linux-any/asm/statfs.h" - "include/x86_64-linux-any/asm/swab.h" - "include/x86_64-linux-any/asm/types.h" - "include/x86_64-linux-any/asm/ucontext.h" - "include/x86_64-linux-any/asm/unistd.h" - "include/x86_64-linux-gnu/bits/a.out.h" - "include/x86_64-linux-gnu/bits/endian.h" - "include/x86_64-linux-gnu/bits/environments.h" - "include/x86_64-linux-gnu/bits/epoll.h" - "include/x86_64-linux-gnu/bits/fcntl.h" - "include/x86_64-linux-gnu/bits/fenv.h" - "include/x86_64-linux-gnu/bits/floatn.h" - "include/x86_64-linux-gnu/bits/flt-eval-method.h" - "include/x86_64-linux-gnu/bits/fp-logb.h" - "include/x86_64-linux-gnu/bits/indirect-return.h" - "include/x86_64-linux-gnu/bits/ipctypes.h" - "include/x86_64-linux-gnu/bits/iscanonical.h" - "include/x86_64-linux-gnu/bits/link.h" - "include/x86_64-linux-gnu/bits/long-double.h" - "include/x86_64-linux-gnu/bits/math-vector-fortran.h" - "include/x86_64-linux-gnu/bits/math-vector.h" - "include/x86_64-linux-gnu/bits/mman.h" - "include/x86_64-linux-gnu/bits/procfs-id.h" - "include/x86_64-linux-gnu/bits/procfs.h" - "include/x86_64-linux-gnu/bits/pthreadtypes-arch.h" - "include/x86_64-linux-gnu/bits/select.h" - "include/x86_64-linux-gnu/bits/sem-pad.h" - "include/x86_64-linux-gnu/bits/semaphore.h" - "include/x86_64-linux-gnu/bits/setjmp.h" - "include/x86_64-linux-gnu/bits/sigcontext.h" - "include/x86_64-linux-gnu/bits/siginfo-arch.h" - "include/x86_64-linux-gnu/bits/stat.h" - "include/x86_64-linux-gnu/bits/sysctl.h" - "include/x86_64-linux-gnu/bits/timesize.h" - "include/x86_64-linux-gnu/bits/typesizes.h" - "include/x86_64-linux-gnu/bits/wordsize.h" - "include/x86_64-linux-gnu/bits/xtitypes.h" - "include/x86_64-linux-gnu/fpu_control.h" - "include/x86_64-linux-gnu/gnu/lib-names-64.h" - "include/x86_64-linux-gnu/gnu/lib-names.h" - "include/x86_64-linux-gnu/gnu/stubs-64.h" - "include/x86_64-linux-gnu/gnu/stubs.h" - "include/x86_64-linux-gnu/sys/elf.h" - "include/x86_64-linux-gnu/sys/io.h" - "include/x86_64-linux-gnu/sys/ptrace.h" - "include/x86_64-linux-gnu/sys/ucontext.h" - "include/x86_64-linux-gnu/sys/user.h" - "include/x86_64-linux-gnux32/bits/a.out.h" - "include/x86_64-linux-gnux32/bits/endian.h" - "include/x86_64-linux-gnux32/bits/environments.h" - "include/x86_64-linux-gnux32/bits/epoll.h" - "include/x86_64-linux-gnux32/bits/fcntl.h" - "include/x86_64-linux-gnux32/bits/fenv.h" - "include/x86_64-linux-gnux32/bits/floatn.h" - "include/x86_64-linux-gnux32/bits/flt-eval-method.h" - "include/x86_64-linux-gnux32/bits/fp-logb.h" - "include/x86_64-linux-gnux32/bits/indirect-return.h" - "include/x86_64-linux-gnux32/bits/ipctypes.h" - "include/x86_64-linux-gnux32/bits/iscanonical.h" - "include/x86_64-linux-gnux32/bits/link.h" - "include/x86_64-linux-gnux32/bits/long-double.h" - "include/x86_64-linux-gnux32/bits/math-vector-fortran.h" - "include/x86_64-linux-gnux32/bits/math-vector.h" - "include/x86_64-linux-gnux32/bits/mman.h" - "include/x86_64-linux-gnux32/bits/procfs-id.h" - "include/x86_64-linux-gnux32/bits/procfs.h" - "include/x86_64-linux-gnux32/bits/pthreadtypes-arch.h" - "include/x86_64-linux-gnux32/bits/select.h" - "include/x86_64-linux-gnux32/bits/sem-pad.h" - "include/x86_64-linux-gnux32/bits/semaphore.h" - "include/x86_64-linux-gnux32/bits/setjmp.h" - "include/x86_64-linux-gnux32/bits/sigcontext.h" - "include/x86_64-linux-gnux32/bits/siginfo-arch.h" - "include/x86_64-linux-gnux32/bits/stat.h" - "include/x86_64-linux-gnux32/bits/sysctl.h" - "include/x86_64-linux-gnux32/bits/timesize.h" - "include/x86_64-linux-gnux32/bits/typesizes.h" - "include/x86_64-linux-gnux32/bits/wordsize.h" - "include/x86_64-linux-gnux32/bits/xtitypes.h" - "include/x86_64-linux-gnux32/fpu_control.h" - "include/x86_64-linux-gnux32/gnu/lib-names-x32.h" - "include/x86_64-linux-gnux32/gnu/lib-names.h" - "include/x86_64-linux-gnux32/gnu/stubs-x32.h" - "include/x86_64-linux-gnux32/gnu/stubs.h" - "include/x86_64-linux-gnux32/sys/elf.h" - "include/x86_64-linux-gnux32/sys/io.h" - "include/x86_64-linux-gnux32/sys/ptrace.h" - "include/x86_64-linux-gnux32/sys/ucontext.h" - "include/x86_64-linux-gnux32/sys/user.h" - "include/x86_64-linux-musl/bfd_stdint.h" - "include/x86_64-linux-musl/bits/alltypes.h" - "include/x86_64-linux-musl/bits/endian.h" - "include/x86_64-linux-musl/bits/fcntl.h" - "include/x86_64-linux-musl/bits/fenv.h" - "include/x86_64-linux-musl/bits/float.h" - "include/x86_64-linux-musl/bits/io.h" - "include/x86_64-linux-musl/bits/ipc.h" - "include/x86_64-linux-musl/bits/limits.h" - "include/x86_64-linux-musl/bits/mman.h" - "include/x86_64-linux-musl/bits/msg.h" - "include/x86_64-linux-musl/bits/posix.h" - "include/x86_64-linux-musl/bits/ptrace.h" - "include/x86_64-linux-musl/bits/reg.h" - "include/x86_64-linux-musl/bits/setjmp.h" - "include/x86_64-linux-musl/bits/signal.h" - "include/x86_64-linux-musl/bits/socket.h" - "include/x86_64-linux-musl/bits/stat.h" - "include/x86_64-linux-musl/bits/syscall.h" - "include/x86_64-linux-musl/bits/user.h" - "include/wasm32-freestanding-musl/bits/alltypes.h" - "include/wasm32-freestanding-musl/errno.h" - "mingw/complex/_cabs.c" - "mingw/complex/cabs.c" - "mingw/complex/cabs.def.h" - "mingw/complex/cabsf.c" - "mingw/complex/cabsl.c" - "mingw/complex/cacos.c" - "mingw/complex/cacos.def.h" - "mingw/complex/cacosf.c" - "mingw/complex/cacosh.def.h" - "mingw/complex/cacosl.c" - "mingw/complex/carg.c" - "mingw/complex/carg.def.h" - "mingw/complex/cargf.c" - "mingw/complex/cargl.c" - "mingw/complex/casin.c" - "mingw/complex/casin.def.h" - "mingw/complex/casinf.c" - "mingw/complex/casinh.def.h" - "mingw/complex/casinl.c" - "mingw/complex/catan.c" - "mingw/complex/catan.def.h" - "mingw/complex/catanf.c" - "mingw/complex/catanh.def.h" - "mingw/complex/catanl.c" - "mingw/complex/ccos.c" - "mingw/complex/ccos.def.h" - "mingw/complex/ccosf.c" - "mingw/complex/ccosh.def.h" - "mingw/complex/ccosl.c" - "mingw/complex/cexp.c" - "mingw/complex/cexp.def.h" - "mingw/complex/cexpf.c" - "mingw/complex/cexpl.c" - "mingw/complex/cimag.c" - "mingw/complex/cimag.def.h" - "mingw/complex/cimagf.c" - "mingw/complex/cimagl.c" - "mingw/complex/clog.c" - "mingw/complex/clog.def.h" - "mingw/complex/clog10.c" - "mingw/complex/clog10.def.h" - "mingw/complex/clog10f.c" - "mingw/complex/clog10l.c" - "mingw/complex/clogf.c" - "mingw/complex/clogl.c" - "mingw/complex/complex_internal.h" - "mingw/complex/conj.c" - "mingw/complex/conj.def.h" - "mingw/complex/conjf.c" - "mingw/complex/conjl.c" - "mingw/complex/cpow.c" - "mingw/complex/cpow.def.h" - "mingw/complex/cpowf.c" - "mingw/complex/cpowl.c" - "mingw/complex/cproj.c" - "mingw/complex/cproj.def.h" - "mingw/complex/cprojf.c" - "mingw/complex/cprojl.c" - "mingw/complex/creal.c" - "mingw/complex/creal.def.h" - "mingw/complex/crealf.c" - "mingw/complex/creall.c" - "mingw/complex/csin.c" - "mingw/complex/csin.def.h" - "mingw/complex/csinf.c" - "mingw/complex/csinh.def.h" - "mingw/complex/csinl.c" - "mingw/complex/csqrt.c" - "mingw/complex/csqrt.def.h" - "mingw/complex/csqrtf.c" - "mingw/complex/csqrtl.c" - "mingw/complex/ctan.c" - "mingw/complex/ctan.def.h" - "mingw/complex/ctanf.c" - "mingw/complex/ctanh.def.h" - "mingw/complex/ctanl.c" - "mingw/crt/CRT_fp10.c" - "mingw/crt/_newmode.c" - "mingw/crt/charmax.c" - "mingw/crt/cinitexe.c" - "mingw/crt/crt0_c.c" - "mingw/crt/crt0_w.c" - "mingw/crt/crt_handler.c" - "mingw/crt/crtdll.c" - "mingw/crt/crtexe.c" - "mingw/crt/cxa_atexit.c" - "mingw/crt/dll_argv.c" - "mingw/crt/dllargv.c" - "mingw/crt/dllentry.c" - "mingw/crt/dllmain.c" - "mingw/crt/gccmain.c" - "mingw/crt/gs_support.c" - "mingw/crt/merr.c" - "mingw/crt/mingw_helpers.c" - "mingw/crt/natstart.c" - "mingw/crt/pesect.c" - "mingw/crt/pseudo-reloc-list.c" - "mingw/crt/pseudo-reloc.c" - "mingw/crt/tlsmcrt.c" - "mingw/crt/tlsmthread.c" - "mingw/crt/tlssup.c" - "mingw/crt/tlsthrd.c" - "mingw/crt/udll_argv.c" - "mingw/crt/udllargc.c" - "mingw/crt/wildcard.c" - "mingw/crt/xncommod.c" - "mingw/crt/xthdloc.c" - "mingw/crt/xtxtmode.c" - "mingw/def-include/func.def.in" - "mingw/def-include/msvcrt-common.def.in" - "mingw/gdtoa/arithchk.c" - "mingw/gdtoa/dmisc.c" - "mingw/gdtoa/dtoa.c" - "mingw/gdtoa/g__fmt.c" - "mingw/gdtoa/g_dfmt.c" - "mingw/gdtoa/g_ffmt.c" - "mingw/gdtoa/g_xfmt.c" - "mingw/gdtoa/gd_arith.h" - "mingw/gdtoa/gd_qnan.h" - "mingw/gdtoa/gdtoa.c" - "mingw/gdtoa/gdtoa.h" - "mingw/gdtoa/gdtoaimp.h" - "mingw/gdtoa/gethex.c" - "mingw/gdtoa/gmisc.c" - "mingw/gdtoa/hd_init.c" - "mingw/gdtoa/hexnan.c" - "mingw/gdtoa/misc.c" - "mingw/gdtoa/qnan.c" - "mingw/gdtoa/smisc.c" - "mingw/gdtoa/strtodg.c" - "mingw/gdtoa/strtodnrp.c" - "mingw/gdtoa/strtof.c" - "mingw/gdtoa/strtopx.c" - "mingw/gdtoa/sum.c" - "mingw/gdtoa/ulp.c" - "mingw/include/config.h" - "mingw/include/internal.h" - "mingw/include/msvcrt.h" - "mingw/include/oscalls.h" - "mingw/include/sect_attribs.h" - "mingw/lib-common/advapi32.def.in" - "mingw/lib-common/gdi32.def" - "mingw/lib-common/imm32.def" - "mingw/lib-common/kernel32.def.in" - "mingw/lib-common/msvcrt.def.in" - "mingw/lib-common/ole32.def.in" - "mingw/lib-common/oleaut32.def.in" - "mingw/lib-common/shell32.def" - "mingw/lib-common/user32.def.in" - "mingw/lib-common/version.def" - "mingw/lib-common/winmm.def" - "mingw/lib32/setupapi.def" - "mingw/lib64/setupapi.def" - "mingw/libarm32/setupapi.def" - "mingw/math/abs64.c" - "mingw/math/arm/_chgsignl.S" - "mingw/math/arm/ceil.S" - "mingw/math/arm/ceilf.S" - "mingw/math/arm/ceill.S" - "mingw/math/arm/copysignl.c" - "mingw/math/arm/exp2.c" - "mingw/math/arm/floor.S" - "mingw/math/arm/floorf.S" - "mingw/math/arm/floorl.S" - "mingw/math/arm/ldexpl.c" - "mingw/math/arm/log2.c" - "mingw/math/arm/nearbyint.S" - "mingw/math/arm/nearbyintf.S" - "mingw/math/arm/nearbyintl.S" - "mingw/math/arm/scalbn.c" - "mingw/math/arm/sincos.c" - "mingw/math/arm/trunc.S" - "mingw/math/arm/truncf.S" - "mingw/math/arm64/_chgsignl.S" - "mingw/math/arm64/ceil.S" - "mingw/math/arm64/ceilf.S" - "mingw/math/arm64/ceill.S" - "mingw/math/arm64/copysignl.c" - "mingw/math/arm64/exp2.S" - "mingw/math/arm64/exp2f.S" - "mingw/math/arm64/floor.S" - "mingw/math/arm64/floorf.S" - "mingw/math/arm64/floorl.S" - "mingw/math/arm64/ldexpl.c" - "mingw/math/arm64/log2.c" - "mingw/math/arm64/nearbyint.S" - "mingw/math/arm64/nearbyintf.S" - "mingw/math/arm64/nearbyintl.S" - "mingw/math/arm64/scalbn.c" - "mingw/math/arm64/sincos.c" - "mingw/math/arm64/trunc.S" - "mingw/math/arm64/truncf.S" - "mingw/math/cbrt.c" - "mingw/math/cbrtf.c" - "mingw/math/cbrtl.c" - "mingw/math/cephes_emath.c" - "mingw/math/cephes_emath.h" - "mingw/math/cephes_mconf.h" - "mingw/math/copysign.c" - "mingw/math/copysignf.c" - "mingw/math/coshf.c" - "mingw/math/coshl.c" - "mingw/math/erfl.c" - "mingw/math/expf.c" - "mingw/math/fabs.c" - "mingw/math/fabsf.c" - "mingw/math/fabsl.c" - "mingw/math/fdim.c" - "mingw/math/fdimf.c" - "mingw/math/fdiml.c" - "mingw/math/fma.c" - "mingw/math/fmaf.c" - "mingw/math/fmal.c" - "mingw/math/fmax.c" - "mingw/math/fmaxf.c" - "mingw/math/fmaxl.c" - "mingw/math/fmin.c" - "mingw/math/fminf.c" - "mingw/math/fminl.c" - "mingw/math/fp_consts.c" - "mingw/math/fp_consts.h" - "mingw/math/fp_constsf.c" - "mingw/math/fp_constsl.c" - "mingw/math/fpclassify.c" - "mingw/math/fpclassifyf.c" - "mingw/math/fpclassifyl.c" - "mingw/math/frexpf.c" - "mingw/math/hypot.c" - "mingw/math/hypotf.c" - "mingw/math/hypotl.c" - "mingw/math/isnan.c" - "mingw/math/isnanf.c" - "mingw/math/isnanl.c" - "mingw/math/ldexpf.c" - "mingw/math/lgamma.c" - "mingw/math/lgammaf.c" - "mingw/math/lgammal.c" - "mingw/math/llrint.c" - "mingw/math/llrintf.c" - "mingw/math/llrintl.c" - "mingw/math/llround.c" - "mingw/math/llroundf.c" - "mingw/math/llroundl.c" - "mingw/math/log10f.c" - "mingw/math/logf.c" - "mingw/math/lrint.c" - "mingw/math/lrintf.c" - "mingw/math/lrintl.c" - "mingw/math/lround.c" - "mingw/math/lroundf.c" - "mingw/math/lroundl.c" - "mingw/math/modf.c" - "mingw/math/modff.c" - "mingw/math/modfl.c" - "mingw/math/nextafterf.c" - "mingw/math/nextafterl.c" - "mingw/math/nexttoward.c" - "mingw/math/nexttowardf.c" - "mingw/math/powf.c" - "mingw/math/powi.c" - "mingw/math/powi.def.h" - "mingw/math/powif.c" - "mingw/math/powil.c" - "mingw/math/rint.c" - "mingw/math/rintf.c" - "mingw/math/rintl.c" - "mingw/math/round.c" - "mingw/math/roundf.c" - "mingw/math/roundl.c" - "mingw/math/s_erf.c" - "mingw/math/sf_erf.c" - "mingw/math/signbit.c" - "mingw/math/signbitf.c" - "mingw/math/signbitl.c" - "mingw/math/signgam.c" - "mingw/math/sinhf.c" - "mingw/math/sinhl.c" - "mingw/math/sqrt.c" - "mingw/math/sqrt.def.h" - "mingw/math/sqrtf.c" - "mingw/math/sqrtl.c" - "mingw/math/tanhf.c" - "mingw/math/tanhl.c" - "mingw/math/tgamma.c" - "mingw/math/tgammaf.c" - "mingw/math/tgammal.c" - "mingw/math/truncl.c" - "mingw/math/x86/_chgsignl.S" - "mingw/math/x86/acosf.c" - "mingw/math/x86/acosh.c" - "mingw/math/x86/acosh.def.h" - "mingw/math/x86/acoshf.c" - "mingw/math/x86/acoshl.c" - "mingw/math/x86/acosl.c" - "mingw/math/x86/asinf.c" - "mingw/math/x86/asinh.c" - "mingw/math/x86/asinhf.c" - "mingw/math/x86/asinhl.c" - "mingw/math/x86/asinl.c" - "mingw/math/x86/atan2.c" - "mingw/math/x86/atan2f.c" - "mingw/math/x86/atan2l.c" - "mingw/math/x86/atanf.c" - "mingw/math/x86/atanh.c" - "mingw/math/x86/atanhf.c" - "mingw/math/x86/atanhl.c" - "mingw/math/x86/atanl.c" - "mingw/math/x86/ceil.S" - "mingw/math/x86/ceilf.S" - "mingw/math/x86/ceill.S" - "mingw/math/x86/copysignl.S" - "mingw/math/x86/cos.c" - "mingw/math/x86/cos.def.h" - "mingw/math/x86/cosf.c" - "mingw/math/x86/cosl.c" - "mingw/math/x86/cosl_internal.S" - "mingw/math/x86/cossin.c" - "mingw/math/x86/exp.c" - "mingw/math/x86/exp.def.h" - "mingw/math/x86/exp2.S" - "mingw/math/x86/exp2f.S" - "mingw/math/x86/exp2l.S" - "mingw/math/x86/expl.c" - "mingw/math/x86/expm1.c" - "mingw/math/x86/expm1.def.h" - "mingw/math/x86/expm1f.c" - "mingw/math/x86/expm1l.c" - "mingw/math/x86/fastmath.h" - "mingw/math/x86/floor.S" - "mingw/math/x86/floorf.S" - "mingw/math/x86/floorl.S" - "mingw/math/x86/fmod.c" - "mingw/math/x86/fmodf.c" - "mingw/math/x86/fmodl.c" - "mingw/math/x86/frexpl.S" - "mingw/math/x86/fucom.c" - "mingw/math/x86/ilogb.S" - "mingw/math/x86/ilogbf.S" - "mingw/math/x86/ilogbl.S" - "mingw/math/x86/internal_logl.S" - "mingw/math/x86/ldexp.c" - "mingw/math/x86/ldexpl.c" - "mingw/math/x86/log.c" - "mingw/math/x86/log.def.h" - "mingw/math/x86/log10l.S" - "mingw/math/x86/log1p.S" - "mingw/math/x86/log1pf.S" - "mingw/math/x86/log1pl.S" - "mingw/math/x86/log2.S" - "mingw/math/x86/log2f.S" - "mingw/math/x86/log2l.S" - "mingw/math/x86/logb.c" - "mingw/math/x86/logbf.c" - "mingw/math/x86/logbl.c" - "mingw/math/x86/logl.c" - "mingw/math/x86/nearbyint.S" - "mingw/math/x86/nearbyintf.S" - "mingw/math/x86/nearbyintl.S" - "mingw/math/x86/pow.c" - "mingw/math/x86/pow.def.h" - "mingw/math/x86/powl.c" - "mingw/math/x86/remainder.S" - "mingw/math/x86/remainderf.S" - "mingw/math/x86/remainderl.S" - "mingw/math/x86/remquo.S" - "mingw/math/x86/remquof.S" - "mingw/math/x86/remquol.S" - "mingw/math/x86/scalbn.S" - "mingw/math/x86/scalbnf.S" - "mingw/math/x86/scalbnl.S" - "mingw/math/x86/sin.c" - "mingw/math/x86/sin.def.h" - "mingw/math/x86/sinf.c" - "mingw/math/x86/sinl.c" - "mingw/math/x86/sinl_internal.S" - "mingw/math/x86/tanf.c" - "mingw/math/x86/tanl.S" - "mingw/math/x86/trunc.S" - "mingw/math/x86/truncf.S" - "mingw/misc/__p___argv.c" - "mingw/misc/__p__acmdln.c" - "mingw/misc/__p__fmode.c" - "mingw/misc/__p__wcmdln.c" - "mingw/misc/_configthreadlocale.c" - "mingw/misc/_get_current_locale.c" - "mingw/misc/alarm.c" - "mingw/misc/assert.c" - "mingw/misc/basename.c" - "mingw/misc/btowc.c" - "mingw/misc/delay-f.c" - "mingw/misc/delay-n.c" - "mingw/misc/delayimp.c" - "mingw/misc/difftime.c" - "mingw/misc/difftime32.c" - "mingw/misc/difftime64.c" - "mingw/misc/dirent.c" - "mingw/misc/dirname.c" - "mingw/misc/execv.c" - "mingw/misc/execve.c" - "mingw/misc/execvp.c" - "mingw/misc/execvpe.c" - "mingw/misc/feclearexcept.c" - "mingw/misc/fegetenv.c" - "mingw/misc/fegetexceptflag.c" - "mingw/misc/fegetround.c" - "mingw/misc/feholdexcept.c" - "mingw/misc/feraiseexcept.c" - "mingw/misc/fesetenv.c" - "mingw/misc/fesetexceptflag.c" - "mingw/misc/fesetround.c" - "mingw/misc/fetestexcept.c" - "mingw/misc/feupdateenv.c" - "mingw/misc/ftruncate.c" - "mingw/misc/ftw.c" - "mingw/misc/ftw64.c" - "mingw/misc/fwide.c" - "mingw/misc/getlogin.c" - "mingw/misc/getopt.c" - "mingw/misc/gettimeofday.c" - "mingw/misc/imaxabs.c" - "mingw/misc/imaxdiv.c" - "mingw/misc/invalid_parameter_handler.c" - "mingw/misc/isblank.c" - "mingw/misc/iswblank.c" - "mingw/misc/lc_locale_func.c" - "mingw/misc/mb_wc_common.h" - "mingw/misc/mbrtowc.c" - "mingw/misc/mbsinit.c" - "mingw/misc/mempcpy.c" - "mingw/misc/mingw-aligned-malloc.c" - "mingw/misc/mingw-fseek.c" - "mingw/misc/mingw_getsp.S" - "mingw/misc/mingw_matherr.c" - "mingw/misc/mingw_mbwc_convert.c" - "mingw/misc/mingw_usleep.c" - "mingw/misc/mingw_wcstod.c" - "mingw/misc/mingw_wcstof.c" - "mingw/misc/mingw_wcstold.c" - "mingw/misc/mkstemp.c" - "mingw/misc/onexit_table.c" - "mingw/misc/output_format.c" - "mingw/misc/purecall.c" - "mingw/misc/register_tls_atexit.c" - "mingw/misc/seterrno.c" - "mingw/misc/sleep.c" - "mingw/misc/spawnv.c" - "mingw/misc/spawnve.c" - "mingw/misc/spawnvp.c" - "mingw/misc/spawnvpe.c" - "mingw/misc/strnlen.c" - "mingw/misc/strsafe.c" - "mingw/misc/strtoimax.c" - "mingw/misc/strtold.c" - "mingw/misc/strtoumax.c" - "mingw/misc/tdelete.c" - "mingw/misc/tfind.c" - "mingw/misc/tsearch.c" - "mingw/misc/twalk.c" - "mingw/misc/uchar_c16rtomb.c" - "mingw/misc/uchar_c32rtomb.c" - "mingw/misc/uchar_mbrtoc16.c" - "mingw/misc/uchar_mbrtoc32.c" - "mingw/misc/wassert.c" - "mingw/misc/wcrtomb.c" - "mingw/misc/wcsnlen.c" - "mingw/misc/wcstof.c" - "mingw/misc/wcstoimax.c" - "mingw/misc/wcstold.c" - "mingw/misc/wcstoumax.c" - "mingw/misc/wctob.c" - "mingw/misc/wctrans.c" - "mingw/misc/wctype.c" - "mingw/misc/wdirent.c" - "mingw/misc/winbs_uint64.c" - "mingw/misc/winbs_ulong.c" - "mingw/misc/winbs_ushort.c" - "mingw/misc/wmemchr.c" - "mingw/misc/wmemcmp.c" - "mingw/misc/wmemcpy.c" - "mingw/misc/wmemmove.c" - "mingw/misc/wmempcpy.c" - "mingw/misc/wmemset.c" - "mingw/secapi/_access_s.c" - "mingw/secapi/_cgets_s.c" - "mingw/secapi/_cgetws_s.c" - "mingw/secapi/_chsize_s.c" - "mingw/secapi/_controlfp_s.c" - "mingw/secapi/_cprintf_s.c" - "mingw/secapi/_cprintf_s_l.c" - "mingw/secapi/_ctime32_s.c" - "mingw/secapi/_ctime64_s.c" - "mingw/secapi/_cwprintf_s.c" - "mingw/secapi/_cwprintf_s_l.c" - "mingw/secapi/_gmtime32_s.c" - "mingw/secapi/_gmtime64_s.c" - "mingw/secapi/_localtime32_s.c" - "mingw/secapi/_localtime64_s.c" - "mingw/secapi/_mktemp_s.c" - "mingw/secapi/_sopen_s.c" - "mingw/secapi/_strdate_s.c" - "mingw/secapi/_strtime_s.c" - "mingw/secapi/_umask_s.c" - "mingw/secapi/_vcprintf_s.c" - "mingw/secapi/_vcprintf_s_l.c" - "mingw/secapi/_vcwprintf_s.c" - "mingw/secapi/_vcwprintf_s_l.c" - "mingw/secapi/_vscprintf_p.c" - "mingw/secapi/_vscwprintf_p.c" - "mingw/secapi/_vswprintf_p.c" - "mingw/secapi/_waccess_s.c" - "mingw/secapi/_wasctime_s.c" - "mingw/secapi/_wctime32_s.c" - "mingw/secapi/_wctime64_s.c" - "mingw/secapi/_wmktemp_s.c" - "mingw/secapi/_wstrdate_s.c" - "mingw/secapi/_wstrtime_s.c" - "mingw/secapi/asctime_s.c" - "mingw/secapi/memcpy_s.c" - "mingw/secapi/memmove_s.c" - "mingw/secapi/rand_s.c" - "mingw/secapi/sprintf_s.c" - "mingw/secapi/strerror_s.c" - "mingw/secapi/vsprintf_s.c" - "mingw/secapi/wmemcpy_s.c" - "mingw/secapi/wmemmove_s.c" - "mingw/stdio/_Exit.c" - "mingw/stdio/_findfirst64i32.c" - "mingw/stdio/_findnext64i32.c" - "mingw/stdio/_fstat.c" - "mingw/stdio/_fstat64i32.c" - "mingw/stdio/_ftime.c" - "mingw/stdio/_getc_nolock.c" - "mingw/stdio/_getwc_nolock.c" - "mingw/stdio/_putc_nolock.c" - "mingw/stdio/_putwc_nolock.c" - "mingw/stdio/_stat.c" - "mingw/stdio/_stat64i32.c" - "mingw/stdio/_wfindfirst64i32.c" - "mingw/stdio/_wfindnext64i32.c" - "mingw/stdio/_wstat.c" - "mingw/stdio/_wstat64i32.c" - "mingw/stdio/acrt_iob_func.c" - "mingw/stdio/asprintf.c" - "mingw/stdio/atoll.c" - "mingw/stdio/fgetpos64.c" - "mingw/stdio/fopen64.c" - "mingw/stdio/fseeko32.c" - "mingw/stdio/fseeko64.c" - "mingw/stdio/fsetpos64.c" - "mingw/stdio/ftello.c" - "mingw/stdio/ftello64.c" - "mingw/stdio/ftruncate64.c" - "mingw/stdio/lltoa.c" - "mingw/stdio/lltow.c" - "mingw/stdio/lseek64.c" - "mingw/stdio/mingw_asprintf.c" - "mingw/stdio/mingw_fprintf.c" - "mingw/stdio/mingw_fprintfw.c" - "mingw/stdio/mingw_fscanf.c" - "mingw/stdio/mingw_fwscanf.c" - "mingw/stdio/mingw_lock.c" - "mingw/stdio/mingw_pformat.c" - "mingw/stdio/mingw_pformat.h" - "mingw/stdio/mingw_pformatw.c" - "mingw/stdio/mingw_printf.c" - "mingw/stdio/mingw_printfw.c" - "mingw/stdio/mingw_scanf.c" - "mingw/stdio/mingw_snprintf.c" - "mingw/stdio/mingw_snprintfw.c" - "mingw/stdio/mingw_sprintf.c" - "mingw/stdio/mingw_sprintfw.c" - "mingw/stdio/mingw_sscanf.c" - "mingw/stdio/mingw_swscanf.c" - "mingw/stdio/mingw_vasprintf.c" - "mingw/stdio/mingw_vfprintf.c" - "mingw/stdio/mingw_vfprintfw.c" - "mingw/stdio/mingw_vfscanf.c" - "mingw/stdio/mingw_vprintf.c" - "mingw/stdio/mingw_vprintfw.c" - "mingw/stdio/mingw_vsnprintf.c" - "mingw/stdio/mingw_vsnprintfw.c" - "mingw/stdio/mingw_vsprintf.c" - "mingw/stdio/mingw_vsprintfw.c" - "mingw/stdio/mingw_wscanf.c" - "mingw/stdio/mingw_wvfscanf.c" - "mingw/stdio/scanf.S" - "mingw/stdio/scanf2-template.S" - "mingw/stdio/snprintf.c" - "mingw/stdio/snwprintf.c" - "mingw/stdio/strtof.c" - "mingw/stdio/strtok_r.c" - "mingw/stdio/truncate.c" - "mingw/stdio/ulltoa.c" - "mingw/stdio/ulltow.c" - "mingw/stdio/vasprintf.c" - "mingw/stdio/vfscanf.c" - "mingw/stdio/vfscanf2.S" - "mingw/stdio/vfwscanf.c" - "mingw/stdio/vfwscanf2.S" - "mingw/stdio/vscanf.c" - "mingw/stdio/vscanf2.S" - "mingw/stdio/vsnprintf.c" - "mingw/stdio/vsnwprintf.c" - "mingw/stdio/vsscanf.c" - "mingw/stdio/vsscanf2.S" - "mingw/stdio/vswscanf.c" - "mingw/stdio/vswscanf2.S" - "mingw/stdio/vwscanf.c" - "mingw/stdio/vwscanf2.S" - "mingw/stdio/wtoll.c" - "musl/arch/aarch64/atomic_arch.h" - "musl/arch/aarch64/bits/alltypes.h.in" - "musl/arch/aarch64/bits/endian.h" - "musl/arch/aarch64/bits/fcntl.h" - "musl/arch/aarch64/bits/fenv.h" - "musl/arch/aarch64/bits/float.h" - "musl/arch/aarch64/bits/hwcap.h" - "musl/arch/aarch64/bits/ipc.h" - "musl/arch/aarch64/bits/limits.h" - "musl/arch/aarch64/bits/msg.h" - "musl/arch/aarch64/bits/posix.h" - "musl/arch/aarch64/bits/reg.h" - "musl/arch/aarch64/bits/sem.h" - "musl/arch/aarch64/bits/setjmp.h" - "musl/arch/aarch64/bits/shm.h" - "musl/arch/aarch64/bits/signal.h" - "musl/arch/aarch64/bits/socket.h" - "musl/arch/aarch64/bits/stat.h" - "musl/arch/aarch64/bits/stdint.h" - "musl/arch/aarch64/bits/syscall.h.in" - "musl/arch/aarch64/bits/user.h" - "musl/arch/aarch64/crt_arch.h" - "musl/arch/aarch64/pthread_arch.h" - "musl/arch/aarch64/reloc.h" - "musl/arch/aarch64/syscall_arch.h" - "musl/arch/arm/atomic_arch.h" - "musl/arch/arm/bits/alltypes.h.in" - "musl/arch/arm/bits/endian.h" - "musl/arch/arm/bits/fcntl.h" - "musl/arch/arm/bits/fenv.h" - "musl/arch/arm/bits/float.h" - "musl/arch/arm/bits/hwcap.h" - "musl/arch/arm/bits/ioctl_fix.h" - "musl/arch/arm/bits/limits.h" - "musl/arch/arm/bits/posix.h" - "musl/arch/arm/bits/ptrace.h" - "musl/arch/arm/bits/reg.h" - "musl/arch/arm/bits/setjmp.h" - "musl/arch/arm/bits/signal.h" - "musl/arch/arm/bits/stat.h" - "musl/arch/arm/bits/stdint.h" - "musl/arch/arm/bits/syscall.h.in" - "musl/arch/arm/bits/user.h" - "musl/arch/arm/crt_arch.h" - "musl/arch/arm/pthread_arch.h" - "musl/arch/arm/reloc.h" - "musl/arch/arm/syscall_arch.h" - "musl/arch/generic/bits/errno.h" - "musl/arch/generic/bits/fcntl.h" - "musl/arch/generic/bits/fenv.h" - "musl/arch/generic/bits/hwcap.h" - "musl/arch/generic/bits/io.h" - "musl/arch/generic/bits/ioctl.h" - "musl/arch/generic/bits/ioctl_fix.h" - "musl/arch/generic/bits/ipc.h" - "musl/arch/generic/bits/kd.h" - "musl/arch/generic/bits/link.h" - "musl/arch/generic/bits/mman.h" - "musl/arch/generic/bits/msg.h" - "musl/arch/generic/bits/poll.h" - "musl/arch/generic/bits/ptrace.h" - "musl/arch/generic/bits/resource.h" - "musl/arch/generic/bits/sem.h" - "musl/arch/generic/bits/shm.h" - "musl/arch/generic/bits/socket.h" - "musl/arch/generic/bits/soundcard.h" - "musl/arch/generic/bits/statfs.h" - "musl/arch/generic/bits/termios.h" - "musl/arch/generic/bits/vt.h" - "musl/arch/i386/atomic_arch.h" - "musl/arch/i386/bits/alltypes.h.in" - "musl/arch/i386/bits/endian.h" - "musl/arch/i386/bits/fenv.h" - "musl/arch/i386/bits/float.h" - "musl/arch/i386/bits/io.h" - "musl/arch/i386/bits/limits.h" - "musl/arch/i386/bits/mman.h" - "musl/arch/i386/bits/posix.h" - "musl/arch/i386/bits/ptrace.h" - "musl/arch/i386/bits/reg.h" - "musl/arch/i386/bits/setjmp.h" - "musl/arch/i386/bits/signal.h" - "musl/arch/i386/bits/stat.h" - "musl/arch/i386/bits/stdint.h" - "musl/arch/i386/bits/syscall.h.in" - "musl/arch/i386/bits/user.h" - "musl/arch/i386/crt_arch.h" - "musl/arch/i386/pthread_arch.h" - "musl/arch/i386/reloc.h" - "musl/arch/i386/syscall_arch.h" - "musl/arch/mips/atomic_arch.h" - "musl/arch/mips/bits/alltypes.h.in" - "musl/arch/mips/bits/endian.h" - "musl/arch/mips/bits/errno.h" - "musl/arch/mips/bits/fcntl.h" - "musl/arch/mips/bits/fenv.h" - "musl/arch/mips/bits/float.h" - "musl/arch/mips/bits/hwcap.h" - "musl/arch/mips/bits/ioctl.h" - "musl/arch/mips/bits/limits.h" - "musl/arch/mips/bits/mman.h" - "musl/arch/mips/bits/msg.h" - "musl/arch/mips/bits/poll.h" - "musl/arch/mips/bits/posix.h" - "musl/arch/mips/bits/ptrace.h" - "musl/arch/mips/bits/reg.h" - "musl/arch/mips/bits/resource.h" - "musl/arch/mips/bits/sem.h" - "musl/arch/mips/bits/setjmp.h" - "musl/arch/mips/bits/shm.h" - "musl/arch/mips/bits/signal.h" - "musl/arch/mips/bits/socket.h" - "musl/arch/mips/bits/stat.h" - "musl/arch/mips/bits/statfs.h" - "musl/arch/mips/bits/stdint.h" - "musl/arch/mips/bits/syscall.h.in" - "musl/arch/mips/bits/termios.h" - "musl/arch/mips/bits/user.h" - "musl/arch/mips/crt_arch.h" - "musl/arch/mips/ksigaction.h" - "musl/arch/mips/pthread_arch.h" - "musl/arch/mips/reloc.h" - "musl/arch/mips/syscall_arch.h" - "musl/arch/mips64/atomic_arch.h" - "musl/arch/mips64/bits/alltypes.h.in" - "musl/arch/mips64/bits/endian.h" - "musl/arch/mips64/bits/errno.h" - "musl/arch/mips64/bits/fcntl.h" - "musl/arch/mips64/bits/fenv.h" - "musl/arch/mips64/bits/float.h" - "musl/arch/mips64/bits/hwcap.h" - "musl/arch/mips64/bits/ioctl.h" - "musl/arch/mips64/bits/ipc.h" - "musl/arch/mips64/bits/limits.h" - "musl/arch/mips64/bits/mman.h" - "musl/arch/mips64/bits/msg.h" - "musl/arch/mips64/bits/poll.h" - "musl/arch/mips64/bits/posix.h" - "musl/arch/mips64/bits/ptrace.h" - "musl/arch/mips64/bits/reg.h" - "musl/arch/mips64/bits/resource.h" - "musl/arch/mips64/bits/sem.h" - "musl/arch/mips64/bits/setjmp.h" - "musl/arch/mips64/bits/shm.h" - "musl/arch/mips64/bits/signal.h" - "musl/arch/mips64/bits/socket.h" - "musl/arch/mips64/bits/stat.h" - "musl/arch/mips64/bits/statfs.h" - "musl/arch/mips64/bits/stdint.h" - "musl/arch/mips64/bits/syscall.h.in" - "musl/arch/mips64/bits/termios.h" - "musl/arch/mips64/bits/user.h" - "musl/arch/mips64/crt_arch.h" - "musl/arch/mips64/ksigaction.h" - "musl/arch/mips64/pthread_arch.h" - "musl/arch/mips64/reloc.h" - "musl/arch/mips64/syscall_arch.h" - "musl/arch/powerpc/atomic_arch.h" - "musl/arch/powerpc/bits/alltypes.h.in" - "musl/arch/powerpc/bits/endian.h" - "musl/arch/powerpc/bits/errno.h" - "musl/arch/powerpc/bits/fcntl.h" - "musl/arch/powerpc/bits/fenv.h" - "musl/arch/powerpc/bits/float.h" - "musl/arch/powerpc/bits/hwcap.h" - "musl/arch/powerpc/bits/ioctl.h" - "musl/arch/powerpc/bits/ipc.h" - "musl/arch/powerpc/bits/limits.h" - "musl/arch/powerpc/bits/mman.h" - "musl/arch/powerpc/bits/msg.h" - "musl/arch/powerpc/bits/posix.h" - "musl/arch/powerpc/bits/ptrace.h" - "musl/arch/powerpc/bits/reg.h" - "musl/arch/powerpc/bits/sem.h" - "musl/arch/powerpc/bits/setjmp.h" - "musl/arch/powerpc/bits/shm.h" - "musl/arch/powerpc/bits/signal.h" - "musl/arch/powerpc/bits/socket.h" - "musl/arch/powerpc/bits/stat.h" - "musl/arch/powerpc/bits/stdint.h" - "musl/arch/powerpc/bits/syscall.h.in" - "musl/arch/powerpc/bits/termios.h" - "musl/arch/powerpc/bits/user.h" - "musl/arch/powerpc/crt_arch.h" - "musl/arch/powerpc/pthread_arch.h" - "musl/arch/powerpc/reloc.h" - "musl/arch/powerpc/syscall_arch.h" - "musl/arch/powerpc64/atomic_arch.h" - "musl/arch/powerpc64/bits/alltypes.h.in" - "musl/arch/powerpc64/bits/endian.h" - "musl/arch/powerpc64/bits/errno.h" - "musl/arch/powerpc64/bits/fcntl.h" - "musl/arch/powerpc64/bits/fenv.h" - "musl/arch/powerpc64/bits/float.h" - "musl/arch/powerpc64/bits/hwcap.h" - "musl/arch/powerpc64/bits/ioctl.h" - "musl/arch/powerpc64/bits/ipc.h" - "musl/arch/powerpc64/bits/limits.h" - "musl/arch/powerpc64/bits/mman.h" - "musl/arch/powerpc64/bits/msg.h" - "musl/arch/powerpc64/bits/posix.h" - "musl/arch/powerpc64/bits/ptrace.h" - "musl/arch/powerpc64/bits/reg.h" - "musl/arch/powerpc64/bits/sem.h" - "musl/arch/powerpc64/bits/setjmp.h" - "musl/arch/powerpc64/bits/shm.h" - "musl/arch/powerpc64/bits/signal.h" - "musl/arch/powerpc64/bits/socket.h" - "musl/arch/powerpc64/bits/stat.h" - "musl/arch/powerpc64/bits/stdint.h" - "musl/arch/powerpc64/bits/syscall.h.in" - "musl/arch/powerpc64/bits/termios.h" - "musl/arch/powerpc64/bits/user.h" - "musl/arch/powerpc64/crt_arch.h" - "musl/arch/powerpc64/pthread_arch.h" - "musl/arch/powerpc64/reloc.h" - "musl/arch/powerpc64/syscall_arch.h" - "musl/arch/s390x/atomic_arch.h" - "musl/arch/s390x/bits/alltypes.h.in" - "musl/arch/s390x/bits/endian.h" - "musl/arch/s390x/bits/fcntl.h" - "musl/arch/s390x/bits/fenv.h" - "musl/arch/s390x/bits/float.h" - "musl/arch/s390x/bits/hwcap.h" - "musl/arch/s390x/bits/ioctl_fix.h" - "musl/arch/s390x/bits/ipc.h" - "musl/arch/s390x/bits/limits.h" - "musl/arch/s390x/bits/link.h" - "musl/arch/s390x/bits/msg.h" - "musl/arch/s390x/bits/posix.h" - "musl/arch/s390x/bits/ptrace.h" - "musl/arch/s390x/bits/reg.h" - "musl/arch/s390x/bits/sem.h" - "musl/arch/s390x/bits/setjmp.h" - "musl/arch/s390x/bits/shm.h" - "musl/arch/s390x/bits/signal.h" - "musl/arch/s390x/bits/socket.h" - "musl/arch/s390x/bits/stat.h" - "musl/arch/s390x/bits/statfs.h" - "musl/arch/s390x/bits/stdint.h" - "musl/arch/s390x/bits/syscall.h.in" - "musl/arch/s390x/bits/user.h" - "musl/arch/s390x/crt_arch.h" - "musl/arch/s390x/pthread_arch.h" - "musl/arch/s390x/reloc.h" - "musl/arch/s390x/syscall_arch.h" - "musl/arch/x86_64/atomic_arch.h" - "musl/arch/x86_64/bits/alltypes.h.in" - "musl/arch/x86_64/bits/endian.h" - "musl/arch/x86_64/bits/fcntl.h" - "musl/arch/x86_64/bits/fenv.h" - "musl/arch/x86_64/bits/float.h" - "musl/arch/x86_64/bits/io.h" - "musl/arch/x86_64/bits/ipc.h" - "musl/arch/x86_64/bits/limits.h" - "musl/arch/x86_64/bits/mman.h" - "musl/arch/x86_64/bits/msg.h" - "musl/arch/x86_64/bits/posix.h" - "musl/arch/x86_64/bits/ptrace.h" - "musl/arch/x86_64/bits/reg.h" - "musl/arch/x86_64/bits/setjmp.h" - "musl/arch/x86_64/bits/shm.h" - "musl/arch/x86_64/bits/signal.h" - "musl/arch/x86_64/bits/socket.h" - "musl/arch/x86_64/bits/stat.h" - "musl/arch/x86_64/bits/stdint.h" - "musl/arch/x86_64/bits/syscall.h.in" - "musl/arch/x86_64/bits/user.h" - "musl/arch/x86_64/crt_arch.h" - "musl/arch/x86_64/ksigaction.h" - "musl/arch/x86_64/pthread_arch.h" - "musl/arch/x86_64/reloc.h" - "musl/arch/x86_64/syscall_arch.h" - "musl/crt/Scrt1.c" - "musl/crt/aarch64/crti.s" - "musl/crt/aarch64/crtn.s" - "musl/crt/arm/crti.s" - "musl/crt/arm/crtn.s" - "musl/crt/crt1.c" - "musl/crt/crti.c" - "musl/crt/crtn.c" - "musl/crt/i386/crti.s" - "musl/crt/i386/crtn.s" - "musl/crt/microblaze/crti.s" - "musl/crt/microblaze/crtn.s" - "musl/crt/mips/crti.s" - "musl/crt/mips/crtn.s" - "musl/crt/mips64/crti.s" - "musl/crt/mips64/crtn.s" - "musl/crt/mipsn32/crti.s" - "musl/crt/mipsn32/crtn.s" - "musl/crt/or1k/crti.s" - "musl/crt/or1k/crtn.s" - "musl/crt/powerpc/crti.s" - "musl/crt/powerpc/crtn.s" - "musl/crt/powerpc64/crti.s" - "musl/crt/powerpc64/crtn.s" - "musl/crt/rcrt1.c" - "musl/crt/s390x/crti.s" - "musl/crt/s390x/crtn.s" - "musl/crt/sh/crti.s" - "musl/crt/sh/crtn.s" - "musl/crt/x32/crti.s" - "musl/crt/x32/crtn.s" - "musl/crt/x86_64/crti.s" - "musl/crt/x86_64/crtn.s" - ${ZIG_MUSL_SRC_FILES} -) - -set(ZIG_LIBUNWIND_FILES - "include/__libunwind_config.h" - "include/libunwind.h" - "include/mach-o/compact_unwind_encoding.h" - "include/unwind.h" - "src/AddressSpace.hpp" - "src/CompactUnwinder.hpp" - "src/DwarfInstructions.hpp" - "src/DwarfParser.hpp" - "src/EHHeaderParser.hpp" - "src/RWMutex.hpp" - "src/Registers.hpp" - "src/Unwind-EHABI.cpp" - "src/Unwind-EHABI.h" - "src/Unwind-seh.cpp" - "src/Unwind-sjlj.c" - "src/UnwindCursor.hpp" - "src/UnwindLevel1-gcc-ext.c" - "src/UnwindLevel1.c" - "src/UnwindRegistersRestore.S" - "src/UnwindRegistersSave.S" - "src/Unwind_AppleExtras.cpp" - "src/assembly.h" - "src/config.h" - "src/dwarf2.h" - "src/libunwind.cpp" - "src/libunwind_ext.h" -) - -set(ZIG_LIBCXX_FILES - "include/__bit_reference" - "include/__bsd_locale_defaults.h" - "include/__bsd_locale_fallbacks.h" - "include/__config" - "include/__config_site.in" - "include/__debug" - "include/__errc" - "include/__functional_03" - "include/__functional_base" - "include/__functional_base_03" - "include/__hash_table" - "include/__libcpp_version" - "include/__locale" - "include/__mutex_base" - "include/__node_handle" - "include/__nullptr" - "include/__split_buffer" - "include/__sso_allocator" - "include/__std_stream" - "include/__string" - "include/__threading_support" - "include/__tree" - "include/__tuple" - "include/__undef_macros" - "include/algorithm" - "include/any" - "include/array" - "include/atomic" - "include/bit" - "include/bitset" - "include/cassert" - "include/ccomplex" - "include/cctype" - "include/cerrno" - "include/cfenv" - "include/cfloat" - "include/charconv" - "include/chrono" - "include/cinttypes" - "include/ciso646" - "include/climits" - "include/clocale" - "include/cmath" - "include/codecvt" - "include/compare" - "include/complex" - "include/complex.h" - "include/condition_variable" - "include/csetjmp" - "include/csignal" - "include/cstdarg" - "include/cstdbool" - "include/cstddef" - "include/cstdint" - "include/cstdio" - "include/cstdlib" - "include/cstring" - "include/ctgmath" - "include/ctime" - "include/ctype.h" - "include/cwchar" - "include/cwctype" - "include/deque" - "include/errno.h" - "include/exception" - "include/experimental/__config" - "include/experimental/__memory" - "include/experimental/algorithm" - "include/experimental/any" - "include/experimental/chrono" - "include/experimental/coroutine" - "include/experimental/deque" - "include/experimental/filesystem" - "include/experimental/forward_list" - "include/experimental/functional" - "include/experimental/iterator" - "include/experimental/list" - "include/experimental/map" - "include/experimental/memory_resource" - "include/experimental/numeric" - "include/experimental/optional" - "include/experimental/propagate_const" - "include/experimental/ratio" - "include/experimental/regex" - "include/experimental/set" - "include/experimental/simd" - "include/experimental/string" - "include/experimental/string_view" - "include/experimental/system_error" - "include/experimental/tuple" - "include/experimental/type_traits" - "include/experimental/unordered_map" - "include/experimental/unordered_set" - "include/experimental/utility" - "include/experimental/vector" - "include/ext/__hash" - "include/ext/hash_map" - "include/ext/hash_set" - "include/filesystem" - "include/float.h" - "include/forward_list" - "include/fstream" - "include/functional" - "include/future" - "include/initializer_list" - "include/inttypes.h" - "include/iomanip" - "include/ios" - "include/iosfwd" - "include/iostream" - "include/istream" - "include/iterator" - "include/limits" - "include/limits.h" - "include/list" - "include/locale" - "include/locale.h" - "include/map" - "include/math.h" - "include/memory" - "include/module.modulemap" - "include/mutex" - "include/new" - "include/numeric" - "include/optional" - "include/ostream" - "include/queue" - "include/random" - "include/ratio" - "include/regex" - "include/scoped_allocator" - "include/set" - "include/setjmp.h" - "include/shared_mutex" - "include/span" - "include/sstream" - "include/stack" - "include/stdbool.h" - "include/stddef.h" - "include/stdexcept" - "include/stdint.h" - "include/stdio.h" - "include/stdlib.h" - "include/streambuf" - "include/string" - "include/string.h" - "include/string_view" - "include/strstream" - "include/support/android/locale_bionic.h" - "include/support/fuchsia/xlocale.h" - "include/support/ibm/limits.h" - "include/support/ibm/locale_mgmt_aix.h" - "include/support/ibm/support.h" - "include/support/ibm/xlocale.h" - "include/support/musl/xlocale.h" - "include/support/newlib/xlocale.h" - "include/support/solaris/floatingpoint.h" - "include/support/solaris/wchar.h" - "include/support/solaris/xlocale.h" - "include/support/win32/limits_msvc_win32.h" - "include/support/win32/locale_win32.h" - "include/support/xlocale/__nop_locale_mgmt.h" - "include/support/xlocale/__posix_l_fallback.h" - "include/support/xlocale/__strtonum_fallback.h" - "include/support/xlocale/xlocale.h" - "include/system_error" - "include/tgmath.h" - "include/thread" - "include/tuple" - "include/type_traits" - "include/typeindex" - "include/typeinfo" - "include/unordered_map" - "include/unordered_set" - "include/utility" - "include/valarray" - "include/variant" - "include/vector" - "include/version" - "include/wchar.h" - "include/wctype.h" -) - if(MSVC) set(MSVC_DIA_SDK_DIR "$ENV{VSINSTALLDIR}DIA SDK") if(IS_DIRECTORY ${MSVC_DIA_SDK_DIR}) @@ -8849,23 +2390,17 @@ if(MSVC) else() set(LIBUSERLAND "${CMAKE_BINARY_DIR}/libuserland.a") endif() -add_custom_command( - OUTPUT "${LIBUSERLAND}" - COMMAND zig0 ARGS build +add_custom_target(zig_build_libuserland ALL + COMMAND zig0 build --override-std-dir std --override-lib-dir "${CMAKE_SOURCE_DIR}" - libuserland + libuserland install "-Doutput-dir=${CMAKE_BINARY_DIR}" + "-Dlib-files-only" + --prefix "${CMAKE_INSTALL_PREFIX}" + DEPENDS zig0 + BYPRODUCTS "${LIBUSERLAND}" WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}" - DEPENDS - zig0 - "${CMAKE_SOURCE_DIR}/src-self-hosted/dep_tokenizer.zig" - "${CMAKE_SOURCE_DIR}/src-self-hosted/stage1.zig" - "${CMAKE_SOURCE_DIR}/src-self-hosted/translate_c.zig" - "${CMAKE_SOURCE_DIR}/build.zig" - "${CMAKE_SOURCE_DIR}/std/zig/parse.zig" - "${CMAKE_SOURCE_DIR}/std/zig/render.zig" - "${CMAKE_SOURCE_DIR}/std/zig/tokenizer.zig" ) add_custom_target(userland_target DEPENDS "${LIBUSERLAND}") add_executable(zig "${ZIG_MAIN_SRC}") @@ -8877,29 +2412,3 @@ set_target_properties(zig PROPERTIES target_link_libraries(zig compiler "${LIBUSERLAND}") add_dependencies(zig userland_target) install(TARGETS zig DESTINATION bin) - - -foreach(file ${ZIG_C_HEADER_FILES}) - get_filename_component(file_dir "${C_HEADERS_DEST}/${file}" DIRECTORY) - install(FILES "${CMAKE_SOURCE_DIR}/c_headers/${file}" DESTINATION "${file_dir}") -endforeach() - -foreach(file ${ZIG_STD_FILES}) - get_filename_component(file_dir "${ZIG_STD_DEST}/${file}" DIRECTORY) - install(FILES "${CMAKE_SOURCE_DIR}/std/${file}" DESTINATION "${file_dir}") -endforeach() - -foreach(file ${ZIG_LIBC_FILES}) - get_filename_component(file_dir "${LIBC_FILES_DEST}/${file}" DIRECTORY) - install(FILES "${CMAKE_SOURCE_DIR}/libc/${file}" DESTINATION "${file_dir}") -endforeach() - -foreach(file ${ZIG_LIBUNWIND_FILES}) - get_filename_component(file_dir "${LIBUNWIND_FILES_DEST}/${file}" DIRECTORY) - install(FILES "${CMAKE_SOURCE_DIR}/libunwind/${file}" DESTINATION "${file_dir}") -endforeach() - -foreach(file ${ZIG_LIBCXX_FILES}) - get_filename_component(file_dir "${LIBCXX_FILES_DEST}/${file}" DIRECTORY) - install(FILES "${CMAKE_SOURCE_DIR}/libcxx/${file}" DESTINATION "${file_dir}") -endforeach() diff --git a/build.zig b/build.zig index 90d7fac561..929f21c8df 100644 --- a/build.zig +++ b/build.zig @@ -9,6 +9,7 @@ const ArrayList = std.ArrayList; const Buffer = std.Buffer; const io = std.io; const fs = std.fs; +const InstallDirectoryOptions = std.build.InstallDirectoryOptions; pub fn build(b: *Builder) !void { b.setPreferredReleaseMode(.ReleaseFast); @@ -46,8 +47,6 @@ pub fn build(b: *Builder) !void { .llvm_config_exe = nextValue(&index, build_info), .lld_include_dir = nextValue(&index, build_info), .lld_libraries = nextValue(&index, build_info), - .std_files = nextValue(&index, build_info), - .c_header_files = nextValue(&index, build_info), .dia_guids_lib = nextValue(&index, build_info), .llvm = undefined, }; @@ -64,8 +63,6 @@ pub fn build(b: *Builder) !void { try configureStage2(b, test_stage2, ctx); try configureStage2(b, exe, ctx); - b.default_step.dependOn(&exe.step); - addLibUserlandStep(b); const skip_release = b.option(bool, "skip-release", "Main test suite skips release builds") orelse false; @@ -79,9 +76,38 @@ pub fn build(b: *Builder) !void { //test_step.dependOn(&exe.step); } - exe.install(); - installStdLib(b, ctx.std_files); - installCHeaders(b, ctx.c_header_files); + const only_install_lib_files = b.option(bool, "lib-files-only", "Only install library files") orelse false; + if (!only_install_lib_files) { + b.default_step.dependOn(&exe.step); + exe.install(); + } + + b.installDirectory(InstallDirectoryOptions{ + .source_dir = "c_headers", + .install_dir = .Lib, + .install_subdir = "zig" ++ fs.path.sep_str ++ "include", + }); + b.installDirectory(InstallDirectoryOptions{ + .source_dir = "libc", + .install_dir = .Lib, + .install_subdir = "zig" ++ fs.path.sep_str ++ "libc", + }); + b.installDirectory(InstallDirectoryOptions{ + .source_dir = "libcxx", + .install_dir = .Lib, + .install_subdir = "zig" ++ fs.path.sep_str ++ "libcxx", + }); + b.installDirectory(InstallDirectoryOptions{ + .source_dir = "libunwind", + .install_dir = .Lib, + .install_subdir = "zig" ++ fs.path.sep_str ++ "libunwind", + }); + b.installDirectory(InstallDirectoryOptions{ + .source_dir = "std", + .install_dir = .Lib, + .install_subdir = "zig" ++ fs.path.sep_str ++ "std", + .exclude_extensions = [_][]const u8{"test.zig"}, + }); const test_filter = b.option([]const u8, "test-filter", "Skip tests that do not match filter"); @@ -251,30 +277,6 @@ fn findLLVM(b: *Builder, llvm_config_exe: []const u8) !LibraryDep { return result; } -pub fn installStdLib(b: *Builder, stdlib_files: []const u8) void { - var it = mem.tokenize(stdlib_files, ";"); - while (it.next()) |stdlib_file| { - const src_path = fs.path.join(b.allocator, [_][]const u8{ "std", stdlib_file }) catch unreachable; - const dest_path = fs.path.join( - b.allocator, - [_][]const u8{ "lib", "zig", "std", stdlib_file }, - ) catch unreachable; - b.installFile(src_path, dest_path); - } -} - -pub fn installCHeaders(b: *Builder, c_header_files: []const u8) void { - var it = mem.tokenize(c_header_files, ";"); - while (it.next()) |c_header_file| { - const src_path = fs.path.join(b.allocator, [_][]const u8{ "c_headers", c_header_file }) catch unreachable; - const dest_path = fs.path.join( - b.allocator, - [_][]const u8{ "lib", "zig", "include", c_header_file }, - ) catch unreachable; - b.installFile(src_path, dest_path); - } -} - fn nextValue(index: *usize, build_info: []const u8) []const u8 { const start = index.*; while (true) : (index.* += 1) { @@ -375,8 +377,6 @@ const Context = struct { llvm_config_exe: []const u8, lld_include_dir: []const u8, lld_libraries: []const u8, - std_files: []const u8, - c_header_files: []const u8, dia_guids_lib: []const u8, llvm: LibraryDep, }; diff --git a/src/config.h.in b/src/config.h.in index 93e31ad9b7..a99aab0d72 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -23,7 +23,5 @@ #define ZIG_LLD_LIBRARIES "@LLD_LIBRARIES@" #define ZIG_LLVM_CONFIG_EXE "@LLVM_CONFIG_EXE@" #define ZIG_DIA_GUIDS_LIB "@ZIG_DIA_GUIDS_LIB_ESCAPED@" -#define ZIG_STD_FILES "@ZIG_STD_FILES@" -#define ZIG_C_HEADER_FILES "@ZIG_C_HEADER_FILES@" #endif diff --git a/src/main.cpp b/src/main.cpp index 08671221c8..e58eb253f7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -305,14 +305,12 @@ int main(int argc, char **argv) { Error err; if (argc == 2 && strcmp(argv[1], "BUILD_INFO") == 0) { - printf("%s\n%s\n%s\n%s\n%s\n%s\n%s\n%s\n", + printf("%s\n%s\n%s\n%s\n%s\n%s\n", ZIG_CMAKE_BINARY_DIR, ZIG_CXX_COMPILER, ZIG_LLVM_CONFIG_EXE, ZIG_LLD_INCLUDE_PATH, ZIG_LLD_LIBRARIES, - ZIG_STD_FILES, - ZIG_C_HEADER_FILES, ZIG_DIA_GUIDS_LIB); return 0; } diff --git a/std/build.zig b/std/build.zig index 7bea46ad13..30dd983d29 100644 --- a/std/build.zig +++ b/std/build.zig @@ -296,7 +296,7 @@ pub const Builder = struct { if (self.verbose) { warn("rm {}\n", full_path); } - fs.deleteFile(full_path) catch {}; + fs.deleteTree(self.allocator, full_path) catch {}; } // TODO remove empty directories @@ -704,6 +704,10 @@ pub const Builder = struct { self.getInstallStep().dependOn(&self.addInstallFileWithDir(src_path, .Prefix, dest_rel_path).step); } + pub fn installDirectory(self: *Builder, options: InstallDirectoryOptions) void { + self.getInstallStep().dependOn(&self.addInstallDirectory(options).step); + } + ///`dest_rel_path` is relative to bin path pub fn installBinFile(self: *Builder, src_path: []const u8, dest_rel_path: []const u8) void { self.getInstallStep().dependOn(&self.addInstallFileWithDir(src_path, .Bin, dest_rel_path).step); @@ -740,6 +744,12 @@ pub const Builder = struct { return install_step; } + pub fn addInstallDirectory(self: *Builder, options: InstallDirectoryOptions) *InstallDirStep { + const install_step = self.allocator.create(InstallDirStep) catch unreachable; + install_step.* = InstallDirStep.init(self, options); + return install_step; + } + pub fn pushInstalledFile(self: *Builder, dir: InstallDir, dest_rel_path: []const u8) void { self.installed_files.append(InstalledFile{ .dir = dir, @@ -747,24 +757,14 @@ pub const Builder = struct { }) catch unreachable; } - fn copyFile(self: *Builder, source_path: []const u8, dest_path: []const u8) !void { - return self.copyFileMode(source_path, dest_path, File.default_mode); - } - - fn copyFileMode(self: *Builder, source_path: []const u8, dest_path: []const u8, mode: File.Mode) !void { + fn updateFile(self: *Builder, source_path: []const u8, dest_path: []const u8) !void { if (self.verbose) { - warn("cp {} {}\n", source_path, dest_path); + warn("cp {} {} ", source_path, dest_path); } - - const dirname = fs.path.dirname(dest_path) orelse "."; - const abs_source_path = self.pathFromRoot(source_path); - fs.makePath(self.allocator, dirname) catch |err| { - warn("Unable to create path {}: {}\n", dirname, @errorName(err)); - return err; - }; - fs.copyFileMode(abs_source_path, dest_path, mode) catch |err| { - warn("Unable to copy {} to {}: {}\n", abs_source_path, dest_path, @errorName(err)); - return err; + const prev_status = try fs.updateFile(source_path, dest_path); + if (self.verbose) switch (prev_status) { + .stale => warn("# installed\n"), + .fresh => warn("# up-to-date\n"), }; } @@ -1892,12 +1892,7 @@ pub const LibExeObjStep = struct { try zig_args.append(builder.pathFromRoot(dir)); } - if (self.output_dir) |output_dir| { - try zig_args.append("--output-dir"); - try zig_args.append(output_dir); - - try builder.spawnChild(zig_args.toSliceConst()); - } else if (self.kind == Kind.Test) { + if (self.kind == Kind.Test) { try builder.spawnChild(zig_args.toSliceConst()); } else { try zig_args.append("--cache"); @@ -1905,7 +1900,16 @@ pub const LibExeObjStep = struct { const output_path_nl = try builder.exec(zig_args.toSliceConst()); const output_path = mem.trimRight(u8, output_path_nl, "\r\n"); - self.output_dir = fs.path.dirname(output_path).?; + + if (self.output_dir) |output_dir| { + const full_dest = try fs.path.join(builder.allocator, [_][]const u8{ + output_dir, + fs.path.basename(output_path), + }); + try builder.updateFile(output_path, full_dest); + } else { + self.output_dir = fs.path.dirname(output_path).?; + } } if (self.kind == Kind.Lib and self.is_dynamic and self.target.wantSharedLibSymLinks()) { @@ -2077,23 +2081,14 @@ const InstallArtifactStep = struct { const self = @fieldParentPtr(Self, "step", step); const builder = self.builder; - const mode = switch (builtin.os) { - .windows => {}, - else => switch (self.artifact.kind) { - .Obj => unreachable, - .Test => unreachable, - .Exe => u32(0o755), - .Lib => if (!self.artifact.is_dynamic) u32(0o666) else u32(0o755), - }, - }; const full_dest_path = builder.getInstallPath(self.dest_dir, self.artifact.out_filename); - try builder.copyFileMode(self.artifact.getOutputPath(), full_dest_path, mode); + try builder.updateFile(self.artifact.getOutputPath(), full_dest_path); if (self.artifact.isDynamicLibrary()) { try doAtomicSymLinks(builder.allocator, full_dest_path, self.artifact.major_only_filename, self.artifact.name_only_filename); } if (self.pdb_dir) |pdb_dir| { const full_pdb_path = builder.getInstallPath(pdb_dir, self.artifact.out_pdb_filename); - try builder.copyFile(self.artifact.getOutputPdbPath(), full_pdb_path); + try builder.updateFile(self.artifact.getOutputPdbPath(), full_pdb_path); } self.artifact.installed_path = full_dest_path; } @@ -2125,7 +2120,55 @@ pub const InstallFileStep = struct { fn make(step: *Step) !void { const self = @fieldParentPtr(InstallFileStep, "step", step); const full_dest_path = self.builder.getInstallPath(self.dir, self.dest_rel_path); - try self.builder.copyFile(self.src_path, full_dest_path); + const full_src_path = self.builder.pathFromRoot(self.src_path); + try self.builder.updateFile(full_src_path, full_dest_path); + } +}; + +pub const InstallDirectoryOptions = struct { + source_dir: []const u8, + install_dir: InstallDir, + install_subdir: []const u8, + exclude_extensions: ?[]const []const u8 = null, +}; + +pub const InstallDirStep = struct { + step: Step, + builder: *Builder, + options: InstallDirectoryOptions, + + pub fn init( + builder: *Builder, + options: InstallDirectoryOptions, + ) InstallDirStep { + builder.pushInstalledFile(options.install_dir, options.install_subdir); + return InstallDirStep{ + .builder = builder, + .step = Step.init(builder.fmt("install {}/", options.source_dir), builder.allocator, make), + .options = options, + }; + } + + fn make(step: *Step) !void { + const self = @fieldParentPtr(InstallDirStep, "step", step); + const dest_prefix = self.builder.getInstallPath(self.options.install_dir, self.options.install_subdir); + const full_src_dir = self.builder.pathFromRoot(self.options.source_dir); + var it = try fs.walkPath(self.builder.allocator, full_src_dir); + next_entry: while (try it.next()) |entry| { + if (self.options.exclude_extensions) |ext_list| for (ext_list) |ext| { + if (mem.endsWith(u8, entry.path, ext)) { + continue :next_entry; + } + }; + + const rel_path = entry.path[full_src_dir.len + 1 ..]; + const dest_path = try fs.path.join(self.builder.allocator, [_][]const u8{ dest_prefix, rel_path }); + switch (entry.kind) { + .Directory => try fs.makePath(self.builder.allocator, dest_path), + .File => try self.builder.updateFile(entry.path, dest_path), + else => continue, + } + } } }; diff --git a/std/c.zig b/std/c.zig index 693f26008d..4c02f45c11 100644 --- a/std/c.zig +++ b/std/c.zig @@ -124,6 +124,9 @@ pub extern "c" fn realloc(?*c_void, usize) ?*c_void; pub extern "c" fn free(*c_void) void; pub extern "c" fn posix_memalign(memptr: **c_void, alignment: usize, size: usize) c_int; +pub extern "c" fn utimensat(dirfd: fd_t, pathname: [*]const u8, times: *[2]timespec, flags: u32) c_int; +pub extern "c" fn futimens(fd: fd_t, times: *const [2]timespec) c_int; + pub extern "c" fn pthread_create(noalias newthread: *pthread_t, noalias attr: ?*const pthread_attr_t, start_routine: extern fn (?*c_void) ?*c_void, noalias arg: ?*c_void) c_int; pub extern "c" fn pthread_attr_init(attr: *pthread_attr_t) c_int; pub extern "c" fn pthread_attr_setstack(attr: *pthread_attr_t, stackaddr: *c_void, stacksize: usize) c_int; diff --git a/std/fs.zig b/std/fs.zig index daad472958..df55fb36b2 100644 --- a/std/fs.zig +++ b/std/fs.zig @@ -70,6 +70,61 @@ pub fn atomicSymLink(allocator: *Allocator, existing_path: []const u8, new_path: } } +// TODO fix enum literal not casting to error union +const PrevStatus = enum { + stale, + fresh, +}; + +pub fn updateFile(source_path: []const u8, dest_path: []const u8) !PrevStatus { + return updateFileMode(source_path, dest_path, null); +} + +/// Check the file size and mtime of `source_path` and `dest_path`. If they are equal, does nothing. +/// Otherwise, atomically copies `source_path` to `dest_path`. The destination file gains the mtime +/// and atime of the source file so that the next call to `updateFile` will not need a copy. +/// TODO https://github.com/ziglang/zig/issues/2885 +/// Returns the previous status of the file before updating. +pub fn updateFileMode(source_path: []const u8, dest_path: []const u8, mode: ?File.Mode) !PrevStatus { + var src_file = try File.openRead(source_path); + defer src_file.close(); + + const src_stat = try src_file.stat(); + check_dest_stat: { + const dest_stat = blk: { + var dest_file = File.openRead(dest_path) catch |err| switch (err) { + error.FileNotFound => break :check_dest_stat, + else => |e| return e, + }; + defer dest_file.close(); + + break :blk try dest_file.stat(); + }; + + if (src_stat.size == dest_stat.size and + src_stat.mtime == dest_stat.mtime and + src_stat.mode == dest_stat.mode) + { + return PrevStatus.fresh; + } + } + const in_stream = &src_file.inStream().stream; + + var atomic_file = try AtomicFile.init(dest_path, mode orelse src_stat.mode); + defer atomic_file.deinit(); + + var buf: [mem.page_size * 6]u8 = undefined; + while (true) { + const amt = try in_stream.readFull(buf[0..]); + try atomic_file.file.write(buf[0..amt]); + if (amt != buf.len) { + try atomic_file.file.updateTimes(src_stat.atime, src_stat.mtime); + try atomic_file.finish(); + return PrevStatus.stale; + } + } +} + /// Guaranteed to be atomic. However until https://patchwork.kernel.org/patch/9636735/ is /// merged and readily available, /// there is a possibility of power loss or application termination leaving temporary files present @@ -105,7 +160,7 @@ pub fn copyFileMode(source_path: []const u8, dest_path: []const u8, mode: File.M var atomic_file = try AtomicFile.init(dest_path, mode); defer atomic_file.deinit(); - var buf: [mem.page_size]u8 = undefined; + var buf: [mem.page_size * 6]u8 = undefined; while (true) { const amt = try in_file.read(buf[0..]); try atomic_file.file.write(buf[0..amt]); @@ -256,9 +311,6 @@ pub fn deleteDirW(dir_path: [*]const u16) !void { return os.rmdirW(dir_path); } -/// Whether ::full_path describes a symlink, file, or directory, this function -/// removes it. If it cannot be removed because it is a non-empty directory, -/// this function recursively removes its entries and then tries again. const DeleteTreeError = error{ OutOfMemory, AccessDenied, @@ -290,7 +342,11 @@ const DeleteTreeError = error{ Unexpected, }; +/// Whether `full_path` describes a symlink, file, or directory, this function +/// removes it. If it cannot be removed because it is a non-empty directory, +/// this function recursively removes its entries and then tries again. /// TODO determine if we can remove the allocator requirement +/// https://github.com/ziglang/zig/issues/2886 pub fn deleteTree(allocator: *Allocator, full_path: []const u8) DeleteTreeError!void { start_over: while (true) { var got_access_denied = false; @@ -427,7 +483,9 @@ pub const Dir = struct { Unexpected, }; + /// Call close when done. /// TODO remove the allocator requirement from this API + /// https://github.com/ziglang/zig/issues/2885 pub fn open(allocator: *Allocator, dir_path: []const u8) OpenError!Dir { return Dir{ .allocator = allocator, @@ -683,13 +741,98 @@ pub const Dir = struct { } }; +pub const Walker = struct { + stack: std.ArrayList(StackItem), + name_buffer: std.Buffer, + + pub const Entry = struct { + path: []const u8, + basename: []const u8, + kind: Dir.Entry.Kind, + }; + + const StackItem = struct { + dir_it: Dir, + dirname_len: usize, + }; + + /// After each call to this function, and on deinit(), the memory returned + /// from this function becomes invalid. A copy must be made in order to keep + /// a reference to the path. + pub fn next(self: *Walker) !?Entry { + while (true) { + if (self.stack.len == 0) return null; + // `top` becomes invalid after appending to `self.stack`. + const top = &self.stack.toSlice()[self.stack.len - 1]; + const dirname_len = top.dirname_len; + if (try top.dir_it.next()) |base| { + self.name_buffer.shrink(dirname_len); + try self.name_buffer.appendByte(path.sep); + try self.name_buffer.append(base.name); + if (base.kind == .Directory) { + // TODO https://github.com/ziglang/zig/issues/2888 + var new_dir = try Dir.open(self.stack.allocator, self.name_buffer.toSliceConst()); + { + errdefer new_dir.close(); + try self.stack.append(StackItem{ + .dir_it = new_dir, + .dirname_len = self.name_buffer.len(), + }); + } + } + return Entry{ + .basename = self.name_buffer.toSliceConst()[dirname_len + 1 ..], + .path = self.name_buffer.toSliceConst(), + .kind = base.kind, + }; + } else { + self.stack.pop().dir_it.close(); + } + } + } + + pub fn deinit(self: *Walker) void { + while (self.stack.popOrNull()) |*item| item.dir_it.close(); + self.stack.deinit(); + self.name_buffer.deinit(); + } +}; + +/// Recursively iterates over a directory. +/// Must call `Walker.deinit` when done. +/// `dir_path` must not end in a path separator. +/// TODO: https://github.com/ziglang/zig/issues/2888 +pub fn walkPath(allocator: *Allocator, dir_path: []const u8) !Walker { + assert(!mem.endsWith(u8, dir_path, path.sep_str)); + + var dir_it = try Dir.open(allocator, dir_path); + errdefer dir_it.close(); + + var name_buffer = try std.Buffer.init(allocator, dir_path); + errdefer name_buffer.deinit(); + + var walker = Walker{ + .stack = std.ArrayList(Walker.StackItem).init(allocator), + .name_buffer = name_buffer, + }; + + try walker.stack.append(Walker.StackItem{ + .dir_it = dir_it, + .dirname_len = dir_path.len, + }); + + return walker; +} + /// Read value of a symbolic link. /// The return value is a slice of buffer, from index `0`. +/// TODO https://github.com/ziglang/zig/issues/2888 pub fn readLink(pathname: []const u8, buffer: *[os.PATH_MAX]u8) ![]u8 { return os.readlink(pathname, buffer); } /// Same as `readLink`, except the `pathname` parameter is null-terminated. +/// TODO https://github.com/ziglang/zig/issues/2888 pub fn readLinkC(pathname: [*]const u8, buffer: *[os.PATH_MAX]u8) ![]u8 { return os.readlinkC(pathname, buffer); } diff --git a/std/fs/file.zig b/std/fs/file.zig index 589927b823..5324ee915f 100644 --- a/std/fs/file.zig +++ b/std/fs/file.zig @@ -207,8 +207,7 @@ pub const File = struct { if (windows.is_the_target) { return windows.GetFileSizeEx(self.handle); } - const stat = try os.fstat(self.handle); - return @bitCast(u64, stat.size); + return (try self.stat()).size; } pub const ModeError = os.FStatError; @@ -217,10 +216,63 @@ pub const File = struct { if (windows.is_the_target) { return {}; } - const stat = try os.fstat(self.handle); - // TODO: we should be able to cast u16 to ModeError!u32, making this - // explicit cast not necessary - return Mode(stat.mode); + return (try self.stat()).mode; + } + + pub const Stat = struct { + size: u64, + mode: Mode, + + /// access time in nanoseconds + atime: u64, + + /// last modification time in nanoseconds + mtime: u64, + + /// creation time in nanoseconds + ctime: u64, + }; + + pub const StatError = os.FStatError; + + pub fn stat(self: File) StatError!Stat { + if (windows.is_the_target) { + const info = try windows.GetFileInformationByHandle(self.handle); + return Stat{ + .size = (u64(info.nFileSizeHigh) << 32) | u64(info.nFileSizeLow), + .mode = {}, + .atime = windows.fileTimeToNanoSeconds(info.ftLastAccessTime), + .mtime = windows.fileTimeToNanoSeconds(info.ftLastWriteTime), + .ctime = windows.fileTimeToNanoSeconds(info.ftCreationTime), + }; + } + + const st = try os.fstat(self.handle); + return Stat{ + .size = @bitCast(u64, st.size), + .mode = st.mode, + .atime = @bitCast(usize, st.atim.tv_sec) * std.time.ns_per_s + @bitCast(usize, st.atim.tv_nsec), + .mtime = @bitCast(usize, st.mtim.tv_sec) * std.time.ns_per_s + @bitCast(usize, st.mtim.tv_nsec), + .ctime = @bitCast(usize, st.ctim.tv_sec) * std.time.ns_per_s + @bitCast(usize, st.ctim.tv_nsec), + }; + } + + pub const UpdateTimesError = os.FutimensError; + + /// `atime`: access timestamp in nanoseconds + /// `mtime`: last modification timestamp in nanoseconds + pub fn updateTimes(self: File, atime: u64, mtime: u64) UpdateTimesError!void { + const times = [2]os.timespec{ + os.timespec{ + .tv_sec = @bitCast(isize, atime / std.time.ns_per_s), + .tv_nsec = @bitCast(isize, atime % std.time.ns_per_s), + }, + os.timespec{ + .tv_sec = @bitCast(isize, mtime / std.time.ns_per_s), + .tv_nsec = @bitCast(isize, mtime % std.time.ns_per_s), + }, + }; + try os.futimens(self.handle, ×); } pub const ReadError = os.ReadError; diff --git a/std/os.zig b/std/os.zig index 1971b51df4..190f02101e 100644 --- a/std/os.zig +++ b/std/os.zig @@ -2546,6 +2546,45 @@ pub fn sigaction(sig: u6, act: *const Sigaction, oact: ?*Sigaction) void { } } +pub const FutimensError = error{ + /// times is NULL, or both tv_nsec values are UTIME_NOW, and either: + /// * the effective user ID of the caller does not match the owner + /// of the file, the caller does not have write access to the + /// file, and the caller is not privileged (Linux: does not have + /// either the CAP_FOWNER or the CAP_DAC_OVERRIDE capability); + /// or, + /// * the file is marked immutable (see chattr(1)). + AccessDenied, + + /// The caller attempted to change one or both timestamps to a value + /// other than the current time, or to change one of the timestamps + /// to the current time while leaving the other timestamp unchanged, + /// (i.e., times is not NULL, neither tv_nsec field is UTIME_NOW, + /// and neither tv_nsec field is UTIME_OMIT) and either: + /// * the caller's effective user ID does not match the owner of + /// file, and the caller is not privileged (Linux: does not have + /// the CAP_FOWNER capability); or, + /// * the file is marked append-only or immutable (see chattr(1)). + PermissionDenied, + + ReadOnlyFileSystem, + + Unexpected, +}; + +pub fn futimens(fd: fd_t, times: *const [2]timespec) FutimensError!void { + switch (errno(system.futimens(fd, times))) { + 0 => return, + EACCES => return error.AccessDenied, + EPERM => return error.PermissionDenied, + EBADF => unreachable, // always a race condition + EFAULT => unreachable, + EINVAL => unreachable, + EROFS => return error.ReadOnlyFileSystem, + else => |err| return unexpectedErrno(err), + } +} + test "" { _ = @import("os/darwin.zig"); _ = @import("os/freebsd.zig"); diff --git a/std/os/linux.zig b/std/os/linux.zig index 9d3746418f..053f30d265 100644 --- a/std/os/linux.zig +++ b/std/os/linux.zig @@ -94,6 +94,15 @@ pub inline fn vfork() usize { return @inlineCall(syscall0, SYS_vfork); } +pub fn futimens(fd: i32, times: *const [2]timespec) usize { + return utimensat(fd, null, times, 0); +} + +// TODO https://github.com/ziglang/zig/issues/265 +pub fn utimensat(dirfd: i32, path: ?[*]const u8, times: *const [2]timespec, flags: u32) usize { + return syscall4(SYS_utimensat, @bitCast(usize, isize(dirfd)), @ptrToInt(path), @ptrToInt(times), flags); +} + pub fn futex_wait(uaddr: *const i32, futex_op: u32, val: i32, timeout: ?*timespec) usize { return syscall4(SYS_futex, @ptrToInt(uaddr), futex_op, @bitCast(u32, val), @ptrToInt(timeout)); } diff --git a/std/os/windows.zig b/std/os/windows.zig index 2377fc00e7..60ebf01166 100644 --- a/std/os/windows.zig +++ b/std/os/windows.zig @@ -752,6 +752,26 @@ pub fn HeapDestroy(hHeap: HANDLE) void { assert(kernel32.HeapDestroy(hHeap) != 0); } +pub const GetFileInformationByHandleError = error{Unexpected}; + +pub fn GetFileInformationByHandle( + hFile: HANDLE, +) GetFileInformationByHandleError!BY_HANDLE_FILE_INFORMATION { + var info: BY_HANDLE_FILE_INFORMATION = undefined; + const rc = kernel32.GetFileInformationByHandle(hFile, &info); + if (rc == 0) { + switch (kernel32.GetLastError()) { + else => |err| return unexpectedError(err), + } + } + return info; +} + +pub fn fileTimeToNanoSeconds(ft: FILETIME) u64 { + const sec = (u64(ft.dwHighDateTime) << 32) | ft.dwLowDateTime; + return sec * std.time.ns_per_s; +} + pub fn cStrToPrefixedFileW(s: [*]const u8) ![PATH_MAX_WIDE + 1]u16 { return sliceToPrefixedFileW(mem.toSliceConst(u8, s)); } diff --git a/std/os/windows/bits.zig b/std/os/windows/bits.zig index fe72a710eb..338e47a467 100644 --- a/std/os/windows/bits.zig +++ b/std/os/windows/bits.zig @@ -104,6 +104,19 @@ pub const FileIdInfo = 18; pub const FileIdExtdDirectoryInfo = 19; pub const FileIdExtdDirectoryRestartInfo = 20; +pub const BY_HANDLE_FILE_INFORMATION = extern struct { + dwFileAttributes: DWORD, + ftCreationTime: FILETIME, + ftLastAccessTime: FILETIME, + ftLastWriteTime: FILETIME, + dwVolumeSerialNumber: DWORD, + nFileSizeHigh: DWORD, + nFileSizeLow: DWORD, + nNumberOfLinks: DWORD, + nFileIndexHigh: DWORD, + nFileIndexLow: DWORD, +}; + pub const FILE_NAME_INFO = extern struct { FileNameLength: DWORD, FileName: [1]WCHAR, diff --git a/std/os/windows/kernel32.zig b/std/os/windows/kernel32.zig index 494da90d72..de5bd57a5a 100644 --- a/std/os/windows/kernel32.zig +++ b/std/os/windows/kernel32.zig @@ -83,6 +83,11 @@ pub extern "kernel32" stdcallcc fn GetModuleHandleW(lpModuleName: ?[*]const WCHA pub extern "kernel32" stdcallcc fn GetLastError() DWORD; +pub extern "kernel32" stdcallcc fn GetFileInformationByHandle( + hFile: HANDLE, + lpFileInformation: *BY_HANDLE_FILE_INFORMATION, +) BOOL; + pub extern "kernel32" stdcallcc fn GetFileInformationByHandleEx( in_hFile: HANDLE, in_FileInformationClass: FILE_INFO_BY_HANDLE_CLASS, From 40a562f26d01ea0eb979ba9caec974c923a5c573 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sun, 14 Jul 2019 22:29:31 -0400 Subject: [PATCH 02/13] cmake: fix incorrect dependencies --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e0b9f921d5..f994496cea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2402,7 +2402,6 @@ add_custom_target(zig_build_libuserland ALL BYPRODUCTS "${LIBUSERLAND}" WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}" ) -add_custom_target(userland_target DEPENDS "${LIBUSERLAND}") add_executable(zig "${ZIG_MAIN_SRC}") set_target_properties(zig PROPERTIES @@ -2410,5 +2409,5 @@ set_target_properties(zig PROPERTIES LINK_FLAGS ${EXE_LDFLAGS} ) target_link_libraries(zig compiler "${LIBUSERLAND}") -add_dependencies(zig userland_target) +add_dependencies(zig zig_build_libuserland) install(TARGETS zig DESTINATION bin) From 95fdff3feb8bbdfb33a8e0f6cd96b4457984e2f4 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sun, 14 Jul 2019 22:29:39 -0400 Subject: [PATCH 03/13] std.fs.updateFile: make path if necessary --- std/fs.zig | 34 +++++++++++++++++++++++++++++----- 1 file changed, 29 insertions(+), 5 deletions(-) diff --git a/std/fs.zig b/std/fs.zig index df55fb36b2..c656c34533 100644 --- a/std/fs.zig +++ b/std/fs.zig @@ -80,11 +80,12 @@ pub fn updateFile(source_path: []const u8, dest_path: []const u8) !PrevStatus { return updateFileMode(source_path, dest_path, null); } -/// Check the file size and mtime of `source_path` and `dest_path`. If they are equal, does nothing. -/// Otherwise, atomically copies `source_path` to `dest_path`. The destination file gains the mtime -/// and atime of the source file so that the next call to `updateFile` will not need a copy. -/// TODO https://github.com/ziglang/zig/issues/2885 +/// Check the file size, mtime, and mode of `source_path` and `dest_path`. If they are equal, does nothing. +/// Otherwise, atomically copies `source_path` to `dest_path`. The destination file gains the mtime, +/// atime, and mode of the source file so that the next call to `updateFile` will not need a copy. /// Returns the previous status of the file before updating. +/// If any of the directories do not exist for dest_path, they are created. +/// TODO https://github.com/ziglang/zig/issues/2885 pub fn updateFileMode(source_path: []const u8, dest_path: []const u8, mode: ?File.Mode) !PrevStatus { var src_file = try File.openRead(source_path); defer src_file.close(); @@ -108,9 +109,32 @@ pub fn updateFileMode(source_path: []const u8, dest_path: []const u8, mode: ?Fil return PrevStatus.fresh; } } + const actual_mode = mode orelse src_stat.mode; const in_stream = &src_file.inStream().stream; - var atomic_file = try AtomicFile.init(dest_path, mode orelse src_stat.mode); + // TODO this logic could be made more efficient by calling makePath, once + // that API does not require an allocator + var atomic_file = make_atomic_file: while (true) { + const af = AtomicFile.init(dest_path, actual_mode) catch |err| switch (err) { + error.FileNotFound => { + var p = dest_path; + while (path.dirname(p)) |dirname| { + makeDir(dirname) catch |e| switch (e) { + error.FileNotFound => { + p = dirname; + continue; + }, + else => return e, + }; + continue :make_atomic_file; + } else { + return err; + } + }, + else => |e| return e, + }; + break af; + } else unreachable; defer atomic_file.deinit(); var buf: [mem.page_size * 6]u8 = undefined; From aa170a7eff3b15119561d33f9263ceea5c2c7bee Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 15 Jul 2019 00:02:44 -0400 Subject: [PATCH 04/13] implement std.fs.File.updateTimes for windows --- std/fs/file.zig | 7 ++++++- std/os/windows.zig | 24 ++++++++++++++++++++++++ std/os/windows/kernel32.zig | 7 +++++++ 3 files changed, 37 insertions(+), 1 deletion(-) diff --git a/std/fs/file.zig b/std/fs/file.zig index 5324ee915f..18fe658366 100644 --- a/std/fs/file.zig +++ b/std/fs/file.zig @@ -257,11 +257,16 @@ pub const File = struct { }; } - pub const UpdateTimesError = os.FutimensError; + pub const UpdateTimesError = os.FutimensError || windows.SetFileTimeError; /// `atime`: access timestamp in nanoseconds /// `mtime`: last modification timestamp in nanoseconds pub fn updateTimes(self: File, atime: u64, mtime: u64) UpdateTimesError!void { + if (windows.is_the_target) { + const atime_ft = windows.nanoSecondsToFileTime(atime); + const mtime_ft = windows.nanoSecondsToFileTime(mtime); + return windows.SetFileTime(self.handle, null, &atime_ft, &mtime_ft); + } const times = [2]os.timespec{ os.timespec{ .tv_sec = @bitCast(isize, atime / std.time.ns_per_s), diff --git a/std/os/windows.zig b/std/os/windows.zig index 60ebf01166..a608839b80 100644 --- a/std/os/windows.zig +++ b/std/os/windows.zig @@ -767,11 +767,35 @@ pub fn GetFileInformationByHandle( return info; } +pub const SetFileTimeError = error{Unexpected}; + +pub fn SetFileTime( + hFile: HANDLE, + lpCreationTime: ?*const FILETIME, + lpLastAccessTime: ?*const FILETIME, + lpLastWriteTime: ?*const FILETIME, +) SetFileTimeError!void { + const rc = kernel32.SetFileTime(hFile, lpCreationTime, lpLastAccessTime, lpLastWriteTime); + if (rc == 0) { + switch (kernel32.GetLastError()) { + else => |err| return unexpectedError(err), + } + } +} + pub fn fileTimeToNanoSeconds(ft: FILETIME) u64 { const sec = (u64(ft.dwHighDateTime) << 32) | ft.dwLowDateTime; return sec * std.time.ns_per_s; } +pub fn nanoSecondsToFileTime(ns: u64) FILETIME { + const sec = ns / std.time.ns_per_s; + return FILETIME{ + .dwHighDateTime = @truncate(u32, sec >> 32), + .dwLowDateTime = @truncate(u32, sec), + }; +} + pub fn cStrToPrefixedFileW(s: [*]const u8) ![PATH_MAX_WIDE + 1]u16 { return sliceToPrefixedFileW(mem.toSliceConst(u8, s)); } diff --git a/std/os/windows/kernel32.zig b/std/os/windows/kernel32.zig index de5bd57a5a..e4edc349ab 100644 --- a/std/os/windows/kernel32.zig +++ b/std/os/windows/kernel32.zig @@ -170,6 +170,13 @@ pub extern "kernel32" stdcallcc fn SetFilePointerEx( in_dwMoveMethod: DWORD, ) BOOL; +pub extern "kernel32" stdcallcc fn SetFileTime( + hFile: HANDLE, + lpCreationTime: ?*const FILETIME, + lpLastAccessTime: ?*const FILETIME, + lpLastWriteTime: ?*const FILETIME, +) BOOL; + pub extern "kernel32" stdcallcc fn SetHandleInformation(hObject: HANDLE, dwMask: DWORD, dwFlags: DWORD) BOOL; pub extern "kernel32" stdcallcc fn Sleep(dwMilliseconds: DWORD) void; From b23ace27db438652898b671f3417730ddc662101 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 15 Jul 2019 01:41:06 -0400 Subject: [PATCH 05/13] fix the build on windows --- src/main.cpp | 3 +++ std/build.zig | 13 ++++++++++++- std/fs.zig | 3 ++- std/fs/file.zig | 22 +++++++++++----------- std/os/windows.zig | 22 +++++++++++++++------- 5 files changed, 43 insertions(+), 20 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index e58eb253f7..ce68e53d85 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1229,6 +1229,9 @@ int main(int argc, char **argv) { return term.code; } else if (cmd == CmdBuild) { if (g->enable_cache) { +#if defined(ZIG_OS_WINDOWS) + buf_replace(&g->output_file_path, '/', '\\'); +#endif if (printf("%s\n", buf_ptr(&g->output_file_path)) < 0) return EXIT_FAILURE; } diff --git a/std/build.zig b/std/build.zig index 30dd983d29..f4e9c2b53b 100644 --- a/std/build.zig +++ b/std/build.zig @@ -216,6 +216,17 @@ pub const Builder = struct { return mem.dupe(self.allocator, u8, bytes) catch unreachable; } + fn dupePath(self: *Builder, bytes: []const u8) []u8 { + const the_copy = self.dupe(bytes); + for (the_copy) |*byte| { + switch (byte.*) { + '/', '\\' => byte.* = fs.path.sep, + else => {}, + } + } + return the_copy; + } + pub fn addWriteFile(self: *Builder, file_path: []const u8, data: []const u8) *WriteFileStep { const write_file_step = self.allocator.create(WriteFileStep) catch unreachable; write_file_step.* = WriteFileStep.init(self, file_path, data); @@ -1412,7 +1423,7 @@ pub const LibExeObjStep = struct { } pub fn setOutputDir(self: *LibExeObjStep, dir: []const u8) void { - self.output_dir = self.builder.dupe(dir); + self.output_dir = self.builder.dupePath(dir); } pub fn install(self: *LibExeObjStep) void { diff --git a/std/fs.zig b/std/fs.zig index c656c34533..6b860ad2a2 100644 --- a/std/fs.zig +++ b/std/fs.zig @@ -110,7 +110,6 @@ pub fn updateFileMode(source_path: []const u8, dest_path: []const u8, mode: ?Fil } } const actual_mode = mode orelse src_stat.mode; - const in_stream = &src_file.inStream().stream; // TODO this logic could be made more efficient by calling makePath, once // that API does not require an allocator @@ -137,6 +136,8 @@ pub fn updateFileMode(source_path: []const u8, dest_path: []const u8, mode: ?Fil } else unreachable; defer atomic_file.deinit(); + const in_stream = &src_file.inStream().stream; + var buf: [mem.page_size * 6]u8 = undefined; while (true) { const amt = try in_stream.readFull(buf[0..]); diff --git a/std/fs/file.zig b/std/fs/file.zig index 18fe658366..55cc2fd97f 100644 --- a/std/fs/file.zig +++ b/std/fs/file.zig @@ -224,13 +224,13 @@ pub const File = struct { mode: Mode, /// access time in nanoseconds - atime: u64, + atime: i64, /// last modification time in nanoseconds - mtime: u64, + mtime: i64, /// creation time in nanoseconds - ctime: u64, + ctime: i64, }; pub const StatError = os.FStatError; @@ -251,9 +251,9 @@ pub const File = struct { return Stat{ .size = @bitCast(u64, st.size), .mode = st.mode, - .atime = @bitCast(usize, st.atim.tv_sec) * std.time.ns_per_s + @bitCast(usize, st.atim.tv_nsec), - .mtime = @bitCast(usize, st.mtim.tv_sec) * std.time.ns_per_s + @bitCast(usize, st.mtim.tv_nsec), - .ctime = @bitCast(usize, st.ctim.tv_sec) * std.time.ns_per_s + @bitCast(usize, st.ctim.tv_nsec), + .atime = st.atim.tv_sec * std.time.ns_per_s + st.atim.tv_nsec, + .mtime = st.mtim.tv_sec * std.time.ns_per_s + st.mtim.tv_nsec, + .ctime = st.ctim.tv_sec * std.time.ns_per_s + st.ctim.tv_nsec, }; } @@ -261,7 +261,7 @@ pub const File = struct { /// `atime`: access timestamp in nanoseconds /// `mtime`: last modification timestamp in nanoseconds - pub fn updateTimes(self: File, atime: u64, mtime: u64) UpdateTimesError!void { + pub fn updateTimes(self: File, atime: i64, mtime: i64) UpdateTimesError!void { if (windows.is_the_target) { const atime_ft = windows.nanoSecondsToFileTime(atime); const mtime_ft = windows.nanoSecondsToFileTime(mtime); @@ -269,12 +269,12 @@ pub const File = struct { } const times = [2]os.timespec{ os.timespec{ - .tv_sec = @bitCast(isize, atime / std.time.ns_per_s), - .tv_nsec = @bitCast(isize, atime % std.time.ns_per_s), + .tv_sec = atime / std.time.ns_per_s, + .tv_nsec = atime % std.time.ns_per_s, }, os.timespec{ - .tv_sec = @bitCast(isize, mtime / std.time.ns_per_s), - .tv_nsec = @bitCast(isize, mtime % std.time.ns_per_s), + .tv_sec = mtime / std.time.ns_per_s, + .tv_nsec = mtime % std.time.ns_per_s, }, }; try os.futimens(self.handle, ×); diff --git a/std/os/windows.zig b/std/os/windows.zig index a608839b80..68c643db81 100644 --- a/std/os/windows.zig +++ b/std/os/windows.zig @@ -783,16 +783,24 @@ pub fn SetFileTime( } } -pub fn fileTimeToNanoSeconds(ft: FILETIME) u64 { - const sec = (u64(ft.dwHighDateTime) << 32) | ft.dwLowDateTime; - return sec * std.time.ns_per_s; +/// A file time is a 64-bit value that represents the number of 100-nanosecond +/// intervals that have elapsed since 12:00 A.M. January 1, 1601 Coordinated +/// Universal Time (UTC). +/// This function returns the number of nanoseconds since the canonical epoch, +/// which is the POSIX one (Jan 01, 1970 AD). +pub fn fileTimeToNanoSeconds(ft: FILETIME) i64 { + const hns = @bitCast(i64, (u64(ft.dwHighDateTime) << 32) | ft.dwLowDateTime); + const adjusted_epoch = hns + std.time.epoch.windows * (std.time.ns_per_s / 100); + return adjusted_epoch * 100; } -pub fn nanoSecondsToFileTime(ns: u64) FILETIME { - const sec = ns / std.time.ns_per_s; +/// Converts a number of nanoseconds since the POSIX epoch to a Windows FILETIME. +pub fn nanoSecondsToFileTime(ns: i64) FILETIME { + const hns = @divFloor(ns, 100); + const adjusted_epoch = hns - std.time.epoch.windows * (std.time.ns_per_s / 100); return FILETIME{ - .dwHighDateTime = @truncate(u32, sec >> 32), - .dwLowDateTime = @truncate(u32, sec), + .dwHighDateTime = @truncate(u32, @bitCast(u64, adjusted_epoch) >> 32), + .dwLowDateTime = @truncate(u32, @bitCast(u64, adjusted_epoch)), }; } From 6237380b01f000a0b5297e6d3d843065befd1cd2 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 15 Jul 2019 01:43:40 -0400 Subject: [PATCH 06/13] fix the build on linux --- std/fs/file.zig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/std/fs/file.zig b/std/fs/file.zig index 55cc2fd97f..63c18c1611 100644 --- a/std/fs/file.zig +++ b/std/fs/file.zig @@ -269,12 +269,12 @@ pub const File = struct { } const times = [2]os.timespec{ os.timespec{ - .tv_sec = atime / std.time.ns_per_s, - .tv_nsec = atime % std.time.ns_per_s, + .tv_sec = @divFloor(atime, std.time.ns_per_s), + .tv_nsec = @mod(atime, std.time.ns_per_s), }, os.timespec{ - .tv_sec = mtime / std.time.ns_per_s, - .tv_nsec = mtime % std.time.ns_per_s, + .tv_sec = @divFloor(mtime, std.time.ns_per_s), + .tv_nsec = @mod(mtime, std.time.ns_per_s), }, }; try os.futimens(self.handle, ×); From 0cd660462f6b1f5384df9b41c4c85e183d2589ac Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 15 Jul 2019 01:47:26 -0400 Subject: [PATCH 07/13] move install_files.h to not be generated code --- CMakeLists.txt | 1811 ------------------------------------------- src/install_files.h | 1802 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 1802 insertions(+), 1811 deletions(-) create mode 100644 src/install_files.h diff --git a/CMakeLists.txt b/CMakeLists.txt index f994496cea..21a6ce82e8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -458,1806 +458,6 @@ set(ZIG_CPP_SOURCES "${CMAKE_SOURCE_DIR}/src/windows_sdk.cpp" ) -set(ZIG_MUSL_SRC_FILES - "musl/src/aio/aio.c" - "musl/src/aio/aio_suspend.c" - "musl/src/aio/lio_listio.c" - "musl/src/complex/__cexp.c" - "musl/src/complex/__cexpf.c" - "musl/src/complex/cabs.c" - "musl/src/complex/cabsf.c" - "musl/src/complex/cabsl.c" - "musl/src/complex/cacos.c" - "musl/src/complex/cacosf.c" - "musl/src/complex/cacosh.c" - "musl/src/complex/cacoshf.c" - "musl/src/complex/cacoshl.c" - "musl/src/complex/cacosl.c" - "musl/src/complex/carg.c" - "musl/src/complex/cargf.c" - "musl/src/complex/cargl.c" - "musl/src/complex/casin.c" - "musl/src/complex/casinf.c" - "musl/src/complex/casinh.c" - "musl/src/complex/casinhf.c" - "musl/src/complex/casinhl.c" - "musl/src/complex/casinl.c" - "musl/src/complex/catan.c" - "musl/src/complex/catanf.c" - "musl/src/complex/catanh.c" - "musl/src/complex/catanhf.c" - "musl/src/complex/catanhl.c" - "musl/src/complex/catanl.c" - "musl/src/complex/ccos.c" - "musl/src/complex/ccosf.c" - "musl/src/complex/ccosh.c" - "musl/src/complex/ccoshf.c" - "musl/src/complex/ccoshl.c" - "musl/src/complex/ccosl.c" - "musl/src/complex/cexp.c" - "musl/src/complex/cexpf.c" - "musl/src/complex/cexpl.c" - "musl/src/complex/cimag.c" - "musl/src/complex/cimagf.c" - "musl/src/complex/cimagl.c" - "musl/src/complex/clog.c" - "musl/src/complex/clogf.c" - "musl/src/complex/clogl.c" - "musl/src/complex/conj.c" - "musl/src/complex/conjf.c" - "musl/src/complex/conjl.c" - "musl/src/complex/cpow.c" - "musl/src/complex/cpowf.c" - "musl/src/complex/cpowl.c" - "musl/src/complex/cproj.c" - "musl/src/complex/cprojf.c" - "musl/src/complex/cprojl.c" - "musl/src/complex/creal.c" - "musl/src/complex/crealf.c" - "musl/src/complex/creall.c" - "musl/src/complex/csin.c" - "musl/src/complex/csinf.c" - "musl/src/complex/csinh.c" - "musl/src/complex/csinhf.c" - "musl/src/complex/csinhl.c" - "musl/src/complex/csinl.c" - "musl/src/complex/csqrt.c" - "musl/src/complex/csqrtf.c" - "musl/src/complex/csqrtl.c" - "musl/src/complex/ctan.c" - "musl/src/complex/ctanf.c" - "musl/src/complex/ctanh.c" - "musl/src/complex/ctanhf.c" - "musl/src/complex/ctanhl.c" - "musl/src/complex/ctanl.c" - "musl/src/conf/confstr.c" - "musl/src/conf/fpathconf.c" - "musl/src/conf/legacy.c" - "musl/src/conf/pathconf.c" - "musl/src/conf/sysconf.c" - "musl/src/crypt/crypt.c" - "musl/src/crypt/crypt_blowfish.c" - "musl/src/crypt/crypt_des.c" - "musl/src/crypt/crypt_des.h" - "musl/src/crypt/crypt_md5.c" - "musl/src/crypt/crypt_r.c" - "musl/src/crypt/crypt_sha256.c" - "musl/src/crypt/crypt_sha512.c" - "musl/src/crypt/encrypt.c" - "musl/src/ctype/__ctype_b_loc.c" - "musl/src/ctype/__ctype_get_mb_cur_max.c" - "musl/src/ctype/__ctype_tolower_loc.c" - "musl/src/ctype/__ctype_toupper_loc.c" - "musl/src/ctype/alpha.h" - "musl/src/ctype/isalnum.c" - "musl/src/ctype/isalpha.c" - "musl/src/ctype/isascii.c" - "musl/src/ctype/isblank.c" - "musl/src/ctype/iscntrl.c" - "musl/src/ctype/isdigit.c" - "musl/src/ctype/isgraph.c" - "musl/src/ctype/islower.c" - "musl/src/ctype/isprint.c" - "musl/src/ctype/ispunct.c" - "musl/src/ctype/isspace.c" - "musl/src/ctype/isupper.c" - "musl/src/ctype/iswalnum.c" - "musl/src/ctype/iswalpha.c" - "musl/src/ctype/iswblank.c" - "musl/src/ctype/iswcntrl.c" - "musl/src/ctype/iswctype.c" - "musl/src/ctype/iswdigit.c" - "musl/src/ctype/iswgraph.c" - "musl/src/ctype/iswlower.c" - "musl/src/ctype/iswprint.c" - "musl/src/ctype/iswpunct.c" - "musl/src/ctype/iswspace.c" - "musl/src/ctype/iswupper.c" - "musl/src/ctype/iswxdigit.c" - "musl/src/ctype/isxdigit.c" - "musl/src/ctype/nonspacing.h" - "musl/src/ctype/punct.h" - "musl/src/ctype/toascii.c" - "musl/src/ctype/tolower.c" - "musl/src/ctype/toupper.c" - "musl/src/ctype/towctrans.c" - "musl/src/ctype/wcswidth.c" - "musl/src/ctype/wctrans.c" - "musl/src/ctype/wcwidth.c" - "musl/src/ctype/wide.h" - "musl/src/dirent/__dirent.h" - "musl/src/dirent/alphasort.c" - "musl/src/dirent/closedir.c" - "musl/src/dirent/dirfd.c" - "musl/src/dirent/fdopendir.c" - "musl/src/dirent/opendir.c" - "musl/src/dirent/readdir.c" - "musl/src/dirent/readdir_r.c" - "musl/src/dirent/rewinddir.c" - "musl/src/dirent/scandir.c" - "musl/src/dirent/seekdir.c" - "musl/src/dirent/telldir.c" - "musl/src/dirent/versionsort.c" - "musl/src/env/__environ.c" - "musl/src/env/__init_tls.c" - "musl/src/env/__libc_start_main.c" - "musl/src/env/__reset_tls.c" - "musl/src/env/__stack_chk_fail.c" - "musl/src/env/clearenv.c" - "musl/src/env/getenv.c" - "musl/src/env/putenv.c" - "musl/src/env/setenv.c" - "musl/src/env/unsetenv.c" - "musl/src/errno/__errno_location.c" - "musl/src/errno/__strerror.h" - "musl/src/errno/strerror.c" - "musl/src/exit/_Exit.c" - "musl/src/exit/abort.c" - "musl/src/exit/arm/__aeabi_atexit.c" - "musl/src/exit/assert.c" - "musl/src/exit/at_quick_exit.c" - "musl/src/exit/atexit.c" - "musl/src/exit/exit.c" - "musl/src/exit/quick_exit.c" - "musl/src/fcntl/creat.c" - "musl/src/fcntl/fcntl.c" - "musl/src/fcntl/open.c" - "musl/src/fcntl/openat.c" - "musl/src/fcntl/posix_fadvise.c" - "musl/src/fcntl/posix_fallocate.c" - "musl/src/fenv/__flt_rounds.c" - "musl/src/fenv/aarch64/fenv.s" - "musl/src/fenv/arm/fenv-hf.S" - "musl/src/fenv/arm/fenv.c" - "musl/src/fenv/fegetexceptflag.c" - "musl/src/fenv/feholdexcept.c" - "musl/src/fenv/fenv.c" - "musl/src/fenv/fesetexceptflag.c" - "musl/src/fenv/fesetround.c" - "musl/src/fenv/feupdateenv.c" - "musl/src/fenv/i386/fenv.s" - "musl/src/fenv/m68k/fenv.c" - "musl/src/fenv/mips/fenv-sf.c" - "musl/src/fenv/mips/fenv.S" - "musl/src/fenv/mips64/fenv-sf.c" - "musl/src/fenv/mips64/fenv.S" - "musl/src/fenv/mipsn32/fenv-sf.c" - "musl/src/fenv/mipsn32/fenv.S" - "musl/src/fenv/powerpc/fenv-sf.c" - "musl/src/fenv/powerpc/fenv.S" - "musl/src/fenv/powerpc64/fenv.c" - "musl/src/fenv/s390x/fenv.c" - "musl/src/fenv/sh/fenv-nofpu.c" - "musl/src/fenv/sh/fenv.S" - "musl/src/fenv/x32/fenv.s" - "musl/src/fenv/x86_64/fenv.s" - "musl/src/include/arpa/inet.h" - "musl/src/include/crypt.h" - "musl/src/include/errno.h" - "musl/src/include/features.h" - "musl/src/include/langinfo.h" - "musl/src/include/pthread.h" - "musl/src/include/resolv.h" - "musl/src/include/signal.h" - "musl/src/include/stdio.h" - "musl/src/include/stdlib.h" - "musl/src/include/string.h" - "musl/src/include/sys/auxv.h" - "musl/src/include/sys/mman.h" - "musl/src/include/sys/sysinfo.h" - "musl/src/include/sys/time.h" - "musl/src/include/time.h" - "musl/src/include/unistd.h" - "musl/src/internal/aarch64/syscall.s" - "musl/src/internal/arm/syscall.s" - "musl/src/internal/atomic.h" - "musl/src/internal/dynlink.h" - "musl/src/internal/fdpic_crt.h" - "musl/src/internal/floatscan.c" - "musl/src/internal/floatscan.h" - "musl/src/internal/futex.h" - "musl/src/internal/i386/syscall.s" - "musl/src/internal/intscan.c" - "musl/src/internal/intscan.h" - "musl/src/internal/ksigaction.h" - "musl/src/internal/libc.c" - "musl/src/internal/libc.h" - "musl/src/internal/libm.h" - "musl/src/internal/locale_impl.h" - "musl/src/internal/lock.h" - "musl/src/internal/m68k/syscall.s" - "musl/src/internal/malloc_impl.h" - "musl/src/internal/microblaze/syscall.s" - "musl/src/internal/mips/syscall.s" - "musl/src/internal/mips64/syscall.s" - "musl/src/internal/mipsn32/syscall.s" - "musl/src/internal/or1k/syscall.s" - "musl/src/internal/powerpc/syscall.s" - "musl/src/internal/powerpc64/syscall.s" - "musl/src/internal/procfdname.c" - "musl/src/internal/pthread_impl.h" - "musl/src/internal/s390x/syscall.s" - "musl/src/internal/sh/__shcall.c" - "musl/src/internal/sh/syscall.s" - "musl/src/internal/shgetc.c" - "musl/src/internal/shgetc.h" - "musl/src/internal/stdio_impl.h" - "musl/src/internal/syscall.c" - "musl/src/internal/syscall.h" - "musl/src/internal/syscall_ret.c" - "musl/src/internal/vdso.c" - "musl/src/internal/version.c" - "musl/src/internal/version.h" - "musl/src/internal/x32/syscall.s" - "musl/src/internal/x86_64/syscall.s" - "musl/src/ipc/ftok.c" - "musl/src/ipc/ipc.h" - "musl/src/ipc/msgctl.c" - "musl/src/ipc/msgget.c" - "musl/src/ipc/msgrcv.c" - "musl/src/ipc/msgsnd.c" - "musl/src/ipc/semctl.c" - "musl/src/ipc/semget.c" - "musl/src/ipc/semop.c" - "musl/src/ipc/semtimedop.c" - "musl/src/ipc/shmat.c" - "musl/src/ipc/shmctl.c" - "musl/src/ipc/shmdt.c" - "musl/src/ipc/shmget.c" - "musl/src/ldso/__dlsym.c" - "musl/src/ldso/aarch64/dlsym.s" - "musl/src/ldso/aarch64/tlsdesc.s" - "musl/src/ldso/arm/dlsym.s" - "musl/src/ldso/arm/find_exidx.c" - "musl/src/ldso/arm/tlsdesc.S" - "musl/src/ldso/dl_iterate_phdr.c" - "musl/src/ldso/dladdr.c" - "musl/src/ldso/dlclose.c" - "musl/src/ldso/dlerror.c" - "musl/src/ldso/dlinfo.c" - "musl/src/ldso/dlopen.c" - "musl/src/ldso/dlsym.c" - "musl/src/ldso/i386/dlsym.s" - "musl/src/ldso/i386/tlsdesc.s" - "musl/src/ldso/m68k/dlsym.s" - "musl/src/ldso/microblaze/dlsym.s" - "musl/src/ldso/mips/dlsym.s" - "musl/src/ldso/mips64/dlsym.s" - "musl/src/ldso/mipsn32/dlsym.s" - "musl/src/ldso/or1k/dlsym.s" - "musl/src/ldso/powerpc/dlsym.s" - "musl/src/ldso/powerpc64/dlsym.s" - "musl/src/ldso/s390x/dlsym.s" - "musl/src/ldso/sh/dlsym.s" - "musl/src/ldso/tlsdesc.c" - "musl/src/ldso/x32/dlsym.s" - "musl/src/ldso/x86_64/dlsym.s" - "musl/src/ldso/x86_64/tlsdesc.s" - "musl/src/legacy/cuserid.c" - "musl/src/legacy/daemon.c" - "musl/src/legacy/err.c" - "musl/src/legacy/euidaccess.c" - "musl/src/legacy/ftw.c" - "musl/src/legacy/futimes.c" - "musl/src/legacy/getdtablesize.c" - "musl/src/legacy/getloadavg.c" - "musl/src/legacy/getpagesize.c" - "musl/src/legacy/getpass.c" - "musl/src/legacy/getusershell.c" - "musl/src/legacy/isastream.c" - "musl/src/legacy/lutimes.c" - "musl/src/legacy/ulimit.c" - "musl/src/legacy/utmpx.c" - "musl/src/legacy/valloc.c" - "musl/src/linux/adjtime.c" - "musl/src/linux/adjtimex.c" - "musl/src/linux/arch_prctl.c" - "musl/src/linux/brk.c" - "musl/src/linux/cache.c" - "musl/src/linux/cap.c" - "musl/src/linux/chroot.c" - "musl/src/linux/clock_adjtime.c" - "musl/src/linux/clone.c" - "musl/src/linux/epoll.c" - "musl/src/linux/eventfd.c" - "musl/src/linux/fallocate.c" - "musl/src/linux/fanotify.c" - "musl/src/linux/flock.c" - "musl/src/linux/getdents.c" - "musl/src/linux/getrandom.c" - "musl/src/linux/inotify.c" - "musl/src/linux/ioperm.c" - "musl/src/linux/iopl.c" - "musl/src/linux/klogctl.c" - "musl/src/linux/memfd_create.c" - "musl/src/linux/mlock2.c" - "musl/src/linux/module.c" - "musl/src/linux/mount.c" - "musl/src/linux/name_to_handle_at.c" - "musl/src/linux/open_by_handle_at.c" - "musl/src/linux/personality.c" - "musl/src/linux/pivot_root.c" - "musl/src/linux/ppoll.c" - "musl/src/linux/prctl.c" - "musl/src/linux/prlimit.c" - "musl/src/linux/process_vm.c" - "musl/src/linux/ptrace.c" - "musl/src/linux/quotactl.c" - "musl/src/linux/readahead.c" - "musl/src/linux/reboot.c" - "musl/src/linux/remap_file_pages.c" - "musl/src/linux/sbrk.c" - "musl/src/linux/sendfile.c" - "musl/src/linux/setfsgid.c" - "musl/src/linux/setfsuid.c" - "musl/src/linux/setgroups.c" - "musl/src/linux/sethostname.c" - "musl/src/linux/setns.c" - "musl/src/linux/settimeofday.c" - "musl/src/linux/signalfd.c" - "musl/src/linux/splice.c" - "musl/src/linux/stime.c" - "musl/src/linux/swap.c" - "musl/src/linux/sync_file_range.c" - "musl/src/linux/syncfs.c" - "musl/src/linux/sysinfo.c" - "musl/src/linux/tee.c" - "musl/src/linux/timerfd.c" - "musl/src/linux/unshare.c" - "musl/src/linux/utimes.c" - "musl/src/linux/vhangup.c" - "musl/src/linux/vmsplice.c" - "musl/src/linux/wait3.c" - "musl/src/linux/wait4.c" - "musl/src/linux/x32/sysinfo.c" - "musl/src/linux/xattr.c" - "musl/src/locale/__lctrans.c" - "musl/src/locale/__mo_lookup.c" - "musl/src/locale/big5.h" - "musl/src/locale/bind_textdomain_codeset.c" - "musl/src/locale/c_locale.c" - "musl/src/locale/catclose.c" - "musl/src/locale/catgets.c" - "musl/src/locale/catopen.c" - "musl/src/locale/codepages.h" - "musl/src/locale/dcngettext.c" - "musl/src/locale/duplocale.c" - "musl/src/locale/freelocale.c" - "musl/src/locale/gb18030.h" - "musl/src/locale/hkscs.h" - "musl/src/locale/iconv.c" - "musl/src/locale/iconv_close.c" - "musl/src/locale/jis0208.h" - "musl/src/locale/ksc.h" - "musl/src/locale/langinfo.c" - "musl/src/locale/legacychars.h" - "musl/src/locale/locale_map.c" - "musl/src/locale/localeconv.c" - "musl/src/locale/newlocale.c" - "musl/src/locale/pleval.c" - "musl/src/locale/pleval.h" - "musl/src/locale/revjis.h" - "musl/src/locale/setlocale.c" - "musl/src/locale/strcoll.c" - "musl/src/locale/strfmon.c" - "musl/src/locale/strxfrm.c" - "musl/src/locale/textdomain.c" - "musl/src/locale/uselocale.c" - "musl/src/locale/wcscoll.c" - "musl/src/locale/wcsxfrm.c" - "musl/src/malloc/DESIGN" - "musl/src/malloc/aligned_alloc.c" - "musl/src/malloc/expand_heap.c" - "musl/src/malloc/lite_malloc.c" - "musl/src/malloc/malloc.c" - "musl/src/malloc/malloc_usable_size.c" - "musl/src/malloc/memalign.c" - "musl/src/malloc/posix_memalign.c" - "musl/src/math/__cos.c" - "musl/src/math/__cosdf.c" - "musl/src/math/__cosl.c" - "musl/src/math/__expo2.c" - "musl/src/math/__expo2f.c" - "musl/src/math/__fpclassify.c" - "musl/src/math/__fpclassifyf.c" - "musl/src/math/__fpclassifyl.c" - "musl/src/math/__invtrigl.c" - "musl/src/math/__invtrigl.h" - "musl/src/math/__polevll.c" - "musl/src/math/__rem_pio2.c" - "musl/src/math/__rem_pio2_large.c" - "musl/src/math/__rem_pio2f.c" - "musl/src/math/__rem_pio2l.c" - "musl/src/math/__signbit.c" - "musl/src/math/__signbitf.c" - "musl/src/math/__signbitl.c" - "musl/src/math/__sin.c" - "musl/src/math/__sindf.c" - "musl/src/math/__sinl.c" - "musl/src/math/__tan.c" - "musl/src/math/__tandf.c" - "musl/src/math/__tanl.c" - "musl/src/math/aarch64/ceil.c" - "musl/src/math/aarch64/ceilf.c" - "musl/src/math/aarch64/fabs.c" - "musl/src/math/aarch64/fabsf.c" - "musl/src/math/aarch64/floor.c" - "musl/src/math/aarch64/floorf.c" - "musl/src/math/aarch64/fma.c" - "musl/src/math/aarch64/fmaf.c" - "musl/src/math/aarch64/fmax.c" - "musl/src/math/aarch64/fmaxf.c" - "musl/src/math/aarch64/fmin.c" - "musl/src/math/aarch64/fminf.c" - "musl/src/math/aarch64/llrint.c" - "musl/src/math/aarch64/llrintf.c" - "musl/src/math/aarch64/llround.c" - "musl/src/math/aarch64/llroundf.c" - "musl/src/math/aarch64/lrint.c" - "musl/src/math/aarch64/lrintf.c" - "musl/src/math/aarch64/lround.c" - "musl/src/math/aarch64/lroundf.c" - "musl/src/math/aarch64/nearbyint.c" - "musl/src/math/aarch64/nearbyintf.c" - "musl/src/math/aarch64/rint.c" - "musl/src/math/aarch64/rintf.c" - "musl/src/math/aarch64/round.c" - "musl/src/math/aarch64/roundf.c" - "musl/src/math/aarch64/sqrt.c" - "musl/src/math/aarch64/sqrtf.c" - "musl/src/math/aarch64/trunc.c" - "musl/src/math/aarch64/truncf.c" - "musl/src/math/acos.c" - "musl/src/math/acosf.c" - "musl/src/math/acosh.c" - "musl/src/math/acoshf.c" - "musl/src/math/acoshl.c" - "musl/src/math/acosl.c" - "musl/src/math/arm/fabs.c" - "musl/src/math/arm/fabsf.c" - "musl/src/math/arm/fma.c" - "musl/src/math/arm/fmaf.c" - "musl/src/math/arm/sqrt.c" - "musl/src/math/arm/sqrtf.c" - "musl/src/math/asin.c" - "musl/src/math/asinf.c" - "musl/src/math/asinh.c" - "musl/src/math/asinhf.c" - "musl/src/math/asinhl.c" - "musl/src/math/asinl.c" - "musl/src/math/atan.c" - "musl/src/math/atan2.c" - "musl/src/math/atan2f.c" - "musl/src/math/atan2l.c" - "musl/src/math/atanf.c" - "musl/src/math/atanh.c" - "musl/src/math/atanhf.c" - "musl/src/math/atanhl.c" - "musl/src/math/atanl.c" - "musl/src/math/cbrt.c" - "musl/src/math/cbrtf.c" - "musl/src/math/cbrtl.c" - "musl/src/math/ceil.c" - "musl/src/math/ceilf.c" - "musl/src/math/ceill.c" - "musl/src/math/copysign.c" - "musl/src/math/copysignf.c" - "musl/src/math/copysignl.c" - "musl/src/math/cos.c" - "musl/src/math/cosf.c" - "musl/src/math/cosh.c" - "musl/src/math/coshf.c" - "musl/src/math/coshl.c" - "musl/src/math/cosl.c" - "musl/src/math/erf.c" - "musl/src/math/erff.c" - "musl/src/math/erfl.c" - "musl/src/math/exp.c" - "musl/src/math/exp10.c" - "musl/src/math/exp10f.c" - "musl/src/math/exp10l.c" - "musl/src/math/exp2.c" - "musl/src/math/exp2f.c" - "musl/src/math/exp2l.c" - "musl/src/math/expf.c" - "musl/src/math/expl.c" - "musl/src/math/expm1.c" - "musl/src/math/expm1f.c" - "musl/src/math/expm1l.c" - "musl/src/math/fabs.c" - "musl/src/math/fabsf.c" - "musl/src/math/fabsl.c" - "musl/src/math/fdim.c" - "musl/src/math/fdimf.c" - "musl/src/math/fdiml.c" - "musl/src/math/finite.c" - "musl/src/math/finitef.c" - "musl/src/math/floor.c" - "musl/src/math/floorf.c" - "musl/src/math/floorl.c" - "musl/src/math/fma.c" - "musl/src/math/fmaf.c" - "musl/src/math/fmal.c" - "musl/src/math/fmax.c" - "musl/src/math/fmaxf.c" - "musl/src/math/fmaxl.c" - "musl/src/math/fmin.c" - "musl/src/math/fminf.c" - "musl/src/math/fminl.c" - "musl/src/math/fmod.c" - "musl/src/math/fmodf.c" - "musl/src/math/fmodl.c" - "musl/src/math/frexp.c" - "musl/src/math/frexpf.c" - "musl/src/math/frexpl.c" - "musl/src/math/hypot.c" - "musl/src/math/hypotf.c" - "musl/src/math/hypotl.c" - "musl/src/math/i386/__invtrigl.s" - "musl/src/math/i386/acos.s" - "musl/src/math/i386/acosf.s" - "musl/src/math/i386/acosl.s" - "musl/src/math/i386/asin.s" - "musl/src/math/i386/asinf.s" - "musl/src/math/i386/asinl.s" - "musl/src/math/i386/atan.s" - "musl/src/math/i386/atan2.s" - "musl/src/math/i386/atan2f.s" - "musl/src/math/i386/atan2l.s" - "musl/src/math/i386/atanf.s" - "musl/src/math/i386/atanl.s" - "musl/src/math/i386/ceil.s" - "musl/src/math/i386/ceilf.s" - "musl/src/math/i386/ceill.s" - "musl/src/math/i386/exp.s" - "musl/src/math/i386/exp2.s" - "musl/src/math/i386/exp2f.s" - "musl/src/math/i386/exp2l.s" - "musl/src/math/i386/expf.s" - "musl/src/math/i386/expl.s" - "musl/src/math/i386/expm1.s" - "musl/src/math/i386/expm1f.s" - "musl/src/math/i386/expm1l.s" - "musl/src/math/i386/fabs.s" - "musl/src/math/i386/fabsf.s" - "musl/src/math/i386/fabsl.s" - "musl/src/math/i386/floor.s" - "musl/src/math/i386/floorf.s" - "musl/src/math/i386/floorl.s" - "musl/src/math/i386/fmod.s" - "musl/src/math/i386/fmodf.s" - "musl/src/math/i386/fmodl.s" - "musl/src/math/i386/hypot.s" - "musl/src/math/i386/hypotf.s" - "musl/src/math/i386/ldexp.s" - "musl/src/math/i386/ldexpf.s" - "musl/src/math/i386/ldexpl.s" - "musl/src/math/i386/llrint.s" - "musl/src/math/i386/llrintf.s" - "musl/src/math/i386/llrintl.s" - "musl/src/math/i386/log.s" - "musl/src/math/i386/log10.s" - "musl/src/math/i386/log10f.s" - "musl/src/math/i386/log10l.s" - "musl/src/math/i386/log1p.s" - "musl/src/math/i386/log1pf.s" - "musl/src/math/i386/log1pl.s" - "musl/src/math/i386/log2.s" - "musl/src/math/i386/log2f.s" - "musl/src/math/i386/log2l.s" - "musl/src/math/i386/logf.s" - "musl/src/math/i386/logl.s" - "musl/src/math/i386/lrint.s" - "musl/src/math/i386/lrintf.s" - "musl/src/math/i386/lrintl.s" - "musl/src/math/i386/remainder.s" - "musl/src/math/i386/remainderf.s" - "musl/src/math/i386/remainderl.s" - "musl/src/math/i386/remquo.s" - "musl/src/math/i386/remquof.s" - "musl/src/math/i386/remquol.s" - "musl/src/math/i386/rint.s" - "musl/src/math/i386/rintf.s" - "musl/src/math/i386/rintl.s" - "musl/src/math/i386/scalbln.s" - "musl/src/math/i386/scalblnf.s" - "musl/src/math/i386/scalblnl.s" - "musl/src/math/i386/scalbn.s" - "musl/src/math/i386/scalbnf.s" - "musl/src/math/i386/scalbnl.s" - "musl/src/math/i386/sqrt.s" - "musl/src/math/i386/sqrtf.s" - "musl/src/math/i386/sqrtl.s" - "musl/src/math/i386/trunc.s" - "musl/src/math/i386/truncf.s" - "musl/src/math/i386/truncl.s" - "musl/src/math/ilogb.c" - "musl/src/math/ilogbf.c" - "musl/src/math/ilogbl.c" - "musl/src/math/j0.c" - "musl/src/math/j0f.c" - "musl/src/math/j1.c" - "musl/src/math/j1f.c" - "musl/src/math/jn.c" - "musl/src/math/jnf.c" - "musl/src/math/ldexp.c" - "musl/src/math/ldexpf.c" - "musl/src/math/ldexpl.c" - "musl/src/math/lgamma.c" - "musl/src/math/lgamma_r.c" - "musl/src/math/lgammaf.c" - "musl/src/math/lgammaf_r.c" - "musl/src/math/lgammal.c" - "musl/src/math/llrint.c" - "musl/src/math/llrintf.c" - "musl/src/math/llrintl.c" - "musl/src/math/llround.c" - "musl/src/math/llroundf.c" - "musl/src/math/llroundl.c" - "musl/src/math/log.c" - "musl/src/math/log10.c" - "musl/src/math/log10f.c" - "musl/src/math/log10l.c" - "musl/src/math/log1p.c" - "musl/src/math/log1pf.c" - "musl/src/math/log1pl.c" - "musl/src/math/log2.c" - "musl/src/math/log2f.c" - "musl/src/math/log2l.c" - "musl/src/math/logb.c" - "musl/src/math/logbf.c" - "musl/src/math/logbl.c" - "musl/src/math/logf.c" - "musl/src/math/logl.c" - "musl/src/math/lrint.c" - "musl/src/math/lrintf.c" - "musl/src/math/lrintl.c" - "musl/src/math/lround.c" - "musl/src/math/lroundf.c" - "musl/src/math/lroundl.c" - "musl/src/math/modf.c" - "musl/src/math/modff.c" - "musl/src/math/modfl.c" - "musl/src/math/nan.c" - "musl/src/math/nanf.c" - "musl/src/math/nanl.c" - "musl/src/math/nearbyint.c" - "musl/src/math/nearbyintf.c" - "musl/src/math/nearbyintl.c" - "musl/src/math/nextafter.c" - "musl/src/math/nextafterf.c" - "musl/src/math/nextafterl.c" - "musl/src/math/nexttoward.c" - "musl/src/math/nexttowardf.c" - "musl/src/math/nexttowardl.c" - "musl/src/math/pow.c" - "musl/src/math/powerpc/fabs.c" - "musl/src/math/powerpc/fabsf.c" - "musl/src/math/powerpc/fma.c" - "musl/src/math/powerpc/fmaf.c" - "musl/src/math/powerpc/sqrt.c" - "musl/src/math/powerpc/sqrtf.c" - "musl/src/math/powerpc64/ceil.c" - "musl/src/math/powerpc64/ceilf.c" - "musl/src/math/powerpc64/fabs.c" - "musl/src/math/powerpc64/fabsf.c" - "musl/src/math/powerpc64/floor.c" - "musl/src/math/powerpc64/floorf.c" - "musl/src/math/powerpc64/fma.c" - "musl/src/math/powerpc64/fmaf.c" - "musl/src/math/powerpc64/fmax.c" - "musl/src/math/powerpc64/fmaxf.c" - "musl/src/math/powerpc64/fmin.c" - "musl/src/math/powerpc64/fminf.c" - "musl/src/math/powerpc64/lrint.c" - "musl/src/math/powerpc64/lrintf.c" - "musl/src/math/powerpc64/lround.c" - "musl/src/math/powerpc64/lroundf.c" - "musl/src/math/powerpc64/round.c" - "musl/src/math/powerpc64/roundf.c" - "musl/src/math/powerpc64/sqrt.c" - "musl/src/math/powerpc64/sqrtf.c" - "musl/src/math/powerpc64/trunc.c" - "musl/src/math/powerpc64/truncf.c" - "musl/src/math/powf.c" - "musl/src/math/powl.c" - "musl/src/math/remainder.c" - "musl/src/math/remainderf.c" - "musl/src/math/remainderl.c" - "musl/src/math/remquo.c" - "musl/src/math/remquof.c" - "musl/src/math/remquol.c" - "musl/src/math/rint.c" - "musl/src/math/rintf.c" - "musl/src/math/rintl.c" - "musl/src/math/round.c" - "musl/src/math/roundf.c" - "musl/src/math/roundl.c" - "musl/src/math/s390x/ceil.c" - "musl/src/math/s390x/ceilf.c" - "musl/src/math/s390x/ceill.c" - "musl/src/math/s390x/fabs.c" - "musl/src/math/s390x/fabsf.c" - "musl/src/math/s390x/fabsl.c" - "musl/src/math/s390x/floor.c" - "musl/src/math/s390x/floorf.c" - "musl/src/math/s390x/floorl.c" - "musl/src/math/s390x/fma.c" - "musl/src/math/s390x/fmaf.c" - "musl/src/math/s390x/nearbyint.c" - "musl/src/math/s390x/nearbyintf.c" - "musl/src/math/s390x/nearbyintl.c" - "musl/src/math/s390x/rint.c" - "musl/src/math/s390x/rintf.c" - "musl/src/math/s390x/rintl.c" - "musl/src/math/s390x/round.c" - "musl/src/math/s390x/roundf.c" - "musl/src/math/s390x/roundl.c" - "musl/src/math/s390x/sqrt.c" - "musl/src/math/s390x/sqrtf.c" - "musl/src/math/s390x/sqrtl.c" - "musl/src/math/s390x/trunc.c" - "musl/src/math/s390x/truncf.c" - "musl/src/math/s390x/truncl.c" - "musl/src/math/scalb.c" - "musl/src/math/scalbf.c" - "musl/src/math/scalbln.c" - "musl/src/math/scalblnf.c" - "musl/src/math/scalblnl.c" - "musl/src/math/scalbn.c" - "musl/src/math/scalbnf.c" - "musl/src/math/scalbnl.c" - "musl/src/math/signgam.c" - "musl/src/math/significand.c" - "musl/src/math/significandf.c" - "musl/src/math/sin.c" - "musl/src/math/sincos.c" - "musl/src/math/sincosf.c" - "musl/src/math/sincosl.c" - "musl/src/math/sinf.c" - "musl/src/math/sinh.c" - "musl/src/math/sinhf.c" - "musl/src/math/sinhl.c" - "musl/src/math/sinl.c" - "musl/src/math/sqrt.c" - "musl/src/math/sqrtf.c" - "musl/src/math/sqrtl.c" - "musl/src/math/tan.c" - "musl/src/math/tanf.c" - "musl/src/math/tanh.c" - "musl/src/math/tanhf.c" - "musl/src/math/tanhl.c" - "musl/src/math/tanl.c" - "musl/src/math/tgamma.c" - "musl/src/math/tgammaf.c" - "musl/src/math/tgammal.c" - "musl/src/math/trunc.c" - "musl/src/math/truncf.c" - "musl/src/math/truncl.c" - "musl/src/math/x32/__invtrigl.s" - "musl/src/math/x32/acosl.s" - "musl/src/math/x32/asinl.s" - "musl/src/math/x32/atan2l.s" - "musl/src/math/x32/atanl.s" - "musl/src/math/x32/ceill.s" - "musl/src/math/x32/exp2l.s" - "musl/src/math/x32/expl.s" - "musl/src/math/x32/expm1l.s" - "musl/src/math/x32/fabs.s" - "musl/src/math/x32/fabsf.s" - "musl/src/math/x32/fabsl.s" - "musl/src/math/x32/floorl.s" - "musl/src/math/x32/fma.c" - "musl/src/math/x32/fmaf.c" - "musl/src/math/x32/fmodl.s" - "musl/src/math/x32/llrint.s" - "musl/src/math/x32/llrintf.s" - "musl/src/math/x32/llrintl.s" - "musl/src/math/x32/log10l.s" - "musl/src/math/x32/log1pl.s" - "musl/src/math/x32/log2l.s" - "musl/src/math/x32/logl.s" - "musl/src/math/x32/lrint.s" - "musl/src/math/x32/lrintf.s" - "musl/src/math/x32/lrintl.s" - "musl/src/math/x32/remainderl.s" - "musl/src/math/x32/rintl.s" - "musl/src/math/x32/sqrt.s" - "musl/src/math/x32/sqrtf.s" - "musl/src/math/x32/sqrtl.s" - "musl/src/math/x32/truncl.s" - "musl/src/math/x86_64/__invtrigl.s" - "musl/src/math/x86_64/acosl.s" - "musl/src/math/x86_64/asinl.s" - "musl/src/math/x86_64/atan2l.s" - "musl/src/math/x86_64/atanl.s" - "musl/src/math/x86_64/ceill.s" - "musl/src/math/x86_64/exp2l.s" - "musl/src/math/x86_64/expl.s" - "musl/src/math/x86_64/expm1l.s" - "musl/src/math/x86_64/fabs.s" - "musl/src/math/x86_64/fabsf.s" - "musl/src/math/x86_64/fabsl.s" - "musl/src/math/x86_64/floorl.s" - "musl/src/math/x86_64/fma.c" - "musl/src/math/x86_64/fmaf.c" - "musl/src/math/x86_64/fmodl.s" - "musl/src/math/x86_64/llrint.s" - "musl/src/math/x86_64/llrintf.s" - "musl/src/math/x86_64/llrintl.s" - "musl/src/math/x86_64/log10l.s" - "musl/src/math/x86_64/log1pl.s" - "musl/src/math/x86_64/log2l.s" - "musl/src/math/x86_64/logl.s" - "musl/src/math/x86_64/lrint.s" - "musl/src/math/x86_64/lrintf.s" - "musl/src/math/x86_64/lrintl.s" - "musl/src/math/x86_64/remainderl.s" - "musl/src/math/x86_64/rintl.s" - "musl/src/math/x86_64/sqrt.s" - "musl/src/math/x86_64/sqrtf.s" - "musl/src/math/x86_64/sqrtl.s" - "musl/src/math/x86_64/truncl.s" - "musl/src/misc/a64l.c" - "musl/src/misc/basename.c" - "musl/src/misc/dirname.c" - "musl/src/misc/ffs.c" - "musl/src/misc/ffsl.c" - "musl/src/misc/ffsll.c" - "musl/src/misc/fmtmsg.c" - "musl/src/misc/forkpty.c" - "musl/src/misc/get_current_dir_name.c" - "musl/src/misc/getauxval.c" - "musl/src/misc/getdomainname.c" - "musl/src/misc/getentropy.c" - "musl/src/misc/gethostid.c" - "musl/src/misc/getopt.c" - "musl/src/misc/getopt_long.c" - "musl/src/misc/getpriority.c" - "musl/src/misc/getresgid.c" - "musl/src/misc/getresuid.c" - "musl/src/misc/getrlimit.c" - "musl/src/misc/getrusage.c" - "musl/src/misc/getsubopt.c" - "musl/src/misc/initgroups.c" - "musl/src/misc/ioctl.c" - "musl/src/misc/issetugid.c" - "musl/src/misc/lockf.c" - "musl/src/misc/login_tty.c" - "musl/src/misc/mntent.c" - "musl/src/misc/nftw.c" - "musl/src/misc/openpty.c" - "musl/src/misc/ptsname.c" - "musl/src/misc/pty.c" - "musl/src/misc/realpath.c" - "musl/src/misc/setdomainname.c" - "musl/src/misc/setpriority.c" - "musl/src/misc/setrlimit.c" - "musl/src/misc/syscall.c" - "musl/src/misc/syslog.c" - "musl/src/misc/uname.c" - "musl/src/misc/wordexp.c" - "musl/src/mman/madvise.c" - "musl/src/mman/mincore.c" - "musl/src/mman/mlock.c" - "musl/src/mman/mlockall.c" - "musl/src/mman/mmap.c" - "musl/src/mman/mprotect.c" - "musl/src/mman/mremap.c" - "musl/src/mman/msync.c" - "musl/src/mman/munlock.c" - "musl/src/mman/munlockall.c" - "musl/src/mman/munmap.c" - "musl/src/mman/posix_madvise.c" - "musl/src/mman/shm_open.c" - "musl/src/mq/mq_close.c" - "musl/src/mq/mq_getattr.c" - "musl/src/mq/mq_notify.c" - "musl/src/mq/mq_open.c" - "musl/src/mq/mq_receive.c" - "musl/src/mq/mq_send.c" - "musl/src/mq/mq_setattr.c" - "musl/src/mq/mq_timedreceive.c" - "musl/src/mq/mq_timedsend.c" - "musl/src/mq/mq_unlink.c" - "musl/src/multibyte/btowc.c" - "musl/src/multibyte/c16rtomb.c" - "musl/src/multibyte/c32rtomb.c" - "musl/src/multibyte/internal.c" - "musl/src/multibyte/internal.h" - "musl/src/multibyte/mblen.c" - "musl/src/multibyte/mbrlen.c" - "musl/src/multibyte/mbrtoc16.c" - "musl/src/multibyte/mbrtoc32.c" - "musl/src/multibyte/mbrtowc.c" - "musl/src/multibyte/mbsinit.c" - "musl/src/multibyte/mbsnrtowcs.c" - "musl/src/multibyte/mbsrtowcs.c" - "musl/src/multibyte/mbstowcs.c" - "musl/src/multibyte/mbtowc.c" - "musl/src/multibyte/wcrtomb.c" - "musl/src/multibyte/wcsnrtombs.c" - "musl/src/multibyte/wcsrtombs.c" - "musl/src/multibyte/wcstombs.c" - "musl/src/multibyte/wctob.c" - "musl/src/multibyte/wctomb.c" - "musl/src/network/accept.c" - "musl/src/network/accept4.c" - "musl/src/network/bind.c" - "musl/src/network/connect.c" - "musl/src/network/dn_comp.c" - "musl/src/network/dn_expand.c" - "musl/src/network/dn_skipname.c" - "musl/src/network/dns_parse.c" - "musl/src/network/ent.c" - "musl/src/network/ether.c" - "musl/src/network/freeaddrinfo.c" - "musl/src/network/gai_strerror.c" - "musl/src/network/getaddrinfo.c" - "musl/src/network/gethostbyaddr.c" - "musl/src/network/gethostbyaddr_r.c" - "musl/src/network/gethostbyname.c" - "musl/src/network/gethostbyname2.c" - "musl/src/network/gethostbyname2_r.c" - "musl/src/network/gethostbyname_r.c" - "musl/src/network/getifaddrs.c" - "musl/src/network/getnameinfo.c" - "musl/src/network/getpeername.c" - "musl/src/network/getservbyname.c" - "musl/src/network/getservbyname_r.c" - "musl/src/network/getservbyport.c" - "musl/src/network/getservbyport_r.c" - "musl/src/network/getsockname.c" - "musl/src/network/getsockopt.c" - "musl/src/network/h_errno.c" - "musl/src/network/herror.c" - "musl/src/network/hstrerror.c" - "musl/src/network/htonl.c" - "musl/src/network/htons.c" - "musl/src/network/if_freenameindex.c" - "musl/src/network/if_indextoname.c" - "musl/src/network/if_nameindex.c" - "musl/src/network/if_nametoindex.c" - "musl/src/network/in6addr_any.c" - "musl/src/network/in6addr_loopback.c" - "musl/src/network/inet_addr.c" - "musl/src/network/inet_aton.c" - "musl/src/network/inet_legacy.c" - "musl/src/network/inet_ntoa.c" - "musl/src/network/inet_ntop.c" - "musl/src/network/inet_pton.c" - "musl/src/network/listen.c" - "musl/src/network/lookup.h" - "musl/src/network/lookup_ipliteral.c" - "musl/src/network/lookup_name.c" - "musl/src/network/lookup_serv.c" - "musl/src/network/netlink.c" - "musl/src/network/netlink.h" - "musl/src/network/netname.c" - "musl/src/network/ns_parse.c" - "musl/src/network/ntohl.c" - "musl/src/network/ntohs.c" - "musl/src/network/proto.c" - "musl/src/network/recv.c" - "musl/src/network/recvfrom.c" - "musl/src/network/recvmmsg.c" - "musl/src/network/recvmsg.c" - "musl/src/network/res_init.c" - "musl/src/network/res_mkquery.c" - "musl/src/network/res_msend.c" - "musl/src/network/res_query.c" - "musl/src/network/res_querydomain.c" - "musl/src/network/res_send.c" - "musl/src/network/res_state.c" - "musl/src/network/resolvconf.c" - "musl/src/network/send.c" - "musl/src/network/sendmmsg.c" - "musl/src/network/sendmsg.c" - "musl/src/network/sendto.c" - "musl/src/network/serv.c" - "musl/src/network/setsockopt.c" - "musl/src/network/shutdown.c" - "musl/src/network/sockatmark.c" - "musl/src/network/socket.c" - "musl/src/network/socketpair.c" - "musl/src/passwd/fgetgrent.c" - "musl/src/passwd/fgetpwent.c" - "musl/src/passwd/fgetspent.c" - "musl/src/passwd/getgr_a.c" - "musl/src/passwd/getgr_r.c" - "musl/src/passwd/getgrent.c" - "musl/src/passwd/getgrent_a.c" - "musl/src/passwd/getgrouplist.c" - "musl/src/passwd/getpw_a.c" - "musl/src/passwd/getpw_r.c" - "musl/src/passwd/getpwent.c" - "musl/src/passwd/getpwent_a.c" - "musl/src/passwd/getspent.c" - "musl/src/passwd/getspnam.c" - "musl/src/passwd/getspnam_r.c" - "musl/src/passwd/lckpwdf.c" - "musl/src/passwd/nscd.h" - "musl/src/passwd/nscd_query.c" - "musl/src/passwd/putgrent.c" - "musl/src/passwd/putpwent.c" - "musl/src/passwd/putspent.c" - "musl/src/passwd/pwf.h" - "musl/src/prng/__rand48_step.c" - "musl/src/prng/__seed48.c" - "musl/src/prng/drand48.c" - "musl/src/prng/lcong48.c" - "musl/src/prng/lrand48.c" - "musl/src/prng/mrand48.c" - "musl/src/prng/rand.c" - "musl/src/prng/rand48.h" - "musl/src/prng/rand_r.c" - "musl/src/prng/random.c" - "musl/src/prng/seed48.c" - "musl/src/prng/srand48.c" - "musl/src/process/arm/vfork.s" - "musl/src/process/execl.c" - "musl/src/process/execle.c" - "musl/src/process/execlp.c" - "musl/src/process/execv.c" - "musl/src/process/execve.c" - "musl/src/process/execvp.c" - "musl/src/process/fdop.h" - "musl/src/process/fexecve.c" - "musl/src/process/fork.c" - "musl/src/process/i386/vfork.s" - "musl/src/process/posix_spawn.c" - "musl/src/process/posix_spawn_file_actions_addclose.c" - "musl/src/process/posix_spawn_file_actions_adddup2.c" - "musl/src/process/posix_spawn_file_actions_addopen.c" - "musl/src/process/posix_spawn_file_actions_destroy.c" - "musl/src/process/posix_spawn_file_actions_init.c" - "musl/src/process/posix_spawnattr_destroy.c" - "musl/src/process/posix_spawnattr_getflags.c" - "musl/src/process/posix_spawnattr_getpgroup.c" - "musl/src/process/posix_spawnattr_getsigdefault.c" - "musl/src/process/posix_spawnattr_getsigmask.c" - "musl/src/process/posix_spawnattr_init.c" - "musl/src/process/posix_spawnattr_sched.c" - "musl/src/process/posix_spawnattr_setflags.c" - "musl/src/process/posix_spawnattr_setpgroup.c" - "musl/src/process/posix_spawnattr_setsigdefault.c" - "musl/src/process/posix_spawnattr_setsigmask.c" - "musl/src/process/posix_spawnp.c" - "musl/src/process/s390x/vfork.s" - "musl/src/process/sh/vfork.s" - "musl/src/process/system.c" - "musl/src/process/vfork.c" - "musl/src/process/wait.c" - "musl/src/process/waitid.c" - "musl/src/process/waitpid.c" - "musl/src/process/x32/vfork.s" - "musl/src/process/x86_64/vfork.s" - "musl/src/regex/fnmatch.c" - "musl/src/regex/glob.c" - "musl/src/regex/regcomp.c" - "musl/src/regex/regerror.c" - "musl/src/regex/regexec.c" - "musl/src/regex/tre-mem.c" - "musl/src/regex/tre.h" - "musl/src/sched/affinity.c" - "musl/src/sched/sched_cpucount.c" - "musl/src/sched/sched_get_priority_max.c" - "musl/src/sched/sched_getcpu.c" - "musl/src/sched/sched_getparam.c" - "musl/src/sched/sched_getscheduler.c" - "musl/src/sched/sched_rr_get_interval.c" - "musl/src/sched/sched_setparam.c" - "musl/src/sched/sched_setscheduler.c" - "musl/src/sched/sched_yield.c" - "musl/src/search/hsearch.c" - "musl/src/search/insque.c" - "musl/src/search/lsearch.c" - "musl/src/search/tdelete.c" - "musl/src/search/tdestroy.c" - "musl/src/search/tfind.c" - "musl/src/search/tsearch.c" - "musl/src/search/tsearch.h" - "musl/src/search/twalk.c" - "musl/src/select/poll.c" - "musl/src/select/pselect.c" - "musl/src/select/select.c" - "musl/src/setjmp/aarch64/longjmp.s" - "musl/src/setjmp/aarch64/setjmp.s" - "musl/src/setjmp/arm/longjmp.s" - "musl/src/setjmp/arm/setjmp.s" - "musl/src/setjmp/i386/longjmp.s" - "musl/src/setjmp/i386/setjmp.s" - "musl/src/setjmp/longjmp.c" - "musl/src/setjmp/m68k/longjmp.s" - "musl/src/setjmp/m68k/setjmp.s" - "musl/src/setjmp/microblaze/longjmp.s" - "musl/src/setjmp/microblaze/setjmp.s" - "musl/src/setjmp/mips/longjmp.S" - "musl/src/setjmp/mips/setjmp.S" - "musl/src/setjmp/mips64/longjmp.S" - "musl/src/setjmp/mips64/setjmp.S" - "musl/src/setjmp/mipsn32/longjmp.S" - "musl/src/setjmp/mipsn32/setjmp.S" - "musl/src/setjmp/or1k/longjmp.s" - "musl/src/setjmp/or1k/setjmp.s" - "musl/src/setjmp/powerpc/longjmp.S" - "musl/src/setjmp/powerpc/setjmp.S" - "musl/src/setjmp/powerpc64/longjmp.s" - "musl/src/setjmp/powerpc64/setjmp.s" - "musl/src/setjmp/s390x/longjmp.s" - "musl/src/setjmp/s390x/setjmp.s" - "musl/src/setjmp/setjmp.c" - "musl/src/setjmp/sh/longjmp.S" - "musl/src/setjmp/sh/setjmp.S" - "musl/src/setjmp/x32/longjmp.s" - "musl/src/setjmp/x32/setjmp.s" - "musl/src/setjmp/x86_64/longjmp.s" - "musl/src/setjmp/x86_64/setjmp.s" - "musl/src/signal/aarch64/restore.s" - "musl/src/signal/aarch64/sigsetjmp.s" - "musl/src/signal/arm/restore.s" - "musl/src/signal/arm/sigsetjmp.s" - "musl/src/signal/block.c" - "musl/src/signal/getitimer.c" - "musl/src/signal/i386/restore.s" - "musl/src/signal/i386/sigsetjmp.s" - "musl/src/signal/kill.c" - "musl/src/signal/killpg.c" - "musl/src/signal/m68k/sigsetjmp.s" - "musl/src/signal/microblaze/restore.s" - "musl/src/signal/microblaze/sigsetjmp.s" - "musl/src/signal/mips/restore.s" - "musl/src/signal/mips/sigsetjmp.s" - "musl/src/signal/mips64/restore.s" - "musl/src/signal/mips64/sigsetjmp.s" - "musl/src/signal/mipsn32/restore.s" - "musl/src/signal/mipsn32/sigsetjmp.s" - "musl/src/signal/or1k/sigsetjmp.s" - "musl/src/signal/powerpc/restore.s" - "musl/src/signal/powerpc/sigsetjmp.s" - "musl/src/signal/powerpc64/restore.s" - "musl/src/signal/powerpc64/sigsetjmp.s" - "musl/src/signal/psiginfo.c" - "musl/src/signal/psignal.c" - "musl/src/signal/raise.c" - "musl/src/signal/restore.c" - "musl/src/signal/s390x/restore.s" - "musl/src/signal/s390x/sigsetjmp.s" - "musl/src/signal/setitimer.c" - "musl/src/signal/sh/restore.s" - "musl/src/signal/sh/sigsetjmp.s" - "musl/src/signal/sigaction.c" - "musl/src/signal/sigaddset.c" - "musl/src/signal/sigaltstack.c" - "musl/src/signal/sigandset.c" - "musl/src/signal/sigdelset.c" - "musl/src/signal/sigemptyset.c" - "musl/src/signal/sigfillset.c" - "musl/src/signal/sighold.c" - "musl/src/signal/sigignore.c" - "musl/src/signal/siginterrupt.c" - "musl/src/signal/sigisemptyset.c" - "musl/src/signal/sigismember.c" - "musl/src/signal/siglongjmp.c" - "musl/src/signal/signal.c" - "musl/src/signal/sigorset.c" - "musl/src/signal/sigpause.c" - "musl/src/signal/sigpending.c" - "musl/src/signal/sigprocmask.c" - "musl/src/signal/sigqueue.c" - "musl/src/signal/sigrelse.c" - "musl/src/signal/sigrtmax.c" - "musl/src/signal/sigrtmin.c" - "musl/src/signal/sigset.c" - "musl/src/signal/sigsetjmp.c" - "musl/src/signal/sigsetjmp_tail.c" - "musl/src/signal/sigsuspend.c" - "musl/src/signal/sigtimedwait.c" - "musl/src/signal/sigwait.c" - "musl/src/signal/sigwaitinfo.c" - "musl/src/signal/x32/restore.s" - "musl/src/signal/x32/sigsetjmp.s" - "musl/src/signal/x86_64/restore.s" - "musl/src/signal/x86_64/sigsetjmp.s" - "musl/src/stat/__xstat.c" - "musl/src/stat/chmod.c" - "musl/src/stat/fchmod.c" - "musl/src/stat/fchmodat.c" - "musl/src/stat/fstat.c" - "musl/src/stat/fstatat.c" - "musl/src/stat/futimens.c" - "musl/src/stat/futimesat.c" - "musl/src/stat/lchmod.c" - "musl/src/stat/lstat.c" - "musl/src/stat/mkdir.c" - "musl/src/stat/mkdirat.c" - "musl/src/stat/mkfifo.c" - "musl/src/stat/mkfifoat.c" - "musl/src/stat/mknod.c" - "musl/src/stat/mknodat.c" - "musl/src/stat/stat.c" - "musl/src/stat/statvfs.c" - "musl/src/stat/umask.c" - "musl/src/stat/utimensat.c" - "musl/src/stdio/__fclose_ca.c" - "musl/src/stdio/__fdopen.c" - "musl/src/stdio/__fmodeflags.c" - "musl/src/stdio/__fopen_rb_ca.c" - "musl/src/stdio/__lockfile.c" - "musl/src/stdio/__overflow.c" - "musl/src/stdio/__stdio_close.c" - "musl/src/stdio/__stdio_exit.c" - "musl/src/stdio/__stdio_read.c" - "musl/src/stdio/__stdio_seek.c" - "musl/src/stdio/__stdio_write.c" - "musl/src/stdio/__stdout_write.c" - "musl/src/stdio/__string_read.c" - "musl/src/stdio/__toread.c" - "musl/src/stdio/__towrite.c" - "musl/src/stdio/__uflow.c" - "musl/src/stdio/asprintf.c" - "musl/src/stdio/clearerr.c" - "musl/src/stdio/dprintf.c" - "musl/src/stdio/ext.c" - "musl/src/stdio/ext2.c" - "musl/src/stdio/fclose.c" - "musl/src/stdio/feof.c" - "musl/src/stdio/ferror.c" - "musl/src/stdio/fflush.c" - "musl/src/stdio/fgetc.c" - "musl/src/stdio/fgetln.c" - "musl/src/stdio/fgetpos.c" - "musl/src/stdio/fgets.c" - "musl/src/stdio/fgetwc.c" - "musl/src/stdio/fgetws.c" - "musl/src/stdio/fileno.c" - "musl/src/stdio/flockfile.c" - "musl/src/stdio/fmemopen.c" - "musl/src/stdio/fopen.c" - "musl/src/stdio/fopencookie.c" - "musl/src/stdio/fprintf.c" - "musl/src/stdio/fputc.c" - "musl/src/stdio/fputs.c" - "musl/src/stdio/fputwc.c" - "musl/src/stdio/fputws.c" - "musl/src/stdio/fread.c" - "musl/src/stdio/freopen.c" - "musl/src/stdio/fscanf.c" - "musl/src/stdio/fseek.c" - "musl/src/stdio/fsetpos.c" - "musl/src/stdio/ftell.c" - "musl/src/stdio/ftrylockfile.c" - "musl/src/stdio/funlockfile.c" - "musl/src/stdio/fwide.c" - "musl/src/stdio/fwprintf.c" - "musl/src/stdio/fwrite.c" - "musl/src/stdio/fwscanf.c" - "musl/src/stdio/getc.c" - "musl/src/stdio/getc.h" - "musl/src/stdio/getc_unlocked.c" - "musl/src/stdio/getchar.c" - "musl/src/stdio/getchar_unlocked.c" - "musl/src/stdio/getdelim.c" - "musl/src/stdio/getline.c" - "musl/src/stdio/gets.c" - "musl/src/stdio/getw.c" - "musl/src/stdio/getwc.c" - "musl/src/stdio/getwchar.c" - "musl/src/stdio/ofl.c" - "musl/src/stdio/ofl_add.c" - "musl/src/stdio/open_memstream.c" - "musl/src/stdio/open_wmemstream.c" - "musl/src/stdio/pclose.c" - "musl/src/stdio/perror.c" - "musl/src/stdio/popen.c" - "musl/src/stdio/printf.c" - "musl/src/stdio/putc.c" - "musl/src/stdio/putc.h" - "musl/src/stdio/putc_unlocked.c" - "musl/src/stdio/putchar.c" - "musl/src/stdio/putchar_unlocked.c" - "musl/src/stdio/puts.c" - "musl/src/stdio/putw.c" - "musl/src/stdio/putwc.c" - "musl/src/stdio/putwchar.c" - "musl/src/stdio/remove.c" - "musl/src/stdio/rename.c" - "musl/src/stdio/rewind.c" - "musl/src/stdio/scanf.c" - "musl/src/stdio/setbuf.c" - "musl/src/stdio/setbuffer.c" - "musl/src/stdio/setlinebuf.c" - "musl/src/stdio/setvbuf.c" - "musl/src/stdio/snprintf.c" - "musl/src/stdio/sprintf.c" - "musl/src/stdio/sscanf.c" - "musl/src/stdio/stderr.c" - "musl/src/stdio/stdin.c" - "musl/src/stdio/stdout.c" - "musl/src/stdio/swprintf.c" - "musl/src/stdio/swscanf.c" - "musl/src/stdio/tempnam.c" - "musl/src/stdio/tmpfile.c" - "musl/src/stdio/tmpnam.c" - "musl/src/stdio/ungetc.c" - "musl/src/stdio/ungetwc.c" - "musl/src/stdio/vasprintf.c" - "musl/src/stdio/vdprintf.c" - "musl/src/stdio/vfprintf.c" - "musl/src/stdio/vfscanf.c" - "musl/src/stdio/vfwprintf.c" - "musl/src/stdio/vfwscanf.c" - "musl/src/stdio/vprintf.c" - "musl/src/stdio/vscanf.c" - "musl/src/stdio/vsnprintf.c" - "musl/src/stdio/vsprintf.c" - "musl/src/stdio/vsscanf.c" - "musl/src/stdio/vswprintf.c" - "musl/src/stdio/vswscanf.c" - "musl/src/stdio/vwprintf.c" - "musl/src/stdio/vwscanf.c" - "musl/src/stdio/wprintf.c" - "musl/src/stdio/wscanf.c" - "musl/src/stdlib/abs.c" - "musl/src/stdlib/atof.c" - "musl/src/stdlib/atoi.c" - "musl/src/stdlib/atol.c" - "musl/src/stdlib/atoll.c" - "musl/src/stdlib/bsearch.c" - "musl/src/stdlib/div.c" - "musl/src/stdlib/ecvt.c" - "musl/src/stdlib/fcvt.c" - "musl/src/stdlib/gcvt.c" - "musl/src/stdlib/imaxabs.c" - "musl/src/stdlib/imaxdiv.c" - "musl/src/stdlib/labs.c" - "musl/src/stdlib/ldiv.c" - "musl/src/stdlib/llabs.c" - "musl/src/stdlib/lldiv.c" - "musl/src/stdlib/qsort.c" - "musl/src/stdlib/strtod.c" - "musl/src/stdlib/strtol.c" - "musl/src/stdlib/wcstod.c" - "musl/src/stdlib/wcstol.c" - "musl/src/string/arm/__aeabi_memcpy.s" - "musl/src/string/arm/__aeabi_memset.s" - "musl/src/string/arm/memcpy.c" - "musl/src/string/arm/memcpy_le.S" - "musl/src/string/bcmp.c" - "musl/src/string/bcopy.c" - "musl/src/string/bzero.c" - "musl/src/string/explicit_bzero.c" - "musl/src/string/i386/memcpy.s" - "musl/src/string/i386/memmove.s" - "musl/src/string/i386/memset.s" - "musl/src/string/index.c" - "musl/src/string/memccpy.c" - "musl/src/string/memchr.c" - "musl/src/string/memcmp.c" - "musl/src/string/memcpy.c" - "musl/src/string/memmem.c" - "musl/src/string/memmove.c" - "musl/src/string/mempcpy.c" - "musl/src/string/memrchr.c" - "musl/src/string/memset.c" - "musl/src/string/rindex.c" - "musl/src/string/stpcpy.c" - "musl/src/string/stpncpy.c" - "musl/src/string/strcasecmp.c" - "musl/src/string/strcasestr.c" - "musl/src/string/strcat.c" - "musl/src/string/strchr.c" - "musl/src/string/strchrnul.c" - "musl/src/string/strcmp.c" - "musl/src/string/strcpy.c" - "musl/src/string/strcspn.c" - "musl/src/string/strdup.c" - "musl/src/string/strerror_r.c" - "musl/src/string/strlcat.c" - "musl/src/string/strlcpy.c" - "musl/src/string/strlen.c" - "musl/src/string/strncasecmp.c" - "musl/src/string/strncat.c" - "musl/src/string/strncmp.c" - "musl/src/string/strncpy.c" - "musl/src/string/strndup.c" - "musl/src/string/strnlen.c" - "musl/src/string/strpbrk.c" - "musl/src/string/strrchr.c" - "musl/src/string/strsep.c" - "musl/src/string/strsignal.c" - "musl/src/string/strspn.c" - "musl/src/string/strstr.c" - "musl/src/string/strtok.c" - "musl/src/string/strtok_r.c" - "musl/src/string/strverscmp.c" - "musl/src/string/swab.c" - "musl/src/string/wcpcpy.c" - "musl/src/string/wcpncpy.c" - "musl/src/string/wcscasecmp.c" - "musl/src/string/wcscasecmp_l.c" - "musl/src/string/wcscat.c" - "musl/src/string/wcschr.c" - "musl/src/string/wcscmp.c" - "musl/src/string/wcscpy.c" - "musl/src/string/wcscspn.c" - "musl/src/string/wcsdup.c" - "musl/src/string/wcslen.c" - "musl/src/string/wcsncasecmp.c" - "musl/src/string/wcsncasecmp_l.c" - "musl/src/string/wcsncat.c" - "musl/src/string/wcsncmp.c" - "musl/src/string/wcsncpy.c" - "musl/src/string/wcsnlen.c" - "musl/src/string/wcspbrk.c" - "musl/src/string/wcsrchr.c" - "musl/src/string/wcsspn.c" - "musl/src/string/wcsstr.c" - "musl/src/string/wcstok.c" - "musl/src/string/wcswcs.c" - "musl/src/string/wmemchr.c" - "musl/src/string/wmemcmp.c" - "musl/src/string/wmemcpy.c" - "musl/src/string/wmemmove.c" - "musl/src/string/wmemset.c" - "musl/src/string/x86_64/memcpy.s" - "musl/src/string/x86_64/memmove.s" - "musl/src/string/x86_64/memset.s" - "musl/src/temp/__randname.c" - "musl/src/temp/mkdtemp.c" - "musl/src/temp/mkostemp.c" - "musl/src/temp/mkostemps.c" - "musl/src/temp/mkstemp.c" - "musl/src/temp/mkstemps.c" - "musl/src/temp/mktemp.c" - "musl/src/termios/cfgetospeed.c" - "musl/src/termios/cfmakeraw.c" - "musl/src/termios/cfsetospeed.c" - "musl/src/termios/tcdrain.c" - "musl/src/termios/tcflow.c" - "musl/src/termios/tcflush.c" - "musl/src/termios/tcgetattr.c" - "musl/src/termios/tcgetsid.c" - "musl/src/termios/tcsendbreak.c" - "musl/src/termios/tcsetattr.c" - "musl/src/thread/__lock.c" - "musl/src/thread/__set_thread_area.c" - "musl/src/thread/__syscall_cp.c" - "musl/src/thread/__timedwait.c" - "musl/src/thread/__tls_get_addr.c" - "musl/src/thread/__unmapself.c" - "musl/src/thread/__wait.c" - "musl/src/thread/aarch64/__set_thread_area.s" - "musl/src/thread/aarch64/__unmapself.s" - "musl/src/thread/aarch64/clone.s" - "musl/src/thread/aarch64/syscall_cp.s" - "musl/src/thread/arm/__aeabi_read_tp.s" - "musl/src/thread/arm/__set_thread_area.c" - "musl/src/thread/arm/__unmapself.s" - "musl/src/thread/arm/atomics.s" - "musl/src/thread/arm/clone.s" - "musl/src/thread/arm/syscall_cp.s" - "musl/src/thread/call_once.c" - "musl/src/thread/clone.c" - "musl/src/thread/cnd_broadcast.c" - "musl/src/thread/cnd_destroy.c" - "musl/src/thread/cnd_init.c" - "musl/src/thread/cnd_signal.c" - "musl/src/thread/cnd_timedwait.c" - "musl/src/thread/cnd_wait.c" - "musl/src/thread/default_attr.c" - "musl/src/thread/i386/__set_thread_area.s" - "musl/src/thread/i386/__unmapself.s" - "musl/src/thread/i386/clone.s" - "musl/src/thread/i386/syscall_cp.s" - "musl/src/thread/i386/tls.s" - "musl/src/thread/lock_ptc.c" - "musl/src/thread/m68k/__m68k_read_tp.s" - "musl/src/thread/m68k/clone.s" - "musl/src/thread/m68k/syscall_cp.s" - "musl/src/thread/microblaze/__set_thread_area.s" - "musl/src/thread/microblaze/__unmapself.s" - "musl/src/thread/microblaze/clone.s" - "musl/src/thread/microblaze/syscall_cp.s" - "musl/src/thread/mips/__unmapself.s" - "musl/src/thread/mips/clone.s" - "musl/src/thread/mips/syscall_cp.s" - "musl/src/thread/mips64/__unmapself.s" - "musl/src/thread/mips64/clone.s" - "musl/src/thread/mips64/syscall_cp.s" - "musl/src/thread/mipsn32/__unmapself.s" - "musl/src/thread/mipsn32/clone.s" - "musl/src/thread/mipsn32/syscall_cp.s" - "musl/src/thread/mtx_destroy.c" - "musl/src/thread/mtx_init.c" - "musl/src/thread/mtx_lock.c" - "musl/src/thread/mtx_timedlock.c" - "musl/src/thread/mtx_trylock.c" - "musl/src/thread/mtx_unlock.c" - "musl/src/thread/or1k/__set_thread_area.s" - "musl/src/thread/or1k/__unmapself.s" - "musl/src/thread/or1k/clone.s" - "musl/src/thread/or1k/syscall_cp.s" - "musl/src/thread/powerpc/__set_thread_area.s" - "musl/src/thread/powerpc/__unmapself.s" - "musl/src/thread/powerpc/clone.s" - "musl/src/thread/powerpc/syscall_cp.s" - "musl/src/thread/powerpc64/__set_thread_area.s" - "musl/src/thread/powerpc64/__unmapself.s" - "musl/src/thread/powerpc64/clone.s" - "musl/src/thread/powerpc64/syscall_cp.s" - "musl/src/thread/pthread_atfork.c" - "musl/src/thread/pthread_attr_destroy.c" - "musl/src/thread/pthread_attr_get.c" - "musl/src/thread/pthread_attr_init.c" - "musl/src/thread/pthread_attr_setdetachstate.c" - "musl/src/thread/pthread_attr_setguardsize.c" - "musl/src/thread/pthread_attr_setinheritsched.c" - "musl/src/thread/pthread_attr_setschedparam.c" - "musl/src/thread/pthread_attr_setschedpolicy.c" - "musl/src/thread/pthread_attr_setscope.c" - "musl/src/thread/pthread_attr_setstack.c" - "musl/src/thread/pthread_attr_setstacksize.c" - "musl/src/thread/pthread_barrier_destroy.c" - "musl/src/thread/pthread_barrier_init.c" - "musl/src/thread/pthread_barrier_wait.c" - "musl/src/thread/pthread_barrierattr_destroy.c" - "musl/src/thread/pthread_barrierattr_init.c" - "musl/src/thread/pthread_barrierattr_setpshared.c" - "musl/src/thread/pthread_cancel.c" - "musl/src/thread/pthread_cleanup_push.c" - "musl/src/thread/pthread_cond_broadcast.c" - "musl/src/thread/pthread_cond_destroy.c" - "musl/src/thread/pthread_cond_init.c" - "musl/src/thread/pthread_cond_signal.c" - "musl/src/thread/pthread_cond_timedwait.c" - "musl/src/thread/pthread_cond_wait.c" - "musl/src/thread/pthread_condattr_destroy.c" - "musl/src/thread/pthread_condattr_init.c" - "musl/src/thread/pthread_condattr_setclock.c" - "musl/src/thread/pthread_condattr_setpshared.c" - "musl/src/thread/pthread_create.c" - "musl/src/thread/pthread_detach.c" - "musl/src/thread/pthread_equal.c" - "musl/src/thread/pthread_getattr_np.c" - "musl/src/thread/pthread_getconcurrency.c" - "musl/src/thread/pthread_getcpuclockid.c" - "musl/src/thread/pthread_getschedparam.c" - "musl/src/thread/pthread_getspecific.c" - "musl/src/thread/pthread_join.c" - "musl/src/thread/pthread_key_create.c" - "musl/src/thread/pthread_key_delete.c" - "musl/src/thread/pthread_kill.c" - "musl/src/thread/pthread_mutex_consistent.c" - "musl/src/thread/pthread_mutex_destroy.c" - "musl/src/thread/pthread_mutex_getprioceiling.c" - "musl/src/thread/pthread_mutex_init.c" - "musl/src/thread/pthread_mutex_lock.c" - "musl/src/thread/pthread_mutex_setprioceiling.c" - "musl/src/thread/pthread_mutex_timedlock.c" - "musl/src/thread/pthread_mutex_trylock.c" - "musl/src/thread/pthread_mutex_unlock.c" - "musl/src/thread/pthread_mutexattr_destroy.c" - "musl/src/thread/pthread_mutexattr_init.c" - "musl/src/thread/pthread_mutexattr_setprotocol.c" - "musl/src/thread/pthread_mutexattr_setpshared.c" - "musl/src/thread/pthread_mutexattr_setrobust.c" - "musl/src/thread/pthread_mutexattr_settype.c" - "musl/src/thread/pthread_once.c" - "musl/src/thread/pthread_rwlock_destroy.c" - "musl/src/thread/pthread_rwlock_init.c" - "musl/src/thread/pthread_rwlock_rdlock.c" - "musl/src/thread/pthread_rwlock_timedrdlock.c" - "musl/src/thread/pthread_rwlock_timedwrlock.c" - "musl/src/thread/pthread_rwlock_tryrdlock.c" - "musl/src/thread/pthread_rwlock_trywrlock.c" - "musl/src/thread/pthread_rwlock_unlock.c" - "musl/src/thread/pthread_rwlock_wrlock.c" - "musl/src/thread/pthread_rwlockattr_destroy.c" - "musl/src/thread/pthread_rwlockattr_init.c" - "musl/src/thread/pthread_rwlockattr_setpshared.c" - "musl/src/thread/pthread_self.c" - "musl/src/thread/pthread_setattr_default_np.c" - "musl/src/thread/pthread_setcancelstate.c" - "musl/src/thread/pthread_setcanceltype.c" - "musl/src/thread/pthread_setconcurrency.c" - "musl/src/thread/pthread_setname_np.c" - "musl/src/thread/pthread_setschedparam.c" - "musl/src/thread/pthread_setschedprio.c" - "musl/src/thread/pthread_setspecific.c" - "musl/src/thread/pthread_sigmask.c" - "musl/src/thread/pthread_spin_destroy.c" - "musl/src/thread/pthread_spin_init.c" - "musl/src/thread/pthread_spin_lock.c" - "musl/src/thread/pthread_spin_trylock.c" - "musl/src/thread/pthread_spin_unlock.c" - "musl/src/thread/pthread_testcancel.c" - "musl/src/thread/s390x/__set_thread_area.s" - "musl/src/thread/s390x/__tls_get_offset.s" - "musl/src/thread/s390x/__unmapself.s" - "musl/src/thread/s390x/clone.s" - "musl/src/thread/s390x/syscall_cp.s" - "musl/src/thread/sem_destroy.c" - "musl/src/thread/sem_getvalue.c" - "musl/src/thread/sem_init.c" - "musl/src/thread/sem_open.c" - "musl/src/thread/sem_post.c" - "musl/src/thread/sem_timedwait.c" - "musl/src/thread/sem_trywait.c" - "musl/src/thread/sem_unlink.c" - "musl/src/thread/sem_wait.c" - "musl/src/thread/sh/__set_thread_area.c" - "musl/src/thread/sh/__unmapself.c" - "musl/src/thread/sh/__unmapself_mmu.s" - "musl/src/thread/sh/atomics.s" - "musl/src/thread/sh/clone.s" - "musl/src/thread/sh/syscall_cp.s" - "musl/src/thread/synccall.c" - "musl/src/thread/syscall_cp.c" - "musl/src/thread/thrd_create.c" - "musl/src/thread/thrd_exit.c" - "musl/src/thread/thrd_join.c" - "musl/src/thread/thrd_sleep.c" - "musl/src/thread/thrd_yield.c" - "musl/src/thread/tls.c" - "musl/src/thread/tss_create.c" - "musl/src/thread/tss_delete.c" - "musl/src/thread/tss_set.c" - "musl/src/thread/vmlock.c" - "musl/src/thread/x32/__set_thread_area.s" - "musl/src/thread/x32/__unmapself.s" - "musl/src/thread/x32/clone.s" - "musl/src/thread/x32/syscall_cp.s" - "musl/src/thread/x32/syscall_cp_fixup.c" - "musl/src/thread/x86_64/__set_thread_area.s" - "musl/src/thread/x86_64/__unmapself.s" - "musl/src/thread/x86_64/clone.s" - "musl/src/thread/x86_64/syscall_cp.s" - "musl/src/time/__map_file.c" - "musl/src/time/__month_to_secs.c" - "musl/src/time/__secs_to_tm.c" - "musl/src/time/__tm_to_secs.c" - "musl/src/time/__tz.c" - "musl/src/time/__year_to_secs.c" - "musl/src/time/asctime.c" - "musl/src/time/asctime_r.c" - "musl/src/time/clock.c" - "musl/src/time/clock_getcpuclockid.c" - "musl/src/time/clock_getres.c" - "musl/src/time/clock_gettime.c" - "musl/src/time/clock_nanosleep.c" - "musl/src/time/clock_settime.c" - "musl/src/time/ctime.c" - "musl/src/time/ctime_r.c" - "musl/src/time/difftime.c" - "musl/src/time/ftime.c" - "musl/src/time/getdate.c" - "musl/src/time/gettimeofday.c" - "musl/src/time/gmtime.c" - "musl/src/time/gmtime_r.c" - "musl/src/time/localtime.c" - "musl/src/time/localtime_r.c" - "musl/src/time/mktime.c" - "musl/src/time/nanosleep.c" - "musl/src/time/strftime.c" - "musl/src/time/strptime.c" - "musl/src/time/time.c" - "musl/src/time/time_impl.h" - "musl/src/time/timegm.c" - "musl/src/time/timer_create.c" - "musl/src/time/timer_delete.c" - "musl/src/time/timer_getoverrun.c" - "musl/src/time/timer_gettime.c" - "musl/src/time/timer_settime.c" - "musl/src/time/times.c" - "musl/src/time/timespec_get.c" - "musl/src/time/utime.c" - "musl/src/time/wcsftime.c" - "musl/src/unistd/_exit.c" - "musl/src/unistd/access.c" - "musl/src/unistd/acct.c" - "musl/src/unistd/alarm.c" - "musl/src/unistd/chdir.c" - "musl/src/unistd/chown.c" - "musl/src/unistd/close.c" - "musl/src/unistd/ctermid.c" - "musl/src/unistd/dup.c" - "musl/src/unistd/dup2.c" - "musl/src/unistd/dup3.c" - "musl/src/unistd/faccessat.c" - "musl/src/unistd/fchdir.c" - "musl/src/unistd/fchown.c" - "musl/src/unistd/fchownat.c" - "musl/src/unistd/fdatasync.c" - "musl/src/unistd/fsync.c" - "musl/src/unistd/ftruncate.c" - "musl/src/unistd/getcwd.c" - "musl/src/unistd/getegid.c" - "musl/src/unistd/geteuid.c" - "musl/src/unistd/getgid.c" - "musl/src/unistd/getgroups.c" - "musl/src/unistd/gethostname.c" - "musl/src/unistd/getlogin.c" - "musl/src/unistd/getlogin_r.c" - "musl/src/unistd/getpgid.c" - "musl/src/unistd/getpgrp.c" - "musl/src/unistd/getpid.c" - "musl/src/unistd/getppid.c" - "musl/src/unistd/getsid.c" - "musl/src/unistd/getuid.c" - "musl/src/unistd/isatty.c" - "musl/src/unistd/lchown.c" - "musl/src/unistd/link.c" - "musl/src/unistd/linkat.c" - "musl/src/unistd/lseek.c" - "musl/src/unistd/mips/pipe.s" - "musl/src/unistd/mips64/pipe.s" - "musl/src/unistd/mipsn32/pipe.s" - "musl/src/unistd/nice.c" - "musl/src/unistd/pause.c" - "musl/src/unistd/pipe.c" - "musl/src/unistd/pipe2.c" - "musl/src/unistd/posix_close.c" - "musl/src/unistd/pread.c" - "musl/src/unistd/preadv.c" - "musl/src/unistd/pwrite.c" - "musl/src/unistd/pwritev.c" - "musl/src/unistd/read.c" - "musl/src/unistd/readlink.c" - "musl/src/unistd/readlinkat.c" - "musl/src/unistd/readv.c" - "musl/src/unistd/renameat.c" - "musl/src/unistd/rmdir.c" - "musl/src/unistd/setegid.c" - "musl/src/unistd/seteuid.c" - "musl/src/unistd/setgid.c" - "musl/src/unistd/setpgid.c" - "musl/src/unistd/setpgrp.c" - "musl/src/unistd/setregid.c" - "musl/src/unistd/setresgid.c" - "musl/src/unistd/setresuid.c" - "musl/src/unistd/setreuid.c" - "musl/src/unistd/setsid.c" - "musl/src/unistd/setuid.c" - "musl/src/unistd/setxid.c" - "musl/src/unistd/sh/pipe.s" - "musl/src/unistd/sleep.c" - "musl/src/unistd/symlink.c" - "musl/src/unistd/symlinkat.c" - "musl/src/unistd/sync.c" - "musl/src/unistd/tcgetpgrp.c" - "musl/src/unistd/tcsetpgrp.c" - "musl/src/unistd/truncate.c" - "musl/src/unistd/ttyname.c" - "musl/src/unistd/ttyname_r.c" - "musl/src/unistd/ualarm.c" - "musl/src/unistd/unlink.c" - "musl/src/unistd/unlinkat.c" - "musl/src/unistd/usleep.c" - "musl/src/unistd/write.c" - "musl/src/unistd/writev.c" -) - if(MSVC) set(MSVC_DIA_SDK_DIR "$ENV{VSINSTALLDIR}DIA SDK") if(IS_DIRECTORY ${MSVC_DIA_SDK_DIR}) @@ -2276,17 +476,6 @@ configure_file ( "${CMAKE_SOURCE_DIR}/src/config.h.in" "${CMAKE_BINARY_DIR}/config.h" ) -set(INSTALL_FILES_H "${CMAKE_BINARY_DIR}/install_files.h") -file(REMOVE "${INSTALL_FILES_H}") -file(APPEND "${INSTALL_FILES_H}" "#ifndef ZIG_INSTALL_FILES_H\n") -file(APPEND "${INSTALL_FILES_H}" "#define ZIG_INSTALL_FILES_H\n") -file(APPEND "${INSTALL_FILES_H}" "static const char *ZIG_MUSL_SRC_FILES[] = {\n") -foreach(filename ${ZIG_MUSL_SRC_FILES}) - file(APPEND "${INSTALL_FILES_H}" "\"${filename}\",\n") -endforeach(filename) -file(APPEND "${INSTALL_FILES_H}" "};\n") -file(APPEND "${INSTALL_FILES_H}" "#endif\n") - include_directories( ${CMAKE_SOURCE_DIR} diff --git a/src/install_files.h b/src/install_files.h new file mode 100644 index 0000000000..8b6a4dc059 --- /dev/null +++ b/src/install_files.h @@ -0,0 +1,1802 @@ +#ifndef ZIG_INSTALL_FILES_H +#define ZIG_INSTALL_FILES_H +static const char *ZIG_MUSL_SRC_FILES[] = { +"musl/src/aio/aio.c", +"musl/src/aio/aio_suspend.c", +"musl/src/aio/lio_listio.c", +"musl/src/complex/__cexp.c", +"musl/src/complex/__cexpf.c", +"musl/src/complex/cabs.c", +"musl/src/complex/cabsf.c", +"musl/src/complex/cabsl.c", +"musl/src/complex/cacos.c", +"musl/src/complex/cacosf.c", +"musl/src/complex/cacosh.c", +"musl/src/complex/cacoshf.c", +"musl/src/complex/cacoshl.c", +"musl/src/complex/cacosl.c", +"musl/src/complex/carg.c", +"musl/src/complex/cargf.c", +"musl/src/complex/cargl.c", +"musl/src/complex/casin.c", +"musl/src/complex/casinf.c", +"musl/src/complex/casinh.c", +"musl/src/complex/casinhf.c", +"musl/src/complex/casinhl.c", +"musl/src/complex/casinl.c", +"musl/src/complex/catan.c", +"musl/src/complex/catanf.c", +"musl/src/complex/catanh.c", +"musl/src/complex/catanhf.c", +"musl/src/complex/catanhl.c", +"musl/src/complex/catanl.c", +"musl/src/complex/ccos.c", +"musl/src/complex/ccosf.c", +"musl/src/complex/ccosh.c", +"musl/src/complex/ccoshf.c", +"musl/src/complex/ccoshl.c", +"musl/src/complex/ccosl.c", +"musl/src/complex/cexp.c", +"musl/src/complex/cexpf.c", +"musl/src/complex/cexpl.c", +"musl/src/complex/cimag.c", +"musl/src/complex/cimagf.c", +"musl/src/complex/cimagl.c", +"musl/src/complex/clog.c", +"musl/src/complex/clogf.c", +"musl/src/complex/clogl.c", +"musl/src/complex/conj.c", +"musl/src/complex/conjf.c", +"musl/src/complex/conjl.c", +"musl/src/complex/cpow.c", +"musl/src/complex/cpowf.c", +"musl/src/complex/cpowl.c", +"musl/src/complex/cproj.c", +"musl/src/complex/cprojf.c", +"musl/src/complex/cprojl.c", +"musl/src/complex/creal.c", +"musl/src/complex/crealf.c", +"musl/src/complex/creall.c", +"musl/src/complex/csin.c", +"musl/src/complex/csinf.c", +"musl/src/complex/csinh.c", +"musl/src/complex/csinhf.c", +"musl/src/complex/csinhl.c", +"musl/src/complex/csinl.c", +"musl/src/complex/csqrt.c", +"musl/src/complex/csqrtf.c", +"musl/src/complex/csqrtl.c", +"musl/src/complex/ctan.c", +"musl/src/complex/ctanf.c", +"musl/src/complex/ctanh.c", +"musl/src/complex/ctanhf.c", +"musl/src/complex/ctanhl.c", +"musl/src/complex/ctanl.c", +"musl/src/conf/confstr.c", +"musl/src/conf/fpathconf.c", +"musl/src/conf/legacy.c", +"musl/src/conf/pathconf.c", +"musl/src/conf/sysconf.c", +"musl/src/crypt/crypt.c", +"musl/src/crypt/crypt_blowfish.c", +"musl/src/crypt/crypt_des.c", +"musl/src/crypt/crypt_des.h", +"musl/src/crypt/crypt_md5.c", +"musl/src/crypt/crypt_r.c", +"musl/src/crypt/crypt_sha256.c", +"musl/src/crypt/crypt_sha512.c", +"musl/src/crypt/encrypt.c", +"musl/src/ctype/__ctype_b_loc.c", +"musl/src/ctype/__ctype_get_mb_cur_max.c", +"musl/src/ctype/__ctype_tolower_loc.c", +"musl/src/ctype/__ctype_toupper_loc.c", +"musl/src/ctype/alpha.h", +"musl/src/ctype/isalnum.c", +"musl/src/ctype/isalpha.c", +"musl/src/ctype/isascii.c", +"musl/src/ctype/isblank.c", +"musl/src/ctype/iscntrl.c", +"musl/src/ctype/isdigit.c", +"musl/src/ctype/isgraph.c", +"musl/src/ctype/islower.c", +"musl/src/ctype/isprint.c", +"musl/src/ctype/ispunct.c", +"musl/src/ctype/isspace.c", +"musl/src/ctype/isupper.c", +"musl/src/ctype/iswalnum.c", +"musl/src/ctype/iswalpha.c", +"musl/src/ctype/iswblank.c", +"musl/src/ctype/iswcntrl.c", +"musl/src/ctype/iswctype.c", +"musl/src/ctype/iswdigit.c", +"musl/src/ctype/iswgraph.c", +"musl/src/ctype/iswlower.c", +"musl/src/ctype/iswprint.c", +"musl/src/ctype/iswpunct.c", +"musl/src/ctype/iswspace.c", +"musl/src/ctype/iswupper.c", +"musl/src/ctype/iswxdigit.c", +"musl/src/ctype/isxdigit.c", +"musl/src/ctype/nonspacing.h", +"musl/src/ctype/punct.h", +"musl/src/ctype/toascii.c", +"musl/src/ctype/tolower.c", +"musl/src/ctype/toupper.c", +"musl/src/ctype/towctrans.c", +"musl/src/ctype/wcswidth.c", +"musl/src/ctype/wctrans.c", +"musl/src/ctype/wcwidth.c", +"musl/src/ctype/wide.h", +"musl/src/dirent/__dirent.h", +"musl/src/dirent/alphasort.c", +"musl/src/dirent/closedir.c", +"musl/src/dirent/dirfd.c", +"musl/src/dirent/fdopendir.c", +"musl/src/dirent/opendir.c", +"musl/src/dirent/readdir.c", +"musl/src/dirent/readdir_r.c", +"musl/src/dirent/rewinddir.c", +"musl/src/dirent/scandir.c", +"musl/src/dirent/seekdir.c", +"musl/src/dirent/telldir.c", +"musl/src/dirent/versionsort.c", +"musl/src/env/__environ.c", +"musl/src/env/__init_tls.c", +"musl/src/env/__libc_start_main.c", +"musl/src/env/__reset_tls.c", +"musl/src/env/__stack_chk_fail.c", +"musl/src/env/clearenv.c", +"musl/src/env/getenv.c", +"musl/src/env/putenv.c", +"musl/src/env/setenv.c", +"musl/src/env/unsetenv.c", +"musl/src/errno/__errno_location.c", +"musl/src/errno/__strerror.h", +"musl/src/errno/strerror.c", +"musl/src/exit/_Exit.c", +"musl/src/exit/abort.c", +"musl/src/exit/arm/__aeabi_atexit.c", +"musl/src/exit/assert.c", +"musl/src/exit/at_quick_exit.c", +"musl/src/exit/atexit.c", +"musl/src/exit/exit.c", +"musl/src/exit/quick_exit.c", +"musl/src/fcntl/creat.c", +"musl/src/fcntl/fcntl.c", +"musl/src/fcntl/open.c", +"musl/src/fcntl/openat.c", +"musl/src/fcntl/posix_fadvise.c", +"musl/src/fcntl/posix_fallocate.c", +"musl/src/fenv/__flt_rounds.c", +"musl/src/fenv/aarch64/fenv.s", +"musl/src/fenv/arm/fenv-hf.S", +"musl/src/fenv/arm/fenv.c", +"musl/src/fenv/fegetexceptflag.c", +"musl/src/fenv/feholdexcept.c", +"musl/src/fenv/fenv.c", +"musl/src/fenv/fesetexceptflag.c", +"musl/src/fenv/fesetround.c", +"musl/src/fenv/feupdateenv.c", +"musl/src/fenv/i386/fenv.s", +"musl/src/fenv/m68k/fenv.c", +"musl/src/fenv/mips/fenv-sf.c", +"musl/src/fenv/mips/fenv.S", +"musl/src/fenv/mips64/fenv-sf.c", +"musl/src/fenv/mips64/fenv.S", +"musl/src/fenv/mipsn32/fenv-sf.c", +"musl/src/fenv/mipsn32/fenv.S", +"musl/src/fenv/powerpc/fenv-sf.c", +"musl/src/fenv/powerpc/fenv.S", +"musl/src/fenv/powerpc64/fenv.c", +"musl/src/fenv/s390x/fenv.c", +"musl/src/fenv/sh/fenv-nofpu.c", +"musl/src/fenv/sh/fenv.S", +"musl/src/fenv/x32/fenv.s", +"musl/src/fenv/x86_64/fenv.s", +"musl/src/include/arpa/inet.h", +"musl/src/include/crypt.h", +"musl/src/include/errno.h", +"musl/src/include/features.h", +"musl/src/include/langinfo.h", +"musl/src/include/pthread.h", +"musl/src/include/resolv.h", +"musl/src/include/signal.h", +"musl/src/include/stdio.h", +"musl/src/include/stdlib.h", +"musl/src/include/string.h", +"musl/src/include/sys/auxv.h", +"musl/src/include/sys/mman.h", +"musl/src/include/sys/sysinfo.h", +"musl/src/include/sys/time.h", +"musl/src/include/time.h", +"musl/src/include/unistd.h", +"musl/src/internal/aarch64/syscall.s", +"musl/src/internal/arm/syscall.s", +"musl/src/internal/atomic.h", +"musl/src/internal/dynlink.h", +"musl/src/internal/fdpic_crt.h", +"musl/src/internal/floatscan.c", +"musl/src/internal/floatscan.h", +"musl/src/internal/futex.h", +"musl/src/internal/i386/syscall.s", +"musl/src/internal/intscan.c", +"musl/src/internal/intscan.h", +"musl/src/internal/ksigaction.h", +"musl/src/internal/libc.c", +"musl/src/internal/libc.h", +"musl/src/internal/libm.h", +"musl/src/internal/locale_impl.h", +"musl/src/internal/lock.h", +"musl/src/internal/m68k/syscall.s", +"musl/src/internal/malloc_impl.h", +"musl/src/internal/microblaze/syscall.s", +"musl/src/internal/mips/syscall.s", +"musl/src/internal/mips64/syscall.s", +"musl/src/internal/mipsn32/syscall.s", +"musl/src/internal/or1k/syscall.s", +"musl/src/internal/powerpc/syscall.s", +"musl/src/internal/powerpc64/syscall.s", +"musl/src/internal/procfdname.c", +"musl/src/internal/pthread_impl.h", +"musl/src/internal/s390x/syscall.s", +"musl/src/internal/sh/__shcall.c", +"musl/src/internal/sh/syscall.s", +"musl/src/internal/shgetc.c", +"musl/src/internal/shgetc.h", +"musl/src/internal/stdio_impl.h", +"musl/src/internal/syscall.c", +"musl/src/internal/syscall.h", +"musl/src/internal/syscall_ret.c", +"musl/src/internal/vdso.c", +"musl/src/internal/version.c", +"musl/src/internal/version.h", +"musl/src/internal/x32/syscall.s", +"musl/src/internal/x86_64/syscall.s", +"musl/src/ipc/ftok.c", +"musl/src/ipc/ipc.h", +"musl/src/ipc/msgctl.c", +"musl/src/ipc/msgget.c", +"musl/src/ipc/msgrcv.c", +"musl/src/ipc/msgsnd.c", +"musl/src/ipc/semctl.c", +"musl/src/ipc/semget.c", +"musl/src/ipc/semop.c", +"musl/src/ipc/semtimedop.c", +"musl/src/ipc/shmat.c", +"musl/src/ipc/shmctl.c", +"musl/src/ipc/shmdt.c", +"musl/src/ipc/shmget.c", +"musl/src/ldso/__dlsym.c", +"musl/src/ldso/aarch64/dlsym.s", +"musl/src/ldso/aarch64/tlsdesc.s", +"musl/src/ldso/arm/dlsym.s", +"musl/src/ldso/arm/find_exidx.c", +"musl/src/ldso/arm/tlsdesc.S", +"musl/src/ldso/dl_iterate_phdr.c", +"musl/src/ldso/dladdr.c", +"musl/src/ldso/dlclose.c", +"musl/src/ldso/dlerror.c", +"musl/src/ldso/dlinfo.c", +"musl/src/ldso/dlopen.c", +"musl/src/ldso/dlsym.c", +"musl/src/ldso/i386/dlsym.s", +"musl/src/ldso/i386/tlsdesc.s", +"musl/src/ldso/m68k/dlsym.s", +"musl/src/ldso/microblaze/dlsym.s", +"musl/src/ldso/mips/dlsym.s", +"musl/src/ldso/mips64/dlsym.s", +"musl/src/ldso/mipsn32/dlsym.s", +"musl/src/ldso/or1k/dlsym.s", +"musl/src/ldso/powerpc/dlsym.s", +"musl/src/ldso/powerpc64/dlsym.s", +"musl/src/ldso/s390x/dlsym.s", +"musl/src/ldso/sh/dlsym.s", +"musl/src/ldso/tlsdesc.c", +"musl/src/ldso/x32/dlsym.s", +"musl/src/ldso/x86_64/dlsym.s", +"musl/src/ldso/x86_64/tlsdesc.s", +"musl/src/legacy/cuserid.c", +"musl/src/legacy/daemon.c", +"musl/src/legacy/err.c", +"musl/src/legacy/euidaccess.c", +"musl/src/legacy/ftw.c", +"musl/src/legacy/futimes.c", +"musl/src/legacy/getdtablesize.c", +"musl/src/legacy/getloadavg.c", +"musl/src/legacy/getpagesize.c", +"musl/src/legacy/getpass.c", +"musl/src/legacy/getusershell.c", +"musl/src/legacy/isastream.c", +"musl/src/legacy/lutimes.c", +"musl/src/legacy/ulimit.c", +"musl/src/legacy/utmpx.c", +"musl/src/legacy/valloc.c", +"musl/src/linux/adjtime.c", +"musl/src/linux/adjtimex.c", +"musl/src/linux/arch_prctl.c", +"musl/src/linux/brk.c", +"musl/src/linux/cache.c", +"musl/src/linux/cap.c", +"musl/src/linux/chroot.c", +"musl/src/linux/clock_adjtime.c", +"musl/src/linux/clone.c", +"musl/src/linux/epoll.c", +"musl/src/linux/eventfd.c", +"musl/src/linux/fallocate.c", +"musl/src/linux/fanotify.c", +"musl/src/linux/flock.c", +"musl/src/linux/getdents.c", +"musl/src/linux/getrandom.c", +"musl/src/linux/inotify.c", +"musl/src/linux/ioperm.c", +"musl/src/linux/iopl.c", +"musl/src/linux/klogctl.c", +"musl/src/linux/memfd_create.c", +"musl/src/linux/mlock2.c", +"musl/src/linux/module.c", +"musl/src/linux/mount.c", +"musl/src/linux/name_to_handle_at.c", +"musl/src/linux/open_by_handle_at.c", +"musl/src/linux/personality.c", +"musl/src/linux/pivot_root.c", +"musl/src/linux/ppoll.c", +"musl/src/linux/prctl.c", +"musl/src/linux/prlimit.c", +"musl/src/linux/process_vm.c", +"musl/src/linux/ptrace.c", +"musl/src/linux/quotactl.c", +"musl/src/linux/readahead.c", +"musl/src/linux/reboot.c", +"musl/src/linux/remap_file_pages.c", +"musl/src/linux/sbrk.c", +"musl/src/linux/sendfile.c", +"musl/src/linux/setfsgid.c", +"musl/src/linux/setfsuid.c", +"musl/src/linux/setgroups.c", +"musl/src/linux/sethostname.c", +"musl/src/linux/setns.c", +"musl/src/linux/settimeofday.c", +"musl/src/linux/signalfd.c", +"musl/src/linux/splice.c", +"musl/src/linux/stime.c", +"musl/src/linux/swap.c", +"musl/src/linux/sync_file_range.c", +"musl/src/linux/syncfs.c", +"musl/src/linux/sysinfo.c", +"musl/src/linux/tee.c", +"musl/src/linux/timerfd.c", +"musl/src/linux/unshare.c", +"musl/src/linux/utimes.c", +"musl/src/linux/vhangup.c", +"musl/src/linux/vmsplice.c", +"musl/src/linux/wait3.c", +"musl/src/linux/wait4.c", +"musl/src/linux/x32/sysinfo.c", +"musl/src/linux/xattr.c", +"musl/src/locale/__lctrans.c", +"musl/src/locale/__mo_lookup.c", +"musl/src/locale/big5.h", +"musl/src/locale/bind_textdomain_codeset.c", +"musl/src/locale/c_locale.c", +"musl/src/locale/catclose.c", +"musl/src/locale/catgets.c", +"musl/src/locale/catopen.c", +"musl/src/locale/codepages.h", +"musl/src/locale/dcngettext.c", +"musl/src/locale/duplocale.c", +"musl/src/locale/freelocale.c", +"musl/src/locale/gb18030.h", +"musl/src/locale/hkscs.h", +"musl/src/locale/iconv.c", +"musl/src/locale/iconv_close.c", +"musl/src/locale/jis0208.h", +"musl/src/locale/ksc.h", +"musl/src/locale/langinfo.c", +"musl/src/locale/legacychars.h", +"musl/src/locale/locale_map.c", +"musl/src/locale/localeconv.c", +"musl/src/locale/newlocale.c", +"musl/src/locale/pleval.c", +"musl/src/locale/pleval.h", +"musl/src/locale/revjis.h", +"musl/src/locale/setlocale.c", +"musl/src/locale/strcoll.c", +"musl/src/locale/strfmon.c", +"musl/src/locale/strxfrm.c", +"musl/src/locale/textdomain.c", +"musl/src/locale/uselocale.c", +"musl/src/locale/wcscoll.c", +"musl/src/locale/wcsxfrm.c", +"musl/src/malloc/DESIGN", +"musl/src/malloc/aligned_alloc.c", +"musl/src/malloc/expand_heap.c", +"musl/src/malloc/lite_malloc.c", +"musl/src/malloc/malloc.c", +"musl/src/malloc/malloc_usable_size.c", +"musl/src/malloc/memalign.c", +"musl/src/malloc/posix_memalign.c", +"musl/src/math/__cos.c", +"musl/src/math/__cosdf.c", +"musl/src/math/__cosl.c", +"musl/src/math/__expo2.c", +"musl/src/math/__expo2f.c", +"musl/src/math/__fpclassify.c", +"musl/src/math/__fpclassifyf.c", +"musl/src/math/__fpclassifyl.c", +"musl/src/math/__invtrigl.c", +"musl/src/math/__invtrigl.h", +"musl/src/math/__polevll.c", +"musl/src/math/__rem_pio2.c", +"musl/src/math/__rem_pio2_large.c", +"musl/src/math/__rem_pio2f.c", +"musl/src/math/__rem_pio2l.c", +"musl/src/math/__signbit.c", +"musl/src/math/__signbitf.c", +"musl/src/math/__signbitl.c", +"musl/src/math/__sin.c", +"musl/src/math/__sindf.c", +"musl/src/math/__sinl.c", +"musl/src/math/__tan.c", +"musl/src/math/__tandf.c", +"musl/src/math/__tanl.c", +"musl/src/math/aarch64/ceil.c", +"musl/src/math/aarch64/ceilf.c", +"musl/src/math/aarch64/fabs.c", +"musl/src/math/aarch64/fabsf.c", +"musl/src/math/aarch64/floor.c", +"musl/src/math/aarch64/floorf.c", +"musl/src/math/aarch64/fma.c", +"musl/src/math/aarch64/fmaf.c", +"musl/src/math/aarch64/fmax.c", +"musl/src/math/aarch64/fmaxf.c", +"musl/src/math/aarch64/fmin.c", +"musl/src/math/aarch64/fminf.c", +"musl/src/math/aarch64/llrint.c", +"musl/src/math/aarch64/llrintf.c", +"musl/src/math/aarch64/llround.c", +"musl/src/math/aarch64/llroundf.c", +"musl/src/math/aarch64/lrint.c", +"musl/src/math/aarch64/lrintf.c", +"musl/src/math/aarch64/lround.c", +"musl/src/math/aarch64/lroundf.c", +"musl/src/math/aarch64/nearbyint.c", +"musl/src/math/aarch64/nearbyintf.c", +"musl/src/math/aarch64/rint.c", +"musl/src/math/aarch64/rintf.c", +"musl/src/math/aarch64/round.c", +"musl/src/math/aarch64/roundf.c", +"musl/src/math/aarch64/sqrt.c", +"musl/src/math/aarch64/sqrtf.c", +"musl/src/math/aarch64/trunc.c", +"musl/src/math/aarch64/truncf.c", +"musl/src/math/acos.c", +"musl/src/math/acosf.c", +"musl/src/math/acosh.c", +"musl/src/math/acoshf.c", +"musl/src/math/acoshl.c", +"musl/src/math/acosl.c", +"musl/src/math/arm/fabs.c", +"musl/src/math/arm/fabsf.c", +"musl/src/math/arm/fma.c", +"musl/src/math/arm/fmaf.c", +"musl/src/math/arm/sqrt.c", +"musl/src/math/arm/sqrtf.c", +"musl/src/math/asin.c", +"musl/src/math/asinf.c", +"musl/src/math/asinh.c", +"musl/src/math/asinhf.c", +"musl/src/math/asinhl.c", +"musl/src/math/asinl.c", +"musl/src/math/atan.c", +"musl/src/math/atan2.c", +"musl/src/math/atan2f.c", +"musl/src/math/atan2l.c", +"musl/src/math/atanf.c", +"musl/src/math/atanh.c", +"musl/src/math/atanhf.c", +"musl/src/math/atanhl.c", +"musl/src/math/atanl.c", +"musl/src/math/cbrt.c", +"musl/src/math/cbrtf.c", +"musl/src/math/cbrtl.c", +"musl/src/math/ceil.c", +"musl/src/math/ceilf.c", +"musl/src/math/ceill.c", +"musl/src/math/copysign.c", +"musl/src/math/copysignf.c", +"musl/src/math/copysignl.c", +"musl/src/math/cos.c", +"musl/src/math/cosf.c", +"musl/src/math/cosh.c", +"musl/src/math/coshf.c", +"musl/src/math/coshl.c", +"musl/src/math/cosl.c", +"musl/src/math/erf.c", +"musl/src/math/erff.c", +"musl/src/math/erfl.c", +"musl/src/math/exp.c", +"musl/src/math/exp10.c", +"musl/src/math/exp10f.c", +"musl/src/math/exp10l.c", +"musl/src/math/exp2.c", +"musl/src/math/exp2f.c", +"musl/src/math/exp2l.c", +"musl/src/math/expf.c", +"musl/src/math/expl.c", +"musl/src/math/expm1.c", +"musl/src/math/expm1f.c", +"musl/src/math/expm1l.c", +"musl/src/math/fabs.c", +"musl/src/math/fabsf.c", +"musl/src/math/fabsl.c", +"musl/src/math/fdim.c", +"musl/src/math/fdimf.c", +"musl/src/math/fdiml.c", +"musl/src/math/finite.c", +"musl/src/math/finitef.c", +"musl/src/math/floor.c", +"musl/src/math/floorf.c", +"musl/src/math/floorl.c", +"musl/src/math/fma.c", +"musl/src/math/fmaf.c", +"musl/src/math/fmal.c", +"musl/src/math/fmax.c", +"musl/src/math/fmaxf.c", +"musl/src/math/fmaxl.c", +"musl/src/math/fmin.c", +"musl/src/math/fminf.c", +"musl/src/math/fminl.c", +"musl/src/math/fmod.c", +"musl/src/math/fmodf.c", +"musl/src/math/fmodl.c", +"musl/src/math/frexp.c", +"musl/src/math/frexpf.c", +"musl/src/math/frexpl.c", +"musl/src/math/hypot.c", +"musl/src/math/hypotf.c", +"musl/src/math/hypotl.c", +"musl/src/math/i386/__invtrigl.s", +"musl/src/math/i386/acos.s", +"musl/src/math/i386/acosf.s", +"musl/src/math/i386/acosl.s", +"musl/src/math/i386/asin.s", +"musl/src/math/i386/asinf.s", +"musl/src/math/i386/asinl.s", +"musl/src/math/i386/atan.s", +"musl/src/math/i386/atan2.s", +"musl/src/math/i386/atan2f.s", +"musl/src/math/i386/atan2l.s", +"musl/src/math/i386/atanf.s", +"musl/src/math/i386/atanl.s", +"musl/src/math/i386/ceil.s", +"musl/src/math/i386/ceilf.s", +"musl/src/math/i386/ceill.s", +"musl/src/math/i386/exp.s", +"musl/src/math/i386/exp2.s", +"musl/src/math/i386/exp2f.s", +"musl/src/math/i386/exp2l.s", +"musl/src/math/i386/expf.s", +"musl/src/math/i386/expl.s", +"musl/src/math/i386/expm1.s", +"musl/src/math/i386/expm1f.s", +"musl/src/math/i386/expm1l.s", +"musl/src/math/i386/fabs.s", +"musl/src/math/i386/fabsf.s", +"musl/src/math/i386/fabsl.s", +"musl/src/math/i386/floor.s", +"musl/src/math/i386/floorf.s", +"musl/src/math/i386/floorl.s", +"musl/src/math/i386/fmod.s", +"musl/src/math/i386/fmodf.s", +"musl/src/math/i386/fmodl.s", +"musl/src/math/i386/hypot.s", +"musl/src/math/i386/hypotf.s", +"musl/src/math/i386/ldexp.s", +"musl/src/math/i386/ldexpf.s", +"musl/src/math/i386/ldexpl.s", +"musl/src/math/i386/llrint.s", +"musl/src/math/i386/llrintf.s", +"musl/src/math/i386/llrintl.s", +"musl/src/math/i386/log.s", +"musl/src/math/i386/log10.s", +"musl/src/math/i386/log10f.s", +"musl/src/math/i386/log10l.s", +"musl/src/math/i386/log1p.s", +"musl/src/math/i386/log1pf.s", +"musl/src/math/i386/log1pl.s", +"musl/src/math/i386/log2.s", +"musl/src/math/i386/log2f.s", +"musl/src/math/i386/log2l.s", +"musl/src/math/i386/logf.s", +"musl/src/math/i386/logl.s", +"musl/src/math/i386/lrint.s", +"musl/src/math/i386/lrintf.s", +"musl/src/math/i386/lrintl.s", +"musl/src/math/i386/remainder.s", +"musl/src/math/i386/remainderf.s", +"musl/src/math/i386/remainderl.s", +"musl/src/math/i386/remquo.s", +"musl/src/math/i386/remquof.s", +"musl/src/math/i386/remquol.s", +"musl/src/math/i386/rint.s", +"musl/src/math/i386/rintf.s", +"musl/src/math/i386/rintl.s", +"musl/src/math/i386/scalbln.s", +"musl/src/math/i386/scalblnf.s", +"musl/src/math/i386/scalblnl.s", +"musl/src/math/i386/scalbn.s", +"musl/src/math/i386/scalbnf.s", +"musl/src/math/i386/scalbnl.s", +"musl/src/math/i386/sqrt.s", +"musl/src/math/i386/sqrtf.s", +"musl/src/math/i386/sqrtl.s", +"musl/src/math/i386/trunc.s", +"musl/src/math/i386/truncf.s", +"musl/src/math/i386/truncl.s", +"musl/src/math/ilogb.c", +"musl/src/math/ilogbf.c", +"musl/src/math/ilogbl.c", +"musl/src/math/j0.c", +"musl/src/math/j0f.c", +"musl/src/math/j1.c", +"musl/src/math/j1f.c", +"musl/src/math/jn.c", +"musl/src/math/jnf.c", +"musl/src/math/ldexp.c", +"musl/src/math/ldexpf.c", +"musl/src/math/ldexpl.c", +"musl/src/math/lgamma.c", +"musl/src/math/lgamma_r.c", +"musl/src/math/lgammaf.c", +"musl/src/math/lgammaf_r.c", +"musl/src/math/lgammal.c", +"musl/src/math/llrint.c", +"musl/src/math/llrintf.c", +"musl/src/math/llrintl.c", +"musl/src/math/llround.c", +"musl/src/math/llroundf.c", +"musl/src/math/llroundl.c", +"musl/src/math/log.c", +"musl/src/math/log10.c", +"musl/src/math/log10f.c", +"musl/src/math/log10l.c", +"musl/src/math/log1p.c", +"musl/src/math/log1pf.c", +"musl/src/math/log1pl.c", +"musl/src/math/log2.c", +"musl/src/math/log2f.c", +"musl/src/math/log2l.c", +"musl/src/math/logb.c", +"musl/src/math/logbf.c", +"musl/src/math/logbl.c", +"musl/src/math/logf.c", +"musl/src/math/logl.c", +"musl/src/math/lrint.c", +"musl/src/math/lrintf.c", +"musl/src/math/lrintl.c", +"musl/src/math/lround.c", +"musl/src/math/lroundf.c", +"musl/src/math/lroundl.c", +"musl/src/math/modf.c", +"musl/src/math/modff.c", +"musl/src/math/modfl.c", +"musl/src/math/nan.c", +"musl/src/math/nanf.c", +"musl/src/math/nanl.c", +"musl/src/math/nearbyint.c", +"musl/src/math/nearbyintf.c", +"musl/src/math/nearbyintl.c", +"musl/src/math/nextafter.c", +"musl/src/math/nextafterf.c", +"musl/src/math/nextafterl.c", +"musl/src/math/nexttoward.c", +"musl/src/math/nexttowardf.c", +"musl/src/math/nexttowardl.c", +"musl/src/math/pow.c", +"musl/src/math/powerpc/fabs.c", +"musl/src/math/powerpc/fabsf.c", +"musl/src/math/powerpc/fma.c", +"musl/src/math/powerpc/fmaf.c", +"musl/src/math/powerpc/sqrt.c", +"musl/src/math/powerpc/sqrtf.c", +"musl/src/math/powerpc64/ceil.c", +"musl/src/math/powerpc64/ceilf.c", +"musl/src/math/powerpc64/fabs.c", +"musl/src/math/powerpc64/fabsf.c", +"musl/src/math/powerpc64/floor.c", +"musl/src/math/powerpc64/floorf.c", +"musl/src/math/powerpc64/fma.c", +"musl/src/math/powerpc64/fmaf.c", +"musl/src/math/powerpc64/fmax.c", +"musl/src/math/powerpc64/fmaxf.c", +"musl/src/math/powerpc64/fmin.c", +"musl/src/math/powerpc64/fminf.c", +"musl/src/math/powerpc64/lrint.c", +"musl/src/math/powerpc64/lrintf.c", +"musl/src/math/powerpc64/lround.c", +"musl/src/math/powerpc64/lroundf.c", +"musl/src/math/powerpc64/round.c", +"musl/src/math/powerpc64/roundf.c", +"musl/src/math/powerpc64/sqrt.c", +"musl/src/math/powerpc64/sqrtf.c", +"musl/src/math/powerpc64/trunc.c", +"musl/src/math/powerpc64/truncf.c", +"musl/src/math/powf.c", +"musl/src/math/powl.c", +"musl/src/math/remainder.c", +"musl/src/math/remainderf.c", +"musl/src/math/remainderl.c", +"musl/src/math/remquo.c", +"musl/src/math/remquof.c", +"musl/src/math/remquol.c", +"musl/src/math/rint.c", +"musl/src/math/rintf.c", +"musl/src/math/rintl.c", +"musl/src/math/round.c", +"musl/src/math/roundf.c", +"musl/src/math/roundl.c", +"musl/src/math/s390x/ceil.c", +"musl/src/math/s390x/ceilf.c", +"musl/src/math/s390x/ceill.c", +"musl/src/math/s390x/fabs.c", +"musl/src/math/s390x/fabsf.c", +"musl/src/math/s390x/fabsl.c", +"musl/src/math/s390x/floor.c", +"musl/src/math/s390x/floorf.c", +"musl/src/math/s390x/floorl.c", +"musl/src/math/s390x/fma.c", +"musl/src/math/s390x/fmaf.c", +"musl/src/math/s390x/nearbyint.c", +"musl/src/math/s390x/nearbyintf.c", +"musl/src/math/s390x/nearbyintl.c", +"musl/src/math/s390x/rint.c", +"musl/src/math/s390x/rintf.c", +"musl/src/math/s390x/rintl.c", +"musl/src/math/s390x/round.c", +"musl/src/math/s390x/roundf.c", +"musl/src/math/s390x/roundl.c", +"musl/src/math/s390x/sqrt.c", +"musl/src/math/s390x/sqrtf.c", +"musl/src/math/s390x/sqrtl.c", +"musl/src/math/s390x/trunc.c", +"musl/src/math/s390x/truncf.c", +"musl/src/math/s390x/truncl.c", +"musl/src/math/scalb.c", +"musl/src/math/scalbf.c", +"musl/src/math/scalbln.c", +"musl/src/math/scalblnf.c", +"musl/src/math/scalblnl.c", +"musl/src/math/scalbn.c", +"musl/src/math/scalbnf.c", +"musl/src/math/scalbnl.c", +"musl/src/math/signgam.c", +"musl/src/math/significand.c", +"musl/src/math/significandf.c", +"musl/src/math/sin.c", +"musl/src/math/sincos.c", +"musl/src/math/sincosf.c", +"musl/src/math/sincosl.c", +"musl/src/math/sinf.c", +"musl/src/math/sinh.c", +"musl/src/math/sinhf.c", +"musl/src/math/sinhl.c", +"musl/src/math/sinl.c", +"musl/src/math/sqrt.c", +"musl/src/math/sqrtf.c", +"musl/src/math/sqrtl.c", +"musl/src/math/tan.c", +"musl/src/math/tanf.c", +"musl/src/math/tanh.c", +"musl/src/math/tanhf.c", +"musl/src/math/tanhl.c", +"musl/src/math/tanl.c", +"musl/src/math/tgamma.c", +"musl/src/math/tgammaf.c", +"musl/src/math/tgammal.c", +"musl/src/math/trunc.c", +"musl/src/math/truncf.c", +"musl/src/math/truncl.c", +"musl/src/math/x32/__invtrigl.s", +"musl/src/math/x32/acosl.s", +"musl/src/math/x32/asinl.s", +"musl/src/math/x32/atan2l.s", +"musl/src/math/x32/atanl.s", +"musl/src/math/x32/ceill.s", +"musl/src/math/x32/exp2l.s", +"musl/src/math/x32/expl.s", +"musl/src/math/x32/expm1l.s", +"musl/src/math/x32/fabs.s", +"musl/src/math/x32/fabsf.s", +"musl/src/math/x32/fabsl.s", +"musl/src/math/x32/floorl.s", +"musl/src/math/x32/fma.c", +"musl/src/math/x32/fmaf.c", +"musl/src/math/x32/fmodl.s", +"musl/src/math/x32/llrint.s", +"musl/src/math/x32/llrintf.s", +"musl/src/math/x32/llrintl.s", +"musl/src/math/x32/log10l.s", +"musl/src/math/x32/log1pl.s", +"musl/src/math/x32/log2l.s", +"musl/src/math/x32/logl.s", +"musl/src/math/x32/lrint.s", +"musl/src/math/x32/lrintf.s", +"musl/src/math/x32/lrintl.s", +"musl/src/math/x32/remainderl.s", +"musl/src/math/x32/rintl.s", +"musl/src/math/x32/sqrt.s", +"musl/src/math/x32/sqrtf.s", +"musl/src/math/x32/sqrtl.s", +"musl/src/math/x32/truncl.s", +"musl/src/math/x86_64/__invtrigl.s", +"musl/src/math/x86_64/acosl.s", +"musl/src/math/x86_64/asinl.s", +"musl/src/math/x86_64/atan2l.s", +"musl/src/math/x86_64/atanl.s", +"musl/src/math/x86_64/ceill.s", +"musl/src/math/x86_64/exp2l.s", +"musl/src/math/x86_64/expl.s", +"musl/src/math/x86_64/expm1l.s", +"musl/src/math/x86_64/fabs.s", +"musl/src/math/x86_64/fabsf.s", +"musl/src/math/x86_64/fabsl.s", +"musl/src/math/x86_64/floorl.s", +"musl/src/math/x86_64/fma.c", +"musl/src/math/x86_64/fmaf.c", +"musl/src/math/x86_64/fmodl.s", +"musl/src/math/x86_64/llrint.s", +"musl/src/math/x86_64/llrintf.s", +"musl/src/math/x86_64/llrintl.s", +"musl/src/math/x86_64/log10l.s", +"musl/src/math/x86_64/log1pl.s", +"musl/src/math/x86_64/log2l.s", +"musl/src/math/x86_64/logl.s", +"musl/src/math/x86_64/lrint.s", +"musl/src/math/x86_64/lrintf.s", +"musl/src/math/x86_64/lrintl.s", +"musl/src/math/x86_64/remainderl.s", +"musl/src/math/x86_64/rintl.s", +"musl/src/math/x86_64/sqrt.s", +"musl/src/math/x86_64/sqrtf.s", +"musl/src/math/x86_64/sqrtl.s", +"musl/src/math/x86_64/truncl.s", +"musl/src/misc/a64l.c", +"musl/src/misc/basename.c", +"musl/src/misc/dirname.c", +"musl/src/misc/ffs.c", +"musl/src/misc/ffsl.c", +"musl/src/misc/ffsll.c", +"musl/src/misc/fmtmsg.c", +"musl/src/misc/forkpty.c", +"musl/src/misc/get_current_dir_name.c", +"musl/src/misc/getauxval.c", +"musl/src/misc/getdomainname.c", +"musl/src/misc/getentropy.c", +"musl/src/misc/gethostid.c", +"musl/src/misc/getopt.c", +"musl/src/misc/getopt_long.c", +"musl/src/misc/getpriority.c", +"musl/src/misc/getresgid.c", +"musl/src/misc/getresuid.c", +"musl/src/misc/getrlimit.c", +"musl/src/misc/getrusage.c", +"musl/src/misc/getsubopt.c", +"musl/src/misc/initgroups.c", +"musl/src/misc/ioctl.c", +"musl/src/misc/issetugid.c", +"musl/src/misc/lockf.c", +"musl/src/misc/login_tty.c", +"musl/src/misc/mntent.c", +"musl/src/misc/nftw.c", +"musl/src/misc/openpty.c", +"musl/src/misc/ptsname.c", +"musl/src/misc/pty.c", +"musl/src/misc/realpath.c", +"musl/src/misc/setdomainname.c", +"musl/src/misc/setpriority.c", +"musl/src/misc/setrlimit.c", +"musl/src/misc/syscall.c", +"musl/src/misc/syslog.c", +"musl/src/misc/uname.c", +"musl/src/misc/wordexp.c", +"musl/src/mman/madvise.c", +"musl/src/mman/mincore.c", +"musl/src/mman/mlock.c", +"musl/src/mman/mlockall.c", +"musl/src/mman/mmap.c", +"musl/src/mman/mprotect.c", +"musl/src/mman/mremap.c", +"musl/src/mman/msync.c", +"musl/src/mman/munlock.c", +"musl/src/mman/munlockall.c", +"musl/src/mman/munmap.c", +"musl/src/mman/posix_madvise.c", +"musl/src/mman/shm_open.c", +"musl/src/mq/mq_close.c", +"musl/src/mq/mq_getattr.c", +"musl/src/mq/mq_notify.c", +"musl/src/mq/mq_open.c", +"musl/src/mq/mq_receive.c", +"musl/src/mq/mq_send.c", +"musl/src/mq/mq_setattr.c", +"musl/src/mq/mq_timedreceive.c", +"musl/src/mq/mq_timedsend.c", +"musl/src/mq/mq_unlink.c", +"musl/src/multibyte/btowc.c", +"musl/src/multibyte/c16rtomb.c", +"musl/src/multibyte/c32rtomb.c", +"musl/src/multibyte/internal.c", +"musl/src/multibyte/internal.h", +"musl/src/multibyte/mblen.c", +"musl/src/multibyte/mbrlen.c", +"musl/src/multibyte/mbrtoc16.c", +"musl/src/multibyte/mbrtoc32.c", +"musl/src/multibyte/mbrtowc.c", +"musl/src/multibyte/mbsinit.c", +"musl/src/multibyte/mbsnrtowcs.c", +"musl/src/multibyte/mbsrtowcs.c", +"musl/src/multibyte/mbstowcs.c", +"musl/src/multibyte/mbtowc.c", +"musl/src/multibyte/wcrtomb.c", +"musl/src/multibyte/wcsnrtombs.c", +"musl/src/multibyte/wcsrtombs.c", +"musl/src/multibyte/wcstombs.c", +"musl/src/multibyte/wctob.c", +"musl/src/multibyte/wctomb.c", +"musl/src/network/accept.c", +"musl/src/network/accept4.c", +"musl/src/network/bind.c", +"musl/src/network/connect.c", +"musl/src/network/dn_comp.c", +"musl/src/network/dn_expand.c", +"musl/src/network/dn_skipname.c", +"musl/src/network/dns_parse.c", +"musl/src/network/ent.c", +"musl/src/network/ether.c", +"musl/src/network/freeaddrinfo.c", +"musl/src/network/gai_strerror.c", +"musl/src/network/getaddrinfo.c", +"musl/src/network/gethostbyaddr.c", +"musl/src/network/gethostbyaddr_r.c", +"musl/src/network/gethostbyname.c", +"musl/src/network/gethostbyname2.c", +"musl/src/network/gethostbyname2_r.c", +"musl/src/network/gethostbyname_r.c", +"musl/src/network/getifaddrs.c", +"musl/src/network/getnameinfo.c", +"musl/src/network/getpeername.c", +"musl/src/network/getservbyname.c", +"musl/src/network/getservbyname_r.c", +"musl/src/network/getservbyport.c", +"musl/src/network/getservbyport_r.c", +"musl/src/network/getsockname.c", +"musl/src/network/getsockopt.c", +"musl/src/network/h_errno.c", +"musl/src/network/herror.c", +"musl/src/network/hstrerror.c", +"musl/src/network/htonl.c", +"musl/src/network/htons.c", +"musl/src/network/if_freenameindex.c", +"musl/src/network/if_indextoname.c", +"musl/src/network/if_nameindex.c", +"musl/src/network/if_nametoindex.c", +"musl/src/network/in6addr_any.c", +"musl/src/network/in6addr_loopback.c", +"musl/src/network/inet_addr.c", +"musl/src/network/inet_aton.c", +"musl/src/network/inet_legacy.c", +"musl/src/network/inet_ntoa.c", +"musl/src/network/inet_ntop.c", +"musl/src/network/inet_pton.c", +"musl/src/network/listen.c", +"musl/src/network/lookup.h", +"musl/src/network/lookup_ipliteral.c", +"musl/src/network/lookup_name.c", +"musl/src/network/lookup_serv.c", +"musl/src/network/netlink.c", +"musl/src/network/netlink.h", +"musl/src/network/netname.c", +"musl/src/network/ns_parse.c", +"musl/src/network/ntohl.c", +"musl/src/network/ntohs.c", +"musl/src/network/proto.c", +"musl/src/network/recv.c", +"musl/src/network/recvfrom.c", +"musl/src/network/recvmmsg.c", +"musl/src/network/recvmsg.c", +"musl/src/network/res_init.c", +"musl/src/network/res_mkquery.c", +"musl/src/network/res_msend.c", +"musl/src/network/res_query.c", +"musl/src/network/res_querydomain.c", +"musl/src/network/res_send.c", +"musl/src/network/res_state.c", +"musl/src/network/resolvconf.c", +"musl/src/network/send.c", +"musl/src/network/sendmmsg.c", +"musl/src/network/sendmsg.c", +"musl/src/network/sendto.c", +"musl/src/network/serv.c", +"musl/src/network/setsockopt.c", +"musl/src/network/shutdown.c", +"musl/src/network/sockatmark.c", +"musl/src/network/socket.c", +"musl/src/network/socketpair.c", +"musl/src/passwd/fgetgrent.c", +"musl/src/passwd/fgetpwent.c", +"musl/src/passwd/fgetspent.c", +"musl/src/passwd/getgr_a.c", +"musl/src/passwd/getgr_r.c", +"musl/src/passwd/getgrent.c", +"musl/src/passwd/getgrent_a.c", +"musl/src/passwd/getgrouplist.c", +"musl/src/passwd/getpw_a.c", +"musl/src/passwd/getpw_r.c", +"musl/src/passwd/getpwent.c", +"musl/src/passwd/getpwent_a.c", +"musl/src/passwd/getspent.c", +"musl/src/passwd/getspnam.c", +"musl/src/passwd/getspnam_r.c", +"musl/src/passwd/lckpwdf.c", +"musl/src/passwd/nscd.h", +"musl/src/passwd/nscd_query.c", +"musl/src/passwd/putgrent.c", +"musl/src/passwd/putpwent.c", +"musl/src/passwd/putspent.c", +"musl/src/passwd/pwf.h", +"musl/src/prng/__rand48_step.c", +"musl/src/prng/__seed48.c", +"musl/src/prng/drand48.c", +"musl/src/prng/lcong48.c", +"musl/src/prng/lrand48.c", +"musl/src/prng/mrand48.c", +"musl/src/prng/rand.c", +"musl/src/prng/rand48.h", +"musl/src/prng/rand_r.c", +"musl/src/prng/random.c", +"musl/src/prng/seed48.c", +"musl/src/prng/srand48.c", +"musl/src/process/arm/vfork.s", +"musl/src/process/execl.c", +"musl/src/process/execle.c", +"musl/src/process/execlp.c", +"musl/src/process/execv.c", +"musl/src/process/execve.c", +"musl/src/process/execvp.c", +"musl/src/process/fdop.h", +"musl/src/process/fexecve.c", +"musl/src/process/fork.c", +"musl/src/process/i386/vfork.s", +"musl/src/process/posix_spawn.c", +"musl/src/process/posix_spawn_file_actions_addclose.c", +"musl/src/process/posix_spawn_file_actions_adddup2.c", +"musl/src/process/posix_spawn_file_actions_addopen.c", +"musl/src/process/posix_spawn_file_actions_destroy.c", +"musl/src/process/posix_spawn_file_actions_init.c", +"musl/src/process/posix_spawnattr_destroy.c", +"musl/src/process/posix_spawnattr_getflags.c", +"musl/src/process/posix_spawnattr_getpgroup.c", +"musl/src/process/posix_spawnattr_getsigdefault.c", +"musl/src/process/posix_spawnattr_getsigmask.c", +"musl/src/process/posix_spawnattr_init.c", +"musl/src/process/posix_spawnattr_sched.c", +"musl/src/process/posix_spawnattr_setflags.c", +"musl/src/process/posix_spawnattr_setpgroup.c", +"musl/src/process/posix_spawnattr_setsigdefault.c", +"musl/src/process/posix_spawnattr_setsigmask.c", +"musl/src/process/posix_spawnp.c", +"musl/src/process/s390x/vfork.s", +"musl/src/process/sh/vfork.s", +"musl/src/process/system.c", +"musl/src/process/vfork.c", +"musl/src/process/wait.c", +"musl/src/process/waitid.c", +"musl/src/process/waitpid.c", +"musl/src/process/x32/vfork.s", +"musl/src/process/x86_64/vfork.s", +"musl/src/regex/fnmatch.c", +"musl/src/regex/glob.c", +"musl/src/regex/regcomp.c", +"musl/src/regex/regerror.c", +"musl/src/regex/regexec.c", +"musl/src/regex/tre-mem.c", +"musl/src/regex/tre.h", +"musl/src/sched/affinity.c", +"musl/src/sched/sched_cpucount.c", +"musl/src/sched/sched_get_priority_max.c", +"musl/src/sched/sched_getcpu.c", +"musl/src/sched/sched_getparam.c", +"musl/src/sched/sched_getscheduler.c", +"musl/src/sched/sched_rr_get_interval.c", +"musl/src/sched/sched_setparam.c", +"musl/src/sched/sched_setscheduler.c", +"musl/src/sched/sched_yield.c", +"musl/src/search/hsearch.c", +"musl/src/search/insque.c", +"musl/src/search/lsearch.c", +"musl/src/search/tdelete.c", +"musl/src/search/tdestroy.c", +"musl/src/search/tfind.c", +"musl/src/search/tsearch.c", +"musl/src/search/tsearch.h", +"musl/src/search/twalk.c", +"musl/src/select/poll.c", +"musl/src/select/pselect.c", +"musl/src/select/select.c", +"musl/src/setjmp/aarch64/longjmp.s", +"musl/src/setjmp/aarch64/setjmp.s", +"musl/src/setjmp/arm/longjmp.s", +"musl/src/setjmp/arm/setjmp.s", +"musl/src/setjmp/i386/longjmp.s", +"musl/src/setjmp/i386/setjmp.s", +"musl/src/setjmp/longjmp.c", +"musl/src/setjmp/m68k/longjmp.s", +"musl/src/setjmp/m68k/setjmp.s", +"musl/src/setjmp/microblaze/longjmp.s", +"musl/src/setjmp/microblaze/setjmp.s", +"musl/src/setjmp/mips/longjmp.S", +"musl/src/setjmp/mips/setjmp.S", +"musl/src/setjmp/mips64/longjmp.S", +"musl/src/setjmp/mips64/setjmp.S", +"musl/src/setjmp/mipsn32/longjmp.S", +"musl/src/setjmp/mipsn32/setjmp.S", +"musl/src/setjmp/or1k/longjmp.s", +"musl/src/setjmp/or1k/setjmp.s", +"musl/src/setjmp/powerpc/longjmp.S", +"musl/src/setjmp/powerpc/setjmp.S", +"musl/src/setjmp/powerpc64/longjmp.s", +"musl/src/setjmp/powerpc64/setjmp.s", +"musl/src/setjmp/s390x/longjmp.s", +"musl/src/setjmp/s390x/setjmp.s", +"musl/src/setjmp/setjmp.c", +"musl/src/setjmp/sh/longjmp.S", +"musl/src/setjmp/sh/setjmp.S", +"musl/src/setjmp/x32/longjmp.s", +"musl/src/setjmp/x32/setjmp.s", +"musl/src/setjmp/x86_64/longjmp.s", +"musl/src/setjmp/x86_64/setjmp.s", +"musl/src/signal/aarch64/restore.s", +"musl/src/signal/aarch64/sigsetjmp.s", +"musl/src/signal/arm/restore.s", +"musl/src/signal/arm/sigsetjmp.s", +"musl/src/signal/block.c", +"musl/src/signal/getitimer.c", +"musl/src/signal/i386/restore.s", +"musl/src/signal/i386/sigsetjmp.s", +"musl/src/signal/kill.c", +"musl/src/signal/killpg.c", +"musl/src/signal/m68k/sigsetjmp.s", +"musl/src/signal/microblaze/restore.s", +"musl/src/signal/microblaze/sigsetjmp.s", +"musl/src/signal/mips/restore.s", +"musl/src/signal/mips/sigsetjmp.s", +"musl/src/signal/mips64/restore.s", +"musl/src/signal/mips64/sigsetjmp.s", +"musl/src/signal/mipsn32/restore.s", +"musl/src/signal/mipsn32/sigsetjmp.s", +"musl/src/signal/or1k/sigsetjmp.s", +"musl/src/signal/powerpc/restore.s", +"musl/src/signal/powerpc/sigsetjmp.s", +"musl/src/signal/powerpc64/restore.s", +"musl/src/signal/powerpc64/sigsetjmp.s", +"musl/src/signal/psiginfo.c", +"musl/src/signal/psignal.c", +"musl/src/signal/raise.c", +"musl/src/signal/restore.c", +"musl/src/signal/s390x/restore.s", +"musl/src/signal/s390x/sigsetjmp.s", +"musl/src/signal/setitimer.c", +"musl/src/signal/sh/restore.s", +"musl/src/signal/sh/sigsetjmp.s", +"musl/src/signal/sigaction.c", +"musl/src/signal/sigaddset.c", +"musl/src/signal/sigaltstack.c", +"musl/src/signal/sigandset.c", +"musl/src/signal/sigdelset.c", +"musl/src/signal/sigemptyset.c", +"musl/src/signal/sigfillset.c", +"musl/src/signal/sighold.c", +"musl/src/signal/sigignore.c", +"musl/src/signal/siginterrupt.c", +"musl/src/signal/sigisemptyset.c", +"musl/src/signal/sigismember.c", +"musl/src/signal/siglongjmp.c", +"musl/src/signal/signal.c", +"musl/src/signal/sigorset.c", +"musl/src/signal/sigpause.c", +"musl/src/signal/sigpending.c", +"musl/src/signal/sigprocmask.c", +"musl/src/signal/sigqueue.c", +"musl/src/signal/sigrelse.c", +"musl/src/signal/sigrtmax.c", +"musl/src/signal/sigrtmin.c", +"musl/src/signal/sigset.c", +"musl/src/signal/sigsetjmp.c", +"musl/src/signal/sigsetjmp_tail.c", +"musl/src/signal/sigsuspend.c", +"musl/src/signal/sigtimedwait.c", +"musl/src/signal/sigwait.c", +"musl/src/signal/sigwaitinfo.c", +"musl/src/signal/x32/restore.s", +"musl/src/signal/x32/sigsetjmp.s", +"musl/src/signal/x86_64/restore.s", +"musl/src/signal/x86_64/sigsetjmp.s", +"musl/src/stat/__xstat.c", +"musl/src/stat/chmod.c", +"musl/src/stat/fchmod.c", +"musl/src/stat/fchmodat.c", +"musl/src/stat/fstat.c", +"musl/src/stat/fstatat.c", +"musl/src/stat/futimens.c", +"musl/src/stat/futimesat.c", +"musl/src/stat/lchmod.c", +"musl/src/stat/lstat.c", +"musl/src/stat/mkdir.c", +"musl/src/stat/mkdirat.c", +"musl/src/stat/mkfifo.c", +"musl/src/stat/mkfifoat.c", +"musl/src/stat/mknod.c", +"musl/src/stat/mknodat.c", +"musl/src/stat/stat.c", +"musl/src/stat/statvfs.c", +"musl/src/stat/umask.c", +"musl/src/stat/utimensat.c", +"musl/src/stdio/__fclose_ca.c", +"musl/src/stdio/__fdopen.c", +"musl/src/stdio/__fmodeflags.c", +"musl/src/stdio/__fopen_rb_ca.c", +"musl/src/stdio/__lockfile.c", +"musl/src/stdio/__overflow.c", +"musl/src/stdio/__stdio_close.c", +"musl/src/stdio/__stdio_exit.c", +"musl/src/stdio/__stdio_read.c", +"musl/src/stdio/__stdio_seek.c", +"musl/src/stdio/__stdio_write.c", +"musl/src/stdio/__stdout_write.c", +"musl/src/stdio/__string_read.c", +"musl/src/stdio/__toread.c", +"musl/src/stdio/__towrite.c", +"musl/src/stdio/__uflow.c", +"musl/src/stdio/asprintf.c", +"musl/src/stdio/clearerr.c", +"musl/src/stdio/dprintf.c", +"musl/src/stdio/ext.c", +"musl/src/stdio/ext2.c", +"musl/src/stdio/fclose.c", +"musl/src/stdio/feof.c", +"musl/src/stdio/ferror.c", +"musl/src/stdio/fflush.c", +"musl/src/stdio/fgetc.c", +"musl/src/stdio/fgetln.c", +"musl/src/stdio/fgetpos.c", +"musl/src/stdio/fgets.c", +"musl/src/stdio/fgetwc.c", +"musl/src/stdio/fgetws.c", +"musl/src/stdio/fileno.c", +"musl/src/stdio/flockfile.c", +"musl/src/stdio/fmemopen.c", +"musl/src/stdio/fopen.c", +"musl/src/stdio/fopencookie.c", +"musl/src/stdio/fprintf.c", +"musl/src/stdio/fputc.c", +"musl/src/stdio/fputs.c", +"musl/src/stdio/fputwc.c", +"musl/src/stdio/fputws.c", +"musl/src/stdio/fread.c", +"musl/src/stdio/freopen.c", +"musl/src/stdio/fscanf.c", +"musl/src/stdio/fseek.c", +"musl/src/stdio/fsetpos.c", +"musl/src/stdio/ftell.c", +"musl/src/stdio/ftrylockfile.c", +"musl/src/stdio/funlockfile.c", +"musl/src/stdio/fwide.c", +"musl/src/stdio/fwprintf.c", +"musl/src/stdio/fwrite.c", +"musl/src/stdio/fwscanf.c", +"musl/src/stdio/getc.c", +"musl/src/stdio/getc.h", +"musl/src/stdio/getc_unlocked.c", +"musl/src/stdio/getchar.c", +"musl/src/stdio/getchar_unlocked.c", +"musl/src/stdio/getdelim.c", +"musl/src/stdio/getline.c", +"musl/src/stdio/gets.c", +"musl/src/stdio/getw.c", +"musl/src/stdio/getwc.c", +"musl/src/stdio/getwchar.c", +"musl/src/stdio/ofl.c", +"musl/src/stdio/ofl_add.c", +"musl/src/stdio/open_memstream.c", +"musl/src/stdio/open_wmemstream.c", +"musl/src/stdio/pclose.c", +"musl/src/stdio/perror.c", +"musl/src/stdio/popen.c", +"musl/src/stdio/printf.c", +"musl/src/stdio/putc.c", +"musl/src/stdio/putc.h", +"musl/src/stdio/putc_unlocked.c", +"musl/src/stdio/putchar.c", +"musl/src/stdio/putchar_unlocked.c", +"musl/src/stdio/puts.c", +"musl/src/stdio/putw.c", +"musl/src/stdio/putwc.c", +"musl/src/stdio/putwchar.c", +"musl/src/stdio/remove.c", +"musl/src/stdio/rename.c", +"musl/src/stdio/rewind.c", +"musl/src/stdio/scanf.c", +"musl/src/stdio/setbuf.c", +"musl/src/stdio/setbuffer.c", +"musl/src/stdio/setlinebuf.c", +"musl/src/stdio/setvbuf.c", +"musl/src/stdio/snprintf.c", +"musl/src/stdio/sprintf.c", +"musl/src/stdio/sscanf.c", +"musl/src/stdio/stderr.c", +"musl/src/stdio/stdin.c", +"musl/src/stdio/stdout.c", +"musl/src/stdio/swprintf.c", +"musl/src/stdio/swscanf.c", +"musl/src/stdio/tempnam.c", +"musl/src/stdio/tmpfile.c", +"musl/src/stdio/tmpnam.c", +"musl/src/stdio/ungetc.c", +"musl/src/stdio/ungetwc.c", +"musl/src/stdio/vasprintf.c", +"musl/src/stdio/vdprintf.c", +"musl/src/stdio/vfprintf.c", +"musl/src/stdio/vfscanf.c", +"musl/src/stdio/vfwprintf.c", +"musl/src/stdio/vfwscanf.c", +"musl/src/stdio/vprintf.c", +"musl/src/stdio/vscanf.c", +"musl/src/stdio/vsnprintf.c", +"musl/src/stdio/vsprintf.c", +"musl/src/stdio/vsscanf.c", +"musl/src/stdio/vswprintf.c", +"musl/src/stdio/vswscanf.c", +"musl/src/stdio/vwprintf.c", +"musl/src/stdio/vwscanf.c", +"musl/src/stdio/wprintf.c", +"musl/src/stdio/wscanf.c", +"musl/src/stdlib/abs.c", +"musl/src/stdlib/atof.c", +"musl/src/stdlib/atoi.c", +"musl/src/stdlib/atol.c", +"musl/src/stdlib/atoll.c", +"musl/src/stdlib/bsearch.c", +"musl/src/stdlib/div.c", +"musl/src/stdlib/ecvt.c", +"musl/src/stdlib/fcvt.c", +"musl/src/stdlib/gcvt.c", +"musl/src/stdlib/imaxabs.c", +"musl/src/stdlib/imaxdiv.c", +"musl/src/stdlib/labs.c", +"musl/src/stdlib/ldiv.c", +"musl/src/stdlib/llabs.c", +"musl/src/stdlib/lldiv.c", +"musl/src/stdlib/qsort.c", +"musl/src/stdlib/strtod.c", +"musl/src/stdlib/strtol.c", +"musl/src/stdlib/wcstod.c", +"musl/src/stdlib/wcstol.c", +"musl/src/string/arm/__aeabi_memcpy.s", +"musl/src/string/arm/__aeabi_memset.s", +"musl/src/string/arm/memcpy.c", +"musl/src/string/arm/memcpy_le.S", +"musl/src/string/bcmp.c", +"musl/src/string/bcopy.c", +"musl/src/string/bzero.c", +"musl/src/string/explicit_bzero.c", +"musl/src/string/i386/memcpy.s", +"musl/src/string/i386/memmove.s", +"musl/src/string/i386/memset.s", +"musl/src/string/index.c", +"musl/src/string/memccpy.c", +"musl/src/string/memchr.c", +"musl/src/string/memcmp.c", +"musl/src/string/memcpy.c", +"musl/src/string/memmem.c", +"musl/src/string/memmove.c", +"musl/src/string/mempcpy.c", +"musl/src/string/memrchr.c", +"musl/src/string/memset.c", +"musl/src/string/rindex.c", +"musl/src/string/stpcpy.c", +"musl/src/string/stpncpy.c", +"musl/src/string/strcasecmp.c", +"musl/src/string/strcasestr.c", +"musl/src/string/strcat.c", +"musl/src/string/strchr.c", +"musl/src/string/strchrnul.c", +"musl/src/string/strcmp.c", +"musl/src/string/strcpy.c", +"musl/src/string/strcspn.c", +"musl/src/string/strdup.c", +"musl/src/string/strerror_r.c", +"musl/src/string/strlcat.c", +"musl/src/string/strlcpy.c", +"musl/src/string/strlen.c", +"musl/src/string/strncasecmp.c", +"musl/src/string/strncat.c", +"musl/src/string/strncmp.c", +"musl/src/string/strncpy.c", +"musl/src/string/strndup.c", +"musl/src/string/strnlen.c", +"musl/src/string/strpbrk.c", +"musl/src/string/strrchr.c", +"musl/src/string/strsep.c", +"musl/src/string/strsignal.c", +"musl/src/string/strspn.c", +"musl/src/string/strstr.c", +"musl/src/string/strtok.c", +"musl/src/string/strtok_r.c", +"musl/src/string/strverscmp.c", +"musl/src/string/swab.c", +"musl/src/string/wcpcpy.c", +"musl/src/string/wcpncpy.c", +"musl/src/string/wcscasecmp.c", +"musl/src/string/wcscasecmp_l.c", +"musl/src/string/wcscat.c", +"musl/src/string/wcschr.c", +"musl/src/string/wcscmp.c", +"musl/src/string/wcscpy.c", +"musl/src/string/wcscspn.c", +"musl/src/string/wcsdup.c", +"musl/src/string/wcslen.c", +"musl/src/string/wcsncasecmp.c", +"musl/src/string/wcsncasecmp_l.c", +"musl/src/string/wcsncat.c", +"musl/src/string/wcsncmp.c", +"musl/src/string/wcsncpy.c", +"musl/src/string/wcsnlen.c", +"musl/src/string/wcspbrk.c", +"musl/src/string/wcsrchr.c", +"musl/src/string/wcsspn.c", +"musl/src/string/wcsstr.c", +"musl/src/string/wcstok.c", +"musl/src/string/wcswcs.c", +"musl/src/string/wmemchr.c", +"musl/src/string/wmemcmp.c", +"musl/src/string/wmemcpy.c", +"musl/src/string/wmemmove.c", +"musl/src/string/wmemset.c", +"musl/src/string/x86_64/memcpy.s", +"musl/src/string/x86_64/memmove.s", +"musl/src/string/x86_64/memset.s", +"musl/src/temp/__randname.c", +"musl/src/temp/mkdtemp.c", +"musl/src/temp/mkostemp.c", +"musl/src/temp/mkostemps.c", +"musl/src/temp/mkstemp.c", +"musl/src/temp/mkstemps.c", +"musl/src/temp/mktemp.c", +"musl/src/termios/cfgetospeed.c", +"musl/src/termios/cfmakeraw.c", +"musl/src/termios/cfsetospeed.c", +"musl/src/termios/tcdrain.c", +"musl/src/termios/tcflow.c", +"musl/src/termios/tcflush.c", +"musl/src/termios/tcgetattr.c", +"musl/src/termios/tcgetsid.c", +"musl/src/termios/tcsendbreak.c", +"musl/src/termios/tcsetattr.c", +"musl/src/thread/__lock.c", +"musl/src/thread/__set_thread_area.c", +"musl/src/thread/__syscall_cp.c", +"musl/src/thread/__timedwait.c", +"musl/src/thread/__tls_get_addr.c", +"musl/src/thread/__unmapself.c", +"musl/src/thread/__wait.c", +"musl/src/thread/aarch64/__set_thread_area.s", +"musl/src/thread/aarch64/__unmapself.s", +"musl/src/thread/aarch64/clone.s", +"musl/src/thread/aarch64/syscall_cp.s", +"musl/src/thread/arm/__aeabi_read_tp.s", +"musl/src/thread/arm/__set_thread_area.c", +"musl/src/thread/arm/__unmapself.s", +"musl/src/thread/arm/atomics.s", +"musl/src/thread/arm/clone.s", +"musl/src/thread/arm/syscall_cp.s", +"musl/src/thread/call_once.c", +"musl/src/thread/clone.c", +"musl/src/thread/cnd_broadcast.c", +"musl/src/thread/cnd_destroy.c", +"musl/src/thread/cnd_init.c", +"musl/src/thread/cnd_signal.c", +"musl/src/thread/cnd_timedwait.c", +"musl/src/thread/cnd_wait.c", +"musl/src/thread/default_attr.c", +"musl/src/thread/i386/__set_thread_area.s", +"musl/src/thread/i386/__unmapself.s", +"musl/src/thread/i386/clone.s", +"musl/src/thread/i386/syscall_cp.s", +"musl/src/thread/i386/tls.s", +"musl/src/thread/lock_ptc.c", +"musl/src/thread/m68k/__m68k_read_tp.s", +"musl/src/thread/m68k/clone.s", +"musl/src/thread/m68k/syscall_cp.s", +"musl/src/thread/microblaze/__set_thread_area.s", +"musl/src/thread/microblaze/__unmapself.s", +"musl/src/thread/microblaze/clone.s", +"musl/src/thread/microblaze/syscall_cp.s", +"musl/src/thread/mips/__unmapself.s", +"musl/src/thread/mips/clone.s", +"musl/src/thread/mips/syscall_cp.s", +"musl/src/thread/mips64/__unmapself.s", +"musl/src/thread/mips64/clone.s", +"musl/src/thread/mips64/syscall_cp.s", +"musl/src/thread/mipsn32/__unmapself.s", +"musl/src/thread/mipsn32/clone.s", +"musl/src/thread/mipsn32/syscall_cp.s", +"musl/src/thread/mtx_destroy.c", +"musl/src/thread/mtx_init.c", +"musl/src/thread/mtx_lock.c", +"musl/src/thread/mtx_timedlock.c", +"musl/src/thread/mtx_trylock.c", +"musl/src/thread/mtx_unlock.c", +"musl/src/thread/or1k/__set_thread_area.s", +"musl/src/thread/or1k/__unmapself.s", +"musl/src/thread/or1k/clone.s", +"musl/src/thread/or1k/syscall_cp.s", +"musl/src/thread/powerpc/__set_thread_area.s", +"musl/src/thread/powerpc/__unmapself.s", +"musl/src/thread/powerpc/clone.s", +"musl/src/thread/powerpc/syscall_cp.s", +"musl/src/thread/powerpc64/__set_thread_area.s", +"musl/src/thread/powerpc64/__unmapself.s", +"musl/src/thread/powerpc64/clone.s", +"musl/src/thread/powerpc64/syscall_cp.s", +"musl/src/thread/pthread_atfork.c", +"musl/src/thread/pthread_attr_destroy.c", +"musl/src/thread/pthread_attr_get.c", +"musl/src/thread/pthread_attr_init.c", +"musl/src/thread/pthread_attr_setdetachstate.c", +"musl/src/thread/pthread_attr_setguardsize.c", +"musl/src/thread/pthread_attr_setinheritsched.c", +"musl/src/thread/pthread_attr_setschedparam.c", +"musl/src/thread/pthread_attr_setschedpolicy.c", +"musl/src/thread/pthread_attr_setscope.c", +"musl/src/thread/pthread_attr_setstack.c", +"musl/src/thread/pthread_attr_setstacksize.c", +"musl/src/thread/pthread_barrier_destroy.c", +"musl/src/thread/pthread_barrier_init.c", +"musl/src/thread/pthread_barrier_wait.c", +"musl/src/thread/pthread_barrierattr_destroy.c", +"musl/src/thread/pthread_barrierattr_init.c", +"musl/src/thread/pthread_barrierattr_setpshared.c", +"musl/src/thread/pthread_cancel.c", +"musl/src/thread/pthread_cleanup_push.c", +"musl/src/thread/pthread_cond_broadcast.c", +"musl/src/thread/pthread_cond_destroy.c", +"musl/src/thread/pthread_cond_init.c", +"musl/src/thread/pthread_cond_signal.c", +"musl/src/thread/pthread_cond_timedwait.c", +"musl/src/thread/pthread_cond_wait.c", +"musl/src/thread/pthread_condattr_destroy.c", +"musl/src/thread/pthread_condattr_init.c", +"musl/src/thread/pthread_condattr_setclock.c", +"musl/src/thread/pthread_condattr_setpshared.c", +"musl/src/thread/pthread_create.c", +"musl/src/thread/pthread_detach.c", +"musl/src/thread/pthread_equal.c", +"musl/src/thread/pthread_getattr_np.c", +"musl/src/thread/pthread_getconcurrency.c", +"musl/src/thread/pthread_getcpuclockid.c", +"musl/src/thread/pthread_getschedparam.c", +"musl/src/thread/pthread_getspecific.c", +"musl/src/thread/pthread_join.c", +"musl/src/thread/pthread_key_create.c", +"musl/src/thread/pthread_key_delete.c", +"musl/src/thread/pthread_kill.c", +"musl/src/thread/pthread_mutex_consistent.c", +"musl/src/thread/pthread_mutex_destroy.c", +"musl/src/thread/pthread_mutex_getprioceiling.c", +"musl/src/thread/pthread_mutex_init.c", +"musl/src/thread/pthread_mutex_lock.c", +"musl/src/thread/pthread_mutex_setprioceiling.c", +"musl/src/thread/pthread_mutex_timedlock.c", +"musl/src/thread/pthread_mutex_trylock.c", +"musl/src/thread/pthread_mutex_unlock.c", +"musl/src/thread/pthread_mutexattr_destroy.c", +"musl/src/thread/pthread_mutexattr_init.c", +"musl/src/thread/pthread_mutexattr_setprotocol.c", +"musl/src/thread/pthread_mutexattr_setpshared.c", +"musl/src/thread/pthread_mutexattr_setrobust.c", +"musl/src/thread/pthread_mutexattr_settype.c", +"musl/src/thread/pthread_once.c", +"musl/src/thread/pthread_rwlock_destroy.c", +"musl/src/thread/pthread_rwlock_init.c", +"musl/src/thread/pthread_rwlock_rdlock.c", +"musl/src/thread/pthread_rwlock_timedrdlock.c", +"musl/src/thread/pthread_rwlock_timedwrlock.c", +"musl/src/thread/pthread_rwlock_tryrdlock.c", +"musl/src/thread/pthread_rwlock_trywrlock.c", +"musl/src/thread/pthread_rwlock_unlock.c", +"musl/src/thread/pthread_rwlock_wrlock.c", +"musl/src/thread/pthread_rwlockattr_destroy.c", +"musl/src/thread/pthread_rwlockattr_init.c", +"musl/src/thread/pthread_rwlockattr_setpshared.c", +"musl/src/thread/pthread_self.c", +"musl/src/thread/pthread_setattr_default_np.c", +"musl/src/thread/pthread_setcancelstate.c", +"musl/src/thread/pthread_setcanceltype.c", +"musl/src/thread/pthread_setconcurrency.c", +"musl/src/thread/pthread_setname_np.c", +"musl/src/thread/pthread_setschedparam.c", +"musl/src/thread/pthread_setschedprio.c", +"musl/src/thread/pthread_setspecific.c", +"musl/src/thread/pthread_sigmask.c", +"musl/src/thread/pthread_spin_destroy.c", +"musl/src/thread/pthread_spin_init.c", +"musl/src/thread/pthread_spin_lock.c", +"musl/src/thread/pthread_spin_trylock.c", +"musl/src/thread/pthread_spin_unlock.c", +"musl/src/thread/pthread_testcancel.c", +"musl/src/thread/s390x/__set_thread_area.s", +"musl/src/thread/s390x/__tls_get_offset.s", +"musl/src/thread/s390x/__unmapself.s", +"musl/src/thread/s390x/clone.s", +"musl/src/thread/s390x/syscall_cp.s", +"musl/src/thread/sem_destroy.c", +"musl/src/thread/sem_getvalue.c", +"musl/src/thread/sem_init.c", +"musl/src/thread/sem_open.c", +"musl/src/thread/sem_post.c", +"musl/src/thread/sem_timedwait.c", +"musl/src/thread/sem_trywait.c", +"musl/src/thread/sem_unlink.c", +"musl/src/thread/sem_wait.c", +"musl/src/thread/sh/__set_thread_area.c", +"musl/src/thread/sh/__unmapself.c", +"musl/src/thread/sh/__unmapself_mmu.s", +"musl/src/thread/sh/atomics.s", +"musl/src/thread/sh/clone.s", +"musl/src/thread/sh/syscall_cp.s", +"musl/src/thread/synccall.c", +"musl/src/thread/syscall_cp.c", +"musl/src/thread/thrd_create.c", +"musl/src/thread/thrd_exit.c", +"musl/src/thread/thrd_join.c", +"musl/src/thread/thrd_sleep.c", +"musl/src/thread/thrd_yield.c", +"musl/src/thread/tls.c", +"musl/src/thread/tss_create.c", +"musl/src/thread/tss_delete.c", +"musl/src/thread/tss_set.c", +"musl/src/thread/vmlock.c", +"musl/src/thread/x32/__set_thread_area.s", +"musl/src/thread/x32/__unmapself.s", +"musl/src/thread/x32/clone.s", +"musl/src/thread/x32/syscall_cp.s", +"musl/src/thread/x32/syscall_cp_fixup.c", +"musl/src/thread/x86_64/__set_thread_area.s", +"musl/src/thread/x86_64/__unmapself.s", +"musl/src/thread/x86_64/clone.s", +"musl/src/thread/x86_64/syscall_cp.s", +"musl/src/time/__map_file.c", +"musl/src/time/__month_to_secs.c", +"musl/src/time/__secs_to_tm.c", +"musl/src/time/__tm_to_secs.c", +"musl/src/time/__tz.c", +"musl/src/time/__year_to_secs.c", +"musl/src/time/asctime.c", +"musl/src/time/asctime_r.c", +"musl/src/time/clock.c", +"musl/src/time/clock_getcpuclockid.c", +"musl/src/time/clock_getres.c", +"musl/src/time/clock_gettime.c", +"musl/src/time/clock_nanosleep.c", +"musl/src/time/clock_settime.c", +"musl/src/time/ctime.c", +"musl/src/time/ctime_r.c", +"musl/src/time/difftime.c", +"musl/src/time/ftime.c", +"musl/src/time/getdate.c", +"musl/src/time/gettimeofday.c", +"musl/src/time/gmtime.c", +"musl/src/time/gmtime_r.c", +"musl/src/time/localtime.c", +"musl/src/time/localtime_r.c", +"musl/src/time/mktime.c", +"musl/src/time/nanosleep.c", +"musl/src/time/strftime.c", +"musl/src/time/strptime.c", +"musl/src/time/time.c", +"musl/src/time/time_impl.h", +"musl/src/time/timegm.c", +"musl/src/time/timer_create.c", +"musl/src/time/timer_delete.c", +"musl/src/time/timer_getoverrun.c", +"musl/src/time/timer_gettime.c", +"musl/src/time/timer_settime.c", +"musl/src/time/times.c", +"musl/src/time/timespec_get.c", +"musl/src/time/utime.c", +"musl/src/time/wcsftime.c", +"musl/src/unistd/_exit.c", +"musl/src/unistd/access.c", +"musl/src/unistd/acct.c", +"musl/src/unistd/alarm.c", +"musl/src/unistd/chdir.c", +"musl/src/unistd/chown.c", +"musl/src/unistd/close.c", +"musl/src/unistd/ctermid.c", +"musl/src/unistd/dup.c", +"musl/src/unistd/dup2.c", +"musl/src/unistd/dup3.c", +"musl/src/unistd/faccessat.c", +"musl/src/unistd/fchdir.c", +"musl/src/unistd/fchown.c", +"musl/src/unistd/fchownat.c", +"musl/src/unistd/fdatasync.c", +"musl/src/unistd/fsync.c", +"musl/src/unistd/ftruncate.c", +"musl/src/unistd/getcwd.c", +"musl/src/unistd/getegid.c", +"musl/src/unistd/geteuid.c", +"musl/src/unistd/getgid.c", +"musl/src/unistd/getgroups.c", +"musl/src/unistd/gethostname.c", +"musl/src/unistd/getlogin.c", +"musl/src/unistd/getlogin_r.c", +"musl/src/unistd/getpgid.c", +"musl/src/unistd/getpgrp.c", +"musl/src/unistd/getpid.c", +"musl/src/unistd/getppid.c", +"musl/src/unistd/getsid.c", +"musl/src/unistd/getuid.c", +"musl/src/unistd/isatty.c", +"musl/src/unistd/lchown.c", +"musl/src/unistd/link.c", +"musl/src/unistd/linkat.c", +"musl/src/unistd/lseek.c", +"musl/src/unistd/mips/pipe.s", +"musl/src/unistd/mips64/pipe.s", +"musl/src/unistd/mipsn32/pipe.s", +"musl/src/unistd/nice.c", +"musl/src/unistd/pause.c", +"musl/src/unistd/pipe.c", +"musl/src/unistd/pipe2.c", +"musl/src/unistd/posix_close.c", +"musl/src/unistd/pread.c", +"musl/src/unistd/preadv.c", +"musl/src/unistd/pwrite.c", +"musl/src/unistd/pwritev.c", +"musl/src/unistd/read.c", +"musl/src/unistd/readlink.c", +"musl/src/unistd/readlinkat.c", +"musl/src/unistd/readv.c", +"musl/src/unistd/renameat.c", +"musl/src/unistd/rmdir.c", +"musl/src/unistd/setegid.c", +"musl/src/unistd/seteuid.c", +"musl/src/unistd/setgid.c", +"musl/src/unistd/setpgid.c", +"musl/src/unistd/setpgrp.c", +"musl/src/unistd/setregid.c", +"musl/src/unistd/setresgid.c", +"musl/src/unistd/setresuid.c", +"musl/src/unistd/setreuid.c", +"musl/src/unistd/setsid.c", +"musl/src/unistd/setuid.c", +"musl/src/unistd/setxid.c", +"musl/src/unistd/sh/pipe.s", +"musl/src/unistd/sleep.c", +"musl/src/unistd/symlink.c", +"musl/src/unistd/symlinkat.c", +"musl/src/unistd/sync.c", +"musl/src/unistd/tcgetpgrp.c", +"musl/src/unistd/tcsetpgrp.c", +"musl/src/unistd/truncate.c", +"musl/src/unistd/ttyname.c", +"musl/src/unistd/ttyname_r.c", +"musl/src/unistd/ualarm.c", +"musl/src/unistd/unlink.c", +"musl/src/unistd/unlinkat.c", +"musl/src/unistd/usleep.c", +"musl/src/unistd/write.c", +"musl/src/unistd/writev.c", +}; +#endif From 51a3938b04854f3b075fb21082c865f46e915fa8 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 15 Jul 2019 12:28:39 -0400 Subject: [PATCH 08/13] fix the build on macos Stat structs gain methods to abstract over the platform differences with regards to mtime, ctime, atime. --- std/fs/file.zig | 9 +++++--- std/os/bits/darwin.zig | 42 +++++++++++++++++++++++++++++------- std/os/bits/freebsd.zig | 18 ++++++++++++++++ std/os/bits/linux/arm64.zig | 17 +++++++++++++++ std/os/bits/linux/x86_64.zig | 17 +++++++++++++++ std/os/bits/netbsd.zig | 18 ++++++++++++++++ 6 files changed, 110 insertions(+), 11 deletions(-) diff --git a/std/fs/file.zig b/std/fs/file.zig index 63c18c1611..bf0ef20034 100644 --- a/std/fs/file.zig +++ b/std/fs/file.zig @@ -248,12 +248,15 @@ pub const File = struct { } const st = try os.fstat(self.handle); + const atime = st.atime(); + const mtime = st.mtime(); + const ctime = st.ctime(); return Stat{ .size = @bitCast(u64, st.size), .mode = st.mode, - .atime = st.atim.tv_sec * std.time.ns_per_s + st.atim.tv_nsec, - .mtime = st.mtim.tv_sec * std.time.ns_per_s + st.mtim.tv_nsec, - .ctime = st.ctim.tv_sec * std.time.ns_per_s + st.ctim.tv_nsec, + .atime = atime.tv_sec * std.time.ns_per_s + atime.tv_nsec, + .mtime = mtime.tv_sec * std.time.ns_per_s + mtime.tv_nsec, + .ctime = ctime.tv_sec * std.time.ns_per_s + ctime.tv_nsec, }; } diff --git a/std/os/bits/darwin.zig b/std/os/bits/darwin.zig index 39dae6e7a1..b8d229dbe9 100644 --- a/std/os/bits/darwin.zig +++ b/std/os/bits/darwin.zig @@ -44,6 +44,11 @@ pub const mach_timebase_info_data = extern struct { }; /// Renamed to Stat to not conflict with the stat function. +/// atime, mtime, and ctime have functions to return `timespec`, +/// because although this is a POSIX API, the layout and names of +/// the structs are inconsistent across operating systems, and +/// in C, macros are used to hide the differences. Here we use +/// methods to accomplish this. pub const Stat = extern struct { dev: i32, mode: u16, @@ -52,14 +57,14 @@ pub const Stat = extern struct { uid: u32, gid: u32, rdev: i32, - atime: usize, - atimensec: usize, - mtime: usize, - mtimensec: usize, - ctime: usize, - ctimensec: usize, - birthtime: usize, - birthtimensec: usize, + atimesec: isize, + atimensec: isize, + mtimesec: isize, + mtimensec: isize, + ctimesec: isize, + ctimensec: isize, + birthtimesec: isize, + birthtimensec: isize, size: i64, blocks: i64, blksize: i32, @@ -67,6 +72,27 @@ pub const Stat = extern struct { gen: u32, lspare: i32, qspare: [2]i64, + + pub fn atime(self: Stat) timespec { + return timespec{ + .tv_sec = self.atimesec, + .tv_nsec = self.atimensec, + }; + } + + pub fn mtime(self: Stat) timespec { + return timespec{ + .tv_sec = self.mtimesec, + .tv_nsec = self.mtimensec, + }; + } + + pub fn ctime(self: Stat) timespec { + return timespec{ + .tv_sec = self.ctimesec, + .tv_nsec = self.ctimensec, + }; + } }; pub const timespec = extern struct { diff --git a/std/os/bits/freebsd.zig b/std/os/bits/freebsd.zig index c73887d648..198857983e 100644 --- a/std/os/bits/freebsd.zig +++ b/std/os/bits/freebsd.zig @@ -73,6 +73,12 @@ pub const msghdr_const = extern struct { msg_flags: i32, }; +/// Renamed to Stat to not conflict with the stat function. +/// atime, mtime, and ctime have functions to return `timespec`, +/// because although this is a POSIX API, the layout and names of +/// the structs are inconsistent across operating systems, and +/// in C, macros are used to hide the differences. Here we use +/// methods to accomplish this. pub const Stat = extern struct { dev: u64, ino: u64, @@ -96,6 +102,18 @@ pub const Stat = extern struct { flags: u32, gen: u64, __spare: [10]u64, + + pub fn atime(self: Stat) timespec { + return self.atim; + } + + pub fn mtime(self: Stat) timespec { + return self.mtim; + } + + pub fn ctime(self: Stat) timespec { + return self.ctim; + } }; pub const timespec = extern struct { diff --git a/std/os/bits/linux/arm64.zig b/std/os/bits/linux/arm64.zig index bd381c16e7..e19b631292 100644 --- a/std/os/bits/linux/arm64.zig +++ b/std/os/bits/linux/arm64.zig @@ -396,6 +396,11 @@ pub const msghdr_const = extern struct { }; /// Renamed to Stat to not conflict with the stat function. +/// atime, mtime, and ctime have functions to return `timespec`, +/// because although this is a POSIX API, the layout and names of +/// the structs are inconsistent across operating systems, and +/// in C, macros are used to hide the differences. Here we use +/// methods to accomplish this. pub const Stat = extern struct { dev: u64, ino: u64, @@ -414,6 +419,18 @@ pub const Stat = extern struct { mtim: timespec, ctim: timespec, __unused: [3]isize, + + pub fn atime(self: Stat) timespec { + return self.atim; + } + + pub fn mtime(self: Stat) timespec { + return self.mtim; + } + + pub fn ctime(self: Stat) timespec { + return self.ctim; + } }; pub const timespec = extern struct { diff --git a/std/os/bits/linux/x86_64.zig b/std/os/bits/linux/x86_64.zig index d85cac564c..499f925280 100644 --- a/std/os/bits/linux/x86_64.zig +++ b/std/os/bits/linux/x86_64.zig @@ -493,6 +493,11 @@ pub const msghdr_const = extern struct { }; /// Renamed to Stat to not conflict with the stat function. +/// atime, mtime, and ctime have functions to return `timespec`, +/// because although this is a POSIX API, the layout and names of +/// the structs are inconsistent across operating systems, and +/// in C, macros are used to hide the differences. Here we use +/// methods to accomplish this. pub const Stat = extern struct { dev: u64, ino: u64, @@ -511,6 +516,18 @@ pub const Stat = extern struct { mtim: timespec, ctim: timespec, __unused: [3]isize, + + pub fn atime(self: Stat) timespec { + return self.atim; + } + + pub fn mtime(self: Stat) timespec { + return self.mtim; + } + + pub fn ctime(self: Stat) timespec { + return self.ctim; + } }; pub const timespec = extern struct { diff --git a/std/os/bits/netbsd.zig b/std/os/bits/netbsd.zig index d83ea82b06..ef58bd1356 100644 --- a/std/os/bits/netbsd.zig +++ b/std/os/bits/netbsd.zig @@ -73,6 +73,12 @@ pub const msghdr_const = extern struct { msg_flags: i32, }; +/// Renamed to Stat to not conflict with the stat function. +/// atime, mtime, and ctime have functions to return `timespec`, +/// because although this is a POSIX API, the layout and names of +/// the structs are inconsistent across operating systems, and +/// in C, macros are used to hide the differences. Here we use +/// methods to accomplish this. pub const Stat = extern struct { dev: u64, mode: u32, @@ -94,6 +100,18 @@ pub const Stat = extern struct { flags: u32, gen: u32, __spare: [2]u32, + + pub fn atime(self: Stat) timespec { + return self.atim; + } + + pub fn mtime(self: Stat) timespec { + return self.mtim; + } + + pub fn ctime(self: Stat) timespec { + return self.ctim; + } }; pub const timespec = extern struct { From 49d1a4c56218cf932adddf60ad2f56a8386c76fc Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 15 Jul 2019 17:54:50 -0400 Subject: [PATCH 09/13] move lib dirs to lib subdir also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging --- build.zig | 19 +-- .../include}/__clang_cuda_builtin_vars.h | 0 .../include}/__clang_cuda_cmath.h | 0 .../include}/__clang_cuda_complex_builtins.h | 0 .../include}/__clang_cuda_device_functions.h | 0 .../include}/__clang_cuda_intrinsics.h | 0 .../__clang_cuda_libdevice_declares.h | 0 .../__clang_cuda_math_forward_declares.h | 0 .../include}/__clang_cuda_runtime_wrapper.h | 0 .../include}/__stddef_max_align_t.h | 0 {c_headers => lib/include}/__wmmintrin_aes.h | 0 .../include}/__wmmintrin_pclmul.h | 0 {c_headers => lib/include}/adxintrin.h | 0 {c_headers => lib/include}/altivec.h | 0 {c_headers => lib/include}/ammintrin.h | 0 {c_headers => lib/include}/arm64intr.h | 0 {c_headers => lib/include}/arm_acle.h | 0 {c_headers => lib/include}/arm_fp16.h | 0 {c_headers => lib/include}/arm_neon.h | 0 {c_headers => lib/include}/armintr.h | 0 {c_headers => lib/include}/avx2intrin.h | 0 .../include}/avx512bitalgintrin.h | 0 {c_headers => lib/include}/avx512bwintrin.h | 0 {c_headers => lib/include}/avx512cdintrin.h | 0 {c_headers => lib/include}/avx512dqintrin.h | 0 {c_headers => lib/include}/avx512erintrin.h | 0 {c_headers => lib/include}/avx512fintrin.h | 0 {c_headers => lib/include}/avx512ifmaintrin.h | 0 .../include}/avx512ifmavlintrin.h | 0 {c_headers => lib/include}/avx512pfintrin.h | 0 .../include}/avx512vbmi2intrin.h | 0 {c_headers => lib/include}/avx512vbmiintrin.h | 0 .../include}/avx512vbmivlintrin.h | 0 .../include}/avx512vlbitalgintrin.h | 0 {c_headers => lib/include}/avx512vlbwintrin.h | 0 {c_headers => lib/include}/avx512vlcdintrin.h | 0 {c_headers => lib/include}/avx512vldqintrin.h | 0 {c_headers => lib/include}/avx512vlintrin.h | 0 .../include}/avx512vlvbmi2intrin.h | 0 .../include}/avx512vlvnniintrin.h | 0 {c_headers => lib/include}/avx512vnniintrin.h | 0 .../include}/avx512vpopcntdqintrin.h | 0 .../include}/avx512vpopcntdqvlintrin.h | 0 {c_headers => lib/include}/avxintrin.h | 0 {c_headers => lib/include}/bmi2intrin.h | 0 {c_headers => lib/include}/bmiintrin.h | 0 {c_headers => lib/include}/cetintrin.h | 0 {c_headers => lib/include}/cldemoteintrin.h | 0 {c_headers => lib/include}/clflushoptintrin.h | 0 {c_headers => lib/include}/clwbintrin.h | 0 {c_headers => lib/include}/clzerointrin.h | 0 {c_headers => lib/include}/cpuid.h | 0 .../include}/cuda_wrappers/algorithm | 0 .../include}/cuda_wrappers/complex | 0 {c_headers => lib/include}/cuda_wrappers/new | 0 {c_headers => lib/include}/emmintrin.h | 0 {c_headers => lib/include}/f16cintrin.h | 0 {c_headers => lib/include}/float.h | 0 {c_headers => lib/include}/fma4intrin.h | 0 {c_headers => lib/include}/fmaintrin.h | 0 {c_headers => lib/include}/fxsrintrin.h | 0 {c_headers => lib/include}/gfniintrin.h | 0 {c_headers => lib/include}/htmintrin.h | 0 {c_headers => lib/include}/htmxlintrin.h | 0 {c_headers => lib/include}/ia32intrin.h | 0 {c_headers => lib/include}/immintrin.h | 0 {c_headers => lib/include}/intrin.h | 0 {c_headers => lib/include}/inttypes.h | 0 {c_headers => lib/include}/invpcidintrin.h | 0 {c_headers => lib/include}/iso646.h | 0 {c_headers => lib/include}/limits.h | 0 {c_headers => lib/include}/lwpintrin.h | 0 {c_headers => lib/include}/lzcntintrin.h | 0 {c_headers => lib/include}/mm3dnow.h | 0 {c_headers => lib/include}/mm_malloc.h | 0 {c_headers => lib/include}/mmintrin.h | 0 {c_headers => lib/include}/module.modulemap | 0 {c_headers => lib/include}/movdirintrin.h | 0 {c_headers => lib/include}/msa.h | 0 {c_headers => lib/include}/mwaitxintrin.h | 0 {c_headers => lib/include}/nmmintrin.h | 0 {c_headers => lib/include}/opencl-c.h | 0 {c_headers => lib/include}/pconfigintrin.h | 0 {c_headers => lib/include}/pkuintrin.h | 0 {c_headers => lib/include}/pmmintrin.h | 0 {c_headers => lib/include}/popcntintrin.h | 0 {c_headers => lib/include}/prfchwintrin.h | 0 {c_headers => lib/include}/ptwriteintrin.h | 0 {c_headers => lib/include}/rdseedintrin.h | 0 {c_headers => lib/include}/rtmintrin.h | 0 {c_headers => lib/include}/s390intrin.h | 0 {c_headers => lib/include}/sgxintrin.h | 0 {c_headers => lib/include}/shaintrin.h | 0 {c_headers => lib/include}/smmintrin.h | 0 {c_headers => lib/include}/stdalign.h | 0 {c_headers => lib/include}/stdarg.h | 0 {c_headers => lib/include}/stdatomic.h | 0 {c_headers => lib/include}/stdbool.h | 0 {c_headers => lib/include}/stddef.h | 0 {c_headers => lib/include}/stdint.h | 0 {c_headers => lib/include}/stdnoreturn.h | 0 {c_headers => lib/include}/tbmintrin.h | 0 {c_headers => lib/include}/tgmath.h | 0 {c_headers => lib/include}/tmmintrin.h | 0 {c_headers => lib/include}/unwind.h | 0 {c_headers => lib/include}/vadefs.h | 0 {c_headers => lib/include}/vaesintrin.h | 0 {c_headers => lib/include}/varargs.h | 0 {c_headers => lib/include}/vecintrin.h | 0 {c_headers => lib/include}/vpclmulqdqintrin.h | 0 {c_headers => lib/include}/waitpkgintrin.h | 0 {c_headers => lib/include}/wbnoinvdintrin.h | 0 {c_headers => lib/include}/wmmintrin.h | 0 {c_headers => lib/include}/x86intrin.h | 0 {c_headers => lib/include}/xmmintrin.h | 0 {c_headers => lib/include}/xopintrin.h | 0 {c_headers => lib/include}/xsavecintrin.h | 0 {c_headers => lib/include}/xsaveintrin.h | 0 {c_headers => lib/include}/xsaveoptintrin.h | 0 {c_headers => lib/include}/xsavesintrin.h | 0 {c_headers => lib/include}/xtestintrin.h | 0 {libc => lib/libc}/glibc/abi.txt | 0 {libc => lib/libc}/glibc/bits/byteswap.h | 0 {libc => lib/libc}/glibc/bits/endian.h | 0 {libc => lib/libc}/glibc/bits/floatn-common.h | 0 .../libc}/glibc/bits/libc-header-start.h | 0 {libc => lib/libc}/glibc/bits/long-double.h | 0 {libc => lib/libc}/glibc/bits/pthreadtypes.h | 0 {libc => lib/libc}/glibc/bits/select.h | 0 .../libc}/glibc/bits/signum-generic.h | 0 {libc => lib/libc}/glibc/bits/stat.h | 0 {libc => lib/libc}/glibc/bits/stdint-intn.h | 0 .../libc}/glibc/bits/stdlib-bsearch.h | 0 {libc => lib/libc}/glibc/bits/time64.h | 0 {libc => lib/libc}/glibc/bits/timesize.h | 0 .../libc}/glibc/bits/types/__sigset_t.h | 0 .../glibc/bits/types/struct_sched_param.h | 0 {libc => lib/libc}/glibc/bits/typesizes.h | 0 .../libc}/glibc/bits/uintn-identity.h | 0 {libc => lib/libc}/glibc/bits/waitflags.h | 0 {libc => lib/libc}/glibc/bits/waitstatus.h | 0 {libc => lib/libc}/glibc/csu/abi-note.S | 0 {libc => lib/libc}/glibc/csu/abi-tag.h | 0 {libc => lib/libc}/glibc/csu/elf-init.c | 0 .../libc}/glibc/debug/stack_chk_fail_local.c | 0 {libc => lib/libc}/glibc/elf/elf.h | 0 {libc => lib/libc}/glibc/fns.txt | 0 {libc => lib/libc}/glibc/include/alloca.h | 0 .../libc}/glibc/include/bits/cpu-set.h | 0 {libc => lib/libc}/glibc/include/bits/statx.h | 0 .../libc}/glibc/include/bits/stdlib-float.h | 0 {libc => lib/libc}/glibc/include/bits/types.h | 0 .../glibc/include/bits/types/__locale_t.h | 0 .../libc}/glibc/include/bits/types/clock_t.h | 0 .../glibc/include/bits/types/clockid_t.h | 0 .../libc}/glibc/include/bits/types/locale_t.h | 0 .../glibc/include/bits/types/sig_atomic_t.h | 0 .../libc}/glibc/include/bits/types/sigset_t.h | 0 .../include/bits/types/struct_itimerspec.h | 0 .../include/bits/types/struct_timespec.h | 0 .../glibc/include/bits/types/struct_timeval.h | 0 .../glibc/include/bits/types/struct_tm.h | 0 .../libc}/glibc/include/bits/types/time_t.h | 0 .../libc}/glibc/include/bits/types/timer_t.h | 0 {libc => lib/libc}/glibc/include/config.h | 0 {libc => lib/libc}/glibc/include/dso_handle.h | 0 {libc => lib/libc}/glibc/include/elf.h | 0 {libc => lib/libc}/glibc/include/endian.h | 0 {libc => lib/libc}/glibc/include/features.h | 0 {libc => lib/libc}/glibc/include/gnu/stubs.h | 0 .../libc}/glibc/include/libc-modules.h | 0 .../libc}/glibc/include/libc-pointer-arith.h | 0 .../libc}/glibc/include/libc-symbols.h | 0 {libc => lib/libc}/glibc/include/pthread.h | 0 {libc => lib/libc}/glibc/include/signal.h | 0 {libc => lib/libc}/glibc/include/stap-probe.h | 0 .../libc}/glibc/include/stdc-predef.h | 0 {libc => lib/libc}/glibc/include/stdlib.h | 0 {libc => lib/libc}/glibc/include/sys/cdefs.h | 0 {libc => lib/libc}/glibc/include/sys/select.h | 0 {libc => lib/libc}/glibc/include/sys/signal.h | 0 {libc => lib/libc}/glibc/include/sys/stat.h | 0 {libc => lib/libc}/glibc/include/sys/types.h | 0 {libc => lib/libc}/glibc/include/syscall.h | 0 {libc => lib/libc}/glibc/io/bits/statx.h | 0 {libc => lib/libc}/glibc/io/fstat.c | 0 {libc => lib/libc}/glibc/io/fstat64.c | 0 {libc => lib/libc}/glibc/io/fstatat.c | 0 {libc => lib/libc}/glibc/io/fstatat64.c | 0 {libc => lib/libc}/glibc/io/lstat.c | 0 {libc => lib/libc}/glibc/io/lstat64.c | 0 {libc => lib/libc}/glibc/io/mknod.c | 0 {libc => lib/libc}/glibc/io/mknodat.c | 0 {libc => lib/libc}/glibc/io/stat.c | 0 {libc => lib/libc}/glibc/io/stat64.c | 0 {libc => lib/libc}/glibc/io/sys/stat.h | 0 .../glibc/locale/bits/types/__locale_t.h | 0 .../libc}/glibc/locale/bits/types/locale_t.h | 0 {libc => lib/libc}/glibc/misc/sys/cdefs.h | 0 {libc => lib/libc}/glibc/misc/sys/select.h | 0 {libc => lib/libc}/glibc/misc/syscall.h | 0 .../libc}/glibc/nptl/pthread_atfork.c | 0 {libc => lib/libc}/glibc/posix/bits/cpu-set.h | 0 {libc => lib/libc}/glibc/posix/bits/types.h | 0 {libc => lib/libc}/glibc/posix/sys/types.h | 0 .../glibc/signal/bits/types/sig_atomic_t.h | 0 .../libc}/glibc/signal/bits/types/sigset_t.h | 0 {libc => lib/libc}/glibc/signal/signal.h | 0 {libc => lib/libc}/glibc/signal/sys/signal.h | 0 {libc => lib/libc}/glibc/stdlib/alloca.h | 0 .../libc}/glibc/stdlib/at_quick_exit.c | 0 {libc => lib/libc}/glibc/stdlib/atexit.c | 0 .../libc}/glibc/stdlib/bits/stdlib-float.h | 0 {libc => lib/libc}/glibc/stdlib/exit.h | 0 {libc => lib/libc}/glibc/stdlib/stdlib.h | 0 {libc => lib/libc}/glibc/string/endian.h | 0 .../libc}/glibc/sysdeps/aarch64/bits/endian.h | 0 .../libc}/glibc/sysdeps/aarch64/crti.S | 0 .../libc}/glibc/sysdeps/aarch64/crtn.S | 0 .../libc}/glibc/sysdeps/aarch64/dl-sysdep.h | 0 .../aarch64/nptl/bits/pthreadtypes-arch.h | 0 .../libc}/glibc/sysdeps/aarch64/start.S | 0 .../libc}/glibc/sysdeps/aarch64/sysdep.h | 0 .../libc}/glibc/sysdeps/alpha/bits/endian.h | 0 {libc => lib/libc}/glibc/sysdeps/alpha/crti.S | 0 {libc => lib/libc}/glibc/sysdeps/alpha/crtn.S | 0 .../libc}/glibc/sysdeps/alpha/dl-dtprocnum.h | 0 .../libc}/glibc/sysdeps/alpha/dl-sysdep.h | 0 .../alpha/nptl/bits/pthreadtypes-arch.h | 0 .../libc}/glibc/sysdeps/alpha/start.S | 0 .../libc}/glibc/sysdeps/arm/bits/endian.h | 0 {libc => lib/libc}/glibc/sysdeps/arm/crti.S | 0 {libc => lib/libc}/glibc/sysdeps/arm/crtn.S | 0 .../libc}/glibc/sysdeps/arm/dl-sysdep.h | 0 .../sysdeps/arm/nptl/bits/pthreadtypes-arch.h | 0 {libc => lib/libc}/glibc/sysdeps/arm/start.S | 0 {libc => lib/libc}/glibc/sysdeps/arm/sysdep.h | 0 .../glibc/sysdeps/generic/dl-dtprocnum.h | 0 .../libc}/glibc/sysdeps/generic/dl-sysdep.h | 0 .../libc}/glibc/sysdeps/generic/dwarf2.h | 0 .../libc}/glibc/sysdeps/generic/libc-lock.h | 0 .../glibc/sysdeps/generic/symbol-hacks.h | 0 .../libc}/glibc/sysdeps/generic/sys/syscall.h | 0 .../libc}/glibc/sysdeps/generic/sysdep.h | 0 .../libc}/glibc/sysdeps/generic/tls.h | 0 .../libc}/glibc/sysdeps/hppa/bits/endian.h | 0 {libc => lib/libc}/glibc/sysdeps/hppa/crti.S | 0 {libc => lib/libc}/glibc/sysdeps/hppa/crtn.S | 0 .../hppa/nptl/bits/pthreadtypes-arch.h | 0 {libc => lib/libc}/glibc/sysdeps/hppa/start.S | 0 .../libc}/glibc/sysdeps/hppa/sysdep.h | 0 .../libc}/glibc/sysdeps/htl/bits/pthread.h | 0 .../sysdeps/htl/bits/thread-shared-types.h | 0 .../libc}/glibc/sysdeps/htl/libc-lockP.h | 0 .../libc}/glibc/sysdeps/htl/pthread.h | 0 {libc => lib/libc}/glibc/sysdeps/i386/crti.S | 0 {libc => lib/libc}/glibc/sysdeps/i386/crtn.S | 0 .../sysdeps/i386/htl/bits/pthreadtypes-arch.h | 0 {libc => lib/libc}/glibc/sysdeps/i386/start.S | 0 .../libc}/glibc/sysdeps/i386/symbol-hacks.h | 0 .../libc}/glibc/sysdeps/i386/sysdep.h | 0 {libc => lib/libc}/glibc/sysdeps/ia64/crti.S | 0 {libc => lib/libc}/glibc/sysdeps/ia64/crtn.S | 0 .../libc}/glibc/sysdeps/ia64/dl-dtprocnum.h | 0 .../libc}/glibc/sysdeps/ia64/dl-sysdep.h | 0 .../ia64/nptl/bits/pthreadtypes-arch.h | 0 {libc => lib/libc}/glibc/sysdeps/ia64/start.S | 0 .../libc}/glibc/sysdeps/ia64/sysdep.h | 0 .../libc}/glibc/sysdeps/init_array/crti.S | 0 .../libc}/glibc/sysdeps/init_array/crtn.S | 0 .../libc}/glibc/sysdeps/m68k/bits/endian.h | 0 .../glibc/sysdeps/m68k/coldfire/sysdep.h | 0 {libc => lib/libc}/glibc/sysdeps/m68k/crti.S | 0 {libc => lib/libc}/glibc/sysdeps/m68k/crtn.S | 0 .../libc}/glibc/sysdeps/m68k/m680x0/sysdep.h | 0 .../m68k/nptl/bits/pthreadtypes-arch.h | 0 {libc => lib/libc}/glibc/sysdeps/m68k/start.S | 0 .../libc}/glibc/sysdeps/m68k/symbol-hacks.h | 0 .../libc}/glibc/sysdeps/m68k/sysdep.h | 0 .../libc}/glibc/sysdeps/mach/hurd/bits/stat.h | 0 .../glibc/sysdeps/mach/hurd/bits/typesizes.h | 0 .../libc}/glibc/sysdeps/mach/hurd/dl-sysdep.h | 0 .../glibc/sysdeps/mach/hurd/kernel-features.h | 0 .../libc}/glibc/sysdeps/mach/i386/sysdep.h | 0 .../libc}/glibc/sysdeps/mach/libc-lock.h | 0 .../libc}/glibc/sysdeps/mach/sys/syscall.h | 0 .../libc}/glibc/sysdeps/mach/sysdep.h | 0 .../glibc/sysdeps/microblaze/bits/endian.h | 0 .../libc}/glibc/sysdeps/microblaze/crti.S | 0 .../libc}/glibc/sysdeps/microblaze/crtn.S | 0 .../microblaze/nptl/bits/pthreadtypes-arch.h | 0 .../libc}/glibc/sysdeps/microblaze/start.S | 0 .../libc}/glibc/sysdeps/microblaze/sysdep.h | 0 .../libc}/glibc/sysdeps/mips/bits/endian.h | 0 .../libc}/glibc/sysdeps/mips/dl-dtprocnum.h | 0 .../libc}/glibc/sysdeps/mips/mips32/crti.S | 0 .../libc}/glibc/sysdeps/mips/mips32/crtn.S | 0 .../glibc/sysdeps/mips/mips64/n32/crti.S | 0 .../glibc/sysdeps/mips/mips64/n32/crtn.S | 0 .../glibc/sysdeps/mips/mips64/n64/crti.S | 0 .../glibc/sysdeps/mips/mips64/n64/crtn.S | 0 .../mips/nptl/bits/pthreadtypes-arch.h | 0 {libc => lib/libc}/glibc/sysdeps/mips/start.S | 0 .../glibc/sysdeps/nptl/bits/pthreadtypes.h | 0 .../sysdeps/nptl/bits/thread-shared-types.h | 0 .../libc}/glibc/sysdeps/nptl/libc-lock.h | 0 .../libc}/glibc/sysdeps/nptl/libc-lockP.h | 0 .../libc}/glibc/sysdeps/nptl/pthread.h | 0 .../libc}/glibc/sysdeps/powerpc/bits/endian.h | 0 .../powerpc/nptl/bits/pthreadtypes-arch.h | 0 .../glibc/sysdeps/powerpc/powerpc32/crti.S | 0 .../glibc/sysdeps/powerpc/powerpc32/crtn.S | 0 .../sysdeps/powerpc/powerpc32/dl-dtprocnum.h | 0 .../glibc/sysdeps/powerpc/powerpc32/start.S | 0 .../sysdeps/powerpc/powerpc32/symbol-hacks.h | 0 .../glibc/sysdeps/powerpc/powerpc32/sysdep.h | 0 .../glibc/sysdeps/powerpc/powerpc64/crti.S | 0 .../glibc/sysdeps/powerpc/powerpc64/crtn.S | 0 .../sysdeps/powerpc/powerpc64/dl-dtprocnum.h | 0 .../glibc/sysdeps/powerpc/powerpc64/start.S | 0 .../glibc/sysdeps/powerpc/powerpc64/sysdep.h | 0 .../libc}/glibc/sysdeps/powerpc/sysdep.h | 0 .../libc}/glibc/sysdeps/riscv/bits/endian.h | 0 .../riscv/nptl/bits/pthreadtypes-arch.h | 0 .../libc}/glibc/sysdeps/riscv/start.S | 0 .../libc}/glibc/sysdeps/s390/bits/endian.h | 0 .../s390/nptl/bits/pthreadtypes-arch.h | 0 .../libc}/glibc/sysdeps/s390/s390-32/crti.S | 0 .../libc}/glibc/sysdeps/s390/s390-32/crtn.S | 0 .../glibc/sysdeps/s390/s390-32/dl-sysdep.h | 0 .../libc}/glibc/sysdeps/s390/s390-32/start.S | 0 .../glibc/sysdeps/s390/s390-32/symbol-hacks.h | 0 .../libc}/glibc/sysdeps/s390/s390-32/sysdep.h | 0 .../libc}/glibc/sysdeps/s390/s390-64/crti.S | 0 .../libc}/glibc/sysdeps/s390/s390-64/crtn.S | 0 .../libc}/glibc/sysdeps/s390/s390-64/start.S | 0 .../libc}/glibc/sysdeps/s390/s390-64/sysdep.h | 0 .../libc}/glibc/sysdeps/sh/bits/endian.h | 0 {libc => lib/libc}/glibc/sysdeps/sh/crti.S | 0 {libc => lib/libc}/glibc/sysdeps/sh/crtn.S | 0 .../sysdeps/sh/nptl/bits/pthreadtypes-arch.h | 0 {libc => lib/libc}/glibc/sysdeps/sh/start.S | 0 {libc => lib/libc}/glibc/sysdeps/sh/sysdep.h | 0 .../libc}/glibc/sysdeps/sparc/bits/endian.h | 0 {libc => lib/libc}/glibc/sysdeps/sparc/crti.S | 0 {libc => lib/libc}/glibc/sysdeps/sparc/crtn.S | 0 .../libc}/glibc/sysdeps/sparc/dl-dtprocnum.h | 0 .../libc}/glibc/sysdeps/sparc/dl-sysdep.h | 0 .../sparc/nptl/bits/pthreadtypes-arch.h | 0 .../libc}/glibc/sysdeps/sparc/sparc32/start.S | 0 .../libc}/glibc/sysdeps/sparc/sparc64/start.S | 0 .../libc}/glibc/sysdeps/sparc/sysdep.h | 0 .../libc}/glibc/sysdeps/unix/alpha/sysdep.h | 0 .../libc}/glibc/sysdeps/unix/arm/sysdep.h | 0 .../libc}/glibc/sysdeps/unix/i386/sysdep.h | 0 .../glibc/sysdeps/unix/mips/mips32/sysdep.h | 0 .../sysdeps/unix/mips/mips64/n32/sysdep.h | 0 .../sysdeps/unix/mips/mips64/n64/sysdep.h | 0 .../libc}/glibc/sysdeps/unix/mips/sysdep.h | 0 .../libc}/glibc/sysdeps/unix/powerpc/sysdep.h | 0 .../libc}/glibc/sysdeps/unix/sh/sysdep.h | 0 .../libc}/glibc/sysdeps/unix/sysdep.h | 0 .../unix/sysv/linux/aarch64/kernel-features.h | 0 .../sysdeps/unix/sysv/linux/aarch64/sys/elf.h | 0 .../sysdeps/unix/sysv/linux/aarch64/sysdep.h | 0 .../sysdeps/unix/sysv/linux/alpha/bits/stat.h | 0 .../unix/sysv/linux/alpha/bits/typesizes.h | 0 .../unix/sysv/linux/alpha/kernel-features.h | 0 .../sysdeps/unix/sysv/linux/alpha/sysdep.h | 0 .../unix/sysv/linux/arm/kernel-features.h | 0 .../sysdeps/unix/sysv/linux/arm/sys/elf.h | 0 .../sysdeps/unix/sysv/linux/arm/sysdep.h | 0 .../glibc/sysdeps/unix/sysv/linux/bits/stat.h | 0 .../sysdeps/unix/sysv/linux/bits/timex.h | 0 .../glibc/sysdeps/unix/sysv/linux/dl-sysdep.h | 0 .../unix/sysv/linux/generic/bits/stat.h | 0 .../unix/sysv/linux/generic/bits/typesizes.h | 0 .../sysdeps/unix/sysv/linux/generic/sysdep.h | 0 .../unix/sysv/linux/hppa/kernel-features.h | 0 .../sysdeps/unix/sysv/linux/hppa/pthread.h | 0 .../sysdeps/unix/sysv/linux/hppa/sysdep.h | 0 .../sysdeps/unix/sysv/linux/i386/dl-sysdep.h | 0 .../unix/sysv/linux/i386/kernel-features.h | 0 .../sysdeps/unix/sysv/linux/i386/sysdep.h | 0 .../unix/sysv/linux/ia64/bits/endian.h | 0 .../sysdeps/unix/sysv/linux/ia64/bits/stat.h | 0 .../sysdeps/unix/sysv/linux/ia64/dl-sysdep.h | 0 .../unix/sysv/linux/ia64/kernel-features.h | 0 .../sysdeps/unix/sysv/linux/ia64/sysdep.h | 0 .../unix/sysv/linux/include/bits/syscall.h | 0 .../unix/sysv/linux/include/sys/timex.h | 0 .../sysdeps/unix/sysv/linux/kernel-features.h | 0 .../sysdeps/unix/sysv/linux/m68k/bits/stat.h | 0 .../unix/sysv/linux/m68k/coldfire/sysdep.h | 0 .../unix/sysv/linux/m68k/kernel-features.h | 0 .../unix/sysv/linux/m68k/m680x0/sysdep.h | 0 .../sysdeps/unix/sysv/linux/m68k/sysdep.h | 0 .../unix/sysv/linux/microblaze/bits/stat.h | 0 .../sysv/linux/microblaze/kernel-features.h | 0 .../unix/sysv/linux/microblaze/sysdep.h | 0 .../sysdeps/unix/sysv/linux/mips/bits/stat.h | 0 .../unix/sysv/linux/mips/kernel-features.h | 0 .../unix/sysv/linux/mips/mips32/sysdep.h | 0 .../unix/sysv/linux/mips/mips64/n32/sysdep.h | 0 .../unix/sysv/linux/mips/mips64/n64/sysdep.h | 0 .../unix/sysv/linux/powerpc/bits/stat.h | 0 .../unix/sysv/linux/powerpc/kernel-features.h | 0 .../sysv/linux/powerpc/powerpc32/sysdep.h | 0 .../sysv/linux/powerpc/powerpc64/sysdep.h | 0 .../unix/sysv/linux/riscv/kernel-features.h | 0 .../sysdeps/unix/sysv/linux/riscv/sysdep.h | 0 .../sysdeps/unix/sysv/linux/s390/bits/stat.h | 0 .../unix/sysv/linux/s390/bits/typesizes.h | 0 .../unix/sysv/linux/s390/kernel-features.h | 0 .../unix/sysv/linux/s390/s390-32/sysdep.h | 0 .../unix/sysv/linux/s390/s390-64/sysdep.h | 0 .../sysdeps/unix/sysv/linux/s390/sys/elf.h | 0 .../unix/sysv/linux/sh/kernel-features.h | 0 .../sysdeps/unix/sysv/linux/sh/sh4/sysdep.h | 0 .../glibc/sysdeps/unix/sysv/linux/sh/sysdep.h | 0 .../sysdeps/unix/sysv/linux/sparc/bits/stat.h | 0 .../unix/sysv/linux/sparc/bits/typesizes.h | 0 .../unix/sysv/linux/sparc/kernel-features.h | 0 .../unix/sysv/linux/sparc/sparc32/sysdep.h | 0 .../unix/sysv/linux/sparc/sparc64/sysdep.h | 0 .../sysdeps/unix/sysv/linux/sparc/sysdep.h | 0 .../sysdeps/unix/sysv/linux/sys/syscall.h | 0 .../glibc/sysdeps/unix/sysv/linux/sys/timex.h | 0 .../glibc/sysdeps/unix/sysv/linux/sysdep.h | 0 .../sysdeps/unix/sysv/linux/x86/bits/stat.h | 0 .../unix/sysv/linux/x86/bits/typesizes.h | 0 .../sysdeps/unix/sysv/linux/x86/sys/elf.h | 0 .../unix/sysv/linux/x86_64/kernel-features.h | 0 .../sysdeps/unix/sysv/linux/x86_64/sysdep.h | 0 .../unix/sysv/linux/x86_64/x32/sysdep.h | 0 .../libc}/glibc/sysdeps/unix/x86_64/sysdep.h | 0 .../sysdeps/wordsize-32/divdi3-symbol-hacks.h | 0 .../libc}/glibc/sysdeps/x86/bits/endian.h | 0 .../libc}/glibc/sysdeps/x86/bits/select.h | 0 .../libc}/glibc/sysdeps/x86/bits/wordsize.h | 0 .../sysdeps/x86/nptl/bits/pthreadtypes-arch.h | 0 {libc => lib/libc}/glibc/sysdeps/x86/sysdep.h | 0 .../libc}/glibc/sysdeps/x86_64/crti.S | 0 .../libc}/glibc/sysdeps/x86_64/crtn.S | 0 .../libc}/glibc/sysdeps/x86_64/start.S | 0 .../libc}/glibc/sysdeps/x86_64/sysdep.h | 0 .../glibc/sysdeps/x86_64/x32/symbol-hacks.h | 0 .../libc}/glibc/sysdeps/x86_64/x32/sysdep.h | 0 .../libc}/glibc/time/bits/types/clock_t.h | 0 .../libc}/glibc/time/bits/types/clockid_t.h | 0 .../glibc/time/bits/types/struct_itimerspec.h | 0 .../glibc/time/bits/types/struct_timespec.h | 0 .../glibc/time/bits/types/struct_timeval.h | 0 .../libc}/glibc/time/bits/types/struct_tm.h | 0 .../libc}/glibc/time/bits/types/time_t.h | 0 .../libc}/glibc/time/bits/types/timer_t.h | 0 {libc => lib/libc}/glibc/vers.txt | 0 .../include/aarch64-linux-any/asm/auxvec.h | 0 .../aarch64-linux-any/asm/bitsperlong.h | 0 .../aarch64-linux-any/asm/bpf_perf_event.h | 0 .../include/aarch64-linux-any/asm/byteorder.h | 0 .../include/aarch64-linux-any/asm/fcntl.h | 0 .../include/aarch64-linux-any/asm/hwcap.h | 0 .../libc}/include/aarch64-linux-any/asm/kvm.h | 0 .../include/aarch64-linux-any/asm/kvm_para.h | 0 .../include/aarch64-linux-any/asm/param.h | 0 .../include/aarch64-linux-any/asm/perf_regs.h | 0 .../aarch64-linux-any/asm/posix_types.h | 0 .../include/aarch64-linux-any/asm/ptrace.h | 0 .../include/aarch64-linux-any/asm/setup.h | 0 .../aarch64-linux-any/asm/sigcontext.h | 0 .../include/aarch64-linux-any/asm/siginfo.h | 0 .../include/aarch64-linux-any/asm/signal.h | 0 .../include/aarch64-linux-any/asm/stat.h | 0 .../include/aarch64-linux-any/asm/statfs.h | 0 .../include/aarch64-linux-any/asm/ucontext.h | 0 .../include/aarch64-linux-any/asm/unistd.h | 0 .../include/aarch64-linux-gnu/bits/endian.h | 0 .../include/aarch64-linux-gnu/bits/fcntl.h | 0 .../include/aarch64-linux-gnu/bits/fenv.h | 0 .../include/aarch64-linux-gnu/bits/floatn.h | 0 .../include/aarch64-linux-gnu/bits/fp-fast.h | 0 .../include/aarch64-linux-gnu/bits/hwcap.h | 0 .../include/aarch64-linux-gnu/bits/ipc.h | 0 .../include/aarch64-linux-gnu/bits/link.h | 0 .../aarch64-linux-gnu/bits/local_lim.h | 0 .../aarch64-linux-gnu/bits/long-double.h | 0 .../include/aarch64-linux-gnu/bits/procfs.h | 0 .../bits/pthreadtypes-arch.h | 0 .../aarch64-linux-gnu/bits/semaphore.h | 0 .../include/aarch64-linux-gnu/bits/setjmp.h | 0 .../include/aarch64-linux-gnu/bits/sigstack.h | 0 .../include/aarch64-linux-gnu/bits/stat.h | 0 .../include/aarch64-linux-gnu/bits/statfs.h | 0 .../aarch64-linux-gnu/bits/typesizes.h | 0 .../include/aarch64-linux-gnu/bits/wordsize.h | 0 .../include/aarch64-linux-gnu/fpu_control.h | 0 .../aarch64-linux-gnu/gnu/lib-names-lp64.h | 0 .../include/aarch64-linux-gnu/gnu/lib-names.h | 0 .../aarch64-linux-gnu/gnu/stubs-lp64.h | 0 .../include/aarch64-linux-gnu/gnu/stubs.h | 0 .../libc}/include/aarch64-linux-gnu/ieee754.h | 0 .../libc}/include/aarch64-linux-gnu/sys/elf.h | 0 .../include/aarch64-linux-gnu/sys/ptrace.h | 0 .../include/aarch64-linux-gnu/sys/ucontext.h | 0 .../include/aarch64-linux-gnu/sys/user.h | 0 .../aarch64-linux-musleabi/bfd_stdint.h | 0 .../aarch64-linux-musleabi/bits/alltypes.h | 0 .../aarch64-linux-musleabi/bits/endian.h | 0 .../aarch64-linux-musleabi/bits/fenv.h | 0 .../aarch64-linux-musleabi/bits/float.h | 0 .../aarch64-linux-musleabi/bits/hwcap.h | 0 .../include/aarch64-linux-musleabi/bits/ipc.h | 0 .../aarch64-linux-musleabi/bits/limits.h | 0 .../aarch64-linux-musleabi/bits/posix.h | 0 .../include/aarch64-linux-musleabi/bits/reg.h | 0 .../include/aarch64-linux-musleabi/bits/sem.h | 0 .../aarch64-linux-musleabi/bits/setjmp.h | 0 .../aarch64-linux-musleabi/bits/signal.h | 0 .../aarch64-linux-musleabi/bits/socket.h | 0 .../aarch64-linux-musleabi/bits/stat.h | 0 .../aarch64-linux-musleabi/bits/syscall.h | 0 .../aarch64-linux-musleabi/bits/user.h | 0 .../include/aarch64_be-linux-any/asm/auxvec.h | 0 .../aarch64_be-linux-any/asm/bitsperlong.h | 0 .../aarch64_be-linux-any/asm/bpf_perf_event.h | 0 .../aarch64_be-linux-any/asm/byteorder.h | 0 .../include/aarch64_be-linux-any/asm/fcntl.h | 0 .../include/aarch64_be-linux-any/asm/hwcap.h | 0 .../include/aarch64_be-linux-any/asm/kvm.h | 0 .../aarch64_be-linux-any/asm/kvm_para.h | 0 .../include/aarch64_be-linux-any/asm/param.h | 0 .../aarch64_be-linux-any/asm/perf_regs.h | 0 .../aarch64_be-linux-any/asm/posix_types.h | 0 .../include/aarch64_be-linux-any/asm/ptrace.h | 0 .../include/aarch64_be-linux-any/asm/setup.h | 0 .../aarch64_be-linux-any/asm/sigcontext.h | 0 .../aarch64_be-linux-any/asm/siginfo.h | 0 .../include/aarch64_be-linux-any/asm/signal.h | 0 .../include/aarch64_be-linux-any/asm/stat.h | 0 .../include/aarch64_be-linux-any/asm/statfs.h | 0 .../aarch64_be-linux-any/asm/ucontext.h | 0 .../include/aarch64_be-linux-any/asm/unistd.h | 0 .../aarch64_be-linux-gnu/bits/endian.h | 0 .../include/aarch64_be-linux-gnu/bits/fcntl.h | 0 .../include/aarch64_be-linux-gnu/bits/fenv.h | 0 .../aarch64_be-linux-gnu/bits/floatn.h | 0 .../aarch64_be-linux-gnu/bits/fp-fast.h | 0 .../include/aarch64_be-linux-gnu/bits/hwcap.h | 0 .../include/aarch64_be-linux-gnu/bits/ipc.h | 0 .../include/aarch64_be-linux-gnu/bits/link.h | 0 .../aarch64_be-linux-gnu/bits/local_lim.h | 0 .../aarch64_be-linux-gnu/bits/long-double.h | 0 .../aarch64_be-linux-gnu/bits/procfs.h | 0 .../bits/pthreadtypes-arch.h | 0 .../aarch64_be-linux-gnu/bits/semaphore.h | 0 .../aarch64_be-linux-gnu/bits/setjmp.h | 0 .../aarch64_be-linux-gnu/bits/sigstack.h | 0 .../include/aarch64_be-linux-gnu/bits/stat.h | 0 .../aarch64_be-linux-gnu/bits/statfs.h | 0 .../aarch64_be-linux-gnu/bits/typesizes.h | 0 .../aarch64_be-linux-gnu/bits/wordsize.h | 0 .../aarch64_be-linux-gnu/fpu_control.h | 0 .../gnu/lib-names-lp64_be.h | 0 .../aarch64_be-linux-gnu/gnu/lib-names.h | 0 .../aarch64_be-linux-gnu/gnu/stubs-lp64_be.h | 0 .../include/aarch64_be-linux-gnu/gnu/stubs.h | 0 .../include/aarch64_be-linux-gnu/ieee754.h | 0 .../include/aarch64_be-linux-gnu/sys/elf.h | 0 .../include/aarch64_be-linux-gnu/sys/ptrace.h | 0 .../aarch64_be-linux-gnu/sys/ucontext.h | 0 .../include/aarch64_be-linux-gnu/sys/user.h | 0 .../aarch64_be-linux-musl/bfd_stdint.h | 0 .../aarch64_be-linux-musl/bits/alltypes.h | 0 .../aarch64_be-linux-musl/bits/endian.h | 0 .../include/aarch64_be-linux-musl/bits/fenv.h | 0 .../aarch64_be-linux-musl/bits/float.h | 0 .../aarch64_be-linux-musl/bits/hwcap.h | 0 .../include/aarch64_be-linux-musl/bits/ipc.h | 0 .../aarch64_be-linux-musl/bits/limits.h | 0 .../aarch64_be-linux-musl/bits/posix.h | 0 .../include/aarch64_be-linux-musl/bits/reg.h | 0 .../include/aarch64_be-linux-musl/bits/sem.h | 0 .../aarch64_be-linux-musl/bits/setjmp.h | 0 .../aarch64_be-linux-musl/bits/signal.h | 0 .../aarch64_be-linux-musl/bits/socket.h | 0 .../include/aarch64_be-linux-musl/bits/stat.h | 0 .../aarch64_be-linux-musl/bits/syscall.h | 0 .../include/aarch64_be-linux-musl/bits/user.h | 0 .../any-linux-any/asm-generic/auxvec.h | 0 .../any-linux-any/asm-generic/bitsperlong.h | 0 .../asm-generic/bpf_perf_event.h | 0 .../any-linux-any/asm-generic/errno-base.h | 0 .../include/any-linux-any/asm-generic/errno.h | 0 .../include/any-linux-any/asm-generic/fcntl.h | 0 .../asm-generic/hugetlb_encode.h | 0 .../any-linux-any/asm-generic/int-l64.h | 0 .../any-linux-any/asm-generic/int-ll64.h | 0 .../include/any-linux-any/asm-generic/ioctl.h | 0 .../any-linux-any/asm-generic/ioctls.h | 0 .../any-linux-any/asm-generic/ipcbuf.h | 0 .../any-linux-any/asm-generic/kvm_para.h | 0 .../any-linux-any/asm-generic/mman-common.h | 0 .../include/any-linux-any/asm-generic/mman.h | 0 .../any-linux-any/asm-generic/msgbuf.h | 0 .../include/any-linux-any/asm-generic/param.h | 0 .../include/any-linux-any/asm-generic/poll.h | 0 .../any-linux-any/asm-generic/posix_types.h | 0 .../any-linux-any/asm-generic/resource.h | 0 .../any-linux-any/asm-generic/sembuf.h | 0 .../include/any-linux-any/asm-generic/setup.h | 0 .../any-linux-any/asm-generic/shmbuf.h | 0 .../any-linux-any/asm-generic/shmparam.h | 0 .../any-linux-any/asm-generic/siginfo.h | 0 .../any-linux-any/asm-generic/signal-defs.h | 0 .../any-linux-any/asm-generic/signal.h | 0 .../any-linux-any/asm-generic/socket.h | 0 .../any-linux-any/asm-generic/sockios.h | 0 .../include/any-linux-any/asm-generic/stat.h | 0 .../any-linux-any/asm-generic/statfs.h | 0 .../include/any-linux-any/asm-generic/swab.h | 0 .../any-linux-any/asm-generic/termbits.h | 0 .../any-linux-any/asm-generic/termios.h | 0 .../include/any-linux-any/asm-generic/types.h | 0 .../any-linux-any/asm-generic/ucontext.h | 0 .../any-linux-any/asm-generic/unistd.h | 0 .../libc}/include/any-linux-any/asm/a.out.h | 0 .../libc}/include/any-linux-any/asm/auxvec.h | 0 .../include/any-linux-any/asm/bitfield.h | 0 .../include/any-linux-any/asm/bitsperlong.h | 0 .../libc}/include/any-linux-any/asm/boot.h | 0 .../include/any-linux-any/asm/bootparam.h | 0 .../libc}/include/any-linux-any/asm/bootx.h | 0 .../any-linux-any/asm/bpf_perf_event.h | 0 .../libc}/include/any-linux-any/asm/break.h | 0 .../include/any-linux-any/asm/byteorder.h | 0 .../include/any-linux-any/asm/cachectl.h | 0 .../include/any-linux-any/asm/cputable.h | 0 .../include/any-linux-any/asm/debugreg.h | 0 .../libc}/include/any-linux-any/asm/e820.h | 0 .../libc}/include/any-linux-any/asm/eeh.h | 0 .../libc}/include/any-linux-any/asm/elf.h | 0 .../include/any-linux-any/asm/epapr_hcalls.h | 0 .../libc}/include/any-linux-any/asm/errno.h | 0 .../libc}/include/any-linux-any/asm/fcntl.h | 0 .../include/any-linux-any/asm/hw_breakpoint.h | 0 .../libc}/include/any-linux-any/asm/hwcap.h | 0 .../libc}/include/any-linux-any/asm/hwcap2.h | 0 .../libc}/include/any-linux-any/asm/inst.h | 0 .../libc}/include/any-linux-any/asm/ioctl.h | 0 .../libc}/include/any-linux-any/asm/ioctls.h | 0 .../libc}/include/any-linux-any/asm/ipcbuf.h | 0 .../libc}/include/any-linux-any/asm/ist.h | 0 .../libc}/include/any-linux-any/asm/kvm.h | 0 .../include/any-linux-any/asm/kvm_para.h | 0 .../include/any-linux-any/asm/kvm_perf.h | 0 .../libc}/include/any-linux-any/asm/ldt.h | 0 .../libc}/include/any-linux-any/asm/mce.h | 0 .../libc}/include/any-linux-any/asm/mman.h | 0 .../libc}/include/any-linux-any/asm/msgbuf.h | 0 .../libc}/include/any-linux-any/asm/msr.h | 0 .../libc}/include/any-linux-any/asm/mtrr.h | 0 .../libc}/include/any-linux-any/asm/nvram.h | 0 .../include/any-linux-any/asm/opal-prd.h | 0 .../libc}/include/any-linux-any/asm/param.h | 0 .../include/any-linux-any/asm/perf_event.h | 0 .../include/any-linux-any/asm/perf_regs.h | 0 .../libc}/include/any-linux-any/asm/poll.h | 0 .../include/any-linux-any/asm/posix_types.h | 0 .../any-linux-any/asm/posix_types_32.h | 0 .../any-linux-any/asm/posix_types_64.h | 0 .../any-linux-any/asm/posix_types_x32.h | 0 .../libc}/include/any-linux-any/asm/prctl.h | 0 .../any-linux-any/asm/processor-flags.h | 0 .../libc}/include/any-linux-any/asm/ps3fb.h | 0 .../include/any-linux-any/asm/ptrace-abi.h | 0 .../libc}/include/any-linux-any/asm/ptrace.h | 0 .../libc}/include/any-linux-any/asm/reg.h | 0 .../include/any-linux-any/asm/resource.h | 0 .../libc}/include/any-linux-any/asm/sembuf.h | 0 .../libc}/include/any-linux-any/asm/setup.h | 0 .../libc}/include/any-linux-any/asm/sgidefs.h | 0 .../libc}/include/any-linux-any/asm/shmbuf.h | 0 .../include/any-linux-any/asm/sigcontext.h | 0 .../include/any-linux-any/asm/sigcontext32.h | 0 .../libc}/include/any-linux-any/asm/siginfo.h | 0 .../libc}/include/any-linux-any/asm/signal.h | 0 .../libc}/include/any-linux-any/asm/socket.h | 0 .../libc}/include/any-linux-any/asm/sockios.h | 0 .../include/any-linux-any/asm/spu_info.h | 0 .../libc}/include/any-linux-any/asm/stat.h | 0 .../libc}/include/any-linux-any/asm/statfs.h | 0 .../libc}/include/any-linux-any/asm/svm.h | 0 .../libc}/include/any-linux-any/asm/swab.h | 0 .../include/any-linux-any/asm/syscalls.h | 0 .../libc}/include/any-linux-any/asm/sysmips.h | 0 .../include/any-linux-any/asm/termbits.h | 0 .../libc}/include/any-linux-any/asm/termios.h | 0 .../libc}/include/any-linux-any/asm/tm.h | 0 .../libc}/include/any-linux-any/asm/types.h | 0 .../include/any-linux-any/asm/ucontext.h | 0 .../include/any-linux-any/asm/unistd-common.h | 0 .../include/any-linux-any/asm/unistd-eabi.h | 0 .../include/any-linux-any/asm/unistd-oabi.h | 0 .../libc}/include/any-linux-any/asm/unistd.h | 0 .../include/any-linux-any/asm/unistd_32.h | 0 .../include/any-linux-any/asm/unistd_64.h | 0 .../include/any-linux-any/asm/unistd_x32.h | 0 .../libc}/include/any-linux-any/asm/vm86.h | 0 .../libc}/include/any-linux-any/asm/vmx.h | 0 .../include/any-linux-any/asm/vsyscall.h | 0 .../libc}/include/any-linux-any/linux/a.out.h | 0 .../libc}/include/any-linux-any/linux/acct.h | 0 .../libc}/include/any-linux-any/linux/adb.h | 0 .../include/any-linux-any/linux/adfs_fs.h | 0 .../any-linux-any/linux/affs_hardblocks.h | 0 .../include/any-linux-any/linux/agpgart.h | 0 .../include/any-linux-any/linux/aio_abi.h | 0 .../include/any-linux-any/linux/am437x-vpfe.h | 0 .../any-linux-any/linux/android/binder.h | 0 .../include/any-linux-any/linux/apm_bios.h | 0 .../libc}/include/any-linux-any/linux/arcfb.h | 0 .../include/any-linux-any/linux/arm_sdei.h | 0 .../any-linux-any/linux/aspeed-lpc-ctrl.h | 0 .../libc}/include/any-linux-any/linux/atalk.h | 0 .../libc}/include/any-linux-any/linux/atm.h | 0 .../include/any-linux-any/linux/atm_eni.h | 0 .../include/any-linux-any/linux/atm_he.h | 0 .../any-linux-any/linux/atm_idt77105.h | 0 .../include/any-linux-any/linux/atm_nicstar.h | 0 .../include/any-linux-any/linux/atm_tcp.h | 0 .../include/any-linux-any/linux/atm_zatm.h | 0 .../include/any-linux-any/linux/atmapi.h | 0 .../include/any-linux-any/linux/atmarp.h | 0 .../include/any-linux-any/linux/atmbr2684.h | 0 .../include/any-linux-any/linux/atmclip.h | 0 .../include/any-linux-any/linux/atmdev.h | 0 .../include/any-linux-any/linux/atmioc.h | 0 .../include/any-linux-any/linux/atmlec.h | 0 .../include/any-linux-any/linux/atmmpc.h | 0 .../include/any-linux-any/linux/atmppp.h | 0 .../include/any-linux-any/linux/atmsap.h | 0 .../include/any-linux-any/linux/atmsvc.h | 0 .../libc}/include/any-linux-any/linux/audit.h | 0 .../any-linux-any/linux/auto_dev-ioctl.h | 0 .../include/any-linux-any/linux/auto_fs.h | 0 .../include/any-linux-any/linux/auto_fs4.h | 0 .../include/any-linux-any/linux/auxvec.h | 0 .../libc}/include/any-linux-any/linux/ax25.h | 0 .../libc}/include/any-linux-any/linux/b1lli.h | 0 .../any-linux-any/linux/batadv_packet.h | 0 .../include/any-linux-any/linux/batman_adv.h | 0 .../include/any-linux-any/linux/baycom.h | 0 .../include/any-linux-any/linux/bcache.h | 0 .../any-linux-any/linux/bcm933xx_hcs.h | 0 .../include/any-linux-any/linux/bfs_fs.h | 0 .../include/any-linux-any/linux/binfmts.h | 0 .../libc}/include/any-linux-any/linux/blkpg.h | 0 .../any-linux-any/linux/blktrace_api.h | 0 .../include/any-linux-any/linux/blkzoned.h | 0 .../libc}/include/any-linux-any/linux/bpf.h | 0 .../include/any-linux-any/linux/bpf_common.h | 0 .../any-linux-any/linux/bpf_perf_event.h | 0 .../include/any-linux-any/linux/bpfilter.h | 0 .../include/any-linux-any/linux/bpqether.h | 0 .../libc}/include/any-linux-any/linux/bsg.h | 0 .../include/any-linux-any/linux/bt-bmc.h | 0 .../libc}/include/any-linux-any/linux/btf.h | 0 .../libc}/include/any-linux-any/linux/btrfs.h | 0 .../include/any-linux-any/linux/btrfs_tree.h | 0 .../linux/byteorder/big_endian.h | 0 .../linux/byteorder/little_endian.h | 0 .../any-linux-any/linux/caif/caif_socket.h | 0 .../any-linux-any/linux/caif/if_caif.h | 0 .../libc}/include/any-linux-any/linux/can.h | 0 .../include/any-linux-any/linux/can/bcm.h | 0 .../include/any-linux-any/linux/can/error.h | 0 .../include/any-linux-any/linux/can/gw.h | 0 .../include/any-linux-any/linux/can/netlink.h | 0 .../include/any-linux-any/linux/can/raw.h | 0 .../include/any-linux-any/linux/can/vxcan.h | 0 .../include/any-linux-any/linux/capability.h | 0 .../libc}/include/any-linux-any/linux/capi.h | 0 .../include/any-linux-any/linux/cciss_defs.h | 0 .../include/any-linux-any/linux/cciss_ioctl.h | 0 .../libc}/include/any-linux-any/linux/cdrom.h | 0 .../include/any-linux-any/linux/cec-funcs.h | 0 .../libc}/include/any-linux-any/linux/cec.h | 0 .../include/any-linux-any/linux/cgroupstats.h | 0 .../libc}/include/any-linux-any/linux/chio.h | 0 .../any-linux-any/linux/cifs/cifs_mount.h | 0 .../include/any-linux-any/linux/cm4000_cs.h | 0 .../include/any-linux-any/linux/cn_proc.h | 0 .../libc}/include/any-linux-any/linux/coda.h | 0 .../include/any-linux-any/linux/coda_psdev.h | 0 .../libc}/include/any-linux-any/linux/coff.h | 0 .../include/any-linux-any/linux/connector.h | 0 .../libc}/include/any-linux-any/linux/const.h | 0 .../any-linux-any/linux/coresight-stm.h | 0 .../include/any-linux-any/linux/cramfs_fs.h | 0 .../include/any-linux-any/linux/cryptouser.h | 0 .../libc}/include/any-linux-any/linux/cuda.h | 0 .../include/any-linux-any/linux/cyclades.h | 0 .../include/any-linux-any/linux/cycx_cfm.h | 0 .../libc}/include/any-linux-any/linux/dcbnl.h | 0 .../libc}/include/any-linux-any/linux/dccp.h | 0 .../include/any-linux-any/linux/devlink.h | 0 .../libc}/include/any-linux-any/linux/dlm.h | 0 .../include/any-linux-any/linux/dlm_device.h | 0 .../include/any-linux-any/linux/dlm_netlink.h | 0 .../include/any-linux-any/linux/dlm_plock.h | 0 .../any-linux-any/linux/dlmconstants.h | 0 .../include/any-linux-any/linux/dm-ioctl.h | 0 .../any-linux-any/linux/dm-log-userspace.h | 0 .../include/any-linux-any/linux/dma-buf.h | 0 .../libc}/include/any-linux-any/linux/dn.h | 0 .../include/any-linux-any/linux/dqblk_xfs.h | 0 .../include/any-linux-any/linux/dvb/audio.h | 0 .../include/any-linux-any/linux/dvb/ca.h | 0 .../include/any-linux-any/linux/dvb/dmx.h | 0 .../any-linux-any/linux/dvb/frontend.h | 0 .../include/any-linux-any/linux/dvb/net.h | 0 .../include/any-linux-any/linux/dvb/osd.h | 0 .../include/any-linux-any/linux/dvb/version.h | 0 .../include/any-linux-any/linux/dvb/video.h | 0 .../libc}/include/any-linux-any/linux/edd.h | 0 .../include/any-linux-any/linux/efs_fs_sb.h | 0 .../include/any-linux-any/linux/elf-em.h | 0 .../include/any-linux-any/linux/elf-fdpic.h | 0 .../libc}/include/any-linux-any/linux/elf.h | 0 .../include/any-linux-any/linux/elfcore.h | 0 .../libc}/include/any-linux-any/linux/errno.h | 0 .../include/any-linux-any/linux/errqueue.h | 0 .../include/any-linux-any/linux/erspan.h | 0 .../include/any-linux-any/linux/ethtool.h | 0 .../include/any-linux-any/linux/eventpoll.h | 0 .../include/any-linux-any/linux/fadvise.h | 0 .../include/any-linux-any/linux/falloc.h | 0 .../include/any-linux-any/linux/fanotify.h | 0 .../libc}/include/any-linux-any/linux/fb.h | 0 .../libc}/include/any-linux-any/linux/fcntl.h | 0 .../libc}/include/any-linux-any/linux/fd.h | 0 .../libc}/include/any-linux-any/linux/fdreg.h | 0 .../include/any-linux-any/linux/fib_rules.h | 0 .../include/any-linux-any/linux/fiemap.h | 0 .../include/any-linux-any/linux/filter.h | 0 .../any-linux-any/linux/firewire-cdev.h | 0 .../any-linux-any/linux/firewire-constants.h | 0 .../libc}/include/any-linux-any/linux/flat.h | 0 .../libc}/include/any-linux-any/linux/fou.h | 0 .../include/any-linux-any/linux/fpga-dfl.h | 0 .../libc}/include/any-linux-any/linux/fs.h | 0 .../libc}/include/any-linux-any/linux/fsi.h | 0 .../any-linux-any/linux/fsl_hypervisor.h | 0 .../libc}/include/any-linux-any/linux/fsmap.h | 0 .../libc}/include/any-linux-any/linux/fuse.h | 0 .../libc}/include/any-linux-any/linux/futex.h | 0 .../include/any-linux-any/linux/gameport.h | 0 .../include/any-linux-any/linux/gen_stats.h | 0 .../include/any-linux-any/linux/genetlink.h | 0 .../any-linux-any/linux/genwqe/genwqe_card.h | 0 .../include/any-linux-any/linux/gfs2_ondisk.h | 0 .../include/any-linux-any/linux/gigaset_dev.h | 0 .../libc}/include/any-linux-any/linux/gpio.h | 0 .../include/any-linux-any/linux/gsmmux.h | 0 .../libc}/include/any-linux-any/linux/gtp.h | 0 .../include/any-linux-any/linux/hash_info.h | 0 .../libc}/include/any-linux-any/linux/hdlc.h | 0 .../include/any-linux-any/linux/hdlc/ioctl.h | 0 .../include/any-linux-any/linux/hdlcdrv.h | 0 .../libc}/include/any-linux-any/linux/hdreg.h | 0 .../libc}/include/any-linux-any/linux/hid.h | 0 .../include/any-linux-any/linux/hiddev.h | 0 .../include/any-linux-any/linux/hidraw.h | 0 .../libc}/include/any-linux-any/linux/hpet.h | 0 .../any-linux-any/linux/hsi/cs-protocol.h | 0 .../any-linux-any/linux/hsi/hsi_char.h | 0 .../include/any-linux-any/linux/hsr_netlink.h | 0 .../any-linux-any/linux/hw_breakpoint.h | 0 .../include/any-linux-any/linux/hyperv.h | 0 .../include/any-linux-any/linux/hysdn_if.h | 0 .../include/any-linux-any/linux/i2c-dev.h | 0 .../libc}/include/any-linux-any/linux/i2c.h | 0 .../include/any-linux-any/linux/i2o-dev.h | 0 .../libc}/include/any-linux-any/linux/i8k.h | 0 .../libc}/include/any-linux-any/linux/icmp.h | 0 .../include/any-linux-any/linux/icmpv6.h | 0 .../libc}/include/any-linux-any/linux/if.h | 0 .../include/any-linux-any/linux/if_addr.h | 0 .../any-linux-any/linux/if_addrlabel.h | 0 .../include/any-linux-any/linux/if_alg.h | 0 .../include/any-linux-any/linux/if_arcnet.h | 0 .../include/any-linux-any/linux/if_arp.h | 0 .../include/any-linux-any/linux/if_bonding.h | 0 .../include/any-linux-any/linux/if_bridge.h | 0 .../any-linux-any/linux/if_cablemodem.h | 0 .../include/any-linux-any/linux/if_eql.h | 0 .../include/any-linux-any/linux/if_ether.h | 0 .../libc}/include/any-linux-any/linux/if_fc.h | 0 .../include/any-linux-any/linux/if_fddi.h | 0 .../include/any-linux-any/linux/if_frad.h | 0 .../include/any-linux-any/linux/if_hippi.h | 0 .../any-linux-any/linux/if_infiniband.h | 0 .../include/any-linux-any/linux/if_link.h | 0 .../include/any-linux-any/linux/if_ltalk.h | 0 .../include/any-linux-any/linux/if_macsec.h | 0 .../include/any-linux-any/linux/if_packet.h | 0 .../include/any-linux-any/linux/if_phonet.h | 0 .../include/any-linux-any/linux/if_plip.h | 0 .../include/any-linux-any/linux/if_ppp.h | 0 .../include/any-linux-any/linux/if_pppol2tp.h | 0 .../include/any-linux-any/linux/if_pppox.h | 0 .../include/any-linux-any/linux/if_slip.h | 0 .../include/any-linux-any/linux/if_team.h | 0 .../include/any-linux-any/linux/if_tun.h | 0 .../include/any-linux-any/linux/if_tunnel.h | 0 .../include/any-linux-any/linux/if_vlan.h | 0 .../include/any-linux-any/linux/if_x25.h | 0 .../include/any-linux-any/linux/if_xdp.h | 0 .../libc}/include/any-linux-any/linux/ife.h | 0 .../libc}/include/any-linux-any/linux/igmp.h | 0 .../include/any-linux-any/linux/iio/events.h | 0 .../include/any-linux-any/linux/iio/types.h | 0 .../libc}/include/any-linux-any/linux/ila.h | 0 .../libc}/include/any-linux-any/linux/in.h | 0 .../libc}/include/any-linux-any/linux/in6.h | 0 .../include/any-linux-any/linux/in_route.h | 0 .../include/any-linux-any/linux/inet_diag.h | 0 .../include/any-linux-any/linux/inotify.h | 0 .../any-linux-any/linux/input-event-codes.h | 0 .../libc}/include/any-linux-any/linux/input.h | 0 .../libc}/include/any-linux-any/linux/ioctl.h | 0 .../libc}/include/any-linux-any/linux/ip.h | 0 .../include/any-linux-any/linux/ip6_tunnel.h | 0 .../libc}/include/any-linux-any/linux/ip_vs.h | 0 .../libc}/include/any-linux-any/linux/ipc.h | 0 .../libc}/include/any-linux-any/linux/ipmi.h | 0 .../include/any-linux-any/linux/ipmi_bmc.h | 0 .../any-linux-any/linux/ipmi_msgdefs.h | 0 .../libc}/include/any-linux-any/linux/ipsec.h | 0 .../libc}/include/any-linux-any/linux/ipv6.h | 0 .../include/any-linux-any/linux/ipv6_route.h | 0 .../libc}/include/any-linux-any/linux/ipx.h | 0 .../libc}/include/any-linux-any/linux/irqnr.h | 0 .../libc}/include/any-linux-any/linux/isdn.h | 0 .../any-linux-any/linux/isdn/capicmd.h | 0 .../any-linux-any/linux/isdn_divertif.h | 0 .../include/any-linux-any/linux/isdn_ppp.h | 0 .../include/any-linux-any/linux/isdnif.h | 0 .../include/any-linux-any/linux/iso_fs.h | 0 .../libc}/include/any-linux-any/linux/ivtv.h | 0 .../include/any-linux-any/linux/ivtvfb.h | 0 .../libc}/include/any-linux-any/linux/jffs2.h | 0 .../include/any-linux-any/linux/joystick.h | 0 .../libc}/include/any-linux-any/linux/kcm.h | 0 .../libc}/include/any-linux-any/linux/kcmp.h | 0 .../libc}/include/any-linux-any/linux/kcov.h | 0 .../libc}/include/any-linux-any/linux/kd.h | 0 .../include/any-linux-any/linux/kdev_t.h | 0 .../any-linux-any/linux/kernel-page-flags.h | 0 .../include/any-linux-any/linux/kernel.h | 0 .../include/any-linux-any/linux/kernelcapi.h | 0 .../libc}/include/any-linux-any/linux/kexec.h | 0 .../include/any-linux-any/linux/keyboard.h | 0 .../include/any-linux-any/linux/keyctl.h | 0 .../include/any-linux-any/linux/kfd_ioctl.h | 0 .../libc}/include/any-linux-any/linux/kvm.h | 0 .../include/any-linux-any/linux/kvm_para.h | 0 .../libc}/include/any-linux-any/linux/l2tp.h | 0 .../include/any-linux-any/linux/libc-compat.h | 0 .../include/any-linux-any/linux/lightnvm.h | 0 .../include/any-linux-any/linux/limits.h | 0 .../libc}/include/any-linux-any/linux/lirc.h | 0 .../libc}/include/any-linux-any/linux/llc.h | 0 .../libc}/include/any-linux-any/linux/loop.h | 0 .../libc}/include/any-linux-any/linux/lp.h | 0 .../include/any-linux-any/linux/lwtunnel.h | 0 .../libc}/include/any-linux-any/linux/magic.h | 0 .../libc}/include/any-linux-any/linux/major.h | 0 .../any-linux-any/linux/map_to_7segment.h | 0 .../include/any-linux-any/linux/matroxfb.h | 0 .../include/any-linux-any/linux/max2175.h | 0 .../libc}/include/any-linux-any/linux/mdio.h | 0 .../any-linux-any/linux/media-bus-format.h | 0 .../libc}/include/any-linux-any/linux/media.h | 0 .../libc}/include/any-linux-any/linux/mei.h | 0 .../include/any-linux-any/linux/membarrier.h | 0 .../libc}/include/any-linux-any/linux/memfd.h | 0 .../include/any-linux-any/linux/mempolicy.h | 0 .../libc}/include/any-linux-any/linux/meye.h | 0 .../include/any-linux-any/linux/mic_common.h | 0 .../include/any-linux-any/linux/mic_ioctl.h | 0 .../libc}/include/any-linux-any/linux/mii.h | 0 .../include/any-linux-any/linux/minix_fs.h | 0 .../libc}/include/any-linux-any/linux/mman.h | 0 .../include/any-linux-any/linux/mmc/ioctl.h | 0 .../include/any-linux-any/linux/mmtimer.h | 0 .../include/any-linux-any/linux/module.h | 0 .../libc}/include/any-linux-any/linux/mpls.h | 0 .../any-linux-any/linux/mpls_iptunnel.h | 0 .../include/any-linux-any/linux/mqueue.h | 0 .../include/any-linux-any/linux/mroute.h | 0 .../include/any-linux-any/linux/mroute6.h | 0 .../include/any-linux-any/linux/msdos_fs.h | 0 .../libc}/include/any-linux-any/linux/msg.h | 0 .../libc}/include/any-linux-any/linux/mtio.h | 0 .../include/any-linux-any/linux/n_r3964.h | 0 .../include/any-linux-any/linux/nbd-netlink.h | 0 .../libc}/include/any-linux-any/linux/nbd.h | 0 .../libc}/include/any-linux-any/linux/ncsi.h | 0 .../libc}/include/any-linux-any/linux/ndctl.h | 0 .../include/any-linux-any/linux/neighbour.h | 0 .../libc}/include/any-linux-any/linux/net.h | 0 .../include/any-linux-any/linux/net_dropmon.h | 0 .../any-linux-any/linux/net_namespace.h | 0 .../include/any-linux-any/linux/net_tstamp.h | 0 .../include/any-linux-any/linux/netconf.h | 0 .../include/any-linux-any/linux/netdevice.h | 0 .../include/any-linux-any/linux/netfilter.h | 0 .../linux/netfilter/ipset/ip_set.h | 0 .../linux/netfilter/ipset/ip_set_bitmap.h | 0 .../linux/netfilter/ipset/ip_set_hash.h | 0 .../linux/netfilter/ipset/ip_set_list.h | 0 .../linux/netfilter/nf_conntrack_common.h | 0 .../linux/netfilter/nf_conntrack_ftp.h | 0 .../linux/netfilter/nf_conntrack_sctp.h | 0 .../linux/netfilter/nf_conntrack_tcp.h | 0 .../netfilter/nf_conntrack_tuple_common.h | 0 .../any-linux-any/linux/netfilter/nf_log.h | 0 .../any-linux-any/linux/netfilter/nf_nat.h | 0 .../any-linux-any/linux/netfilter/nf_tables.h | 0 .../linux/netfilter/nf_tables_compat.h | 0 .../any-linux-any/linux/netfilter/nfnetlink.h | 0 .../linux/netfilter/nfnetlink_acct.h | 0 .../linux/netfilter/nfnetlink_compat.h | 0 .../linux/netfilter/nfnetlink_conntrack.h | 0 .../linux/netfilter/nfnetlink_cthelper.h | 0 .../linux/netfilter/nfnetlink_cttimeout.h | 0 .../linux/netfilter/nfnetlink_log.h | 0 .../linux/netfilter/nfnetlink_osf.h | 0 .../linux/netfilter/nfnetlink_queue.h | 0 .../any-linux-any/linux/netfilter/x_tables.h | 0 .../any-linux-any/linux/netfilter/xt_AUDIT.h | 0 .../linux/netfilter/xt_CHECKSUM.h | 0 .../linux/netfilter/xt_CLASSIFY.h | 0 .../linux/netfilter/xt_CONNSECMARK.h | 0 .../any-linux-any/linux/netfilter/xt_CT.h | 0 .../any-linux-any/linux/netfilter/xt_HMARK.h | 0 .../linux/netfilter/xt_IDLETIMER.h | 0 .../any-linux-any/linux/netfilter/xt_LED.h | 0 .../any-linux-any/linux/netfilter/xt_LOG.h | 0 .../any-linux-any/linux/netfilter/xt_NFLOG.h | 0 .../linux/netfilter/xt_NFQUEUE.h | 0 .../linux/netfilter/xt_SECMARK.h | 0 .../linux/netfilter/xt_SYNPROXY.h | 0 .../linux/netfilter/xt_TCPOPTSTRIP.h | 0 .../any-linux-any/linux/netfilter/xt_TEE.h | 0 .../any-linux-any/linux/netfilter/xt_TPROXY.h | 0 .../linux/netfilter/xt_addrtype.h | 0 .../any-linux-any/linux/netfilter/xt_bpf.h | 0 .../any-linux-any/linux/netfilter/xt_cgroup.h | 0 .../linux/netfilter/xt_cluster.h | 0 .../linux/netfilter/xt_comment.h | 0 .../linux/netfilter/xt_connbytes.h | 0 .../linux/netfilter/xt_connlabel.h | 0 .../linux/netfilter/xt_connlimit.h | 0 .../linux/netfilter/xt_connmark.h | 0 .../linux/netfilter/xt_conntrack.h | 0 .../any-linux-any/linux/netfilter/xt_cpu.h | 0 .../any-linux-any/linux/netfilter/xt_dccp.h | 0 .../linux/netfilter/xt_devgroup.h | 0 .../any-linux-any/linux/netfilter/xt_dscp.h | 0 .../any-linux-any/linux/netfilter/xt_ecn.h | 0 .../any-linux-any/linux/netfilter/xt_esp.h | 0 .../linux/netfilter/xt_hashlimit.h | 0 .../any-linux-any/linux/netfilter/xt_helper.h | 0 .../any-linux-any/linux/netfilter/xt_ipcomp.h | 0 .../linux/netfilter/xt_iprange.h | 0 .../any-linux-any/linux/netfilter/xt_ipvs.h | 0 .../any-linux-any/linux/netfilter/xt_l2tp.h | 0 .../any-linux-any/linux/netfilter/xt_length.h | 0 .../any-linux-any/linux/netfilter/xt_limit.h | 0 .../any-linux-any/linux/netfilter/xt_mac.h | 0 .../any-linux-any/linux/netfilter/xt_mark.h | 0 .../linux/netfilter/xt_multiport.h | 0 .../any-linux-any/linux/netfilter/xt_nfacct.h | 0 .../any-linux-any/linux/netfilter/xt_osf.h | 0 .../any-linux-any/linux/netfilter/xt_owner.h | 0 .../linux/netfilter/xt_physdev.h | 0 .../linux/netfilter/xt_pkttype.h | 0 .../any-linux-any/linux/netfilter/xt_policy.h | 0 .../any-linux-any/linux/netfilter/xt_quota.h | 0 .../linux/netfilter/xt_rateest.h | 0 .../any-linux-any/linux/netfilter/xt_realm.h | 0 .../any-linux-any/linux/netfilter/xt_recent.h | 0 .../linux/netfilter/xt_rpfilter.h | 0 .../any-linux-any/linux/netfilter/xt_sctp.h | 0 .../any-linux-any/linux/netfilter/xt_set.h | 0 .../any-linux-any/linux/netfilter/xt_socket.h | 0 .../any-linux-any/linux/netfilter/xt_state.h | 0 .../linux/netfilter/xt_statistic.h | 0 .../any-linux-any/linux/netfilter/xt_string.h | 0 .../any-linux-any/linux/netfilter/xt_tcpmss.h | 0 .../any-linux-any/linux/netfilter/xt_tcpudp.h | 0 .../any-linux-any/linux/netfilter/xt_time.h | 0 .../any-linux-any/linux/netfilter/xt_u32.h | 0 .../any-linux-any/linux/netfilter_arp.h | 0 .../linux/netfilter_arp/arp_tables.h | 0 .../linux/netfilter_arp/arpt_mangle.h | 0 .../any-linux-any/linux/netfilter_bridge.h | 0 .../linux/netfilter_bridge/ebt_802_3.h | 0 .../linux/netfilter_bridge/ebt_among.h | 0 .../linux/netfilter_bridge/ebt_arp.h | 0 .../linux/netfilter_bridge/ebt_arpreply.h | 0 .../linux/netfilter_bridge/ebt_ip.h | 0 .../linux/netfilter_bridge/ebt_ip6.h | 0 .../linux/netfilter_bridge/ebt_limit.h | 0 .../linux/netfilter_bridge/ebt_log.h | 0 .../linux/netfilter_bridge/ebt_mark_m.h | 0 .../linux/netfilter_bridge/ebt_mark_t.h | 0 .../linux/netfilter_bridge/ebt_nat.h | 0 .../linux/netfilter_bridge/ebt_nflog.h | 0 .../linux/netfilter_bridge/ebt_pkttype.h | 0 .../linux/netfilter_bridge/ebt_redirect.h | 0 .../linux/netfilter_bridge/ebt_stp.h | 0 .../linux/netfilter_bridge/ebt_vlan.h | 0 .../linux/netfilter_bridge/ebtables.h | 0 .../any-linux-any/linux/netfilter_decnet.h | 0 .../any-linux-any/linux/netfilter_ipv4.h | 0 .../linux/netfilter_ipv4/ip_tables.h | 0 .../linux/netfilter_ipv4/ipt_CLUSTERIP.h | 0 .../linux/netfilter_ipv4/ipt_LOG.h | 0 .../linux/netfilter_ipv4/ipt_REJECT.h | 0 .../linux/netfilter_ipv4/ipt_ah.h | 0 .../linux/netfilter_ipv4/ipt_ecn.h | 0 .../linux/netfilter_ipv4/ipt_ttl.h | 0 .../any-linux-any/linux/netfilter_ipv6.h | 0 .../linux/netfilter_ipv6/ip6_tables.h | 0 .../linux/netfilter_ipv6/ip6t_LOG.h | 0 .../linux/netfilter_ipv6/ip6t_NPT.h | 0 .../linux/netfilter_ipv6/ip6t_REJECT.h | 0 .../linux/netfilter_ipv6/ip6t_ah.h | 0 .../linux/netfilter_ipv6/ip6t_frag.h | 0 .../linux/netfilter_ipv6/ip6t_hl.h | 0 .../linux/netfilter_ipv6/ip6t_ipv6header.h | 0 .../linux/netfilter_ipv6/ip6t_mh.h | 0 .../linux/netfilter_ipv6/ip6t_opts.h | 0 .../linux/netfilter_ipv6/ip6t_rt.h | 0 .../linux/netfilter_ipv6/ip6t_srh.h | 0 .../include/any-linux-any/linux/netlink.h | 0 .../any-linux-any/linux/netlink_diag.h | 0 .../include/any-linux-any/linux/netrom.h | 0 .../libc}/include/any-linux-any/linux/nfc.h | 0 .../libc}/include/any-linux-any/linux/nfs.h | 0 .../libc}/include/any-linux-any/linux/nfs2.h | 0 .../libc}/include/any-linux-any/linux/nfs3.h | 0 .../libc}/include/any-linux-any/linux/nfs4.h | 0 .../include/any-linux-any/linux/nfs4_mount.h | 0 .../include/any-linux-any/linux/nfs_fs.h | 0 .../include/any-linux-any/linux/nfs_idmap.h | 0 .../include/any-linux-any/linux/nfs_mount.h | 0 .../include/any-linux-any/linux/nfsacl.h | 0 .../include/any-linux-any/linux/nfsd/cld.h | 0 .../include/any-linux-any/linux/nfsd/debug.h | 0 .../include/any-linux-any/linux/nfsd/export.h | 0 .../include/any-linux-any/linux/nfsd/nfsfh.h | 0 .../include/any-linux-any/linux/nfsd/stats.h | 0 .../include/any-linux-any/linux/nilfs2_api.h | 0 .../any-linux-any/linux/nilfs2_ondisk.h | 0 .../include/any-linux-any/linux/nl80211.h | 0 .../libc}/include/any-linux-any/linux/nsfs.h | 0 .../libc}/include/any-linux-any/linux/nubus.h | 0 .../include/any-linux-any/linux/nvme_ioctl.h | 0 .../libc}/include/any-linux-any/linux/nvram.h | 0 .../include/any-linux-any/linux/omap3isp.h | 0 .../include/any-linux-any/linux/omapfb.h | 0 .../libc}/include/any-linux-any/linux/oom.h | 0 .../include/any-linux-any/linux/openvswitch.h | 0 .../include/any-linux-any/linux/packet_diag.h | 0 .../libc}/include/any-linux-any/linux/param.h | 0 .../include/any-linux-any/linux/parport.h | 0 .../include/any-linux-any/linux/patchkey.h | 0 .../libc}/include/any-linux-any/linux/pci.h | 0 .../include/any-linux-any/linux/pci_regs.h | 0 .../include/any-linux-any/linux/pcitest.h | 0 .../include/any-linux-any/linux/perf_event.h | 0 .../include/any-linux-any/linux/personality.h | 0 .../include/any-linux-any/linux/pfkeyv2.h | 0 .../libc}/include/any-linux-any/linux/pg.h | 0 .../include/any-linux-any/linux/phantom.h | 0 .../include/any-linux-any/linux/phonet.h | 0 .../include/any-linux-any/linux/pkt_cls.h | 0 .../include/any-linux-any/linux/pkt_sched.h | 0 .../include/any-linux-any/linux/pktcdvd.h | 0 .../libc}/include/any-linux-any/linux/pmu.h | 0 .../libc}/include/any-linux-any/linux/poll.h | 0 .../include/any-linux-any/linux/posix_acl.h | 0 .../any-linux-any/linux/posix_acl_xattr.h | 0 .../include/any-linux-any/linux/posix_types.h | 0 .../libc}/include/any-linux-any/linux/ppdev.h | 0 .../include/any-linux-any/linux/ppp-comp.h | 0 .../include/any-linux-any/linux/ppp-ioctl.h | 0 .../include/any-linux-any/linux/ppp_defs.h | 0 .../libc}/include/any-linux-any/linux/pps.h | 0 .../libc}/include/any-linux-any/linux/pr.h | 0 .../libc}/include/any-linux-any/linux/prctl.h | 0 .../include/any-linux-any/linux/psample.h | 0 .../libc}/include/any-linux-any/linux/psci.h | 0 .../include/any-linux-any/linux/psp-sev.h | 0 .../include/any-linux-any/linux/ptp_clock.h | 0 .../include/any-linux-any/linux/ptrace.h | 0 .../include/any-linux-any/linux/qemu_fw_cfg.h | 0 .../include/any-linux-any/linux/qnx4_fs.h | 0 .../include/any-linux-any/linux/qnxtypes.h | 0 .../libc}/include/any-linux-any/linux/qrtr.h | 0 .../libc}/include/any-linux-any/linux/quota.h | 0 .../include/any-linux-any/linux/radeonfb.h | 0 .../include/any-linux-any/linux/raid/md_p.h | 0 .../include/any-linux-any/linux/raid/md_u.h | 0 .../include/any-linux-any/linux/random.h | 0 .../libc}/include/any-linux-any/linux/raw.h | 0 .../libc}/include/any-linux-any/linux/rds.h | 0 .../include/any-linux-any/linux/reboot.h | 0 .../include/any-linux-any/linux/reiserfs_fs.h | 0 .../any-linux-any/linux/reiserfs_xattr.h | 0 .../include/any-linux-any/linux/resource.h | 0 .../include/any-linux-any/linux/rfkill.h | 0 .../include/any-linux-any/linux/rio_cm_cdev.h | 0 .../any-linux-any/linux/rio_mport_cdev.h | 0 .../include/any-linux-any/linux/romfs_fs.h | 0 .../libc}/include/any-linux-any/linux/rose.h | 0 .../libc}/include/any-linux-any/linux/route.h | 0 .../libc}/include/any-linux-any/linux/rpmsg.h | 0 .../libc}/include/any-linux-any/linux/rseq.h | 0 .../libc}/include/any-linux-any/linux/rtc.h | 0 .../include/any-linux-any/linux/rtnetlink.h | 0 .../libc}/include/any-linux-any/linux/rxrpc.h | 0 .../libc}/include/any-linux-any/linux/scc.h | 0 .../libc}/include/any-linux-any/linux/sched.h | 0 .../include/any-linux-any/linux/sched/types.h | 0 .../include/any-linux-any/linux/scif_ioctl.h | 0 .../include/any-linux-any/linux/screen_info.h | 0 .../libc}/include/any-linux-any/linux/sctp.h | 0 .../libc}/include/any-linux-any/linux/sdla.h | 0 .../include/any-linux-any/linux/seccomp.h | 0 .../include/any-linux-any/linux/securebits.h | 0 .../include/any-linux-any/linux/sed-opal.h | 0 .../libc}/include/any-linux-any/linux/seg6.h | 0 .../include/any-linux-any/linux/seg6_genl.h | 0 .../include/any-linux-any/linux/seg6_hmac.h | 0 .../any-linux-any/linux/seg6_iptunnel.h | 0 .../include/any-linux-any/linux/seg6_local.h | 0 .../any-linux-any/linux/selinux_netlink.h | 0 .../libc}/include/any-linux-any/linux/sem.h | 0 .../include/any-linux-any/linux/serial.h | 0 .../include/any-linux-any/linux/serial_core.h | 0 .../include/any-linux-any/linux/serial_reg.h | 0 .../libc}/include/any-linux-any/linux/serio.h | 0 .../libc}/include/any-linux-any/linux/shm.h | 0 .../include/any-linux-any/linux/signal.h | 0 .../include/any-linux-any/linux/signalfd.h | 0 .../libc}/include/any-linux-any/linux/smc.h | 0 .../include/any-linux-any/linux/smc_diag.h | 0 .../include/any-linux-any/linux/smiapp.h | 0 .../libc}/include/any-linux-any/linux/snmp.h | 0 .../include/any-linux-any/linux/sock_diag.h | 0 .../include/any-linux-any/linux/socket.h | 0 .../include/any-linux-any/linux/sockios.h | 0 .../libc}/include/any-linux-any/linux/sonet.h | 0 .../include/any-linux-any/linux/sonypi.h | 0 .../libc}/include/any-linux-any/linux/sound.h | 0 .../include/any-linux-any/linux/soundcard.h | 0 .../include/any-linux-any/linux/spi/spidev.h | 0 .../libc}/include/any-linux-any/linux/stat.h | 0 .../include/any-linux-any/linux/stddef.h | 0 .../libc}/include/any-linux-any/linux/stm.h | 0 .../include/any-linux-any/linux/string.h | 0 .../any-linux-any/linux/sunrpc/debug.h | 0 .../any-linux-any/linux/suspend_ioctls.h | 0 .../libc}/include/any-linux-any/linux/swab.h | 0 .../any-linux-any/linux/switchtec_ioctl.h | 0 .../include/any-linux-any/linux/sync_file.h | 0 .../include/any-linux-any/linux/synclink.h | 0 .../include/any-linux-any/linux/sysctl.h | 0 .../include/any-linux-any/linux/sysinfo.h | 0 .../any-linux-any/linux/target_core_user.h | 0 .../include/any-linux-any/linux/taskstats.h | 0 .../any-linux-any/linux/tc_act/tc_bpf.h | 0 .../any-linux-any/linux/tc_act/tc_connmark.h | 0 .../any-linux-any/linux/tc_act/tc_csum.h | 0 .../any-linux-any/linux/tc_act/tc_defact.h | 0 .../any-linux-any/linux/tc_act/tc_gact.h | 0 .../any-linux-any/linux/tc_act/tc_ife.h | 0 .../any-linux-any/linux/tc_act/tc_ipt.h | 0 .../any-linux-any/linux/tc_act/tc_mirred.h | 0 .../any-linux-any/linux/tc_act/tc_nat.h | 0 .../any-linux-any/linux/tc_act/tc_pedit.h | 0 .../any-linux-any/linux/tc_act/tc_sample.h | 0 .../any-linux-any/linux/tc_act/tc_skbedit.h | 0 .../any-linux-any/linux/tc_act/tc_skbmod.h | 0 .../linux/tc_act/tc_tunnel_key.h | 0 .../any-linux-any/linux/tc_act/tc_vlan.h | 0 .../any-linux-any/linux/tc_ematch/tc_em_cmp.h | 0 .../any-linux-any/linux/tc_ematch/tc_em_ipt.h | 0 .../linux/tc_ematch/tc_em_meta.h | 0 .../linux/tc_ematch/tc_em_nbyte.h | 0 .../linux/tc_ematch/tc_em_text.h | 0 .../libc}/include/any-linux-any/linux/tcp.h | 0 .../include/any-linux-any/linux/tcp_metrics.h | 0 .../libc}/include/any-linux-any/linux/tee.h | 0 .../include/any-linux-any/linux/termios.h | 0 .../include/any-linux-any/linux/thermal.h | 0 .../libc}/include/any-linux-any/linux/time.h | 0 .../include/any-linux-any/linux/timerfd.h | 0 .../libc}/include/any-linux-any/linux/times.h | 0 .../libc}/include/any-linux-any/linux/timex.h | 0 .../libc}/include/any-linux-any/linux/tiocl.h | 0 .../libc}/include/any-linux-any/linux/tipc.h | 0 .../include/any-linux-any/linux/tipc_config.h | 0 .../any-linux-any/linux/tipc_netlink.h | 0 .../any-linux-any/linux/tipc_sockets_diag.h | 0 .../libc}/include/any-linux-any/linux/tls.h | 0 .../include/any-linux-any/linux/toshiba.h | 0 .../libc}/include/any-linux-any/linux/tty.h | 0 .../include/any-linux-any/linux/tty_flags.h | 0 .../libc}/include/any-linux-any/linux/types.h | 0 .../include/any-linux-any/linux/udf_fs_i.h | 0 .../libc}/include/any-linux-any/linux/udp.h | 0 .../libc}/include/any-linux-any/linux/uhid.h | 0 .../include/any-linux-any/linux/uinput.h | 0 .../libc}/include/any-linux-any/linux/uio.h | 0 .../libc}/include/any-linux-any/linux/uleds.h | 0 .../include/any-linux-any/linux/ultrasound.h | 0 .../libc}/include/any-linux-any/linux/un.h | 0 .../include/any-linux-any/linux/unistd.h | 0 .../include/any-linux-any/linux/unix_diag.h | 0 .../include/any-linux-any/linux/usb/audio.h | 0 .../include/any-linux-any/linux/usb/cdc-wdm.h | 0 .../include/any-linux-any/linux/usb/cdc.h | 0 .../include/any-linux-any/linux/usb/ch11.h | 0 .../include/any-linux-any/linux/usb/ch9.h | 0 .../include/any-linux-any/linux/usb/charger.h | 0 .../any-linux-any/linux/usb/functionfs.h | 0 .../any-linux-any/linux/usb/g_printer.h | 0 .../include/any-linux-any/linux/usb/g_uvc.h | 0 .../any-linux-any/linux/usb/gadgetfs.h | 0 .../include/any-linux-any/linux/usb/midi.h | 0 .../include/any-linux-any/linux/usb/tmc.h | 0 .../include/any-linux-any/linux/usb/video.h | 0 .../any-linux-any/linux/usbdevice_fs.h | 0 .../libc}/include/any-linux-any/linux/usbip.h | 0 .../include/any-linux-any/linux/userfaultfd.h | 0 .../include/any-linux-any/linux/userio.h | 0 .../libc}/include/any-linux-any/linux/utime.h | 0 .../include/any-linux-any/linux/utsname.h | 0 .../libc}/include/any-linux-any/linux/uuid.h | 0 .../include/any-linux-any/linux/uvcvideo.h | 0 .../include/any-linux-any/linux/v4l2-common.h | 0 .../any-linux-any/linux/v4l2-controls.h | 0 .../any-linux-any/linux/v4l2-dv-timings.h | 0 .../any-linux-any/linux/v4l2-mediabus.h | 0 .../include/any-linux-any/linux/v4l2-subdev.h | 0 .../include/any-linux-any/linux/vbox_err.h | 0 .../any-linux-any/linux/vbox_vmmdev_types.h | 0 .../include/any-linux-any/linux/vboxguest.h | 0 .../include/any-linux-any/linux/version.h | 0 .../libc}/include/any-linux-any/linux/veth.h | 0 .../libc}/include/any-linux-any/linux/vfio.h | 0 .../include/any-linux-any/linux/vfio_ccw.h | 0 .../libc}/include/any-linux-any/linux/vhost.h | 0 .../include/any-linux-any/linux/videodev2.h | 0 .../include/any-linux-any/linux/virtio_9p.h | 0 .../any-linux-any/linux/virtio_balloon.h | 0 .../include/any-linux-any/linux/virtio_blk.h | 0 .../any-linux-any/linux/virtio_config.h | 0 .../any-linux-any/linux/virtio_console.h | 0 .../any-linux-any/linux/virtio_crypto.h | 0 .../include/any-linux-any/linux/virtio_gpu.h | 0 .../include/any-linux-any/linux/virtio_ids.h | 0 .../any-linux-any/linux/virtio_input.h | 0 .../include/any-linux-any/linux/virtio_mmio.h | 0 .../include/any-linux-any/linux/virtio_net.h | 0 .../include/any-linux-any/linux/virtio_pci.h | 0 .../include/any-linux-any/linux/virtio_ring.h | 0 .../include/any-linux-any/linux/virtio_rng.h | 0 .../include/any-linux-any/linux/virtio_scsi.h | 0 .../any-linux-any/linux/virtio_types.h | 0 .../any-linux-any/linux/virtio_vsock.h | 0 .../include/any-linux-any/linux/vm_sockets.h | 0 .../any-linux-any/linux/vm_sockets_diag.h | 0 .../include/any-linux-any/linux/vmcore.h | 0 .../include/any-linux-any/linux/vsockmon.h | 0 .../libc}/include/any-linux-any/linux/vt.h | 0 .../include/any-linux-any/linux/vtpm_proxy.h | 0 .../libc}/include/any-linux-any/linux/wait.h | 0 .../include/any-linux-any/linux/wanrouter.h | 0 .../include/any-linux-any/linux/watchdog.h | 0 .../libc}/include/any-linux-any/linux/wimax.h | 0 .../any-linux-any/linux/wimax/i2400m.h | 0 .../include/any-linux-any/linux/wireless.h | 0 .../libc}/include/any-linux-any/linux/wmi.h | 0 .../libc}/include/any-linux-any/linux/x25.h | 0 .../libc}/include/any-linux-any/linux/xattr.h | 0 .../libc}/include/any-linux-any/linux/xfrm.h | 0 .../linux/xilinx-v4l2-controls.h | 0 .../libc}/include/any-linux-any/linux/zorro.h | 0 .../include/any-linux-any/linux/zorro_ids.h | 0 .../libc}/include/any-windows-any/GL/gl.h | 0 .../libc}/include/any-windows-any/GL/glaux.h | 0 .../include/any-windows-any/GL/glcorearb.h | 0 .../libc}/include/any-windows-any/GL/glext.h | 0 .../libc}/include/any-windows-any/GL/glu.h | 0 .../libc}/include/any-windows-any/GL/glxext.h | 0 .../libc}/include/any-windows-any/GL/wglext.h | 0 .../include/any-windows-any/_bsd_types.h | 0 .../libc}/include/any-windows-any/_cygwin.h | 0 .../libc}/include/any-windows-any/_dbdao.h | 0 .../libc}/include/any-windows-any/_mingw.h | 0 .../include/any-windows-any/_mingw_dxhelper.h | 0 .../include/any-windows-any/_mingw_mac.h | 0 .../include/any-windows-any/_mingw_off_t.h | 0 .../any-windows-any/_mingw_print_pop.h | 0 .../any-windows-any/_mingw_print_push.h | 0 .../include/any-windows-any/_mingw_secapi.h | 0 .../include/any-windows-any/_mingw_stat64.h | 0 .../include/any-windows-any/_mingw_stdarg.h | 0 .../include/any-windows-any/_mingw_unicode.h | 0 .../libc}/include/any-windows-any/_timeval.h | 0 .../libc}/include/any-windows-any/accctrl.h | 0 .../libc}/include/any-windows-any/aclapi.h | 0 .../libc}/include/any-windows-any/aclui.h | 0 .../include/any-windows-any/activation.h | 0 .../libc}/include/any-windows-any/activaut.h | 0 .../libc}/include/any-windows-any/activdbg.h | 0 .../include/any-windows-any/activdbg100.h | 0 .../libc}/include/any-windows-any/activecf.h | 0 .../libc}/include/any-windows-any/activeds.h | 0 .../libc}/include/any-windows-any/activprof.h | 0 .../libc}/include/any-windows-any/activscp.h | 0 .../libc}/include/any-windows-any/adc.h | 0 .../libc}/include/any-windows-any/adhoc.h | 0 .../libc}/include/any-windows-any/admex.h | 0 .../libc}/include/any-windows-any/adoctint.h | 0 .../libc}/include/any-windows-any/adodef.h | 0 .../libc}/include/any-windows-any/adogpool.h | 0 .../any-windows-any/adogpool_backcompat.h | 0 .../libc}/include/any-windows-any/adoguids.h | 0 .../libc}/include/any-windows-any/adoid.h | 0 .../libc}/include/any-windows-any/adoint.h | 0 .../any-windows-any/adoint_backcompat.h | 0 .../libc}/include/any-windows-any/adojet.h | 0 .../libc}/include/any-windows-any/adomd.h | 0 .../libc}/include/any-windows-any/adptif.h | 0 .../libc}/include/any-windows-any/adsdb.h | 0 .../libc}/include/any-windows-any/adserr.h | 0 .../libc}/include/any-windows-any/adshlp.h | 0 .../libc}/include/any-windows-any/adsiid.h | 0 .../libc}/include/any-windows-any/adsnms.h | 0 .../libc}/include/any-windows-any/adsprop.h | 0 .../libc}/include/any-windows-any/adssts.h | 0 .../libc}/include/any-windows-any/adtgen.h | 0 .../libc}/include/any-windows-any/advpub.h | 0 .../libc}/include/any-windows-any/af_irda.h | 0 .../libc}/include/any-windows-any/afxres.h | 0 .../libc}/include/any-windows-any/agtctl.h | 0 .../libc}/include/any-windows-any/agterr.h | 0 .../libc}/include/any-windows-any/agtsvr.h | 0 .../libc}/include/any-windows-any/alg.h | 0 .../libc}/include/any-windows-any/alink.h | 0 .../libc}/include/any-windows-any/amaudio.h | 0 .../libc}/include/any-windows-any/amstream.h | 0 .../include/any-windows-any/amstream.idl | 0 .../libc}/include/any-windows-any/amvideo.h | 0 .../libc}/include/any-windows-any/amvideo.idl | 0 .../libc}/include/any-windows-any/apdevpkey.h | 0 .../libc}/include/any-windows-any/apiset.h | 0 .../include/any-windows-any/apisetcconv.h | 0 .../libc}/include/any-windows-any/appmgmt.h | 0 .../libc}/include/any-windows-any/aqadmtyp.h | 0 .../libc}/include/any-windows-any/asptlb.h | 0 .../libc}/include/any-windows-any/assert.h | 0 .../libc}/include/any-windows-any/atacct.h | 0 .../libc}/include/any-windows-any/atalkwsh.h | 0 .../libc}/include/any-windows-any/atsmedia.h | 0 .../libc}/include/any-windows-any/audevcod.h | 0 .../include/any-windows-any/audioapotypes.h | 0 .../include/any-windows-any/audioclient.h | 0 .../include/any-windows-any/audioendpoints.h | 0 .../any-windows-any/audioengineendpoint.h | 0 .../include/any-windows-any/audiopolicy.h | 0 .../any-windows-any/audiosessiontypes.h | 0 .../libc}/include/any-windows-any/austream.h | 0 .../include/any-windows-any/austream.idl | 0 .../libc}/include/any-windows-any/authif.h | 0 .../libc}/include/any-windows-any/authz.h | 0 .../libc}/include/any-windows-any/aux_ulib.h | 0 .../libc}/include/any-windows-any/avifmt.h | 0 .../libc}/include/any-windows-any/aviriff.h | 0 .../libc}/include/any-windows-any/avrfsdk.h | 0 .../libc}/include/any-windows-any/avrt.h | 0 .../include/any-windows-any/axextendenums.h | 0 .../libc}/include/any-windows-any/azroles.h | 0 .../libc}/include/any-windows-any/basetsd.h | 0 .../libc}/include/any-windows-any/basetyps.h | 0 .../libc}/include/any-windows-any/batclass.h | 0 .../libc}/include/any-windows-any/bcrypt.h | 0 .../libc}/include/any-windows-any/bdaiface.h | 0 .../include/any-windows-any/bdaiface_enums.h | 0 .../libc}/include/any-windows-any/bdamedia.h | 0 .../libc}/include/any-windows-any/bdatypes.h | 0 .../libc}/include/any-windows-any/bemapiset.h | 0 .../libc}/include/any-windows-any/bh.h | 0 .../libc}/include/any-windows-any/bidispl.h | 0 .../libc}/include/any-windows-any/bits.h | 0 .../libc}/include/any-windows-any/bits1_5.h | 0 .../libc}/include/any-windows-any/bits2_0.h | 0 .../libc}/include/any-windows-any/bitscfg.h | 0 .../libc}/include/any-windows-any/bitsmsg.h | 0 .../libc}/include/any-windows-any/blberr.h | 0 .../include/any-windows-any/bluetoothapis.h | 0 .../libc}/include/any-windows-any/bthdef.h | 0 .../libc}/include/any-windows-any/bthsdpdef.h | 0 .../libc}/include/any-windows-any/bugcodes.h | 0 .../libc}/include/any-windows-any/callobj.h | 0 .../libc}/include/any-windows-any/cardmod.h | 0 .../libc}/include/any-windows-any/casetup.h | 0 .../libc}/include/any-windows-any/cchannel.h | 0 .../libc}/include/any-windows-any/cderr.h | 0 .../libc}/include/any-windows-any/cdoex.h | 0 .../libc}/include/any-windows-any/cdoexerr.h | 0 .../libc}/include/any-windows-any/cdoexm.h | 0 .../libc}/include/any-windows-any/cdoexstr.h | 0 .../libc}/include/any-windows-any/cdonts.h | 0 .../libc}/include/any-windows-any/cdosys.h | 0 .../libc}/include/any-windows-any/cdosyserr.h | 0 .../libc}/include/any-windows-any/cdosysstr.h | 0 .../libc}/include/any-windows-any/celib.h | 0 .../libc}/include/any-windows-any/certadm.h | 0 .../libc}/include/any-windows-any/certbase.h | 0 .../libc}/include/any-windows-any/certbcli.h | 0 .../libc}/include/any-windows-any/certcli.h | 0 .../libc}/include/any-windows-any/certenc.h | 0 .../include/any-windows-any/certenroll.h | 0 .../libc}/include/any-windows-any/certexit.h | 0 .../libc}/include/any-windows-any/certif.h | 0 .../libc}/include/any-windows-any/certmod.h | 0 .../libc}/include/any-windows-any/certpol.h | 0 .../libc}/include/any-windows-any/certreqd.h | 0 .../libc}/include/any-windows-any/certsrv.h | 0 .../libc}/include/any-windows-any/certview.h | 0 .../libc}/include/any-windows-any/cfg.h | 0 .../libc}/include/any-windows-any/cfgmgr32.h | 0 .../libc}/include/any-windows-any/cguid.h | 0 .../libc}/include/any-windows-any/chanmgr.h | 0 .../libc}/include/any-windows-any/cierror.h | 0 .../libc}/include/any-windows-any/clfs.h | 0 .../libc}/include/any-windows-any/clfsmgmt.h | 0 .../include/any-windows-any/clfsmgmtw32.h | 0 .../libc}/include/any-windows-any/clfsw32.h | 0 .../libc}/include/any-windows-any/cluadmex.h | 0 .../libc}/include/any-windows-any/clusapi.h | 0 .../include/any-windows-any/cluscfgguids.h | 0 .../include/any-windows-any/cluscfgserver.h | 0 .../include/any-windows-any/cluscfgwizard.h | 0 .../libc}/include/any-windows-any/cmdtree.h | 0 .../libc}/include/any-windows-any/cmnquery.h | 0 .../libc}/include/any-windows-any/codecapi.h | 0 .../libc}/include/any-windows-any/color.dlg | 0 .../libc}/include/any-windows-any/colordlg.h | 0 .../libc}/include/any-windows-any/comadmin.h | 0 .../include/any-windows-any/combaseapi.h | 0 .../libc}/include/any-windows-any/comcat.h | 0 .../libc}/include/any-windows-any/comdef.h | 0 .../libc}/include/any-windows-any/comdefsp.h | 0 .../libc}/include/any-windows-any/comip.h | 0 .../libc}/include/any-windows-any/comlite.h | 0 .../libc}/include/any-windows-any/commapi.h | 0 .../libc}/include/any-windows-any/commctrl.h | 0 .../libc}/include/any-windows-any/commctrl.rh | 0 .../libc}/include/any-windows-any/commdlg.h | 0 .../libc}/include/any-windows-any/common.ver | 0 .../include/any-windows-any/commoncontrols.h | 0 .../libc}/include/any-windows-any/complex.h | 0 .../libc}/include/any-windows-any/compobj.h | 0 .../include/any-windows-any/compressapi.h | 0 .../libc}/include/any-windows-any/compstui.h | 0 .../libc}/include/any-windows-any/comsvcs.h | 0 .../libc}/include/any-windows-any/comutil.h | 0 .../libc}/include/any-windows-any/confpriv.h | 0 .../libc}/include/any-windows-any/conio.h | 0 .../libc}/include/any-windows-any/control.h | 0 .../libc}/include/any-windows-any/cor.h | 0 .../include/any-windows-any/corecrt_startup.h | 0 .../libc}/include/any-windows-any/corerror.h | 0 .../libc}/include/any-windows-any/corhdr.h | 0 .../libc}/include/any-windows-any/correg.h | 0 .../libc}/include/any-windows-any/cpl.h | 0 .../libc}/include/any-windows-any/cplext.h | 0 .../libc}/include/any-windows-any/credssp.h | 0 .../libc}/include/any-windows-any/crtdbg.h | 0 .../libc}/include/any-windows-any/crtdefs.h | 0 .../include/any-windows-any/cryptuiapi.h | 0 .../libc}/include/any-windows-any/cryptxml.h | 0 .../libc}/include/any-windows-any/cscapi.h | 0 .../libc}/include/any-windows-any/cscobj.h | 0 .../libc}/include/any-windows-any/ctfutb.h | 0 .../libc}/include/any-windows-any/ctxtcall.h | 0 .../libc}/include/any-windows-any/ctype.h | 0 .../libc}/include/any-windows-any/custcntl.h | 0 .../libc}/include/any-windows-any/d2d1.h | 0 .../libc}/include/any-windows-any/d2d1_1.h | 0 .../include/any-windows-any/d2d1_1helper.h | 0 .../any-windows-any/d2d1effectauthor.h | 0 .../any-windows-any/d2d1effecthelpers.h | 0 .../include/any-windows-any/d2d1effects.h | 0 .../include/any-windows-any/d2d1helper.h | 0 .../include/any-windows-any/d2dbasetypes.h | 0 .../libc}/include/any-windows-any/d2derr.h | 0 .../libc}/include/any-windows-any/d3d.h | 0 .../libc}/include/any-windows-any/d3d10.h | 0 .../libc}/include/any-windows-any/d3d10.idl | 0 .../libc}/include/any-windows-any/d3d10_1.h | 0 .../libc}/include/any-windows-any/d3d10_1.idl | 0 .../include/any-windows-any/d3d10_1shader.h | 0 .../include/any-windows-any/d3d10effect.h | 0 .../libc}/include/any-windows-any/d3d10misc.h | 0 .../include/any-windows-any/d3d10sdklayers.h | 0 .../any-windows-any/d3d10sdklayers.idl | 0 .../include/any-windows-any/d3d10shader.h | 0 .../libc}/include/any-windows-any/d3d11.h | 0 .../libc}/include/any-windows-any/d3d11.idl | 0 .../libc}/include/any-windows-any/d3d11_1.h | 0 .../libc}/include/any-windows-any/d3d11_1.idl | 0 .../libc}/include/any-windows-any/d3d11_2.h | 0 .../libc}/include/any-windows-any/d3d11_2.idl | 0 .../libc}/include/any-windows-any/d3d11_3.h | 0 .../libc}/include/any-windows-any/d3d11_3.idl | 0 .../libc}/include/any-windows-any/d3d11_4.h | 0 .../libc}/include/any-windows-any/d3d11_4.idl | 0 .../include/any-windows-any/d3d11sdklayers.h | 0 .../any-windows-any/d3d11sdklayers.idl | 0 .../include/any-windows-any/d3d11shader.h | 0 .../libc}/include/any-windows-any/d3d8.h | 0 .../libc}/include/any-windows-any/d3d8caps.h | 0 .../libc}/include/any-windows-any/d3d8types.h | 0 .../libc}/include/any-windows-any/d3d9.h | 0 .../libc}/include/any-windows-any/d3d9caps.h | 0 .../libc}/include/any-windows-any/d3d9types.h | 0 .../libc}/include/any-windows-any/d3dcaps.h | 0 .../libc}/include/any-windows-any/d3dcommon.h | 0 .../include/any-windows-any/d3dcommon.idl | 0 .../include/any-windows-any/d3dcompiler.h | 0 .../libc}/include/any-windows-any/d3dhal.h | 0 .../libc}/include/any-windows-any/d3drm.h | 0 .../libc}/include/any-windows-any/d3drmdef.h | 0 .../libc}/include/any-windows-any/d3drmobj.h | 0 .../libc}/include/any-windows-any/d3dtypes.h | 0 .../libc}/include/any-windows-any/d3dvec.inl | 0 .../libc}/include/any-windows-any/d3dx9.h | 0 .../libc}/include/any-windows-any/d3dx9anim.h | 0 .../libc}/include/any-windows-any/d3dx9core.h | 0 .../include/any-windows-any/d3dx9effect.h | 0 .../libc}/include/any-windows-any/d3dx9math.h | 0 .../include/any-windows-any/d3dx9math.inl | 0 .../libc}/include/any-windows-any/d3dx9mesh.h | 0 .../include/any-windows-any/d3dx9shader.h | 0 .../include/any-windows-any/d3dx9shape.h | 0 .../libc}/include/any-windows-any/d3dx9tex.h | 0 .../libc}/include/any-windows-any/d3dx9xof.h | 0 .../libc}/include/any-windows-any/daogetrw.h | 0 .../libc}/include/any-windows-any/datapath.h | 0 .../include/any-windows-any/datetimeapi.h | 0 .../libc}/include/any-windows-any/davclnt.h | 0 .../libc}/include/any-windows-any/dbdaoerr.h | 0 .../libc}/include/any-windows-any/dbdaoid.h | 0 .../libc}/include/any-windows-any/dbdaoint.h | 0 .../include/any-windows-any/dbgautoattach.h | 0 .../libc}/include/any-windows-any/dbgeng.h | 0 .../libc}/include/any-windows-any/dbghelp.h | 0 .../libc}/include/any-windows-any/dbgprop.h | 0 .../libc}/include/any-windows-any/dbt.h | 0 .../libc}/include/any-windows-any/dciddi.h | 0 .../libc}/include/any-windows-any/dciman.h | 0 .../libc}/include/any-windows-any/dcommon.h | 0 .../libc}/include/any-windows-any/dcomp.h | 0 .../include/any-windows-any/dcompanimation.h | 0 .../include/any-windows-any/dcomptypes.h | 0 .../libc}/include/any-windows-any/dde.h | 0 .../libc}/include/any-windows-any/dde.rh | 0 .../libc}/include/any-windows-any/ddeml.h | 0 .../include/any-windows-any/ddk/acpiioct.h | 0 .../include/any-windows-any/ddk/afilter.h | 0 .../include/any-windows-any/ddk/amtvuids.h | 0 .../libc}/include/any-windows-any/ddk/atm.h | 0 .../include/any-windows-any/ddk/bdasup.h | 0 .../include/any-windows-any/ddk/classpnp.h | 0 .../libc}/include/any-windows-any/ddk/csq.h | 0 .../include/any-windows-any/ddk/d3dhal.h | 0 .../include/any-windows-any/ddk/d3dhalex.h | 0 .../include/any-windows-any/ddk/d4drvif.h | 0 .../include/any-windows-any/ddk/d4iface.h | 0 .../include/any-windows-any/ddk/dderror.h | 0 .../include/any-windows-any/ddk/dmusicks.h | 0 .../include/any-windows-any/ddk/drivinit.h | 0 .../libc}/include/any-windows-any/ddk/drmk.h | 0 .../libc}/include/any-windows-any/ddk/dxapi.h | 0 .../include/any-windows-any/ddk/fltsafe.h | 0 .../include/any-windows-any/ddk/hidclass.h | 0 .../include/any-windows-any/ddk/hubbusif.h | 0 .../libc}/include/any-windows-any/ddk/ide.h | 0 .../include/any-windows-any/ddk/ioaccess.h | 0 .../include/any-windows-any/ddk/kbdmou.h | 0 .../libc}/include/any-windows-any/ddk/mcd.h | 0 .../libc}/include/any-windows-any/ddk/mce.h | 0 .../include/any-windows-any/ddk/miniport.h | 0 .../include/any-windows-any/ddk/minitape.h | 0 .../include/any-windows-any/ddk/mountdev.h | 0 .../include/any-windows-any/ddk/mountmgr.h | 0 .../include/any-windows-any/ddk/msports.h | 0 .../libc}/include/any-windows-any/ddk/ndis.h | 0 .../include/any-windows-any/ddk/ndisguid.h | 0 .../include/any-windows-any/ddk/ndistapi.h | 0 .../include/any-windows-any/ddk/ndiswan.h | 0 .../include/any-windows-any/ddk/netpnp.h | 0 .../libc}/include/any-windows-any/ddk/ntagp.h | 0 .../libc}/include/any-windows-any/ddk/ntddk.h | 0 .../include/any-windows-any/ddk/ntddpcm.h | 0 .../include/any-windows-any/ddk/ntddsnd.h | 0 .../libc}/include/any-windows-any/ddk/ntifs.h | 0 .../include/any-windows-any/ddk/ntimage.h | 0 .../libc}/include/any-windows-any/ddk/ntnls.h | 0 .../include/any-windows-any/ddk/ntpoapi.h | 0 .../include/any-windows-any/ddk/ntstrsafe.h | 0 .../include/any-windows-any/ddk/oprghdlr.h | 0 .../include/any-windows-any/ddk/parallel.h | 0 .../include/any-windows-any/ddk/pfhook.h | 0 .../include/any-windows-any/ddk/poclass.h | 0 .../include/any-windows-any/ddk/portcls.h | 0 .../include/any-windows-any/ddk/punknown.h | 0 .../libc}/include/any-windows-any/ddk/scsi.h | 0 .../include/any-windows-any/ddk/scsiscan.h | 0 .../include/any-windows-any/ddk/scsiwmi.h | 0 .../libc}/include/any-windows-any/ddk/smbus.h | 0 .../libc}/include/any-windows-any/ddk/srb.h | 0 .../include/any-windows-any/ddk/stdunk.h | 0 .../include/any-windows-any/ddk/storport.h | 0 .../include/any-windows-any/ddk/strmini.h | 0 .../include/any-windows-any/ddk/swenum.h | 0 .../include/any-windows-any/ddk/tdikrnl.h | 0 .../include/any-windows-any/ddk/tdistat.h | 0 .../include/any-windows-any/ddk/upssvc.h | 0 .../include/any-windows-any/ddk/usbbusif.h | 0 .../include/any-windows-any/ddk/usbdlib.h | 0 .../include/any-windows-any/ddk/usbdrivr.h | 0 .../include/any-windows-any/ddk/usbkern.h | 0 .../include/any-windows-any/ddk/usbprint.h | 0 .../any-windows-any/ddk/usbprotocoldefs.h | 0 .../include/any-windows-any/ddk/usbscan.h | 0 .../any-windows-any/ddk/usbstorioctl.h | 0 .../libc}/include/any-windows-any/ddk/video.h | 0 .../include/any-windows-any/ddk/videoagp.h | 0 .../libc}/include/any-windows-any/ddk/wdm.h | 0 .../include/any-windows-any/ddk/wdmguid.h | 0 .../include/any-windows-any/ddk/wmidata.h | 0 .../include/any-windows-any/ddk/wmilib.h | 0 .../include/any-windows-any/ddk/ws2san.h | 0 .../include/any-windows-any/ddk/xfilter.h | 0 .../libc}/include/any-windows-any/ddraw.h | 0 .../libc}/include/any-windows-any/ddrawgdi.h | 0 .../libc}/include/any-windows-any/ddrawi.h | 0 .../libc}/include/any-windows-any/ddstream.h | 0 .../include/any-windows-any/ddstream.idl | 0 .../libc}/include/any-windows-any/debugapi.h | 0 .../libc}/include/any-windows-any/delayimp.h | 0 .../libc}/include/any-windows-any/devguid.h | 0 .../include/any-windows-any/devicetopology.h | 0 .../libc}/include/any-windows-any/devioctl.h | 0 .../libc}/include/any-windows-any/devpkey.h | 0 .../include/any-windows-any/devpropdef.h | 0 .../libc}/include/any-windows-any/dhcpcsdk.h | 0 .../libc}/include/any-windows-any/dhcpsapi.h | 0 .../libc}/include/any-windows-any/dhcpssdk.h | 0 .../include/any-windows-any/dhcpv6csdk.h | 0 .../libc}/include/any-windows-any/dhtmldid.h | 0 .../libc}/include/any-windows-any/dhtmled.h | 0 .../libc}/include/any-windows-any/dhtmliid.h | 0 .../libc}/include/any-windows-any/digitalv.h | 0 .../libc}/include/any-windows-any/dimm.h | 0 .../libc}/include/any-windows-any/dinput.h | 0 .../libc}/include/any-windows-any/dir.h | 0 .../libc}/include/any-windows-any/direct.h | 0 .../libc}/include/any-windows-any/dirent.h | 0 .../libc}/include/any-windows-any/diskguid.h | 0 .../libc}/include/any-windows-any/dispatch.h | 0 .../libc}/include/any-windows-any/dispdib.h | 0 .../libc}/include/any-windows-any/dispex.h | 0 .../libc}/include/any-windows-any/dlcapi.h | 0 .../libc}/include/any-windows-any/dlgs.h | 0 .../libc}/include/any-windows-any/dls1.h | 0 .../libc}/include/any-windows-any/dls2.h | 0 .../libc}/include/any-windows-any/dmdls.h | 0 .../libc}/include/any-windows-any/dmemmgr.h | 0 .../libc}/include/any-windows-any/dmerror.h | 0 .../libc}/include/any-windows-any/dmksctrl.h | 0 .../libc}/include/any-windows-any/dmo.h | 0 .../libc}/include/any-windows-any/dmodshow.h | 0 .../include/any-windows-any/dmodshow.idl | 0 .../libc}/include/any-windows-any/dmoreg.h | 0 .../libc}/include/any-windows-any/dmort.h | 0 .../libc}/include/any-windows-any/dmplugin.h | 0 .../libc}/include/any-windows-any/dmusbuff.h | 0 .../libc}/include/any-windows-any/dmusicc.h | 0 .../libc}/include/any-windows-any/dmusicf.h | 0 .../libc}/include/any-windows-any/dmusici.h | 0 .../libc}/include/any-windows-any/dmusics.h | 0 .../libc}/include/any-windows-any/docobj.h | 0 .../any-windows-any/docobjectservice.h | 0 .../include/any-windows-any/documenttarget.h | 0 .../libc}/include/any-windows-any/domdid.h | 0 .../libc}/include/any-windows-any/dos.h | 0 .../include/any-windows-any/downloadmgr.h | 0 .../libc}/include/any-windows-any/dpaddr.h | 0 .../libc}/include/any-windows-any/dpapi.h | 0 .../libc}/include/any-windows-any/dpfilter.h | 0 .../libc}/include/any-windows-any/dplay.h | 0 .../libc}/include/any-windows-any/dplay8.h | 0 .../libc}/include/any-windows-any/dplobby.h | 0 .../libc}/include/any-windows-any/dplobby8.h | 0 .../libc}/include/any-windows-any/dpnathlp.h | 0 .../include/any-windows-any/driverspecs.h | 0 .../include/any-windows-any/drmexternals.h | 0 .../libc}/include/any-windows-any/dsadmin.h | 0 .../libc}/include/any-windows-any/dsclient.h | 0 .../libc}/include/any-windows-any/dsconf.h | 0 .../libc}/include/any-windows-any/dsdriver.h | 0 .../libc}/include/any-windows-any/dsgetdc.h | 0 .../libc}/include/any-windows-any/dshow.h | 0 .../libc}/include/any-windows-any/dskquota.h | 0 .../libc}/include/any-windows-any/dsound.h | 0 .../libc}/include/any-windows-any/dsquery.h | 0 .../libc}/include/any-windows-any/dsrole.h | 0 .../libc}/include/any-windows-any/dssec.h | 0 .../libc}/include/any-windows-any/dtchelp.h | 0 .../include/any-windows-any/dvbsiparser.h | 0 .../libc}/include/any-windows-any/dvdevcod.h | 0 .../libc}/include/any-windows-any/dvdmedia.h | 0 .../libc}/include/any-windows-any/dvec.h | 0 .../libc}/include/any-windows-any/dvobj.h | 0 .../libc}/include/any-windows-any/dwmapi.h | 0 .../libc}/include/any-windows-any/dwrite.h | 0 .../libc}/include/any-windows-any/dwrite_1.h | 0 .../libc}/include/any-windows-any/dwrite_2.h | 0 .../libc}/include/any-windows-any/dwrite_3.h | 0 .../libc}/include/any-windows-any/dxdiag.h | 0 .../libc}/include/any-windows-any/dxerr8.h | 0 .../libc}/include/any-windows-any/dxerr9.h | 0 .../libc}/include/any-windows-any/dxfile.h | 0 .../libc}/include/any-windows-any/dxgi.h | 0 .../libc}/include/any-windows-any/dxgi.idl | 0 .../libc}/include/any-windows-any/dxgi1_2.h | 0 .../libc}/include/any-windows-any/dxgi1_2.idl | 0 .../libc}/include/any-windows-any/dxgi1_3.h | 0 .../libc}/include/any-windows-any/dxgi1_3.idl | 0 .../libc}/include/any-windows-any/dxgi1_4.h | 0 .../libc}/include/any-windows-any/dxgi1_4.idl | 0 .../libc}/include/any-windows-any/dxgi1_5.h | 0 .../libc}/include/any-windows-any/dxgi1_5.idl | 0 .../libc}/include/any-windows-any/dxgi1_6.h | 0 .../libc}/include/any-windows-any/dxgi1_6.idl | 0 .../include/any-windows-any/dxgicommon.h | 0 .../include/any-windows-any/dxgicommon.idl | 0 .../include/any-windows-any/dxgiformat.h | 0 .../include/any-windows-any/dxgiformat.idl | 0 .../libc}/include/any-windows-any/dxgitype.h | 0 .../include/any-windows-any/dxgitype.idl | 0 .../libc}/include/any-windows-any/dxtmpl.h | 0 .../libc}/include/any-windows-any/dxva.h | 0 .../libc}/include/any-windows-any/dxva2api.h | 0 .../libc}/include/any-windows-any/dxvahd.h | 0 .../eapauthenticatoractiondefine.h | 0 .../any-windows-any/eapauthenticatortypes.h | 0 .../include/any-windows-any/eaphosterror.h | 0 .../any-windows-any/eaphostpeerconfigapis.h | 0 .../any-windows-any/eaphostpeertypes.h | 0 .../eapmethodauthenticatorapis.h | 0 .../any-windows-any/eapmethodpeerapis.h | 0 .../include/any-windows-any/eapmethodtypes.h | 0 .../libc}/include/any-windows-any/eappapis.h | 0 .../libc}/include/any-windows-any/eaptypes.h | 0 .../libc}/include/any-windows-any/edevdefs.h | 0 .../libc}/include/any-windows-any/eh.h | 0 .../libc}/include/any-windows-any/ehstorapi.h | 0 .../libc}/include/any-windows-any/elscore.h | 0 .../libc}/include/any-windows-any/emostore.h | 0 .../libc}/include/any-windows-any/emptyvc.h | 0 .../include/any-windows-any/endpointvolume.h | 0 .../include/any-windows-any/errhandlingapi.h | 0 .../libc}/include/any-windows-any/errno.h | 0 .../libc}/include/any-windows-any/error.h | 0 .../libc}/include/any-windows-any/errorrep.h | 0 .../libc}/include/any-windows-any/errors.h | 0 .../libc}/include/any-windows-any/esent.h | 0 .../libc}/include/any-windows-any/evcode.h | 0 .../libc}/include/any-windows-any/evcoll.h | 0 .../libc}/include/any-windows-any/eventsys.h | 0 .../libc}/include/any-windows-any/evntcons.h | 0 .../libc}/include/any-windows-any/evntprov.h | 0 .../libc}/include/any-windows-any/evntrace.h | 0 .../libc}/include/any-windows-any/evr.h | 0 .../libc}/include/any-windows-any/evr9.h | 0 .../libc}/include/any-windows-any/exchform.h | 0 .../libc}/include/any-windows-any/excpt.h | 0 .../libc}/include/any-windows-any/exdisp.h | 0 .../libc}/include/any-windows-any/exdispid.h | 0 .../libc}/include/any-windows-any/fci.h | 0 .../libc}/include/any-windows-any/fcntl.h | 0 .../libc}/include/any-windows-any/fdi.h | 0 .../libc}/include/any-windows-any/fenv.h | 0 .../libc}/include/any-windows-any/fibersapi.h | 0 .../libc}/include/any-windows-any/fileapi.h | 0 .../libc}/include/any-windows-any/fileextd.h | 0 .../libc}/include/any-windows-any/filehc.h | 0 .../include/any-windows-any/fileopen.dlg | 0 .../libc}/include/any-windows-any/filter.h | 0 .../libc}/include/any-windows-any/filterr.h | 0 .../include/any-windows-any/findtext.dlg | 0 .../libc}/include/any-windows-any/float.h | 0 .../libc}/include/any-windows-any/fltdefs.h | 0 .../libc}/include/any-windows-any/fltuser.h | 0 .../any-windows-any/fltuserstructures.h | 0 .../include/any-windows-any/fltwinerror.h | 0 .../libc}/include/any-windows-any/font.dlg | 0 .../libc}/include/any-windows-any/fpieee.h | 0 .../libc}/include/any-windows-any/fsrm.h | 0 .../libc}/include/any-windows-any/fsrmenums.h | 0 .../libc}/include/any-windows-any/fsrmerr.h | 0 .../include/any-windows-any/fsrmpipeline.h | 0 .../libc}/include/any-windows-any/fsrmquota.h | 0 .../include/any-windows-any/fsrmreports.h | 0 .../include/any-windows-any/fsrmscreen.h | 0 .../libc}/include/any-windows-any/ftsiface.h | 0 .../libc}/include/any-windows-any/ftw.h | 0 .../any-windows-any/functiondiscoveryapi.h | 0 .../functiondiscoverycategories.h | 0 .../functiondiscoveryconstraints.h | 0 .../any-windows-any/functiondiscoverykeys.h | 0 .../functiondiscoverykeys_devpkey.h | 0 .../functiondiscoverynotification.h | 0 .../libc}/include/any-windows-any/fusion.h | 0 .../libc}/include/any-windows-any/fvec.h | 0 .../libc}/include/any-windows-any/fwpmtypes.h | 0 .../libc}/include/any-windows-any/fwpmu.h | 0 .../libc}/include/any-windows-any/fwptypes.h | 0 .../libc}/include/any-windows-any/gb18030.h | 0 .../libc}/include/any-windows-any/gdiplus.h | 0 .../include/any-windows-any/gdiplus/gdiplus.h | 0 .../any-windows-any/gdiplus/gdiplusbase.h | 0 .../any-windows-any/gdiplus/gdiplusbrush.h | 0 .../any-windows-any/gdiplus/gdipluscolor.h | 0 .../gdiplus/gdipluscolormatrix.h | 0 .../any-windows-any/gdiplus/gdipluseffects.h | 0 .../any-windows-any/gdiplus/gdiplusenums.h | 0 .../any-windows-any/gdiplus/gdiplusflat.h | 0 .../any-windows-any/gdiplus/gdiplusgpstubs.h | 0 .../any-windows-any/gdiplus/gdiplusgraphics.h | 0 .../any-windows-any/gdiplus/gdiplusheaders.h | 0 .../gdiplus/gdiplusimageattributes.h | 0 .../gdiplus/gdiplusimagecodec.h | 0 .../any-windows-any/gdiplus/gdiplusimaging.h | 0 .../any-windows-any/gdiplus/gdiplusimpl.h | 0 .../any-windows-any/gdiplus/gdiplusinit.h | 0 .../any-windows-any/gdiplus/gdipluslinecaps.h | 0 .../any-windows-any/gdiplus/gdiplusmatrix.h | 0 .../any-windows-any/gdiplus/gdiplusmem.h | 0 .../any-windows-any/gdiplus/gdiplusmetafile.h | 0 .../gdiplus/gdiplusmetaheader.h | 0 .../any-windows-any/gdiplus/gdipluspath.h | 0 .../any-windows-any/gdiplus/gdipluspen.h | 0 .../gdiplus/gdipluspixelformats.h | 0 .../gdiplus/gdiplusstringformat.h | 0 .../any-windows-any/gdiplus/gdiplustypes.h | 0 .../libc}/include/any-windows-any/getopt.h | 0 .../libc}/include/any-windows-any/gpedit.h | 0 .../libc}/include/any-windows-any/gpio.h | 0 .../libc}/include/any-windows-any/gpmgmt.h | 0 .../libc}/include/any-windows-any/guiddef.h | 0 .../libc}/include/any-windows-any/h323priv.h | 0 .../libc}/include/any-windows-any/handleapi.h | 0 .../libc}/include/any-windows-any/heapapi.h | 0 .../libc}/include/any-windows-any/hidclass.h | 0 .../libc}/include/any-windows-any/hidpi.h | 0 .../libc}/include/any-windows-any/hidsdi.h | 0 .../libc}/include/any-windows-any/hidusage.h | 0 .../highlevelmonitorconfigurationapi.h | 0 .../libc}/include/any-windows-any/hlguids.h | 0 .../libc}/include/any-windows-any/hliface.h | 0 .../libc}/include/any-windows-any/hlink.h | 0 .../libc}/include/any-windows-any/hostinfo.h | 0 .../libc}/include/any-windows-any/hstring.h | 0 .../libc}/include/any-windows-any/htiface.h | 0 .../libc}/include/any-windows-any/htiframe.h | 0 .../libc}/include/any-windows-any/htmlguid.h | 0 .../libc}/include/any-windows-any/htmlhelp.h | 0 .../libc}/include/any-windows-any/http.h | 0 .../libc}/include/any-windows-any/httpext.h | 0 .../libc}/include/any-windows-any/httpfilt.h | 0 .../include/any-windows-any/httprequestid.h | 0 .../include/any-windows-any/i_cryptasn1tls.h | 0 .../libc}/include/any-windows-any/ia64reg.h | 0 .../libc}/include/any-windows-any/iaccess.h | 0 .../libc}/include/any-windows-any/iadmext.h | 0 .../libc}/include/any-windows-any/iadmw.h | 0 .../libc}/include/any-windows-any/iads.h | 0 .../libc}/include/any-windows-any/icftypes.h | 0 .../libc}/include/any-windows-any/icm.h | 0 .../libc}/include/any-windows-any/icmpapi.h | 0 .../libc}/include/any-windows-any/icmui.dlg | 0 .../libc}/include/any-windows-any/icodecapi.h | 0 .../libc}/include/any-windows-any/icrsint.h | 0 .../include/any-windows-any/identitycommon.h | 0 .../include/any-windows-any/identitystore.h | 0 .../libc}/include/any-windows-any/idf.h | 0 .../libc}/include/any-windows-any/idispids.h | 0 .../libc}/include/any-windows-any/iedial.h | 0 .../libc}/include/any-windows-any/ieeefp.h | 0 .../libc}/include/any-windows-any/ieverp.h | 0 .../libc}/include/any-windows-any/ifdef.h | 0 .../libc}/include/any-windows-any/iiis.h | 0 .../libc}/include/any-windows-any/iiisext.h | 0 .../libc}/include/any-windows-any/iimgctx.h | 0 .../libc}/include/any-windows-any/iiscnfg.h | 0 .../libc}/include/any-windows-any/iisrsta.h | 0 .../libc}/include/any-windows-any/iketypes.h | 0 .../libc}/include/any-windows-any/ilogobj.hxx | 0 .../libc}/include/any-windows-any/imagehlp.h | 0 .../libc}/include/any-windows-any/ime.h | 0 .../libc}/include/any-windows-any/imessage.h | 0 .../libc}/include/any-windows-any/imm.h | 0 .../libc}/include/any-windows-any/in6addr.h | 0 .../libc}/include/any-windows-any/inaddr.h | 0 .../libc}/include/any-windows-any/indexsrv.h | 0 .../libc}/include/any-windows-any/inetreg.h | 0 .../libc}/include/any-windows-any/inetsdk.h | 0 .../libc}/include/any-windows-any/infstr.h | 0 .../libc}/include/any-windows-any/initguid.h | 0 .../libc}/include/any-windows-any/initoid.h | 0 .../include/any-windows-any/inputscope.h | 0 .../include/any-windows-any/inspectable.h | 0 .../include/any-windows-any/interlockedapi.h | 0 .../libc}/include/any-windows-any/intrin.h | 0 .../libc}/include/any-windows-any/intsafe.h | 0 .../libc}/include/any-windows-any/intshcut.h | 0 .../libc}/include/any-windows-any/inttypes.h | 0 .../libc}/include/any-windows-any/invkprxy.h | 0 .../libc}/include/any-windows-any/io.h | 0 .../libc}/include/any-windows-any/ioapiset.h | 0 .../libc}/include/any-windows-any/ioevent.h | 0 .../libc}/include/any-windows-any/ipexport.h | 0 .../libc}/include/any-windows-any/iphlpapi.h | 0 .../libc}/include/any-windows-any/ipifcons.h | 0 .../libc}/include/any-windows-any/ipinfoid.h | 0 .../libc}/include/any-windows-any/ipmib.h | 0 .../libc}/include/any-windows-any/ipmsp.h | 0 .../libc}/include/any-windows-any/iprtrmib.h | 0 .../include/any-windows-any/ipsectypes.h | 0 .../libc}/include/any-windows-any/iptypes.h | 0 .../libc}/include/any-windows-any/ipxconst.h | 0 .../libc}/include/any-windows-any/ipxrip.h | 0 .../libc}/include/any-windows-any/ipxrtdef.h | 0 .../libc}/include/any-windows-any/ipxsap.h | 0 .../libc}/include/any-windows-any/ipxtfflt.h | 0 .../libc}/include/any-windows-any/iscsidsc.h | 0 .../libc}/include/any-windows-any/isguids.h | 0 .../libc}/include/any-windows-any/issper16.h | 0 .../libc}/include/any-windows-any/issperr.h | 0 .../libc}/include/any-windows-any/isysmon.h | 0 .../libc}/include/any-windows-any/ivec.h | 0 .../libc}/include/any-windows-any/iwamreg.h | 0 .../libc}/include/any-windows-any/jobapi.h | 0 .../libc}/include/any-windows-any/kcom.h | 0 .../include/any-windows-any/knownfolders.h | 0 .../libc}/include/any-windows-any/ks.h | 0 .../libc}/include/any-windows-any/ksdebug.h | 0 .../libc}/include/any-windows-any/ksguid.h | 0 .../libc}/include/any-windows-any/ksmedia.h | 0 .../libc}/include/any-windows-any/ksproxy.h | 0 .../libc}/include/any-windows-any/ksuuids.h | 0 .../libc}/include/any-windows-any/ktmtypes.h | 0 .../libc}/include/any-windows-any/ktmw32.h | 0 .../libc}/include/any-windows-any/kxia64.h | 0 .../libc}/include/any-windows-any/l2cmn.h | 0 .../libc}/include/any-windows-any/libgen.h | 0 .../include/any-windows-any/libloaderapi.h | 0 .../libc}/include/any-windows-any/limits.h | 0 .../libc}/include/any-windows-any/lm.h | 0 .../libc}/include/any-windows-any/lmaccess.h | 0 .../libc}/include/any-windows-any/lmalert.h | 0 .../libc}/include/any-windows-any/lmapibuf.h | 0 .../libc}/include/any-windows-any/lmat.h | 0 .../libc}/include/any-windows-any/lmaudit.h | 0 .../libc}/include/any-windows-any/lmconfig.h | 0 .../libc}/include/any-windows-any/lmcons.h | 0 .../libc}/include/any-windows-any/lmdfs.h | 0 .../libc}/include/any-windows-any/lmerr.h | 0 .../libc}/include/any-windows-any/lmerrlog.h | 0 .../libc}/include/any-windows-any/lmjoin.h | 0 .../libc}/include/any-windows-any/lmmsg.h | 0 .../libc}/include/any-windows-any/lmon.h | 0 .../libc}/include/any-windows-any/lmremutl.h | 0 .../libc}/include/any-windows-any/lmrepl.h | 0 .../libc}/include/any-windows-any/lmserver.h | 0 .../libc}/include/any-windows-any/lmshare.h | 0 .../libc}/include/any-windows-any/lmsname.h | 0 .../libc}/include/any-windows-any/lmstats.h | 0 .../libc}/include/any-windows-any/lmsvc.h | 0 .../libc}/include/any-windows-any/lmuse.h | 0 .../libc}/include/any-windows-any/lmuseflg.h | 0 .../libc}/include/any-windows-any/lmwksta.h | 0 .../libc}/include/any-windows-any/loadperf.h | 0 .../libc}/include/any-windows-any/locale.h | 0 .../include/any-windows-any/locationapi.h | 0 .../libc}/include/any-windows-any/lpmapi.h | 0 .../libc}/include/any-windows-any/lzexpand.h | 0 .../libc}/include/any-windows-any/madcapcl.h | 0 .../include/any-windows-any/magnification.h | 0 .../include/any-windows-any/mailmsgprops.h | 0 .../libc}/include/any-windows-any/malloc.h | 0 .../include/any-windows-any/manipulations.h | 0 .../libc}/include/any-windows-any/mapi.h | 0 .../libc}/include/any-windows-any/mapicode.h | 0 .../libc}/include/any-windows-any/mapidbg.h | 0 .../libc}/include/any-windows-any/mapidefs.h | 0 .../libc}/include/any-windows-any/mapiform.h | 0 .../libc}/include/any-windows-any/mapiguid.h | 0 .../libc}/include/any-windows-any/mapihook.h | 0 .../libc}/include/any-windows-any/mapinls.h | 0 .../libc}/include/any-windows-any/mapioid.h | 0 .../libc}/include/any-windows-any/mapispi.h | 0 .../libc}/include/any-windows-any/mapitags.h | 0 .../libc}/include/any-windows-any/mapiutil.h | 0 .../libc}/include/any-windows-any/mapival.h | 0 .../libc}/include/any-windows-any/mapiwin.h | 0 .../libc}/include/any-windows-any/mapiwz.h | 0 .../libc}/include/any-windows-any/mapix.h | 0 .../libc}/include/any-windows-any/math.h | 0 .../libc}/include/any-windows-any/mbctype.h | 0 .../libc}/include/any-windows-any/mbstring.h | 0 .../libc}/include/any-windows-any/mciavi.h | 0 .../libc}/include/any-windows-any/mcx.h | 0 .../libc}/include/any-windows-any/mdbrole.hxx | 0 .../libc}/include/any-windows-any/mdcommsg.h | 0 .../libc}/include/any-windows-any/mddefw.h | 0 .../libc}/include/any-windows-any/mdhcp.h | 0 .../libc}/include/any-windows-any/mdmsg.h | 0 .../libc}/include/any-windows-any/mediaerr.h | 0 .../libc}/include/any-windows-any/mediaobj.h | 0 .../include/any-windows-any/mediaobj.idl | 0 .../libc}/include/any-windows-any/medparam.h | 0 .../include/any-windows-any/medparam.idl | 0 .../libc}/include/any-windows-any/mem.h | 0 .../libc}/include/any-windows-any/memory.h | 0 .../libc}/include/any-windows-any/memoryapi.h | 0 .../libc}/include/any-windows-any/mergemod.h | 0 .../libc}/include/any-windows-any/mfapi.h | 0 .../libc}/include/any-windows-any/mferror.h | 0 .../libc}/include/any-windows-any/mfidl.h | 0 .../libc}/include/any-windows-any/mfmp2dlna.h | 0 .../libc}/include/any-windows-any/mfobjects.h | 0 .../libc}/include/any-windows-any/mfplay.h | 0 .../include/any-windows-any/mfreadwrite.h | 0 .../include/any-windows-any/mftransform.h | 0 .../libc}/include/any-windows-any/mgm.h | 0 .../libc}/include/any-windows-any/mgmtapi.h | 0 .../libc}/include/any-windows-any/midles.h | 0 .../libc}/include/any-windows-any/mimedisp.h | 0 .../libc}/include/any-windows-any/mimeinfo.h | 0 .../libc}/include/any-windows-any/minmax.h | 0 .../include/any-windows-any/minwinbase.h | 0 .../libc}/include/any-windows-any/minwindef.h | 0 .../libc}/include/any-windows-any/mlang.h | 0 .../libc}/include/any-windows-any/mmc.h | 0 .../libc}/include/any-windows-any/mmcobj.h | 0 .../include/any-windows-any/mmdeviceapi.h | 0 .../libc}/include/any-windows-any/mmreg.h | 0 .../libc}/include/any-windows-any/mmstream.h | 0 .../include/any-windows-any/mmstream.idl | 0 .../libc}/include/any-windows-any/mmsystem.h | 0 .../libc}/include/any-windows-any/mobsync.h | 0 .../libc}/include/any-windows-any/moniker.h | 0 .../libc}/include/any-windows-any/mpeg2bits.h | 0 .../libc}/include/any-windows-any/mpeg2data.h | 0 .../include/any-windows-any/mpeg2psiparser.h | 0 .../include/any-windows-any/mpeg2structs.h | 0 .../libc}/include/any-windows-any/mprapi.h | 0 .../libc}/include/any-windows-any/mprerror.h | 0 .../libc}/include/any-windows-any/mq.h | 0 .../libc}/include/any-windows-any/mqmail.h | 0 .../libc}/include/any-windows-any/mqoai.h | 0 .../libc}/include/any-windows-any/msacm.h | 0 .../include/any-windows-any/msacmdlg.dlg | 0 .../libc}/include/any-windows-any/msacmdlg.h | 0 .../libc}/include/any-windows-any/msado15.h | 0 .../libc}/include/any-windows-any/msasn1.h | 0 .../libc}/include/any-windows-any/msber.h | 0 .../libc}/include/any-windows-any/mscat.h | 0 .../libc}/include/any-windows-any/mschapp.h | 0 .../libc}/include/any-windows-any/msclus.h | 0 .../libc}/include/any-windows-any/mscoree.h | 0 .../libc}/include/any-windows-any/msctf.h | 0 .../include/any-windows-any/msctfmonitorapi.h | 0 .../libc}/include/any-windows-any/msdadc.h | 0 .../libc}/include/any-windows-any/msdaguid.h | 0 .../libc}/include/any-windows-any/msdaipp.h | 0 .../libc}/include/any-windows-any/msdaipper.h | 0 .../libc}/include/any-windows-any/msdaora.h | 0 .../libc}/include/any-windows-any/msdaosp.h | 0 .../libc}/include/any-windows-any/msdasc.h | 0 .../libc}/include/any-windows-any/msdasql.h | 0 .../libc}/include/any-windows-any/msdatsrc.h | 0 .../libc}/include/any-windows-any/msdrm.h | 0 .../libc}/include/any-windows-any/msdrmdefs.h | 0 .../libc}/include/any-windows-any/msdshape.h | 0 .../libc}/include/any-windows-any/msfs.h | 0 .../libc}/include/any-windows-any/mshtmcid.h | 0 .../libc}/include/any-windows-any/mshtmdid.h | 0 .../libc}/include/any-windows-any/mshtmhst.h | 0 .../libc}/include/any-windows-any/mshtml.h | 0 .../libc}/include/any-windows-any/mshtmlc.h | 0 .../libc}/include/any-windows-any/msi.h | 0 .../libc}/include/any-windows-any/msidefs.h | 0 .../libc}/include/any-windows-any/msimcntl.h | 0 .../libc}/include/any-windows-any/msimcsdk.h | 0 .../libc}/include/any-windows-any/msinkaut.h | 0 .../include/any-windows-any/msinkaut_i.c | 0 .../libc}/include/any-windows-any/msiquery.h | 0 .../libc}/include/any-windows-any/msoav.h | 0 .../libc}/include/any-windows-any/msopc.h | 0 .../libc}/include/any-windows-any/msp.h | 0 .../libc}/include/any-windows-any/mspab.h | 0 .../libc}/include/any-windows-any/mspaddr.h | 0 .../libc}/include/any-windows-any/mspbase.h | 0 .../libc}/include/any-windows-any/mspcall.h | 0 .../libc}/include/any-windows-any/mspcoll.h | 0 .../libc}/include/any-windows-any/mspenum.h | 0 .../libc}/include/any-windows-any/msplog.h | 0 .../libc}/include/any-windows-any/mspst.h | 0 .../libc}/include/any-windows-any/mspstrm.h | 0 .../libc}/include/any-windows-any/mspterm.h | 0 .../libc}/include/any-windows-any/mspthrd.h | 0 .../libc}/include/any-windows-any/msptrmac.h | 0 .../libc}/include/any-windows-any/msptrmar.h | 0 .../libc}/include/any-windows-any/msptrmvc.h | 0 .../libc}/include/any-windows-any/msputils.h | 0 .../libc}/include/any-windows-any/msrdc.h | 0 .../libc}/include/any-windows-any/msremote.h | 0 .../libc}/include/any-windows-any/mssip.h | 0 .../libc}/include/any-windows-any/msstkppg.h | 0 .../libc}/include/any-windows-any/mstask.h | 0 .../libc}/include/any-windows-any/mstcpip.h | 0 .../libc}/include/any-windows-any/msterr.h | 0 .../libc}/include/any-windows-any/mswsock.h | 0 .../libc}/include/any-windows-any/msxml.h | 0 .../libc}/include/any-windows-any/msxml2.h | 0 .../libc}/include/any-windows-any/msxml2did.h | 0 .../libc}/include/any-windows-any/msxmldid.h | 0 .../libc}/include/any-windows-any/mtsadmin.h | 0 .../libc}/include/any-windows-any/mtsevents.h | 0 .../libc}/include/any-windows-any/mtsgrp.h | 0 .../libc}/include/any-windows-any/mtx.h | 0 .../libc}/include/any-windows-any/mtxadmin.h | 0 .../libc}/include/any-windows-any/mtxattr.h | 0 .../libc}/include/any-windows-any/mtxdm.h | 0 .../libc}/include/any-windows-any/muiload.h | 0 .../libc}/include/any-windows-any/multimon.h | 0 .../libc}/include/any-windows-any/multinfo.h | 0 .../libc}/include/any-windows-any/mxdc.h | 0 .../include/any-windows-any/namedpipeapi.h | 0 .../include/any-windows-any/namespaceapi.h | 0 .../any-windows-any/napcertrelyingparty.h | 0 .../libc}/include/any-windows-any/napcommon.h | 0 .../any-windows-any/napenforcementclient.h | 0 .../include/any-windows-any/napmanagement.h | 0 .../any-windows-any/napmicrosoftvendorids.h | 0 .../include/any-windows-any/napprotocol.h | 0 .../any-windows-any/napservermanagement.h | 0 .../any-windows-any/napsystemhealthagent.h | 0 .../napsystemhealthvalidator.h | 0 .../libc}/include/any-windows-any/naptypes.h | 0 .../libc}/include/any-windows-any/naputil.h | 0 .../libc}/include/any-windows-any/nb30.h | 0 .../libc}/include/any-windows-any/ncrypt.h | 0 .../libc}/include/any-windows-any/ndattrib.h | 0 .../libc}/include/any-windows-any/ndfapi.h | 0 .../libc}/include/any-windows-any/ndhelper.h | 0 .../libc}/include/any-windows-any/ndkinfo.h | 0 .../include/any-windows-any/ndr64types.h | 0 .../libc}/include/any-windows-any/ndrtypes.h | 0 .../libc}/include/any-windows-any/netcon.h | 0 .../libc}/include/any-windows-any/neterr.h | 0 .../libc}/include/any-windows-any/netevent.h | 0 .../libc}/include/any-windows-any/netfw.h | 0 .../libc}/include/any-windows-any/netioapi.h | 0 .../include/any-windows-any/netlistmgr.h | 0 .../libc}/include/any-windows-any/netmon.h | 0 .../libc}/include/any-windows-any/netprov.h | 0 .../libc}/include/any-windows-any/nettypes.h | 0 .../libc}/include/any-windows-any/new.h | 0 .../libc}/include/any-windows-any/newapis.h | 0 .../libc}/include/any-windows-any/newdev.h | 0 .../libc}/include/any-windows-any/nldef.h | 0 .../libc}/include/any-windows-any/nmsupp.h | 0 .../libc}/include/any-windows-any/npapi.h | 0 .../libc}/include/any-windows-any/nsemail.h | 0 .../libc}/include/any-windows-any/nspapi.h | 0 .../libc}/include/any-windows-any/ntdd1394.h | 0 .../libc}/include/any-windows-any/ntdd8042.h | 0 .../libc}/include/any-windows-any/ntddbeep.h | 0 .../libc}/include/any-windows-any/ntddcdrm.h | 0 .../libc}/include/any-windows-any/ntddcdvd.h | 0 .../libc}/include/any-windows-any/ntddchgr.h | 0 .../libc}/include/any-windows-any/ntdddisk.h | 0 .../libc}/include/any-windows-any/ntddft.h | 0 .../libc}/include/any-windows-any/ntddkbd.h | 0 .../libc}/include/any-windows-any/ntddmmc.h | 0 .../libc}/include/any-windows-any/ntddmodm.h | 0 .../libc}/include/any-windows-any/ntddmou.h | 0 .../libc}/include/any-windows-any/ntddndis.h | 0 .../libc}/include/any-windows-any/ntddpar.h | 0 .../libc}/include/any-windows-any/ntddpsch.h | 0 .../libc}/include/any-windows-any/ntddscsi.h | 0 .../libc}/include/any-windows-any/ntddser.h | 0 .../libc}/include/any-windows-any/ntddstor.h | 0 .../libc}/include/any-windows-any/ntddtape.h | 0 .../libc}/include/any-windows-any/ntddtdi.h | 0 .../libc}/include/any-windows-any/ntddvdeo.h | 0 .../libc}/include/any-windows-any/ntddvol.h | 0 .../libc}/include/any-windows-any/ntdef.h | 0 .../libc}/include/any-windows-any/ntdsapi.h | 0 .../libc}/include/any-windows-any/ntdsbcli.h | 0 .../libc}/include/any-windows-any/ntdsbmsg.h | 0 .../libc}/include/any-windows-any/ntgdi.h | 0 .../libc}/include/any-windows-any/ntiologc.h | 0 .../libc}/include/any-windows-any/ntldap.h | 0 .../libc}/include/any-windows-any/ntmsapi.h | 0 .../libc}/include/any-windows-any/ntmsmli.h | 0 .../libc}/include/any-windows-any/ntquery.h | 0 .../libc}/include/any-windows-any/ntsdexts.h | 0 .../libc}/include/any-windows-any/ntsecapi.h | 0 .../libc}/include/any-windows-any/ntsecpkg.h | 0 .../libc}/include/any-windows-any/ntstatus.h | 0 .../libc}/include/any-windows-any/ntverp.h | 0 .../libc}/include/any-windows-any/oaidl.h | 0 .../libc}/include/any-windows-any/objbase.h | 0 .../include/any-windows-any/objectarray.h | 0 .../libc}/include/any-windows-any/objerror.h | 0 .../libc}/include/any-windows-any/objidl.h | 0 .../include/any-windows-any/objidlbase.h | 0 .../libc}/include/any-windows-any/objsafe.h | 0 .../libc}/include/any-windows-any/objsel.h | 0 .../libc}/include/any-windows-any/ocidl.h | 0 .../libc}/include/any-windows-any/ocmm.h | 0 .../libc}/include/any-windows-any/odbcinst.h | 0 .../libc}/include/any-windows-any/odbcss.h | 0 .../libc}/include/any-windows-any/ole.h | 0 .../libc}/include/any-windows-any/ole2.h | 0 .../libc}/include/any-windows-any/ole2ver.h | 0 .../libc}/include/any-windows-any/oleacc.h | 0 .../libc}/include/any-windows-any/oleauto.h | 0 .../libc}/include/any-windows-any/olectl.h | 0 .../libc}/include/any-windows-any/olectlid.h | 0 .../libc}/include/any-windows-any/oledb.h | 0 .../libc}/include/any-windows-any/oledbdep.h | 0 .../libc}/include/any-windows-any/oledberr.h | 0 .../libc}/include/any-windows-any/oledbguid.h | 0 .../libc}/include/any-windows-any/oledlg.dlg | 0 .../libc}/include/any-windows-any/oledlg.h | 0 .../libc}/include/any-windows-any/oleidl.h | 0 .../libc}/include/any-windows-any/oletx2xa.h | 0 .../libc}/include/any-windows-any/opmapi.h | 0 .../libc}/include/any-windows-any/optary.h | 0 .../libc}/include/any-windows-any/p2p.h | 0 .../libc}/include/any-windows-any/packoff.h | 0 .../libc}/include/any-windows-any/packon.h | 0 .../libc}/include/any-windows-any/parser.h | 0 .../libc}/include/any-windows-any/patchapi.h | 0 .../libc}/include/any-windows-any/patchwiz.h | 0 .../libc}/include/any-windows-any/pathcch.h | 0 .../libc}/include/any-windows-any/pbt.h | 0 .../libc}/include/any-windows-any/pchannel.h | 0 .../libc}/include/any-windows-any/pciprop.h | 0 .../libc}/include/any-windows-any/pcrt32.h | 0 .../libc}/include/any-windows-any/pdh.h | 0 .../libc}/include/any-windows-any/pdhmsg.h | 0 .../libc}/include/any-windows-any/penwin.h | 0 .../libc}/include/any-windows-any/perflib.h | 0 .../libc}/include/any-windows-any/perhist.h | 0 .../libc}/include/any-windows-any/persist.h | 0 .../include/any-windows-any/pgobootrun.h | 0 .../physicalmonitorenumerationapi.h | 0 .../libc}/include/any-windows-any/pla.h | 0 .../libc}/include/any-windows-any/pnrpdef.h | 0 .../libc}/include/any-windows-any/pnrpns.h | 0 .../libc}/include/any-windows-any/poclass.h | 0 .../libc}/include/any-windows-any/polarity.h | 0 .../libc}/include/any-windows-any/poppack.h | 0 .../portabledeviceconnectapi.h | 0 .../any-windows-any/portabledevicetypes.h | 0 .../libc}/include/any-windows-any/powrprof.h | 0 .../libc}/include/any-windows-any/prnasnot.h | 0 .../include/any-windows-any/prnsetup.dlg | 0 .../libc}/include/any-windows-any/prntfont.h | 0 .../libc}/include/any-windows-any/process.h | 0 .../include/any-windows-any/processenv.h | 0 .../any-windows-any/processthreadsapi.h | 0 .../any-windows-any/processtopologyapi.h | 0 .../libc}/include/any-windows-any/profile.h | 0 .../include/any-windows-any/profileapi.h | 0 .../libc}/include/any-windows-any/profinfo.h | 0 .../libc}/include/any-windows-any/propidl.h | 0 .../libc}/include/any-windows-any/propkey.h | 0 .../include/any-windows-any/propkeydef.h | 0 .../libc}/include/any-windows-any/propsys.h | 0 .../include/any-windows-any/propvarutil.h | 0 .../libc}/include/any-windows-any/prsht.h | 0 .../libc}/include/any-windows-any/psapi.h | 0 .../psdk_inc/_dbg_LOAD_IMAGE.h | 0 .../any-windows-any/psdk_inc/_dbg_common.h | 0 .../any-windows-any/psdk_inc/_fd_types.h | 0 .../any-windows-any/psdk_inc/_ip_mreq1.h | 0 .../any-windows-any/psdk_inc/_ip_types.h | 0 .../any-windows-any/psdk_inc/_pop_BOOL.h | 0 .../any-windows-any/psdk_inc/_push_BOOL.h | 0 .../any-windows-any/psdk_inc/_socket_types.h | 0 .../any-windows-any/psdk_inc/_varenum.h | 0 .../any-windows-any/psdk_inc/_ws1_undef.h | 0 .../any-windows-any/psdk_inc/_wsa_errnos.h | 0 .../any-windows-any/psdk_inc/_wsadata.h | 0 .../any-windows-any/psdk_inc/_xmitfile.h | 0 .../any-windows-any/psdk_inc/intrin-impl.h | 0 .../libc}/include/any-windows-any/pshpack1.h | 0 .../libc}/include/any-windows-any/pshpack2.h | 0 .../libc}/include/any-windows-any/pshpack4.h | 0 .../libc}/include/any-windows-any/pshpack8.h | 0 .../libc}/include/any-windows-any/pshpck16.h | 0 .../libc}/include/any-windows-any/pstore.h | 0 .../include/any-windows-any/pthread_signal.h | 0 .../include/any-windows-any/pthread_time.h | 0 .../include/any-windows-any/pthread_unistd.h | 0 .../libc}/include/any-windows-any/qedit.h | 0 .../libc}/include/any-windows-any/qedit.idl | 0 .../libc}/include/any-windows-any/qmgr.h | 0 .../libc}/include/any-windows-any/qnetwork.h | 0 .../include/any-windows-any/qnetwork.idl | 0 .../libc}/include/any-windows-any/qos.h | 0 .../libc}/include/any-windows-any/qos2.h | 0 .../libc}/include/any-windows-any/qosname.h | 0 .../libc}/include/any-windows-any/qospol.h | 0 .../libc}/include/any-windows-any/qossp.h | 0 .../libc}/include/any-windows-any/ras.h | 0 .../libc}/include/any-windows-any/rasdlg.h | 0 .../libc}/include/any-windows-any/raseapif.h | 0 .../libc}/include/any-windows-any/raserror.h | 0 .../libc}/include/any-windows-any/rassapi.h | 0 .../libc}/include/any-windows-any/rasshost.h | 0 .../libc}/include/any-windows-any/ratings.h | 0 .../include/any-windows-any/rdpencomapi.h | 0 .../include/any-windows-any/realtimeapiset.h | 0 .../libc}/include/any-windows-any/reason.h | 0 .../libc}/include/any-windows-any/recguids.h | 0 .../libc}/include/any-windows-any/reconcil.h | 0 .../libc}/include/any-windows-any/regbag.h | 0 .../libc}/include/any-windows-any/regstr.h | 0 .../libc}/include/any-windows-any/rend.h | 0 .../libc}/include/any-windows-any/resapi.h | 0 .../include/any-windows-any/restartmanager.h | 0 .../libc}/include/any-windows-any/richedit.h | 0 .../libc}/include/any-windows-any/richole.h | 0 .../libc}/include/any-windows-any/rkeysvcc.h | 0 .../libc}/include/any-windows-any/rnderr.h | 0 .../libc}/include/any-windows-any/roapi.h | 0 .../libc}/include/any-windows-any/routprot.h | 0 .../libc}/include/any-windows-any/rpc.h | 0 .../libc}/include/any-windows-any/rpcasync.h | 0 .../libc}/include/any-windows-any/rpcdce.h | 0 .../libc}/include/any-windows-any/rpcdcep.h | 0 .../libc}/include/any-windows-any/rpcndr.h | 0 .../libc}/include/any-windows-any/rpcnsi.h | 0 .../libc}/include/any-windows-any/rpcnsip.h | 0 .../libc}/include/any-windows-any/rpcnterr.h | 0 .../libc}/include/any-windows-any/rpcproxy.h | 0 .../libc}/include/any-windows-any/rpcsal.h | 0 .../libc}/include/any-windows-any/rpcssl.h | 0 .../libc}/include/any-windows-any/rrascfg.h | 0 .../libc}/include/any-windows-any/rtcapi.h | 0 .../libc}/include/any-windows-any/rtccore.h | 0 .../libc}/include/any-windows-any/rtcerr.h | 0 .../libc}/include/any-windows-any/rtinfo.h | 0 .../libc}/include/any-windows-any/rtm.h | 0 .../libc}/include/any-windows-any/rtmv2.h | 0 .../libc}/include/any-windows-any/rtutils.h | 0 .../libc}/include/any-windows-any/sal.h | 0 .../libc}/include/any-windows-any/sapi.h | 0 .../libc}/include/any-windows-any/sapi51.h | 0 .../libc}/include/any-windows-any/sapi53.h | 0 .../libc}/include/any-windows-any/sapi54.h | 0 .../libc}/include/any-windows-any/sas.h | 0 .../libc}/include/any-windows-any/sbe.h | 0 .../libc}/include/any-windows-any/scarddat.h | 0 .../libc}/include/any-windows-any/scarderr.h | 0 .../libc}/include/any-windows-any/scardmgr.h | 0 .../libc}/include/any-windows-any/scardsrv.h | 0 .../libc}/include/any-windows-any/scardssp.h | 0 .../libc}/include/any-windows-any/scesvc.h | 0 .../libc}/include/any-windows-any/schannel.h | 0 .../libc}/include/any-windows-any/schedule.h | 0 .../libc}/include/any-windows-any/schemadef.h | 0 .../libc}/include/any-windows-any/schnlsp.h | 0 .../libc}/include/any-windows-any/scode.h | 0 .../libc}/include/any-windows-any/scrnsave.h | 0 .../libc}/include/any-windows-any/scrptids.h | 0 .../libc}/include/any-windows-any/sddl.h | 0 .../libc}/include/any-windows-any/sdkddkver.h | 0 .../include/any-windows-any/sdks/_mingw_ddk.h | 0 .../any-windows-any/sdks/_mingw_directx.h | 0 .../libc}/include/any-windows-any/sdoias.h | 0 .../libc}/include/any-windows-any/sdpblb.h | 0 .../libc}/include/any-windows-any/sdperr.h | 0 .../libc}/include/any-windows-any/search.h | 0 .../include/any-windows-any/sec_api/conio_s.h | 0 .../any-windows-any/sec_api/crtdbg_s.h | 0 .../any-windows-any/sec_api/mbstring_s.h | 0 .../any-windows-any/sec_api/search_s.h | 0 .../include/any-windows-any/sec_api/stdio_s.h | 0 .../any-windows-any/sec_api/stdlib_s.h | 0 .../any-windows-any/sec_api/stralign_s.h | 0 .../any-windows-any/sec_api/string_s.h | 0 .../any-windows-any/sec_api/sys/timeb_s.h | 0 .../include/any-windows-any/sec_api/tchar_s.h | 0 .../include/any-windows-any/sec_api/wchar_s.h | 0 .../libc}/include/any-windows-any/secext.h | 0 .../libc}/include/any-windows-any/security.h | 0 .../any-windows-any/securityappcontainer.h | 0 .../include/any-windows-any/securitybaseapi.h | 0 .../libc}/include/any-windows-any/sehmap.h | 0 .../libc}/include/any-windows-any/sens.h | 0 .../libc}/include/any-windows-any/sensapi.h | 0 .../libc}/include/any-windows-any/sensevts.h | 0 .../libc}/include/any-windows-any/sensors.h | 0 .../include/any-windows-any/sensorsapi.h | 0 .../libc}/include/any-windows-any/servprov.h | 0 .../libc}/include/any-windows-any/setjmp.h | 0 .../libc}/include/any-windows-any/setjmpex.h | 0 .../libc}/include/any-windows-any/setupapi.h | 0 .../libc}/include/any-windows-any/sfc.h | 0 .../libc}/include/any-windows-any/shappmgr.h | 0 .../libc}/include/any-windows-any/share.h | 0 .../include/any-windows-any/shdeprecated.h | 0 .../libc}/include/any-windows-any/shdispid.h | 0 .../libc}/include/any-windows-any/shellapi.h | 0 .../libc}/include/any-windows-any/sherrors.h | 0 .../libc}/include/any-windows-any/shfolder.h | 0 .../libc}/include/any-windows-any/shldisp.h | 0 .../libc}/include/any-windows-any/shlguid.h | 0 .../libc}/include/any-windows-any/shlobj.h | 0 .../libc}/include/any-windows-any/shlwapi.h | 0 .../libc}/include/any-windows-any/shobjidl.h | 0 .../libc}/include/any-windows-any/shtypes.h | 0 .../libc}/include/any-windows-any/signal.h | 0 .../libc}/include/any-windows-any/simpdata.h | 0 .../libc}/include/any-windows-any/simpdc.h | 0 .../libc}/include/any-windows-any/sipbase.h | 0 .../libc}/include/any-windows-any/sisbkup.h | 0 .../libc}/include/any-windows-any/slerror.h | 0 .../libc}/include/any-windows-any/slpublic.h | 0 .../libc}/include/any-windows-any/smpab.h | 0 .../libc}/include/any-windows-any/smpms.h | 0 .../libc}/include/any-windows-any/smpxp.h | 0 .../libc}/include/any-windows-any/smtpguid.h | 0 .../libc}/include/any-windows-any/smx.h | 0 .../libc}/include/any-windows-any/snmp.h | 0 .../libc}/include/any-windows-any/softpub.h | 0 .../include/any-windows-any/specstrings.h | 0 .../libc}/include/any-windows-any/sperror.h | 0 .../libc}/include/any-windows-any/sphelper.h | 0 .../libc}/include/any-windows-any/sporder.h | 0 .../libc}/include/any-windows-any/sql.h | 0 .../libc}/include/any-windows-any/sql_1.h | 0 .../libc}/include/any-windows-any/sqlext.h | 0 .../libc}/include/any-windows-any/sqloledb.h | 0 .../libc}/include/any-windows-any/sqltypes.h | 0 .../libc}/include/any-windows-any/sqlucode.h | 0 .../include/any-windows-any/srrestoreptapi.h | 0 .../libc}/include/any-windows-any/srv.h | 0 .../libc}/include/any-windows-any/sspguid.h | 0 .../libc}/include/any-windows-any/sspi.h | 0 .../libc}/include/any-windows-any/sspserr.h | 0 .../libc}/include/any-windows-any/sspsidl.h | 0 .../libc}/include/any-windows-any/stdarg.h | 0 .../libc}/include/any-windows-any/stddef.h | 0 .../libc}/include/any-windows-any/stdexcpt.h | 0 .../libc}/include/any-windows-any/stdint.h | 0 .../libc}/include/any-windows-any/stdio.h | 0 .../libc}/include/any-windows-any/stdlib.h | 0 .../libc}/include/any-windows-any/sti.h | 0 .../libc}/include/any-windows-any/stierr.h | 0 .../libc}/include/any-windows-any/stireg.h | 0 .../libc}/include/any-windows-any/stllock.h | 0 .../libc}/include/any-windows-any/stm.h | 0 .../libc}/include/any-windows-any/storage.h | 0 .../libc}/include/any-windows-any/storduid.h | 0 .../libc}/include/any-windows-any/storprop.h | 0 .../libc}/include/any-windows-any/stralign.h | 0 .../libc}/include/any-windows-any/string.h | 0 .../include/any-windows-any/stringapiset.h | 0 .../libc}/include/any-windows-any/strings.h | 0 .../libc}/include/any-windows-any/strmif.h | 0 .../libc}/include/any-windows-any/strsafe.h | 0 .../structuredquerycondition.h | 0 .../libc}/include/any-windows-any/subauth.h | 0 .../libc}/include/any-windows-any/subsmgr.h | 0 .../libc}/include/any-windows-any/svcguid.h | 0 .../libc}/include/any-windows-any/svrapi.h | 0 .../include/any-windows-any/swprintf.inl | 0 .../libc}/include/any-windows-any/synchapi.h | 0 .../libc}/include/any-windows-any/sys/cdefs.h | 0 .../libc}/include/any-windows-any/sys/fcntl.h | 0 .../libc}/include/any-windows-any/sys/file.h | 0 .../include/any-windows-any/sys/locking.h | 0 .../libc}/include/any-windows-any/sys/param.h | 0 .../libc}/include/any-windows-any/sys/stat.h | 0 .../libc}/include/any-windows-any/sys/time.h | 0 .../libc}/include/any-windows-any/sys/timeb.h | 0 .../libc}/include/any-windows-any/sys/types.h | 0 .../include/any-windows-any/sys/unistd.h | 0 .../libc}/include/any-windows-any/sys/utime.h | 0 .../include/any-windows-any/sysinfoapi.h | 0 .../libc}/include/any-windows-any/syslimits.h | 0 .../any-windows-any/systemtopologyapi.h | 0 .../libc}/include/any-windows-any/t2embapi.h | 0 .../libc}/include/any-windows-any/tabflicks.h | 0 .../libc}/include/any-windows-any/tapi.h | 0 .../libc}/include/any-windows-any/tapi3.h | 0 .../libc}/include/any-windows-any/tapi3cc.h | 0 .../libc}/include/any-windows-any/tapi3ds.h | 0 .../libc}/include/any-windows-any/tapi3err.h | 0 .../libc}/include/any-windows-any/tapi3if.h | 0 .../libc}/include/any-windows-any/taskschd.h | 0 .../libc}/include/any-windows-any/tbs.h | 0 .../libc}/include/any-windows-any/tcerror.h | 0 .../libc}/include/any-windows-any/tcguid.h | 0 .../libc}/include/any-windows-any/tchar.h | 0 .../libc}/include/any-windows-any/tcpestats.h | 0 .../libc}/include/any-windows-any/tcpmib.h | 0 .../libc}/include/any-windows-any/tdh.h | 0 .../libc}/include/any-windows-any/tdi.h | 0 .../libc}/include/any-windows-any/tdiinfo.h | 0 .../libc}/include/any-windows-any/termmgr.h | 0 .../libc}/include/any-windows-any/textserv.h | 0 .../libc}/include/any-windows-any/textstor.h | 0 .../any-windows-any/threadpoolapiset.h | 0 .../any-windows-any/threadpoollegacyapiset.h | 0 .../libc}/include/any-windows-any/time.h | 0 .../libc}/include/any-windows-any/timeprov.h | 0 .../include/any-windows-any/timezoneapi.h | 0 .../libc}/include/any-windows-any/tlbref.h | 0 .../libc}/include/any-windows-any/tlhelp32.h | 0 .../libc}/include/any-windows-any/tlogstg.h | 0 .../libc}/include/any-windows-any/tmschema.h | 0 .../libc}/include/any-windows-any/tnef.h | 0 .../libc}/include/any-windows-any/tom.h | 0 .../libc}/include/any-windows-any/tpcshrd.h | 0 .../libc}/include/any-windows-any/traffic.h | 0 .../libc}/include/any-windows-any/transact.h | 0 .../libc}/include/any-windows-any/triedcid.h | 0 .../libc}/include/any-windows-any/triediid.h | 0 .../libc}/include/any-windows-any/triedit.h | 0 .../libc}/include/any-windows-any/tsattrs.h | 0 .../libc}/include/any-windows-any/tspi.h | 0 .../libc}/include/any-windows-any/tssbx.h | 0 .../libc}/include/any-windows-any/tsuserex.h | 0 .../libc}/include/any-windows-any/tuner.h | 0 .../libc}/include/any-windows-any/tvout.h | 0 .../libc}/include/any-windows-any/txcoord.h | 0 .../libc}/include/any-windows-any/txctx.h | 0 .../libc}/include/any-windows-any/txdtc.h | 0 .../libc}/include/any-windows-any/txfw32.h | 0 .../libc}/include/any-windows-any/typeinfo.h | 0 .../libc}/include/any-windows-any/uastrfnc.h | 0 .../libc}/include/any-windows-any/uchar.h | 0 .../libc}/include/any-windows-any/udpmib.h | 0 .../include/any-windows-any/uianimation.h | 0 .../include/any-windows-any/uiautomation.h | 0 .../any-windows-any/uiautomationclient.h | 0 .../any-windows-any/uiautomationcore.h | 0 .../any-windows-any/uiautomationcoreapi.h | 0 .../any-windows-any/uiviewsettingsinterop.h | 0 .../libc}/include/any-windows-any/umx.h | 0 .../libc}/include/any-windows-any/unistd.h | 0 .../libc}/include/any-windows-any/unknown.h | 0 .../libc}/include/any-windows-any/unknwn.h | 0 .../include/any-windows-any/unknwnbase.h | 0 .../libc}/include/any-windows-any/urlhist.h | 0 .../libc}/include/any-windows-any/urlmon.h | 0 .../libc}/include/any-windows-any/usb.h | 0 .../libc}/include/any-windows-any/usb100.h | 0 .../libc}/include/any-windows-any/usb200.h | 0 .../libc}/include/any-windows-any/usbcamdi.h | 0 .../libc}/include/any-windows-any/usbdi.h | 0 .../libc}/include/any-windows-any/usbioctl.h | 0 .../libc}/include/any-windows-any/usbiodef.h | 0 .../libc}/include/any-windows-any/usbprint.h | 0 .../libc}/include/any-windows-any/usbrpmif.h | 0 .../libc}/include/any-windows-any/usbscan.h | 0 .../libc}/include/any-windows-any/usbspec.h | 0 .../libc}/include/any-windows-any/usbuser.h | 0 .../libc}/include/any-windows-any/userenv.h | 0 .../libc}/include/any-windows-any/usp10.h | 0 .../include/any-windows-any/utilapiset.h | 0 .../libc}/include/any-windows-any/utime.h | 0 .../libc}/include/any-windows-any/uuids.h | 0 .../libc}/include/any-windows-any/uxtheme.h | 0 .../libc}/include/any-windows-any/vadefs.h | 0 .../libc}/include/any-windows-any/varargs.h | 0 .../libc}/include/any-windows-any/vcr.h | 0 .../libc}/include/any-windows-any/vdmdbg.h | 0 .../libc}/include/any-windows-any/vds.h | 0 .../libc}/include/any-windows-any/vdslun.h | 0 .../libc}/include/any-windows-any/verinfo.ver | 0 .../include/any-windows-any/versionhelpers.h | 0 .../libc}/include/any-windows-any/vfw.h | 0 .../libc}/include/any-windows-any/vfwmsgs.h | 0 .../libc}/include/any-windows-any/virtdisk.h | 0 .../libc}/include/any-windows-any/vmr9.h | 0 .../libc}/include/any-windows-any/vmr9.idl | 0 .../libc}/include/any-windows-any/vsadmin.h | 0 .../libc}/include/any-windows-any/vsbackup.h | 0 .../libc}/include/any-windows-any/vsmgmt.h | 0 .../libc}/include/any-windows-any/vsprov.h | 0 .../libc}/include/any-windows-any/vss.h | 0 .../libc}/include/any-windows-any/vsstyle.h | 0 .../libc}/include/any-windows-any/vssym32.h | 0 .../libc}/include/any-windows-any/vswriter.h | 0 .../libc}/include/any-windows-any/w32api.h | 0 .../libc}/include/any-windows-any/wab.h | 0 .../libc}/include/any-windows-any/wabapi.h | 0 .../libc}/include/any-windows-any/wabcode.h | 0 .../libc}/include/any-windows-any/wabdefs.h | 0 .../libc}/include/any-windows-any/wabiab.h | 0 .../libc}/include/any-windows-any/wabmem.h | 0 .../libc}/include/any-windows-any/wabnot.h | 0 .../libc}/include/any-windows-any/wabtags.h | 0 .../libc}/include/any-windows-any/wabutil.h | 0 .../libc}/include/any-windows-any/wbemads.h | 0 .../libc}/include/any-windows-any/wbemcli.h | 0 .../libc}/include/any-windows-any/wbemdisp.h | 0 .../libc}/include/any-windows-any/wbemidl.h | 0 .../libc}/include/any-windows-any/wbemprov.h | 0 .../libc}/include/any-windows-any/wbemtran.h | 0 .../libc}/include/any-windows-any/wchar.h | 0 .../libc}/include/any-windows-any/wcmconfig.h | 0 .../libc}/include/any-windows-any/wcsplugin.h | 0 .../libc}/include/any-windows-any/wct.h | 0 .../libc}/include/any-windows-any/wctype.h | 0 .../libc}/include/any-windows-any/wdsbp.h | 0 .../include/any-windows-any/wdsclientapi.h | 0 .../libc}/include/any-windows-any/wdspxe.h | 0 .../libc}/include/any-windows-any/wdstci.h | 0 .../libc}/include/any-windows-any/wdstpdi.h | 0 .../include/any-windows-any/wdstptmgmt.h | 0 .../libc}/include/any-windows-any/werapi.h | 0 .../libc}/include/any-windows-any/wfext.h | 0 .../libc}/include/any-windows-any/wia.h | 0 .../libc}/include/any-windows-any/wiadef.h | 0 .../libc}/include/any-windows-any/wiadevd.h | 0 .../libc}/include/any-windows-any/wiavideo.h | 0 .../libc}/include/any-windows-any/winable.h | 0 .../include/any-windows-any/winapifamily.h | 0 .../libc}/include/any-windows-any/winbase.h | 0 .../libc}/include/any-windows-any/winber.h | 0 .../libc}/include/any-windows-any/wincodec.h | 0 .../libc}/include/any-windows-any/wincon.h | 0 .../libc}/include/any-windows-any/wincred.h | 0 .../libc}/include/any-windows-any/wincrypt.h | 0 .../libc}/include/any-windows-any/winddi.h | 0 .../libc}/include/any-windows-any/winddiui.h | 0 .../libc}/include/any-windows-any/windef.h | 0 .../libc}/include/any-windows-any/windns.h | 0 .../libc}/include/any-windows-any/windot11.h | 0 .../any-windows-any/windows.foundation.h | 0 .../libc}/include/any-windows-any/windows.h | 0 .../windows.security.cryptography.h | 0 .../include/any-windows-any/windows.storage.h | 0 .../any-windows-any/windows.storage.streams.h | 0 .../windows.system.threading.h | 0 .../libc}/include/any-windows-any/windowsx.h | 0 .../include/any-windows-any/windowsx.h16 | 0 .../libc}/include/any-windows-any/winefs.h | 0 .../libc}/include/any-windows-any/winerror.h | 0 .../libc}/include/any-windows-any/winevt.h | 0 .../libc}/include/any-windows-any/wingdi.h | 0 .../libc}/include/any-windows-any/winhttp.h | 0 .../libc}/include/any-windows-any/wininet.h | 0 .../libc}/include/any-windows-any/winineti.h | 0 .../libc}/include/any-windows-any/winioctl.h | 0 .../libc}/include/any-windows-any/winldap.h | 0 .../libc}/include/any-windows-any/winnetwk.h | 0 .../libc}/include/any-windows-any/winnls.h | 0 .../libc}/include/any-windows-any/winnls32.h | 0 .../libc}/include/any-windows-any/winnt.h | 0 .../libc}/include/any-windows-any/winnt.rh | 0 .../libc}/include/any-windows-any/winperf.h | 0 .../libc}/include/any-windows-any/winreg.h | 0 .../libc}/include/any-windows-any/winresrc.h | 0 .../libc}/include/any-windows-any/winsafer.h | 0 .../any-windows-any/winsatcominterfacei.h | 0 .../libc}/include/any-windows-any/winscard.h | 0 .../libc}/include/any-windows-any/winsdkver.h | 0 .../libc}/include/any-windows-any/winsmcrd.h | 0 .../libc}/include/any-windows-any/winsnmp.h | 0 .../libc}/include/any-windows-any/winsock.h | 0 .../libc}/include/any-windows-any/winsock2.h | 0 .../libc}/include/any-windows-any/winsplp.h | 0 .../libc}/include/any-windows-any/winspool.h | 0 .../libc}/include/any-windows-any/winstring.h | 0 .../libc}/include/any-windows-any/winsvc.h | 0 .../libc}/include/any-windows-any/winsxs.h | 0 .../libc}/include/any-windows-any/winsync.h | 0 .../libc}/include/any-windows-any/winternl.h | 0 .../libc}/include/any-windows-any/wintrust.h | 0 .../libc}/include/any-windows-any/winusb.h | 0 .../libc}/include/any-windows-any/winusbio.h | 0 .../libc}/include/any-windows-any/winuser.h | 0 .../libc}/include/any-windows-any/winuser.rh | 0 .../libc}/include/any-windows-any/winver.h | 0 .../libc}/include/any-windows-any/winwlx.h | 0 .../libc}/include/any-windows-any/wlanapi.h | 0 .../include/any-windows-any/wlanihvtypes.h | 0 .../libc}/include/any-windows-any/wlantypes.h | 0 .../include/any-windows-any/wmcodecdsp.h | 0 .../include/any-windows-any/wmcontainer.h | 0 .../libc}/include/any-windows-any/wmdrmsdk.h | 0 .../include/any-windows-any/wmiatlprov.h | 0 .../libc}/include/any-windows-any/wmistr.h | 0 .../libc}/include/any-windows-any/wmiutils.h | 0 .../libc}/include/any-windows-any/wmsbuffer.h | 0 .../libc}/include/any-windows-any/wmsdkidl.h | 0 .../libc}/include/any-windows-any/wnnc.h | 0 .../include/any-windows-any/wow64apiset.h | 0 .../libc}/include/any-windows-any/wownt16.h | 0 .../libc}/include/any-windows-any/wownt32.h | 0 .../libc}/include/any-windows-any/wpapi.h | 0 .../libc}/include/any-windows-any/wpapimsg.h | 0 .../libc}/include/any-windows-any/wpcapi.h | 0 .../libc}/include/any-windows-any/wpcevent.h | 0 .../libc}/include/any-windows-any/wpcrsmsg.h | 0 .../libc}/include/any-windows-any/wpftpmsg.h | 0 .../libc}/include/any-windows-any/wppstmsg.h | 0 .../libc}/include/any-windows-any/wpspihlp.h | 0 .../libc}/include/any-windows-any/wptypes.h | 0 .../libc}/include/any-windows-any/wpwizmsg.h | 0 .../libc}/include/any-windows-any/wrl.h | 0 .../include/any-windows-any/wrl/client.h | 0 .../include/any-windows-any/wrl/internal.h | 0 .../include/any-windows-any/wrl/module.h | 0 .../wrl/wrappers/corewrappers.h | 0 .../libc}/include/any-windows-any/ws2atm.h | 0 .../libc}/include/any-windows-any/ws2bth.h | 0 .../libc}/include/any-windows-any/ws2def.h | 0 .../libc}/include/any-windows-any/ws2dnet.h | 0 .../libc}/include/any-windows-any/ws2ipdef.h | 0 .../libc}/include/any-windows-any/ws2spi.h | 0 .../libc}/include/any-windows-any/ws2tcpip.h | 0 .../libc}/include/any-windows-any/wsdapi.h | 0 .../include/any-windows-any/wsdattachment.h | 0 .../libc}/include/any-windows-any/wsdbase.h | 0 .../libc}/include/any-windows-any/wsdclient.h | 0 .../libc}/include/any-windows-any/wsddisco.h | 0 .../libc}/include/any-windows-any/wsdhost.h | 0 .../libc}/include/any-windows-any/wsdtypes.h | 0 .../libc}/include/any-windows-any/wsdutil.h | 0 .../libc}/include/any-windows-any/wsdxml.h | 0 .../libc}/include/any-windows-any/wsdxmldom.h | 0 .../libc}/include/any-windows-any/wshisotp.h | 0 .../libc}/include/any-windows-any/wsipv6ok.h | 0 .../libc}/include/any-windows-any/wsipx.h | 0 .../libc}/include/any-windows-any/wsman.h | 0 .../libc}/include/any-windows-any/wsmandisp.h | 0 .../libc}/include/any-windows-any/wsnetbs.h | 0 .../libc}/include/any-windows-any/wsnwlink.h | 0 .../libc}/include/any-windows-any/wspiapi.h | 0 .../libc}/include/any-windows-any/wsrm.h | 0 .../libc}/include/any-windows-any/wsvns.h | 0 .../libc}/include/any-windows-any/wtsapi32.h | 0 .../libc}/include/any-windows-any/wtypes.h | 0 .../include/any-windows-any/wtypesbase.h | 0 .../libc}/include/any-windows-any/xa.h | 0 .../libc}/include/any-windows-any/xcmc.h | 0 .../libc}/include/any-windows-any/xcmcext.h | 0 .../libc}/include/any-windows-any/xcmcmsx2.h | 0 .../libc}/include/any-windows-any/xcmcmsxt.h | 0 .../libc}/include/any-windows-any/xenroll.h | 0 .../libc}/include/any-windows-any/xinput.h | 0 .../libc}/include/any-windows-any/xlocinfo.h | 0 .../libc}/include/any-windows-any/xmath.h | 0 .../libc}/include/any-windows-any/xmldomdid.h | 0 .../libc}/include/any-windows-any/xmldsodid.h | 0 .../libc}/include/any-windows-any/xmllite.h | 0 .../libc}/include/any-windows-any/xmltrnsf.h | 0 .../libc}/include/any-windows-any/xolehlp.h | 0 .../any-windows-any/xpsdigitalsignature.h | 0 .../include/any-windows-any/xpsobjectmodel.h | 0 .../any-windows-any/xpsobjectmodel_1.h | 0 .../libc}/include/any-windows-any/xpsprint.h | 0 .../libc}/include/any-windows-any/xpsrassvc.h | 0 .../libc}/include/any-windows-any/ymath.h | 0 .../libc}/include/any-windows-any/yvals.h | 0 .../libc}/include/any-windows-any/zmouse.h | 0 .../libc}/include/arm-linux-any/asm/fcntl.h | 0 .../libc}/include/arm-linux-any/asm/ioctls.h | 0 .../libc}/include/arm-linux-any/asm/mman.h | 0 .../libc}/include/arm-linux-any/asm/statfs.h | 0 .../libc}/include/arm-linux-any/asm/swab.h | 0 .../libc}/include/arm-linux-any/asm/types.h | 0 .../include/arm-linux-gnueabi/bits/endian.h | 0 .../include/arm-linux-gnueabi/bits/fcntl.h | 0 .../include/arm-linux-gnueabi/bits/fenv.h | 0 .../include/arm-linux-gnueabi/bits/floatn.h | 0 .../include/arm-linux-gnueabi/bits/hwcap.h | 0 .../include/arm-linux-gnueabi/bits/link.h | 0 .../arm-linux-gnueabi/bits/long-double.h | 0 .../arm-linux-gnueabi/bits/procfs-id.h | 0 .../include/arm-linux-gnueabi/bits/procfs.h | 0 .../bits/pthreadtypes-arch.h | 0 .../arm-linux-gnueabi/bits/semaphore.h | 0 .../include/arm-linux-gnueabi/bits/setjmp.h | 0 .../include/arm-linux-gnueabi/bits/shmlba.h | 0 .../include/arm-linux-gnueabi/bits/stat.h | 0 .../include/arm-linux-gnueabi/bits/wordsize.h | 0 .../include/arm-linux-gnueabi/fpu_control.h | 0 .../include/arm-linux-gnueabi/gnu/lib-names.h | 0 .../include/arm-linux-gnueabi/gnu/stubs.h | 0 .../include/arm-linux-gnueabi/sys/ptrace.h | 0 .../include/arm-linux-gnueabi/sys/ucontext.h | 0 .../include/arm-linux-gnueabi/sys/user.h | 0 .../include/arm-linux-gnueabihf/bits/endian.h | 0 .../include/arm-linux-gnueabihf/bits/fcntl.h | 0 .../include/arm-linux-gnueabihf/bits/fenv.h | 0 .../include/arm-linux-gnueabihf/bits/floatn.h | 0 .../include/arm-linux-gnueabihf/bits/hwcap.h | 0 .../include/arm-linux-gnueabihf/bits/link.h | 0 .../arm-linux-gnueabihf/bits/long-double.h | 0 .../arm-linux-gnueabihf/bits/procfs-id.h | 0 .../include/arm-linux-gnueabihf/bits/procfs.h | 0 .../bits/pthreadtypes-arch.h | 0 .../arm-linux-gnueabihf/bits/semaphore.h | 0 .../include/arm-linux-gnueabihf/bits/setjmp.h | 0 .../include/arm-linux-gnueabihf/bits/shmlba.h | 0 .../include/arm-linux-gnueabihf/bits/stat.h | 0 .../arm-linux-gnueabihf/bits/wordsize.h | 0 .../include/arm-linux-gnueabihf/fpu_control.h | 0 .../arm-linux-gnueabihf/gnu/lib-names.h | 0 .../include/arm-linux-gnueabihf/gnu/stubs.h | 0 .../include/arm-linux-gnueabihf/sys/ptrace.h | 0 .../arm-linux-gnueabihf/sys/ucontext.h | 0 .../include/arm-linux-gnueabihf/sys/user.h | 0 .../libc}/include/arm-linux-musleabi/bfd.h | 0 .../include/arm-linux-musleabi/bfd_stdint.h | 0 .../include/arm-linux-musleabi/bits/fcntl.h | 0 .../include/arm-linux-musleabi/bits/hwcap.h | 0 .../arm-linux-musleabi/bits/ioctl_fix.h | 0 .../include/arm-linux-musleabi/bits/msg.h | 0 .../include/arm-linux-musleabi/bits/ptrace.h | 0 .../include/arm-linux-musleabi/bits/shm.h | 0 .../include/arm-linux-musleabi/bits/stdint.h | 0 .../libc}/include/arm-linux-musleabihf/bfd.h | 0 .../include/arm-linux-musleabihf/bfd_stdint.h | 0 .../include/arm-linux-musleabihf/bits/fcntl.h | 0 .../include/arm-linux-musleabihf/bits/hwcap.h | 0 .../arm-linux-musleabihf/bits/ioctl_fix.h | 0 .../include/arm-linux-musleabihf/bits/msg.h | 0 .../arm-linux-musleabihf/bits/ptrace.h | 0 .../include/arm-linux-musleabihf/bits/shm.h | 0 .../arm-linux-musleabihf/bits/stdint.h | 0 .../libc}/include/armeb-linux-any/asm/fcntl.h | 0 .../include/armeb-linux-any/asm/ioctls.h | 0 .../libc}/include/armeb-linux-any/asm/mman.h | 0 .../include/armeb-linux-any/asm/statfs.h | 0 .../libc}/include/armeb-linux-any/asm/swab.h | 0 .../libc}/include/armeb-linux-any/asm/types.h | 0 .../include/armeb-linux-gnueabi/bits/endian.h | 0 .../include/armeb-linux-gnueabi/bits/fcntl.h | 0 .../include/armeb-linux-gnueabi/bits/fenv.h | 0 .../include/armeb-linux-gnueabi/bits/floatn.h | 0 .../include/armeb-linux-gnueabi/bits/hwcap.h | 0 .../include/armeb-linux-gnueabi/bits/link.h | 0 .../armeb-linux-gnueabi/bits/long-double.h | 0 .../armeb-linux-gnueabi/bits/procfs-id.h | 0 .../include/armeb-linux-gnueabi/bits/procfs.h | 0 .../bits/pthreadtypes-arch.h | 0 .../armeb-linux-gnueabi/bits/semaphore.h | 0 .../include/armeb-linux-gnueabi/bits/setjmp.h | 0 .../include/armeb-linux-gnueabi/bits/shmlba.h | 0 .../include/armeb-linux-gnueabi/bits/stat.h | 0 .../armeb-linux-gnueabi/bits/wordsize.h | 0 .../include/armeb-linux-gnueabi/fpu_control.h | 0 .../armeb-linux-gnueabi/gnu/lib-names.h | 0 .../include/armeb-linux-gnueabi/gnu/stubs.h | 0 .../include/armeb-linux-gnueabi/sys/ptrace.h | 0 .../armeb-linux-gnueabi/sys/ucontext.h | 0 .../include/armeb-linux-gnueabi/sys/user.h | 0 .../armeb-linux-gnueabihf/bits/endian.h | 0 .../armeb-linux-gnueabihf/bits/fcntl.h | 0 .../include/armeb-linux-gnueabihf/bits/fenv.h | 0 .../armeb-linux-gnueabihf/bits/floatn.h | 0 .../armeb-linux-gnueabihf/bits/hwcap.h | 0 .../include/armeb-linux-gnueabihf/bits/link.h | 0 .../armeb-linux-gnueabihf/bits/long-double.h | 0 .../armeb-linux-gnueabihf/bits/procfs-id.h | 0 .../armeb-linux-gnueabihf/bits/procfs.h | 0 .../bits/pthreadtypes-arch.h | 0 .../armeb-linux-gnueabihf/bits/semaphore.h | 0 .../armeb-linux-gnueabihf/bits/setjmp.h | 0 .../armeb-linux-gnueabihf/bits/shmlba.h | 0 .../include/armeb-linux-gnueabihf/bits/stat.h | 0 .../armeb-linux-gnueabihf/bits/wordsize.h | 0 .../armeb-linux-gnueabihf/fpu_control.h | 0 .../armeb-linux-gnueabihf/gnu/lib-names.h | 0 .../include/armeb-linux-gnueabihf/gnu/stubs.h | 0 .../armeb-linux-gnueabihf/sys/ptrace.h | 0 .../armeb-linux-gnueabihf/sys/ucontext.h | 0 .../include/armeb-linux-gnueabihf/sys/user.h | 0 .../libc}/include/armeb-linux-musleabi/bfd.h | 0 .../include/armeb-linux-musleabi/bfd_stdint.h | 0 .../include/armeb-linux-musleabi/bits/fcntl.h | 0 .../include/armeb-linux-musleabi/bits/hwcap.h | 0 .../armeb-linux-musleabi/bits/ioctl_fix.h | 0 .../include/armeb-linux-musleabi/bits/msg.h | 0 .../armeb-linux-musleabi/bits/ptrace.h | 0 .../include/armeb-linux-musleabi/bits/shm.h | 0 .../armeb-linux-musleabi/bits/stdint.h | 0 .../include/armeb-linux-musleabihf/bfd.h | 0 .../armeb-linux-musleabihf/bfd_stdint.h | 0 .../armeb-linux-musleabihf/bits/fcntl.h | 0 .../armeb-linux-musleabihf/bits/hwcap.h | 0 .../armeb-linux-musleabihf/bits/ioctl_fix.h | 0 .../include/armeb-linux-musleabihf/bits/msg.h | 0 .../armeb-linux-musleabihf/bits/ptrace.h | 0 .../include/armeb-linux-musleabihf/bits/shm.h | 0 .../armeb-linux-musleabihf/bits/stdint.h | 0 .../libc}/include/generic-glibc/a.out.h | 0 .../libc}/include/generic-glibc/aio.h | 0 .../libc}/include/generic-glibc/aliases.h | 0 .../libc}/include/generic-glibc/alloca.h | 0 {libc => lib/libc}/include/generic-glibc/ar.h | 0 .../libc}/include/generic-glibc/argp.h | 0 .../libc}/include/generic-glibc/argz.h | 0 .../libc}/include/generic-glibc/arpa/ftp.h | 0 .../libc}/include/generic-glibc/arpa/inet.h | 0 .../include/generic-glibc/arpa/nameser.h | 0 .../generic-glibc/arpa/nameser_compat.h | 0 .../libc}/include/generic-glibc/arpa/telnet.h | 0 .../libc}/include/generic-glibc/arpa/tftp.h | 0 .../libc}/include/generic-glibc/assert.h | 0 .../libc}/include/generic-glibc/bits/a.out.h | 0 .../include/generic-glibc/bits/argp-ldbl.h | 0 .../include/generic-glibc/bits/byteswap.h | 0 .../include/generic-glibc/bits/cmathcalls.h | 0 .../include/generic-glibc/bits/confname.h | 0 .../include/generic-glibc/bits/cpu-set.h | 0 .../libc}/include/generic-glibc/bits/dirent.h | 0 .../libc}/include/generic-glibc/bits/dlfcn.h | 0 .../include/generic-glibc/bits/elfclass.h | 0 .../libc}/include/generic-glibc/bits/endian.h | 0 .../include/generic-glibc/bits/environments.h | 0 .../libc}/include/generic-glibc/bits/epoll.h | 0 .../include/generic-glibc/bits/err-ldbl.h | 0 .../libc}/include/generic-glibc/bits/errno.h | 0 .../include/generic-glibc/bits/error-ldbl.h | 0 .../libc}/include/generic-glibc/bits/error.h | 0 .../include/generic-glibc/bits/eventfd.h | 0 .../include/generic-glibc/bits/fcntl-linux.h | 0 .../libc}/include/generic-glibc/bits/fcntl.h | 0 .../libc}/include/generic-glibc/bits/fcntl2.h | 0 .../libc}/include/generic-glibc/bits/fenv.h | 0 .../include/generic-glibc/bits/fenvinline.h | 0 .../generic-glibc/bits/floatn-common.h | 0 .../libc}/include/generic-glibc/bits/floatn.h | 0 .../generic-glibc/bits/flt-eval-method.h | 0 .../include/generic-glibc/bits/fp-fast.h | 0 .../include/generic-glibc/bits/fp-logb.h | 0 .../include/generic-glibc/bits/getopt_core.h | 0 .../include/generic-glibc/bits/getopt_ext.h | 0 .../include/generic-glibc/bits/getopt_posix.h | 0 .../libc}/include/generic-glibc/bits/hwcap.h | 0 .../libc}/include/generic-glibc/bits/in.h | 0 .../generic-glibc/bits/indirect-return.h | 0 .../include/generic-glibc/bits/initspin.h | 0 .../include/generic-glibc/bits/inotify.h | 0 .../include/generic-glibc/bits/ioctl-types.h | 0 .../libc}/include/generic-glibc/bits/ioctls.h | 0 .../libc}/include/generic-glibc/bits/ipc.h | 0 .../include/generic-glibc/bits/ipctypes.h | 0 .../include/generic-glibc/bits/iscanonical.h | 0 .../generic-glibc/bits/libc-header-start.h | 0 .../generic-glibc/bits/libm-simd-decl-stubs.h | 0 .../libc}/include/generic-glibc/bits/link.h | 0 .../include/generic-glibc/bits/local_lim.h | 0 .../libc}/include/generic-glibc/bits/locale.h | 0 .../include/generic-glibc/bits/long-double.h | 0 .../include/generic-glibc/bits/math-finite.h | 0 .../generic-glibc/bits/math-vector-fortran.h | 0 .../include/generic-glibc/bits/math-vector.h | 0 .../bits/mathcalls-helper-functions.h | 0 .../generic-glibc/bits/mathcalls-narrow.h | 0 .../include/generic-glibc/bits/mathcalls.h | 0 .../include/generic-glibc/bits/mathdef.h | 0 .../include/generic-glibc/bits/mathinline.h | 0 .../include/generic-glibc/bits/mman-linux.h | 0 .../bits/mman-map-flags-generic.h | 0 .../include/generic-glibc/bits/mman-shared.h | 0 .../libc}/include/generic-glibc/bits/mman.h | 0 .../generic-glibc/bits/monetary-ldbl.h | 0 .../libc}/include/generic-glibc/bits/mqueue.h | 0 .../include/generic-glibc/bits/mqueue2.h | 0 .../include/generic-glibc/bits/msq-pad.h | 0 .../libc}/include/generic-glibc/bits/msq.h | 0 .../libc}/include/generic-glibc/bits/netdb.h | 0 .../libc}/include/generic-glibc/bits/param.h | 0 .../libc}/include/generic-glibc/bits/poll.h | 0 .../libc}/include/generic-glibc/bits/poll2.h | 0 .../include/generic-glibc/bits/posix1_lim.h | 0 .../include/generic-glibc/bits/posix2_lim.h | 0 .../include/generic-glibc/bits/posix_opt.h | 0 .../libc}/include/generic-glibc/bits/ppc.h | 0 .../include/generic-glibc/bits/printf-ldbl.h | 0 .../include/generic-glibc/bits/procfs-extra.h | 0 .../include/generic-glibc/bits/procfs-id.h | 0 .../generic-glibc/bits/procfs-prregset.h | 0 .../libc}/include/generic-glibc/bits/procfs.h | 0 .../generic-glibc/bits/pthreadtypes-arch.h | 0 .../include/generic-glibc/bits/pthreadtypes.h | 0 .../generic-glibc/bits/ptrace-shared.h | 0 .../include/generic-glibc/bits/resource.h | 0 .../libc}/include/generic-glibc/bits/sched.h | 0 .../libc}/include/generic-glibc/bits/select.h | 0 .../include/generic-glibc/bits/select2.h | 0 .../include/generic-glibc/bits/sem-pad.h | 0 .../libc}/include/generic-glibc/bits/sem.h | 0 .../include/generic-glibc/bits/semaphore.h | 0 .../libc}/include/generic-glibc/bits/setjmp.h | 0 .../include/generic-glibc/bits/setjmp2.h | 0 .../include/generic-glibc/bits/shm-pad.h | 0 .../libc}/include/generic-glibc/bits/shm.h | 0 .../libc}/include/generic-glibc/bits/shmlba.h | 0 .../include/generic-glibc/bits/sigaction.h | 0 .../include/generic-glibc/bits/sigcontext.h | 0 .../generic-glibc/bits/sigevent-consts.h | 0 .../include/generic-glibc/bits/siginfo-arch.h | 0 .../generic-glibc/bits/siginfo-consts-arch.h | 0 .../generic-glibc/bits/siginfo-consts.h | 0 .../include/generic-glibc/bits/signalfd.h | 0 .../generic-glibc/bits/signum-generic.h | 0 .../libc}/include/generic-glibc/bits/signum.h | 0 .../include/generic-glibc/bits/sigstack.h | 0 .../include/generic-glibc/bits/sigthread.h | 0 .../include/generic-glibc/bits/sockaddr.h | 0 .../libc}/include/generic-glibc/bits/socket.h | 0 .../include/generic-glibc/bits/socket2.h | 0 .../include/generic-glibc/bits/socket_type.h | 0 .../include/generic-glibc/bits/ss_flags.h | 0 .../libc}/include/generic-glibc/bits/stab.def | 0 .../libc}/include/generic-glibc/bits/stat.h | 0 .../libc}/include/generic-glibc/bits/statfs.h | 0 .../include/generic-glibc/bits/statvfs.h | 0 .../libc}/include/generic-glibc/bits/statx.h | 0 .../include/generic-glibc/bits/stdint-intn.h | 0 .../include/generic-glibc/bits/stdint-uintn.h | 0 .../include/generic-glibc/bits/stdio-ldbl.h | 0 .../libc}/include/generic-glibc/bits/stdio.h | 0 .../libc}/include/generic-glibc/bits/stdio2.h | 0 .../include/generic-glibc/bits/stdio_lim.h | 0 .../generic-glibc/bits/stdlib-bsearch.h | 0 .../include/generic-glibc/bits/stdlib-float.h | 0 .../include/generic-glibc/bits/stdlib-ldbl.h | 0 .../libc}/include/generic-glibc/bits/stdlib.h | 0 .../generic-glibc/bits/string_fortified.h | 0 .../generic-glibc/bits/strings_fortified.h | 0 .../include/generic-glibc/bits/stropts.h | 0 .../include/generic-glibc/bits/sys_errlist.h | 0 .../include/generic-glibc/bits/syscall.h | 0 .../libc}/include/generic-glibc/bits/sysctl.h | 0 .../include/generic-glibc/bits/syslog-ldbl.h | 0 .../include/generic-glibc/bits/syslog-path.h | 0 .../libc}/include/generic-glibc/bits/syslog.h | 0 .../include/generic-glibc/bits/sysmacros.h | 0 .../include/generic-glibc/bits/termios-baud.h | 0 .../include/generic-glibc/bits/termios-c_cc.h | 0 .../generic-glibc/bits/termios-c_cflag.h | 0 .../generic-glibc/bits/termios-c_iflag.h | 0 .../generic-glibc/bits/termios-c_lflag.h | 0 .../generic-glibc/bits/termios-c_oflag.h | 0 .../include/generic-glibc/bits/termios-misc.h | 0 .../generic-glibc/bits/termios-struct.h | 0 .../generic-glibc/bits/termios-tcflow.h | 0 .../include/generic-glibc/bits/termios.h | 0 .../generic-glibc/bits/thread-shared-types.h | 0 .../libc}/include/generic-glibc/bits/time.h | 0 .../libc}/include/generic-glibc/bits/time64.h | 0 .../include/generic-glibc/bits/timerfd.h | 0 .../include/generic-glibc/bits/timesize.h | 0 .../libc}/include/generic-glibc/bits/timex.h | 0 .../libc}/include/generic-glibc/bits/types.h | 0 .../include/generic-glibc/bits/types/FILE.h | 0 .../include/generic-glibc/bits/types/__FILE.h | 0 .../generic-glibc/bits/types/__fpos64_t.h | 0 .../generic-glibc/bits/types/__fpos_t.h | 0 .../generic-glibc/bits/types/__locale_t.h | 0 .../generic-glibc/bits/types/__mbstate_t.h | 0 .../generic-glibc/bits/types/__sigset_t.h | 0 .../generic-glibc/bits/types/__sigval_t.h | 0 .../generic-glibc/bits/types/clock_t.h | 0 .../generic-glibc/bits/types/clockid_t.h | 0 .../bits/types/cookie_io_functions_t.h | 0 .../generic-glibc/bits/types/error_t.h | 0 .../generic-glibc/bits/types/locale_t.h | 0 .../generic-glibc/bits/types/mbstate_t.h | 0 .../generic-glibc/bits/types/res_state.h | 0 .../generic-glibc/bits/types/sig_atomic_t.h | 0 .../generic-glibc/bits/types/sigevent_t.h | 0 .../generic-glibc/bits/types/siginfo_t.h | 0 .../generic-glibc/bits/types/sigset_t.h | 0 .../generic-glibc/bits/types/sigval_t.h | 0 .../generic-glibc/bits/types/stack_t.h | 0 .../generic-glibc/bits/types/struct_FILE.h | 0 .../generic-glibc/bits/types/struct_iovec.h | 0 .../bits/types/struct_itimerspec.h | 0 .../bits/types/struct_osockaddr.h | 0 .../generic-glibc/bits/types/struct_rusage.h | 0 .../bits/types/struct_sched_param.h | 0 .../bits/types/struct_sigstack.h | 0 .../bits/types/struct_timespec.h | 0 .../generic-glibc/bits/types/struct_timeval.h | 0 .../generic-glibc/bits/types/struct_tm.h | 0 .../include/generic-glibc/bits/types/time_t.h | 0 .../generic-glibc/bits/types/timer_t.h | 0 .../include/generic-glibc/bits/types/wint_t.h | 0 .../include/generic-glibc/bits/typesizes.h | 0 .../generic-glibc/bits/uintn-identity.h | 0 .../include/generic-glibc/bits/uio-ext.h | 0 .../include/generic-glibc/bits/uio_lim.h | 0 .../libc}/include/generic-glibc/bits/unistd.h | 0 .../include/generic-glibc/bits/unistd_ext.h | 0 .../libc}/include/generic-glibc/bits/utmp.h | 0 .../libc}/include/generic-glibc/bits/utmpx.h | 0 .../include/generic-glibc/bits/utsname.h | 0 .../include/generic-glibc/bits/waitflags.h | 0 .../include/generic-glibc/bits/waitstatus.h | 0 .../include/generic-glibc/bits/wchar-ldbl.h | 0 .../libc}/include/generic-glibc/bits/wchar.h | 0 .../libc}/include/generic-glibc/bits/wchar2.h | 0 .../include/generic-glibc/bits/wctype-wchar.h | 0 .../include/generic-glibc/bits/wordsize.h | 0 .../include/generic-glibc/bits/xopen_lim.h | 0 .../include/generic-glibc/bits/xtitypes.h | 0 .../libc}/include/generic-glibc/byteswap.h | 0 .../libc}/include/generic-glibc/complex.h | 0 .../libc}/include/generic-glibc/cpio.h | 0 .../libc}/include/generic-glibc/crypt.h | 0 .../libc}/include/generic-glibc/ctype.h | 0 .../libc}/include/generic-glibc/dirent.h | 0 .../libc}/include/generic-glibc/dlfcn.h | 0 .../libc}/include/generic-glibc/elf.h | 0 .../libc}/include/generic-glibc/endian.h | 0 .../libc}/include/generic-glibc/envz.h | 0 .../libc}/include/generic-glibc/err.h | 0 .../libc}/include/generic-glibc/errno.h | 0 .../libc}/include/generic-glibc/error.h | 0 .../libc}/include/generic-glibc/execinfo.h | 0 .../libc}/include/generic-glibc/fcntl.h | 0 .../libc}/include/generic-glibc/features.h | 0 .../libc}/include/generic-glibc/fenv.h | 0 .../libc}/include/generic-glibc/fmtmsg.h | 0 .../libc}/include/generic-glibc/fnmatch.h | 0 .../libc}/include/generic-glibc/fpregdef.h | 0 .../libc}/include/generic-glibc/fpu_control.h | 0 .../libc}/include/generic-glibc/fstab.h | 0 .../libc}/include/generic-glibc/fts.h | 0 .../libc}/include/generic-glibc/ftw.h | 0 .../libc}/include/generic-glibc/gconv.h | 0 .../libc}/include/generic-glibc/getopt.h | 0 .../libc}/include/generic-glibc/glob.h | 0 .../include/generic-glibc/gnu-versions.h | 0 .../include/generic-glibc/gnu/lib-names-32.h | 0 .../generic-glibc/gnu/lib-names-hard.h | 0 .../generic-glibc/gnu/lib-names-n32_hard.h | 0 .../generic-glibc/gnu/lib-names-n64_hard.h | 0 .../generic-glibc/gnu/lib-names-o32_hard.h | 0 .../generic-glibc/gnu/lib-names-soft.h | 0 .../include/generic-glibc/gnu/lib-names.h | 0 .../include/generic-glibc/gnu/libc-version.h | 0 .../include/generic-glibc/gnu/stubs-32.h | 0 .../include/generic-glibc/gnu/stubs-hard.h | 0 .../generic-glibc/gnu/stubs-n32_hard.h | 0 .../generic-glibc/gnu/stubs-n64_hard.h | 0 .../generic-glibc/gnu/stubs-o32_hard.h | 0 .../include/generic-glibc/gnu/stubs-soft.h | 0 .../libc}/include/generic-glibc/gnu/stubs.h | 0 .../libc}/include/generic-glibc/grp.h | 0 .../libc}/include/generic-glibc/gshadow.h | 0 .../libc}/include/generic-glibc/iconv.h | 0 .../libc}/include/generic-glibc/ieee754.h | 0 .../libc}/include/generic-glibc/ifaddrs.h | 0 .../libc}/include/generic-glibc/inttypes.h | 0 .../libc}/include/generic-glibc/langinfo.h | 0 .../libc}/include/generic-glibc/lastlog.h | 0 .../libc}/include/generic-glibc/libgen.h | 0 .../libc}/include/generic-glibc/libintl.h | 0 .../libc}/include/generic-glibc/limits.h | 0 .../libc}/include/generic-glibc/link.h | 0 .../libc}/include/generic-glibc/locale.h | 0 .../libc}/include/generic-glibc/malloc.h | 0 .../libc}/include/generic-glibc/math.h | 0 .../libc}/include/generic-glibc/mcheck.h | 0 .../libc}/include/generic-glibc/memory.h | 0 .../libc}/include/generic-glibc/mntent.h | 0 .../libc}/include/generic-glibc/monetary.h | 0 .../libc}/include/generic-glibc/mqueue.h | 0 .../include/generic-glibc/net/ethernet.h | 0 .../libc}/include/generic-glibc/net/if.h | 0 .../libc}/include/generic-glibc/net/if_arp.h | 0 .../include/generic-glibc/net/if_packet.h | 0 .../libc}/include/generic-glibc/net/if_ppp.h | 0 .../include/generic-glibc/net/if_shaper.h | 0 .../libc}/include/generic-glibc/net/if_slip.h | 0 .../include/generic-glibc/net/ppp-comp.h | 0 .../include/generic-glibc/net/ppp_defs.h | 0 .../libc}/include/generic-glibc/net/route.h | 0 .../libc}/include/generic-glibc/netash/ash.h | 0 .../libc}/include/generic-glibc/netatalk/at.h | 0 .../include/generic-glibc/netax25/ax25.h | 0 .../libc}/include/generic-glibc/netdb.h | 0 .../include/generic-glibc/neteconet/ec.h | 0 .../include/generic-glibc/netinet/ether.h | 0 .../include/generic-glibc/netinet/icmp6.h | 0 .../include/generic-glibc/netinet/if_ether.h | 0 .../include/generic-glibc/netinet/if_fddi.h | 0 .../include/generic-glibc/netinet/if_tr.h | 0 .../include/generic-glibc/netinet/igmp.h | 0 .../libc}/include/generic-glibc/netinet/in.h | 0 .../include/generic-glibc/netinet/in_systm.h | 0 .../libc}/include/generic-glibc/netinet/ip.h | 0 .../libc}/include/generic-glibc/netinet/ip6.h | 0 .../include/generic-glibc/netinet/ip_icmp.h | 0 .../libc}/include/generic-glibc/netinet/tcp.h | 0 .../libc}/include/generic-glibc/netinet/udp.h | 0 .../libc}/include/generic-glibc/netipx/ipx.h | 0 .../include/generic-glibc/netiucv/iucv.h | 0 .../include/generic-glibc/netpacket/packet.h | 0 .../include/generic-glibc/netrom/netrom.h | 0 .../include/generic-glibc/netrose/rose.h | 0 .../libc}/include/generic-glibc/nfs/nfs.h | 0 .../libc}/include/generic-glibc/nl_types.h | 0 .../libc}/include/generic-glibc/nss.h | 0 .../libc}/include/generic-glibc/obstack.h | 0 .../libc}/include/generic-glibc/paths.h | 0 .../libc}/include/generic-glibc/poll.h | 0 .../libc}/include/generic-glibc/printf.h | 0 .../include/generic-glibc/proc_service.h | 0 .../include/generic-glibc/protocols/routed.h | 0 .../include/generic-glibc/protocols/rwhod.h | 0 .../include/generic-glibc/protocols/talkd.h | 0 .../include/generic-glibc/protocols/timed.h | 0 .../libc}/include/generic-glibc/pthread.h | 0 .../libc}/include/generic-glibc/pty.h | 0 .../libc}/include/generic-glibc/pwd.h | 0 .../libc}/include/generic-glibc/re_comp.h | 0 .../libc}/include/generic-glibc/regdef.h | 0 .../libc}/include/generic-glibc/regex.h | 0 .../libc}/include/generic-glibc/regexp.h | 0 .../libc}/include/generic-glibc/resolv.h | 0 .../libc}/include/generic-glibc/rpc/netdb.h | 0 .../libc}/include/generic-glibc/sched.h | 0 .../libc}/include/generic-glibc/scsi/scsi.h | 0 .../include/generic-glibc/scsi/scsi_ioctl.h | 0 .../libc}/include/generic-glibc/scsi/sg.h | 0 .../libc}/include/generic-glibc/search.h | 0 .../libc}/include/generic-glibc/semaphore.h | 0 .../libc}/include/generic-glibc/setjmp.h | 0 .../libc}/include/generic-glibc/sgidefs.h | 0 .../libc}/include/generic-glibc/sgtty.h | 0 .../libc}/include/generic-glibc/shadow.h | 0 .../libc}/include/generic-glibc/signal.h | 0 .../libc}/include/generic-glibc/spawn.h | 0 .../libc}/include/generic-glibc/stab.h | 0 .../libc}/include/generic-glibc/stdc-predef.h | 0 .../libc}/include/generic-glibc/stdint.h | 0 .../libc}/include/generic-glibc/stdio.h | 0 .../libc}/include/generic-glibc/stdio_ext.h | 0 .../libc}/include/generic-glibc/stdlib.h | 0 .../libc}/include/generic-glibc/string.h | 0 .../libc}/include/generic-glibc/strings.h | 0 .../libc}/include/generic-glibc/stropts.h | 0 .../libc}/include/generic-glibc/sys/acct.h | 0 .../libc}/include/generic-glibc/sys/asm.h | 0 .../libc}/include/generic-glibc/sys/auxv.h | 0 .../libc}/include/generic-glibc/sys/bitypes.h | 0 .../include/generic-glibc/sys/cachectl.h | 0 .../libc}/include/generic-glibc/sys/cdefs.h | 0 .../include/generic-glibc/sys/debugreg.h | 0 .../libc}/include/generic-glibc/sys/dir.h | 0 .../libc}/include/generic-glibc/sys/elf.h | 0 .../libc}/include/generic-glibc/sys/epoll.h | 0 .../libc}/include/generic-glibc/sys/errno.h | 0 .../libc}/include/generic-glibc/sys/eventfd.h | 0 .../include/generic-glibc/sys/fanotify.h | 0 .../libc}/include/generic-glibc/sys/fcntl.h | 0 .../libc}/include/generic-glibc/sys/file.h | 0 .../include/generic-glibc/sys/fpregdef.h | 0 .../libc}/include/generic-glibc/sys/fsuid.h | 0 .../libc}/include/generic-glibc/sys/gmon.h | 0 .../include/generic-glibc/sys/gmon_out.h | 0 .../libc}/include/generic-glibc/sys/inotify.h | 0 .../libc}/include/generic-glibc/sys/io.h | 0 .../libc}/include/generic-glibc/sys/ioctl.h | 0 .../libc}/include/generic-glibc/sys/ipc.h | 0 .../libc}/include/generic-glibc/sys/kd.h | 0 .../libc}/include/generic-glibc/sys/klog.h | 0 .../libc}/include/generic-glibc/sys/mman.h | 0 .../libc}/include/generic-glibc/sys/mount.h | 0 .../libc}/include/generic-glibc/sys/msg.h | 0 .../libc}/include/generic-glibc/sys/mtio.h | 0 .../libc}/include/generic-glibc/sys/param.h | 0 .../libc}/include/generic-glibc/sys/pci.h | 0 .../libc}/include/generic-glibc/sys/perm.h | 0 .../include/generic-glibc/sys/personality.h | 0 .../include/generic-glibc/sys/platform/ppc.h | 0 .../libc}/include/generic-glibc/sys/poll.h | 0 .../libc}/include/generic-glibc/sys/prctl.h | 0 .../libc}/include/generic-glibc/sys/procfs.h | 0 .../libc}/include/generic-glibc/sys/profil.h | 0 .../libc}/include/generic-glibc/sys/ptrace.h | 0 .../libc}/include/generic-glibc/sys/queue.h | 0 .../libc}/include/generic-glibc/sys/quota.h | 0 .../libc}/include/generic-glibc/sys/random.h | 0 .../libc}/include/generic-glibc/sys/raw.h | 0 .../libc}/include/generic-glibc/sys/reboot.h | 0 .../libc}/include/generic-glibc/sys/reg.h | 0 .../libc}/include/generic-glibc/sys/regdef.h | 0 .../include/generic-glibc/sys/resource.h | 0 .../libc}/include/generic-glibc/sys/select.h | 0 .../libc}/include/generic-glibc/sys/sem.h | 0 .../include/generic-glibc/sys/sendfile.h | 0 .../libc}/include/generic-glibc/sys/shm.h | 0 .../libc}/include/generic-glibc/sys/signal.h | 0 .../include/generic-glibc/sys/signalfd.h | 0 .../libc}/include/generic-glibc/sys/socket.h | 0 .../include/generic-glibc/sys/socketvar.h | 0 .../include/generic-glibc/sys/soundcard.h | 0 .../libc}/include/generic-glibc/sys/stat.h | 0 .../libc}/include/generic-glibc/sys/statfs.h | 0 .../libc}/include/generic-glibc/sys/statvfs.h | 0 .../libc}/include/generic-glibc/sys/stropts.h | 0 .../libc}/include/generic-glibc/sys/swap.h | 0 .../libc}/include/generic-glibc/sys/syscall.h | 0 .../libc}/include/generic-glibc/sys/sysctl.h | 0 .../libc}/include/generic-glibc/sys/sysinfo.h | 0 .../libc}/include/generic-glibc/sys/syslog.h | 0 .../include/generic-glibc/sys/sysmacros.h | 0 .../libc}/include/generic-glibc/sys/sysmips.h | 0 .../libc}/include/generic-glibc/sys/tas.h | 0 .../libc}/include/generic-glibc/sys/termios.h | 0 .../libc}/include/generic-glibc/sys/time.h | 0 .../libc}/include/generic-glibc/sys/timeb.h | 0 .../libc}/include/generic-glibc/sys/timerfd.h | 0 .../libc}/include/generic-glibc/sys/times.h | 0 .../libc}/include/generic-glibc/sys/timex.h | 0 .../include/generic-glibc/sys/ttychars.h | 0 .../include/generic-glibc/sys/ttydefaults.h | 0 .../libc}/include/generic-glibc/sys/types.h | 0 .../include/generic-glibc/sys/ucontext.h | 0 .../libc}/include/generic-glibc/sys/uio.h | 0 .../libc}/include/generic-glibc/sys/un.h | 0 .../libc}/include/generic-glibc/sys/unistd.h | 0 .../libc}/include/generic-glibc/sys/user.h | 0 .../libc}/include/generic-glibc/sys/utsname.h | 0 .../libc}/include/generic-glibc/sys/vfs.h | 0 .../libc}/include/generic-glibc/sys/vlimit.h | 0 .../libc}/include/generic-glibc/sys/vm86.h | 0 .../libc}/include/generic-glibc/sys/vt.h | 0 .../libc}/include/generic-glibc/sys/vtimes.h | 0 .../libc}/include/generic-glibc/sys/wait.h | 0 .../libc}/include/generic-glibc/sys/xattr.h | 0 .../libc}/include/generic-glibc/syscall.h | 0 .../libc}/include/generic-glibc/sysexits.h | 0 .../libc}/include/generic-glibc/syslog.h | 0 .../libc}/include/generic-glibc/tar.h | 0 .../libc}/include/generic-glibc/termio.h | 0 .../libc}/include/generic-glibc/termios.h | 0 .../libc}/include/generic-glibc/tgmath.h | 0 .../libc}/include/generic-glibc/thread_db.h | 0 .../libc}/include/generic-glibc/threads.h | 0 .../libc}/include/generic-glibc/time.h | 0 .../libc}/include/generic-glibc/ttyent.h | 0 .../libc}/include/generic-glibc/uchar.h | 0 .../libc}/include/generic-glibc/ucontext.h | 0 .../libc}/include/generic-glibc/ulimit.h | 0 .../libc}/include/generic-glibc/unistd.h | 0 .../libc}/include/generic-glibc/utime.h | 0 .../libc}/include/generic-glibc/utmp.h | 0 .../libc}/include/generic-glibc/utmpx.h | 0 .../libc}/include/generic-glibc/values.h | 0 .../libc}/include/generic-glibc/wait.h | 0 .../libc}/include/generic-glibc/wchar.h | 0 .../libc}/include/generic-glibc/wctype.h | 0 .../libc}/include/generic-glibc/wordexp.h | 0 {libc => lib/libc}/include/generic-musl/aio.h | 0 .../libc}/include/generic-musl/alloca.h | 0 .../libc}/include/generic-musl/ansidecl.h | 0 {libc => lib/libc}/include/generic-musl/ar.h | 0 .../libc}/include/generic-musl/arpa/ftp.h | 0 .../libc}/include/generic-musl/arpa/inet.h | 0 .../libc}/include/generic-musl/arpa/nameser.h | 0 .../generic-musl/arpa/nameser_compat.h | 0 .../libc}/include/generic-musl/arpa/telnet.h | 0 .../libc}/include/generic-musl/arpa/tftp.h | 0 .../libc}/include/generic-musl/assert.h | 0 {libc => lib/libc}/include/generic-musl/bfd.h | 0 .../libc}/include/generic-musl/bfdlink.h | 0 .../include/generic-musl/bits/alltypes.h | 0 .../libc}/include/generic-musl/bits/endian.h | 0 .../libc}/include/generic-musl/bits/errno.h | 0 .../libc}/include/generic-musl/bits/fcntl.h | 0 .../libc}/include/generic-musl/bits/fenv.h | 0 .../libc}/include/generic-musl/bits/float.h | 0 .../libc}/include/generic-musl/bits/hwcap.h | 0 .../libc}/include/generic-musl/bits/io.h | 0 .../libc}/include/generic-musl/bits/ioctl.h | 0 .../include/generic-musl/bits/ioctl_fix.h | 0 .../libc}/include/generic-musl/bits/ipc.h | 0 .../libc}/include/generic-musl/bits/kd.h | 0 .../libc}/include/generic-musl/bits/limits.h | 0 .../libc}/include/generic-musl/bits/link.h | 0 .../libc}/include/generic-musl/bits/mman.h | 0 .../libc}/include/generic-musl/bits/msg.h | 0 .../libc}/include/generic-musl/bits/poll.h | 0 .../libc}/include/generic-musl/bits/posix.h | 0 .../libc}/include/generic-musl/bits/ptrace.h | 0 .../libc}/include/generic-musl/bits/reg.h | 0 .../include/generic-musl/bits/resource.h | 0 .../libc}/include/generic-musl/bits/sem.h | 0 .../libc}/include/generic-musl/bits/setjmp.h | 0 .../libc}/include/generic-musl/bits/shm.h | 0 .../libc}/include/generic-musl/bits/signal.h | 0 .../libc}/include/generic-musl/bits/socket.h | 0 .../include/generic-musl/bits/soundcard.h | 0 .../libc}/include/generic-musl/bits/stat.h | 0 .../libc}/include/generic-musl/bits/statfs.h | 0 .../libc}/include/generic-musl/bits/stdint.h | 0 .../libc}/include/generic-musl/bits/syscall.h | 0 .../libc}/include/generic-musl/bits/termios.h | 0 .../libc}/include/generic-musl/bits/user.h | 0 .../libc}/include/generic-musl/bits/vt.h | 0 .../libc}/include/generic-musl/byteswap.h | 0 .../libc}/include/generic-musl/complex.h | 0 .../libc}/include/generic-musl/cpio.h | 0 .../libc}/include/generic-musl/crypt.h | 0 .../libc}/include/generic-musl/ctype.h | 0 .../libc}/include/generic-musl/diagnostics.h | 0 .../libc}/include/generic-musl/dirent.h | 0 .../libc}/include/generic-musl/dis-asm.h | 0 .../libc}/include/generic-musl/dlfcn.h | 0 .../include/generic-musl/drm/amdgpu_drm.h | 0 .../include/generic-musl/drm/armada_drm.h | 0 .../libc}/include/generic-musl/drm/drm.h | 0 .../include/generic-musl/drm/drm_fourcc.h | 0 .../libc}/include/generic-musl/drm/drm_mode.h | 0 .../include/generic-musl/drm/drm_sarea.h | 0 .../include/generic-musl/drm/etnaviv_drm.h | 0 .../include/generic-musl/drm/exynos_drm.h | 0 .../libc}/include/generic-musl/drm/i810_drm.h | 0 .../libc}/include/generic-musl/drm/i915_drm.h | 0 .../libc}/include/generic-musl/drm/mga_drm.h | 0 .../libc}/include/generic-musl/drm/msm_drm.h | 0 .../include/generic-musl/drm/nouveau_drm.h | 0 .../libc}/include/generic-musl/drm/omap_drm.h | 0 .../libc}/include/generic-musl/drm/qxl_drm.h | 0 .../libc}/include/generic-musl/drm/r128_drm.h | 0 .../include/generic-musl/drm/radeon_drm.h | 0 .../include/generic-musl/drm/savage_drm.h | 0 .../libc}/include/generic-musl/drm/sis_drm.h | 0 .../include/generic-musl/drm/tegra_drm.h | 0 .../libc}/include/generic-musl/drm/v3d_drm.h | 0 .../libc}/include/generic-musl/drm/vc4_drm.h | 0 .../libc}/include/generic-musl/drm/vgem_drm.h | 0 .../libc}/include/generic-musl/drm/via_drm.h | 0 .../include/generic-musl/drm/virtgpu_drm.h | 0 .../include/generic-musl/drm/vmwgfx_drm.h | 0 {libc => lib/libc}/include/generic-musl/elf.h | 0 .../libc}/include/generic-musl/endian.h | 0 {libc => lib/libc}/include/generic-musl/err.h | 0 .../libc}/include/generic-musl/errno.h | 0 .../libc}/include/generic-musl/fcntl.h | 0 .../libc}/include/generic-musl/features.h | 0 .../libc}/include/generic-musl/fenv.h | 0 .../libc}/include/generic-musl/float.h | 0 .../libc}/include/generic-musl/fmtmsg.h | 0 .../libc}/include/generic-musl/fnmatch.h | 0 {libc => lib/libc}/include/generic-musl/ftw.h | 0 .../libc}/include/generic-musl/getopt.h | 0 .../libc}/include/generic-musl/glob.h | 0 {libc => lib/libc}/include/generic-musl/grp.h | 0 .../libc}/include/generic-musl/iconv.h | 0 .../libc}/include/generic-musl/ifaddrs.h | 0 .../libc}/include/generic-musl/inttypes.h | 0 .../libc}/include/generic-musl/iso646.h | 0 .../libc}/include/generic-musl/langinfo.h | 0 .../libc}/include/generic-musl/lastlog.h | 0 .../libc}/include/generic-musl/libgen.h | 0 .../libc}/include/generic-musl/libintl.h | 0 .../libc}/include/generic-musl/limits.h | 0 .../libc}/include/generic-musl/link.h | 0 .../libc}/include/generic-musl/locale.h | 0 .../libc}/include/generic-musl/malloc.h | 0 .../libc}/include/generic-musl/math.h | 0 .../libc}/include/generic-musl/memory.h | 0 .../libc}/include/generic-musl/misc/cxl.h | 0 .../libc}/include/generic-musl/misc/ocxl.h | 0 .../libc}/include/generic-musl/mntent.h | 0 .../libc}/include/generic-musl/monetary.h | 0 .../libc}/include/generic-musl/mqueue.h | 0 .../include/generic-musl/mtd/inftl-user.h | 0 .../libc}/include/generic-musl/mtd/mtd-abi.h | 0 .../libc}/include/generic-musl/mtd/mtd-user.h | 0 .../include/generic-musl/mtd/nftl-user.h | 0 .../libc}/include/generic-musl/mtd/ubi-user.h | 0 .../libc}/include/generic-musl/net/ethernet.h | 0 .../libc}/include/generic-musl/net/if.h | 0 .../libc}/include/generic-musl/net/if_arp.h | 0 .../libc}/include/generic-musl/net/route.h | 0 .../libc}/include/generic-musl/netdb.h | 0 .../include/generic-musl/netinet/ether.h | 0 .../include/generic-musl/netinet/icmp6.h | 0 .../include/generic-musl/netinet/if_ether.h | 0 .../libc}/include/generic-musl/netinet/igmp.h | 0 .../libc}/include/generic-musl/netinet/in.h | 0 .../include/generic-musl/netinet/in_systm.h | 0 .../libc}/include/generic-musl/netinet/ip.h | 0 .../libc}/include/generic-musl/netinet/ip6.h | 0 .../include/generic-musl/netinet/ip_icmp.h | 0 .../libc}/include/generic-musl/netinet/tcp.h | 0 .../libc}/include/generic-musl/netinet/udp.h | 0 .../include/generic-musl/netpacket/packet.h | 0 .../libc}/include/generic-musl/nl_types.h | 0 .../libc}/include/generic-musl/paths.h | 0 .../libc}/include/generic-musl/plugin-api.h | 0 .../libc}/include/generic-musl/poll.h | 0 .../libc}/include/generic-musl/pthread.h | 0 {libc => lib/libc}/include/generic-musl/pty.h | 0 {libc => lib/libc}/include/generic-musl/pwd.h | 0 .../include/generic-musl/rdma/bnxt_re-abi.h | 0 .../include/generic-musl/rdma/cxgb3-abi.h | 0 .../include/generic-musl/rdma/cxgb4-abi.h | 0 .../generic-musl/rdma/hfi/hfi1_ioctl.h | 0 .../include/generic-musl/rdma/hfi/hfi1_user.h | 0 .../libc}/include/generic-musl/rdma/hns-abi.h | 0 .../include/generic-musl/rdma/i40iw-abi.h | 0 .../include/generic-musl/rdma/ib_user_cm.h | 0 .../generic-musl/rdma/ib_user_ioctl_cmds.h | 0 .../generic-musl/rdma/ib_user_ioctl_verbs.h | 0 .../include/generic-musl/rdma/ib_user_mad.h | 0 .../include/generic-musl/rdma/ib_user_sa.h | 0 .../include/generic-musl/rdma/ib_user_verbs.h | 0 .../include/generic-musl/rdma/mlx4-abi.h | 0 .../include/generic-musl/rdma/mlx5-abi.h | 0 .../generic-musl/rdma/mlx5_user_ioctl_cmds.h | 0 .../generic-musl/rdma/mlx5_user_ioctl_verbs.h | 0 .../include/generic-musl/rdma/mthca-abi.h | 0 .../libc}/include/generic-musl/rdma/nes-abi.h | 0 .../include/generic-musl/rdma/ocrdma-abi.h | 0 .../include/generic-musl/rdma/qedr-abi.h | 0 .../include/generic-musl/rdma/rdma_netlink.h | 0 .../include/generic-musl/rdma/rdma_user_cm.h | 0 .../generic-musl/rdma/rdma_user_ioctl.h | 0 .../generic-musl/rdma/rdma_user_ioctl_cmds.h | 0 .../include/generic-musl/rdma/rdma_user_rxe.h | 0 .../generic-musl/rdma/vmw_pvrdma-abi.h | 0 .../libc}/include/generic-musl/regex.h | 0 .../libc}/include/generic-musl/resolv.h | 0 .../libc}/include/generic-musl/sched.h | 0 .../generic-musl/scsi/cxlflash_ioctl.h | 0 .../include/generic-musl/scsi/fc/fc_els.h | 0 .../include/generic-musl/scsi/fc/fc_fs.h | 0 .../include/generic-musl/scsi/fc/fc_gs.h | 0 .../include/generic-musl/scsi/fc/fc_ns.h | 0 .../libc}/include/generic-musl/scsi/scsi.h | 0 .../include/generic-musl/scsi/scsi_bsg_fc.h | 0 .../include/generic-musl/scsi/scsi_ioctl.h | 0 .../include/generic-musl/scsi/scsi_netlink.h | 0 .../generic-musl/scsi/scsi_netlink_fc.h | 0 .../libc}/include/generic-musl/scsi/sg.h | 0 .../libc}/include/generic-musl/search.h | 0 .../libc}/include/generic-musl/semaphore.h | 0 .../libc}/include/generic-musl/setjmp.h | 0 .../libc}/include/generic-musl/shadow.h | 0 .../libc}/include/generic-musl/signal.h | 0 .../include/generic-musl/sound/asequencer.h | 0 .../libc}/include/generic-musl/sound/asoc.h | 0 .../libc}/include/generic-musl/sound/asound.h | 0 .../include/generic-musl/sound/asound_fm.h | 0 .../generic-musl/sound/compress_offload.h | 0 .../generic-musl/sound/compress_params.h | 0 .../include/generic-musl/sound/emu10k1.h | 0 .../include/generic-musl/sound/firewire.h | 0 .../libc}/include/generic-musl/sound/hdsp.h | 0 .../libc}/include/generic-musl/sound/hdspm.h | 0 .../include/generic-musl/sound/sb16_csp.h | 0 .../include/generic-musl/sound/sfnt_info.h | 0 .../generic-musl/sound/skl-tplg-interface.h | 0 .../generic-musl/sound/snd_sst_tokens.h | 0 .../libc}/include/generic-musl/sound/tlv.h | 0 .../include/generic-musl/sound/usb_stream.h | 0 .../libc}/include/generic-musl/spawn.h | 0 .../libc}/include/generic-musl/stdalign.h | 0 .../libc}/include/generic-musl/stdarg.h | 0 .../libc}/include/generic-musl/stdbool.h | 0 .../libc}/include/generic-musl/stdc-predef.h | 0 .../libc}/include/generic-musl/stddef.h | 0 .../libc}/include/generic-musl/stdint.h | 0 .../libc}/include/generic-musl/stdio.h | 0 .../libc}/include/generic-musl/stdio_ext.h | 0 .../libc}/include/generic-musl/stdlib.h | 0 .../libc}/include/generic-musl/stdnoreturn.h | 0 .../libc}/include/generic-musl/string.h | 0 .../libc}/include/generic-musl/strings.h | 0 .../libc}/include/generic-musl/stropts.h | 0 .../libc}/include/generic-musl/symcat.h | 0 .../libc}/include/generic-musl/sys/acct.h | 0 .../libc}/include/generic-musl/sys/auxv.h | 0 .../libc}/include/generic-musl/sys/cachectl.h | 0 .../libc}/include/generic-musl/sys/dir.h | 0 .../libc}/include/generic-musl/sys/epoll.h | 0 .../libc}/include/generic-musl/sys/errno.h | 0 .../libc}/include/generic-musl/sys/eventfd.h | 0 .../libc}/include/generic-musl/sys/fanotify.h | 0 .../libc}/include/generic-musl/sys/fcntl.h | 0 .../libc}/include/generic-musl/sys/file.h | 0 .../libc}/include/generic-musl/sys/fsuid.h | 0 .../libc}/include/generic-musl/sys/inotify.h | 0 .../libc}/include/generic-musl/sys/io.h | 0 .../libc}/include/generic-musl/sys/ioctl.h | 0 .../libc}/include/generic-musl/sys/ipc.h | 0 .../libc}/include/generic-musl/sys/kd.h | 0 .../libc}/include/generic-musl/sys/klog.h | 0 .../libc}/include/generic-musl/sys/mman.h | 0 .../libc}/include/generic-musl/sys/mount.h | 0 .../libc}/include/generic-musl/sys/msg.h | 0 .../libc}/include/generic-musl/sys/mtio.h | 0 .../libc}/include/generic-musl/sys/param.h | 0 .../include/generic-musl/sys/personality.h | 0 .../libc}/include/generic-musl/sys/poll.h | 0 .../libc}/include/generic-musl/sys/prctl.h | 0 .../libc}/include/generic-musl/sys/procfs.h | 0 .../libc}/include/generic-musl/sys/ptrace.h | 0 .../libc}/include/generic-musl/sys/quota.h | 0 .../libc}/include/generic-musl/sys/random.h | 0 .../libc}/include/generic-musl/sys/reboot.h | 0 .../libc}/include/generic-musl/sys/reg.h | 0 .../libc}/include/generic-musl/sys/resource.h | 0 .../libc}/include/generic-musl/sys/select.h | 0 .../libc}/include/generic-musl/sys/sem.h | 0 .../libc}/include/generic-musl/sys/sendfile.h | 0 .../libc}/include/generic-musl/sys/shm.h | 0 .../libc}/include/generic-musl/sys/signal.h | 0 .../libc}/include/generic-musl/sys/signalfd.h | 0 .../libc}/include/generic-musl/sys/socket.h | 0 .../include/generic-musl/sys/soundcard.h | 0 .../libc}/include/generic-musl/sys/stat.h | 0 .../libc}/include/generic-musl/sys/statfs.h | 0 .../libc}/include/generic-musl/sys/statvfs.h | 0 .../libc}/include/generic-musl/sys/stropts.h | 0 .../libc}/include/generic-musl/sys/swap.h | 0 .../libc}/include/generic-musl/sys/syscall.h | 0 .../libc}/include/generic-musl/sys/sysinfo.h | 0 .../libc}/include/generic-musl/sys/syslog.h | 0 .../include/generic-musl/sys/sysmacros.h | 0 .../libc}/include/generic-musl/sys/termios.h | 0 .../libc}/include/generic-musl/sys/time.h | 0 .../libc}/include/generic-musl/sys/timeb.h | 0 .../libc}/include/generic-musl/sys/timerfd.h | 0 .../libc}/include/generic-musl/sys/times.h | 0 .../libc}/include/generic-musl/sys/timex.h | 0 .../include/generic-musl/sys/ttydefaults.h | 0 .../libc}/include/generic-musl/sys/types.h | 0 .../libc}/include/generic-musl/sys/ucontext.h | 0 .../libc}/include/generic-musl/sys/uio.h | 0 .../libc}/include/generic-musl/sys/un.h | 0 .../libc}/include/generic-musl/sys/user.h | 0 .../libc}/include/generic-musl/sys/utsname.h | 0 .../libc}/include/generic-musl/sys/vfs.h | 0 .../libc}/include/generic-musl/sys/vt.h | 0 .../libc}/include/generic-musl/sys/wait.h | 0 .../libc}/include/generic-musl/sys/xattr.h | 0 .../libc}/include/generic-musl/syscall.h | 0 .../libc}/include/generic-musl/sysexits.h | 0 .../libc}/include/generic-musl/syslog.h | 0 {libc => lib/libc}/include/generic-musl/tar.h | 0 .../libc}/include/generic-musl/termios.h | 0 .../libc}/include/generic-musl/tgmath.h | 0 .../libc}/include/generic-musl/threads.h | 0 .../libc}/include/generic-musl/time.h | 0 .../libc}/include/generic-musl/uchar.h | 0 .../libc}/include/generic-musl/ucontext.h | 0 .../libc}/include/generic-musl/ulimit.h | 0 .../libc}/include/generic-musl/unistd.h | 0 .../libc}/include/generic-musl/utime.h | 0 .../libc}/include/generic-musl/utmp.h | 0 .../libc}/include/generic-musl/utmpx.h | 0 .../libc}/include/generic-musl/values.h | 0 .../libc}/include/generic-musl/video/edid.h | 0 .../libc}/include/generic-musl/video/sisfb.h | 0 .../include/generic-musl/video/uvesafb.h | 0 .../libc}/include/generic-musl/wait.h | 0 .../libc}/include/generic-musl/wchar.h | 0 .../libc}/include/generic-musl/wctype.h | 0 .../libc}/include/generic-musl/wordexp.h | 0 .../libc}/include/generic-musl/xen/evtchn.h | 0 .../libc}/include/generic-musl/xen/gntalloc.h | 0 .../libc}/include/generic-musl/xen/gntdev.h | 0 .../libc}/include/generic-musl/xen/privcmd.h | 0 .../libc}/include/i386-linux-any/asm/auxvec.h | 0 .../include/i386-linux-any/asm/bitsperlong.h | 0 .../include/i386-linux-any/asm/byteorder.h | 0 .../libc}/include/i386-linux-any/asm/kvm.h | 0 .../include/i386-linux-any/asm/kvm_para.h | 0 .../libc}/include/i386-linux-any/asm/mman.h | 0 .../libc}/include/i386-linux-any/asm/msgbuf.h | 0 .../include/i386-linux-any/asm/perf_regs.h | 0 .../include/i386-linux-any/asm/posix_types.h | 0 .../libc}/include/i386-linux-any/asm/ptrace.h | 0 .../libc}/include/i386-linux-any/asm/sembuf.h | 0 .../libc}/include/i386-linux-any/asm/setup.h | 0 .../libc}/include/i386-linux-any/asm/shmbuf.h | 0 .../include/i386-linux-any/asm/sigcontext.h | 0 .../include/i386-linux-any/asm/siginfo.h | 0 .../libc}/include/i386-linux-any/asm/signal.h | 0 .../libc}/include/i386-linux-any/asm/stat.h | 0 .../libc}/include/i386-linux-any/asm/statfs.h | 0 .../libc}/include/i386-linux-any/asm/swab.h | 0 .../libc}/include/i386-linux-any/asm/types.h | 0 .../include/i386-linux-any/asm/ucontext.h | 0 .../libc}/include/i386-linux-any/asm/unistd.h | 0 .../libc}/include/i386-linux-gnu/bits/a.out.h | 0 .../include/i386-linux-gnu/bits/endian.h | 0 .../i386-linux-gnu/bits/environments.h | 0 .../libc}/include/i386-linux-gnu/bits/epoll.h | 0 .../libc}/include/i386-linux-gnu/bits/fcntl.h | 0 .../libc}/include/i386-linux-gnu/bits/fenv.h | 0 .../include/i386-linux-gnu/bits/floatn.h | 0 .../i386-linux-gnu/bits/flt-eval-method.h | 0 .../include/i386-linux-gnu/bits/fp-logb.h | 0 .../i386-linux-gnu/bits/indirect-return.h | 0 .../include/i386-linux-gnu/bits/ipctypes.h | 0 .../include/i386-linux-gnu/bits/iscanonical.h | 0 .../libc}/include/i386-linux-gnu/bits/link.h | 0 .../include/i386-linux-gnu/bits/long-double.h | 0 .../i386-linux-gnu/bits/math-vector-fortran.h | 0 .../include/i386-linux-gnu/bits/math-vector.h | 0 .../libc}/include/i386-linux-gnu/bits/mman.h | 0 .../include/i386-linux-gnu/bits/procfs-id.h | 0 .../include/i386-linux-gnu/bits/procfs.h | 0 .../i386-linux-gnu/bits/pthreadtypes-arch.h | 0 .../include/i386-linux-gnu/bits/select.h | 0 .../include/i386-linux-gnu/bits/sem-pad.h | 0 .../include/i386-linux-gnu/bits/semaphore.h | 0 .../include/i386-linux-gnu/bits/setjmp.h | 0 .../include/i386-linux-gnu/bits/sigcontext.h | 0 .../i386-linux-gnu/bits/siginfo-arch.h | 0 .../libc}/include/i386-linux-gnu/bits/stat.h | 0 .../include/i386-linux-gnu/bits/sysctl.h | 0 .../include/i386-linux-gnu/bits/timesize.h | 0 .../include/i386-linux-gnu/bits/typesizes.h | 0 .../include/i386-linux-gnu/bits/wordsize.h | 0 .../include/i386-linux-gnu/bits/xtitypes.h | 0 .../include/i386-linux-gnu/fpu_control.h | 0 .../include/i386-linux-gnu/gnu/lib-names.h | 0 .../libc}/include/i386-linux-gnu/gnu/stubs.h | 0 .../libc}/include/i386-linux-gnu/sys/elf.h | 0 .../libc}/include/i386-linux-gnu/sys/io.h | 0 .../libc}/include/i386-linux-gnu/sys/ptrace.h | 0 .../include/i386-linux-gnu/sys/ucontext.h | 0 .../libc}/include/i386-linux-gnu/sys/user.h | 0 .../libc}/include/i386-linux-musl/bfd.h | 0 .../include/i386-linux-musl/bfd_stdint.h | 0 .../include/i386-linux-musl/bits/alltypes.h | 0 .../include/i386-linux-musl/bits/endian.h | 0 .../include/i386-linux-musl/bits/fcntl.h | 0 .../libc}/include/i386-linux-musl/bits/fenv.h | 0 .../include/i386-linux-musl/bits/float.h | 0 .../libc}/include/i386-linux-musl/bits/io.h | 0 .../include/i386-linux-musl/bits/limits.h | 0 .../libc}/include/i386-linux-musl/bits/mman.h | 0 .../libc}/include/i386-linux-musl/bits/msg.h | 0 .../include/i386-linux-musl/bits/ptrace.h | 0 .../libc}/include/i386-linux-musl/bits/reg.h | 0 .../include/i386-linux-musl/bits/setjmp.h | 0 .../libc}/include/i386-linux-musl/bits/shm.h | 0 .../include/i386-linux-musl/bits/signal.h | 0 .../include/i386-linux-musl/bits/stdint.h | 0 .../include/i386-linux-musl/bits/syscall.h | 0 .../libc}/include/i386-linux-musl/bits/user.h | 0 .../libc}/include/mips-linux-any/asm/auxvec.h | 0 .../include/mips-linux-any/asm/bitsperlong.h | 0 .../include/mips-linux-any/asm/byteorder.h | 0 .../libc}/include/mips-linux-any/asm/errno.h | 0 .../libc}/include/mips-linux-any/asm/fcntl.h | 0 .../libc}/include/mips-linux-any/asm/hwcap.h | 0 .../libc}/include/mips-linux-any/asm/ioctl.h | 0 .../libc}/include/mips-linux-any/asm/ioctls.h | 0 .../libc}/include/mips-linux-any/asm/kvm.h | 0 .../include/mips-linux-any/asm/kvm_para.h | 0 .../libc}/include/mips-linux-any/asm/mman.h | 0 .../libc}/include/mips-linux-any/asm/msgbuf.h | 0 .../libc}/include/mips-linux-any/asm/param.h | 0 .../libc}/include/mips-linux-any/asm/poll.h | 0 .../include/mips-linux-any/asm/posix_types.h | 0 .../libc}/include/mips-linux-any/asm/ptrace.h | 0 .../include/mips-linux-any/asm/resource.h | 0 .../libc}/include/mips-linux-any/asm/sembuf.h | 0 .../libc}/include/mips-linux-any/asm/setup.h | 0 .../libc}/include/mips-linux-any/asm/shmbuf.h | 0 .../include/mips-linux-any/asm/sigcontext.h | 0 .../include/mips-linux-any/asm/siginfo.h | 0 .../libc}/include/mips-linux-any/asm/signal.h | 0 .../libc}/include/mips-linux-any/asm/socket.h | 0 .../include/mips-linux-any/asm/sockios.h | 0 .../libc}/include/mips-linux-any/asm/stat.h | 0 .../libc}/include/mips-linux-any/asm/statfs.h | 0 .../libc}/include/mips-linux-any/asm/swab.h | 0 .../include/mips-linux-any/asm/termbits.h | 0 .../include/mips-linux-any/asm/termios.h | 0 .../libc}/include/mips-linux-any/asm/types.h | 0 .../libc}/include/mips-linux-any/asm/unistd.h | 0 .../libc}/include/mips-linux-gnu/bits/dlfcn.h | 0 .../libc}/include/mips-linux-gnu/bits/errno.h | 0 .../include/mips-linux-gnu/bits/eventfd.h | 0 .../include/mips-linux-gnu/bits/inotify.h | 0 .../include/mips-linux-gnu/bits/ioctl-types.h | 0 .../libc}/include/mips-linux-gnu/bits/ipc.h | 0 .../include/mips-linux-gnu/bits/ipctypes.h | 0 .../include/mips-linux-gnu/bits/local_lim.h | 0 .../libc}/include/mips-linux-gnu/bits/mman.h | 0 .../include/mips-linux-gnu/bits/msq-pad.h | 0 .../libc}/include/mips-linux-gnu/bits/poll.h | 0 .../include/mips-linux-gnu/bits/resource.h | 0 .../include/mips-linux-gnu/bits/sem-pad.h | 0 .../include/mips-linux-gnu/bits/shm-pad.h | 0 .../include/mips-linux-gnu/bits/shmlba.h | 0 .../include/mips-linux-gnu/bits/sigaction.h | 0 .../include/mips-linux-gnu/bits/sigcontext.h | 0 .../mips-linux-gnu/bits/siginfo-arch.h | 0 .../include/mips-linux-gnu/bits/signalfd.h | 0 .../include/mips-linux-gnu/bits/signum.h | 0 .../include/mips-linux-gnu/bits/socket_type.h | 0 .../include/mips-linux-gnu/bits/statfs.h | 0 .../mips-linux-gnu/bits/termios-c_cc.h | 0 .../mips-linux-gnu/bits/termios-c_lflag.h | 0 .../mips-linux-gnu/bits/termios-struct.h | 0 .../mips-linux-gnu/bits/termios-tcflow.h | 0 .../include/mips-linux-gnu/bits/timerfd.h | 0 .../mips-linux-gnu/bits/types/stack_t.h | 0 .../libc}/include/mips-linux-gnu/ieee754.h | 0 .../libc}/include/mips-linux-musl/bfd.h | 0 .../include/mips-linux-musl/bfd_stdint.h | 0 .../include/mips-linux-musl/bits/alltypes.h | 0 .../include/mips-linux-musl/bits/endian.h | 0 .../include/mips-linux-musl/bits/errno.h | 0 .../include/mips-linux-musl/bits/fcntl.h | 0 .../libc}/include/mips-linux-musl/bits/fenv.h | 0 .../include/mips-linux-musl/bits/hwcap.h | 0 .../include/mips-linux-musl/bits/ioctl.h | 0 .../libc}/include/mips-linux-musl/bits/mman.h | 0 .../libc}/include/mips-linux-musl/bits/msg.h | 0 .../libc}/include/mips-linux-musl/bits/poll.h | 0 .../include/mips-linux-musl/bits/ptrace.h | 0 .../libc}/include/mips-linux-musl/bits/reg.h | 0 .../include/mips-linux-musl/bits/resource.h | 0 .../libc}/include/mips-linux-musl/bits/sem.h | 0 .../include/mips-linux-musl/bits/setjmp.h | 0 .../include/mips-linux-musl/bits/signal.h | 0 .../include/mips-linux-musl/bits/socket.h | 0 .../libc}/include/mips-linux-musl/bits/stat.h | 0 .../include/mips-linux-musl/bits/statfs.h | 0 .../include/mips-linux-musl/bits/stdint.h | 0 .../include/mips-linux-musl/bits/syscall.h | 0 .../include/mips-linux-musl/bits/termios.h | 0 .../libc}/include/mips-linux-musl/bits/user.h | 0 .../include/mips64-linux-any/asm/auxvec.h | 0 .../mips64-linux-any/asm/bitsperlong.h | 0 .../include/mips64-linux-any/asm/byteorder.h | 0 .../include/mips64-linux-any/asm/errno.h | 0 .../include/mips64-linux-any/asm/fcntl.h | 0 .../include/mips64-linux-any/asm/hwcap.h | 0 .../include/mips64-linux-any/asm/ioctl.h | 0 .../include/mips64-linux-any/asm/ioctls.h | 0 .../libc}/include/mips64-linux-any/asm/kvm.h | 0 .../include/mips64-linux-any/asm/kvm_para.h | 0 .../libc}/include/mips64-linux-any/asm/mman.h | 0 .../include/mips64-linux-any/asm/msgbuf.h | 0 .../include/mips64-linux-any/asm/param.h | 0 .../libc}/include/mips64-linux-any/asm/poll.h | 0 .../mips64-linux-any/asm/posix_types.h | 0 .../include/mips64-linux-any/asm/ptrace.h | 0 .../include/mips64-linux-any/asm/resource.h | 0 .../include/mips64-linux-any/asm/sembuf.h | 0 .../include/mips64-linux-any/asm/setup.h | 0 .../include/mips64-linux-any/asm/shmbuf.h | 0 .../include/mips64-linux-any/asm/sigcontext.h | 0 .../include/mips64-linux-any/asm/siginfo.h | 0 .../include/mips64-linux-any/asm/signal.h | 0 .../include/mips64-linux-any/asm/socket.h | 0 .../include/mips64-linux-any/asm/sockios.h | 0 .../libc}/include/mips64-linux-any/asm/stat.h | 0 .../include/mips64-linux-any/asm/statfs.h | 0 .../libc}/include/mips64-linux-any/asm/swab.h | 0 .../include/mips64-linux-any/asm/termbits.h | 0 .../include/mips64-linux-any/asm/termios.h | 0 .../include/mips64-linux-any/asm/types.h | 0 .../include/mips64-linux-any/asm/unistd.h | 0 .../mips64-linux-gnuabi64/bits/dlfcn.h | 0 .../mips64-linux-gnuabi64/bits/errno.h | 0 .../mips64-linux-gnuabi64/bits/eventfd.h | 0 .../mips64-linux-gnuabi64/bits/inotify.h | 0 .../mips64-linux-gnuabi64/bits/ioctl-types.h | 0 .../include/mips64-linux-gnuabi64/bits/ipc.h | 0 .../mips64-linux-gnuabi64/bits/ipctypes.h | 0 .../mips64-linux-gnuabi64/bits/local_lim.h | 0 .../include/mips64-linux-gnuabi64/bits/mman.h | 0 .../mips64-linux-gnuabi64/bits/msq-pad.h | 0 .../include/mips64-linux-gnuabi64/bits/poll.h | 0 .../mips64-linux-gnuabi64/bits/resource.h | 0 .../mips64-linux-gnuabi64/bits/sem-pad.h | 0 .../mips64-linux-gnuabi64/bits/shm-pad.h | 0 .../mips64-linux-gnuabi64/bits/shmlba.h | 0 .../mips64-linux-gnuabi64/bits/sigaction.h | 0 .../mips64-linux-gnuabi64/bits/sigcontext.h | 0 .../mips64-linux-gnuabi64/bits/siginfo-arch.h | 0 .../mips64-linux-gnuabi64/bits/signalfd.h | 0 .../mips64-linux-gnuabi64/bits/signum.h | 0 .../mips64-linux-gnuabi64/bits/socket_type.h | 0 .../mips64-linux-gnuabi64/bits/statfs.h | 0 .../mips64-linux-gnuabi64/bits/termios-c_cc.h | 0 .../bits/termios-c_lflag.h | 0 .../bits/termios-struct.h | 0 .../bits/termios-tcflow.h | 0 .../mips64-linux-gnuabi64/bits/timerfd.h | 0 .../bits/types/stack_t.h | 0 .../include/mips64-linux-gnuabi64/ieee754.h | 0 .../mips64-linux-gnuabin32/bits/dlfcn.h | 0 .../mips64-linux-gnuabin32/bits/errno.h | 0 .../mips64-linux-gnuabin32/bits/eventfd.h | 0 .../mips64-linux-gnuabin32/bits/inotify.h | 0 .../mips64-linux-gnuabin32/bits/ioctl-types.h | 0 .../include/mips64-linux-gnuabin32/bits/ipc.h | 0 .../mips64-linux-gnuabin32/bits/ipctypes.h | 0 .../mips64-linux-gnuabin32/bits/local_lim.h | 0 .../mips64-linux-gnuabin32/bits/mman.h | 0 .../mips64-linux-gnuabin32/bits/msq-pad.h | 0 .../mips64-linux-gnuabin32/bits/poll.h | 0 .../mips64-linux-gnuabin32/bits/resource.h | 0 .../mips64-linux-gnuabin32/bits/sem-pad.h | 0 .../mips64-linux-gnuabin32/bits/shm-pad.h | 0 .../mips64-linux-gnuabin32/bits/shmlba.h | 0 .../mips64-linux-gnuabin32/bits/sigaction.h | 0 .../mips64-linux-gnuabin32/bits/sigcontext.h | 0 .../bits/siginfo-arch.h | 0 .../mips64-linux-gnuabin32/bits/signalfd.h | 0 .../mips64-linux-gnuabin32/bits/signum.h | 0 .../mips64-linux-gnuabin32/bits/socket_type.h | 0 .../mips64-linux-gnuabin32/bits/statfs.h | 0 .../bits/termios-c_cc.h | 0 .../bits/termios-c_lflag.h | 0 .../bits/termios-struct.h | 0 .../bits/termios-tcflow.h | 0 .../mips64-linux-gnuabin32/bits/timerfd.h | 0 .../bits/types/stack_t.h | 0 .../include/mips64-linux-gnuabin32/ieee754.h | 0 .../include/mips64-linux-musl/bfd_stdint.h | 0 .../include/mips64-linux-musl/bits/alltypes.h | 0 .../include/mips64-linux-musl/bits/endian.h | 0 .../include/mips64-linux-musl/bits/errno.h | 0 .../include/mips64-linux-musl/bits/fcntl.h | 0 .../include/mips64-linux-musl/bits/fenv.h | 0 .../include/mips64-linux-musl/bits/float.h | 0 .../include/mips64-linux-musl/bits/hwcap.h | 0 .../include/mips64-linux-musl/bits/ioctl.h | 0 .../include/mips64-linux-musl/bits/ipc.h | 0 .../include/mips64-linux-musl/bits/limits.h | 0 .../include/mips64-linux-musl/bits/mman.h | 0 .../include/mips64-linux-musl/bits/poll.h | 0 .../include/mips64-linux-musl/bits/posix.h | 0 .../include/mips64-linux-musl/bits/ptrace.h | 0 .../include/mips64-linux-musl/bits/reg.h | 0 .../include/mips64-linux-musl/bits/resource.h | 0 .../include/mips64-linux-musl/bits/sem.h | 0 .../include/mips64-linux-musl/bits/setjmp.h | 0 .../include/mips64-linux-musl/bits/signal.h | 0 .../include/mips64-linux-musl/bits/socket.h | 0 .../include/mips64-linux-musl/bits/stat.h | 0 .../include/mips64-linux-musl/bits/statfs.h | 0 .../include/mips64-linux-musl/bits/syscall.h | 0 .../include/mips64-linux-musl/bits/termios.h | 0 .../include/mips64-linux-musl/bits/user.h | 0 .../include/mips64el-linux-any/asm/auxvec.h | 0 .../mips64el-linux-any/asm/bitsperlong.h | 0 .../mips64el-linux-any/asm/byteorder.h | 0 .../include/mips64el-linux-any/asm/errno.h | 0 .../include/mips64el-linux-any/asm/fcntl.h | 0 .../include/mips64el-linux-any/asm/hwcap.h | 0 .../include/mips64el-linux-any/asm/ioctl.h | 0 .../include/mips64el-linux-any/asm/ioctls.h | 0 .../include/mips64el-linux-any/asm/kvm.h | 0 .../include/mips64el-linux-any/asm/kvm_para.h | 0 .../include/mips64el-linux-any/asm/mman.h | 0 .../include/mips64el-linux-any/asm/msgbuf.h | 0 .../include/mips64el-linux-any/asm/param.h | 0 .../include/mips64el-linux-any/asm/poll.h | 0 .../mips64el-linux-any/asm/posix_types.h | 0 .../include/mips64el-linux-any/asm/ptrace.h | 0 .../include/mips64el-linux-any/asm/resource.h | 0 .../include/mips64el-linux-any/asm/sembuf.h | 0 .../include/mips64el-linux-any/asm/setup.h | 0 .../include/mips64el-linux-any/asm/shmbuf.h | 0 .../mips64el-linux-any/asm/sigcontext.h | 0 .../include/mips64el-linux-any/asm/siginfo.h | 0 .../include/mips64el-linux-any/asm/signal.h | 0 .../include/mips64el-linux-any/asm/socket.h | 0 .../include/mips64el-linux-any/asm/sockios.h | 0 .../include/mips64el-linux-any/asm/stat.h | 0 .../include/mips64el-linux-any/asm/statfs.h | 0 .../include/mips64el-linux-any/asm/swab.h | 0 .../include/mips64el-linux-any/asm/termbits.h | 0 .../include/mips64el-linux-any/asm/termios.h | 0 .../include/mips64el-linux-any/asm/types.h | 0 .../include/mips64el-linux-any/asm/unistd.h | 0 .../mips64el-linux-gnuabi64/bits/dlfcn.h | 0 .../mips64el-linux-gnuabi64/bits/errno.h | 0 .../mips64el-linux-gnuabi64/bits/eventfd.h | 0 .../mips64el-linux-gnuabi64/bits/inotify.h | 0 .../bits/ioctl-types.h | 0 .../mips64el-linux-gnuabi64/bits/ipc.h | 0 .../mips64el-linux-gnuabi64/bits/ipctypes.h | 0 .../mips64el-linux-gnuabi64/bits/local_lim.h | 0 .../mips64el-linux-gnuabi64/bits/mman.h | 0 .../mips64el-linux-gnuabi64/bits/msq-pad.h | 0 .../mips64el-linux-gnuabi64/bits/poll.h | 0 .../mips64el-linux-gnuabi64/bits/resource.h | 0 .../mips64el-linux-gnuabi64/bits/sem-pad.h | 0 .../mips64el-linux-gnuabi64/bits/shm-pad.h | 0 .../mips64el-linux-gnuabi64/bits/shmlba.h | 0 .../mips64el-linux-gnuabi64/bits/sigaction.h | 0 .../mips64el-linux-gnuabi64/bits/sigcontext.h | 0 .../bits/siginfo-arch.h | 0 .../mips64el-linux-gnuabi64/bits/signalfd.h | 0 .../mips64el-linux-gnuabi64/bits/signum.h | 0 .../bits/socket_type.h | 0 .../mips64el-linux-gnuabi64/bits/statfs.h | 0 .../bits/termios-c_cc.h | 0 .../bits/termios-c_lflag.h | 0 .../bits/termios-struct.h | 0 .../bits/termios-tcflow.h | 0 .../mips64el-linux-gnuabi64/bits/timerfd.h | 0 .../bits/types/stack_t.h | 0 .../include/mips64el-linux-gnuabi64/ieee754.h | 0 .../mips64el-linux-gnuabin32/bits/dlfcn.h | 0 .../mips64el-linux-gnuabin32/bits/errno.h | 0 .../mips64el-linux-gnuabin32/bits/eventfd.h | 0 .../mips64el-linux-gnuabin32/bits/inotify.h | 0 .../bits/ioctl-types.h | 0 .../mips64el-linux-gnuabin32/bits/ipc.h | 0 .../mips64el-linux-gnuabin32/bits/ipctypes.h | 0 .../mips64el-linux-gnuabin32/bits/local_lim.h | 0 .../mips64el-linux-gnuabin32/bits/mman.h | 0 .../mips64el-linux-gnuabin32/bits/msq-pad.h | 0 .../mips64el-linux-gnuabin32/bits/poll.h | 0 .../mips64el-linux-gnuabin32/bits/resource.h | 0 .../mips64el-linux-gnuabin32/bits/sem-pad.h | 0 .../mips64el-linux-gnuabin32/bits/shm-pad.h | 0 .../mips64el-linux-gnuabin32/bits/shmlba.h | 0 .../mips64el-linux-gnuabin32/bits/sigaction.h | 0 .../bits/sigcontext.h | 0 .../bits/siginfo-arch.h | 0 .../mips64el-linux-gnuabin32/bits/signalfd.h | 0 .../mips64el-linux-gnuabin32/bits/signum.h | 0 .../bits/socket_type.h | 0 .../mips64el-linux-gnuabin32/bits/statfs.h | 0 .../bits/termios-c_cc.h | 0 .../bits/termios-c_lflag.h | 0 .../bits/termios-struct.h | 0 .../bits/termios-tcflow.h | 0 .../mips64el-linux-gnuabin32/bits/timerfd.h | 0 .../bits/types/stack_t.h | 0 .../mips64el-linux-gnuabin32/ieee754.h | 0 .../include/mips64el-linux-musl/bfd_stdint.h | 0 .../mips64el-linux-musl/bits/alltypes.h | 0 .../include/mips64el-linux-musl/bits/endian.h | 0 .../include/mips64el-linux-musl/bits/errno.h | 0 .../include/mips64el-linux-musl/bits/fcntl.h | 0 .../include/mips64el-linux-musl/bits/fenv.h | 0 .../include/mips64el-linux-musl/bits/float.h | 0 .../include/mips64el-linux-musl/bits/hwcap.h | 0 .../include/mips64el-linux-musl/bits/ioctl.h | 0 .../include/mips64el-linux-musl/bits/ipc.h | 0 .../include/mips64el-linux-musl/bits/limits.h | 0 .../include/mips64el-linux-musl/bits/mman.h | 0 .../include/mips64el-linux-musl/bits/poll.h | 0 .../include/mips64el-linux-musl/bits/posix.h | 0 .../include/mips64el-linux-musl/bits/ptrace.h | 0 .../include/mips64el-linux-musl/bits/reg.h | 0 .../mips64el-linux-musl/bits/resource.h | 0 .../include/mips64el-linux-musl/bits/sem.h | 0 .../include/mips64el-linux-musl/bits/setjmp.h | 0 .../include/mips64el-linux-musl/bits/signal.h | 0 .../include/mips64el-linux-musl/bits/socket.h | 0 .../include/mips64el-linux-musl/bits/stat.h | 0 .../include/mips64el-linux-musl/bits/statfs.h | 0 .../mips64el-linux-musl/bits/syscall.h | 0 .../mips64el-linux-musl/bits/termios.h | 0 .../include/mips64el-linux-musl/bits/user.h | 0 .../include/mipsel-linux-any/asm/auxvec.h | 0 .../mipsel-linux-any/asm/bitsperlong.h | 0 .../include/mipsel-linux-any/asm/byteorder.h | 0 .../include/mipsel-linux-any/asm/errno.h | 0 .../include/mipsel-linux-any/asm/fcntl.h | 0 .../include/mipsel-linux-any/asm/hwcap.h | 0 .../include/mipsel-linux-any/asm/ioctl.h | 0 .../include/mipsel-linux-any/asm/ioctls.h | 0 .../libc}/include/mipsel-linux-any/asm/kvm.h | 0 .../include/mipsel-linux-any/asm/kvm_para.h | 0 .../libc}/include/mipsel-linux-any/asm/mman.h | 0 .../include/mipsel-linux-any/asm/msgbuf.h | 0 .../include/mipsel-linux-any/asm/param.h | 0 .../libc}/include/mipsel-linux-any/asm/poll.h | 0 .../mipsel-linux-any/asm/posix_types.h | 0 .../include/mipsel-linux-any/asm/ptrace.h | 0 .../include/mipsel-linux-any/asm/resource.h | 0 .../include/mipsel-linux-any/asm/sembuf.h | 0 .../include/mipsel-linux-any/asm/setup.h | 0 .../include/mipsel-linux-any/asm/shmbuf.h | 0 .../include/mipsel-linux-any/asm/sigcontext.h | 0 .../include/mipsel-linux-any/asm/siginfo.h | 0 .../include/mipsel-linux-any/asm/signal.h | 0 .../include/mipsel-linux-any/asm/socket.h | 0 .../include/mipsel-linux-any/asm/sockios.h | 0 .../libc}/include/mipsel-linux-any/asm/stat.h | 0 .../include/mipsel-linux-any/asm/statfs.h | 0 .../libc}/include/mipsel-linux-any/asm/swab.h | 0 .../include/mipsel-linux-any/asm/termbits.h | 0 .../include/mipsel-linux-any/asm/termios.h | 0 .../include/mipsel-linux-any/asm/types.h | 0 .../include/mipsel-linux-any/asm/unistd.h | 0 .../include/mipsel-linux-gnu/bits/dlfcn.h | 0 .../include/mipsel-linux-gnu/bits/errno.h | 0 .../include/mipsel-linux-gnu/bits/eventfd.h | 0 .../include/mipsel-linux-gnu/bits/inotify.h | 0 .../mipsel-linux-gnu/bits/ioctl-types.h | 0 .../libc}/include/mipsel-linux-gnu/bits/ipc.h | 0 .../include/mipsel-linux-gnu/bits/ipctypes.h | 0 .../include/mipsel-linux-gnu/bits/local_lim.h | 0 .../include/mipsel-linux-gnu/bits/mman.h | 0 .../include/mipsel-linux-gnu/bits/msq-pad.h | 0 .../include/mipsel-linux-gnu/bits/poll.h | 0 .../include/mipsel-linux-gnu/bits/resource.h | 0 .../include/mipsel-linux-gnu/bits/sem-pad.h | 0 .../include/mipsel-linux-gnu/bits/shm-pad.h | 0 .../include/mipsel-linux-gnu/bits/shmlba.h | 0 .../include/mipsel-linux-gnu/bits/sigaction.h | 0 .../mipsel-linux-gnu/bits/sigcontext.h | 0 .../mipsel-linux-gnu/bits/siginfo-arch.h | 0 .../include/mipsel-linux-gnu/bits/signalfd.h | 0 .../include/mipsel-linux-gnu/bits/signum.h | 0 .../mipsel-linux-gnu/bits/socket_type.h | 0 .../include/mipsel-linux-gnu/bits/statfs.h | 0 .../mipsel-linux-gnu/bits/termios-c_cc.h | 0 .../mipsel-linux-gnu/bits/termios-c_lflag.h | 0 .../mipsel-linux-gnu/bits/termios-struct.h | 0 .../mipsel-linux-gnu/bits/termios-tcflow.h | 0 .../include/mipsel-linux-gnu/bits/timerfd.h | 0 .../mipsel-linux-gnu/bits/types/stack_t.h | 0 .../libc}/include/mipsel-linux-gnu/ieee754.h | 0 .../libc}/include/mipsel-linux-musl/bfd.h | 0 .../include/mipsel-linux-musl/bfd_stdint.h | 0 .../include/mipsel-linux-musl/bits/alltypes.h | 0 .../include/mipsel-linux-musl/bits/endian.h | 0 .../include/mipsel-linux-musl/bits/errno.h | 0 .../include/mipsel-linux-musl/bits/fcntl.h | 0 .../include/mipsel-linux-musl/bits/fenv.h | 0 .../include/mipsel-linux-musl/bits/hwcap.h | 0 .../include/mipsel-linux-musl/bits/ioctl.h | 0 .../include/mipsel-linux-musl/bits/mman.h | 0 .../include/mipsel-linux-musl/bits/msg.h | 0 .../include/mipsel-linux-musl/bits/poll.h | 0 .../include/mipsel-linux-musl/bits/ptrace.h | 0 .../include/mipsel-linux-musl/bits/reg.h | 0 .../include/mipsel-linux-musl/bits/resource.h | 0 .../include/mipsel-linux-musl/bits/sem.h | 0 .../include/mipsel-linux-musl/bits/setjmp.h | 0 .../include/mipsel-linux-musl/bits/signal.h | 0 .../include/mipsel-linux-musl/bits/socket.h | 0 .../include/mipsel-linux-musl/bits/stat.h | 0 .../include/mipsel-linux-musl/bits/statfs.h | 0 .../include/mipsel-linux-musl/bits/stdint.h | 0 .../include/mipsel-linux-musl/bits/syscall.h | 0 .../include/mipsel-linux-musl/bits/termios.h | 0 .../include/mipsel-linux-musl/bits/user.h | 0 .../include/powerpc-linux-any/asm/auxvec.h | 0 .../powerpc-linux-any/asm/bitsperlong.h | 0 .../include/powerpc-linux-any/asm/byteorder.h | 0 .../include/powerpc-linux-any/asm/errno.h | 0 .../include/powerpc-linux-any/asm/fcntl.h | 0 .../include/powerpc-linux-any/asm/ioctl.h | 0 .../include/powerpc-linux-any/asm/ioctls.h | 0 .../include/powerpc-linux-any/asm/ipcbuf.h | 0 .../libc}/include/powerpc-linux-any/asm/kvm.h | 0 .../include/powerpc-linux-any/asm/kvm_para.h | 0 .../include/powerpc-linux-any/asm/mman.h | 0 .../include/powerpc-linux-any/asm/msgbuf.h | 0 .../include/powerpc-linux-any/asm/perf_regs.h | 0 .../powerpc-linux-any/asm/posix_types.h | 0 .../include/powerpc-linux-any/asm/ptrace.h | 0 .../include/powerpc-linux-any/asm/sembuf.h | 0 .../include/powerpc-linux-any/asm/setup.h | 0 .../include/powerpc-linux-any/asm/shmbuf.h | 0 .../powerpc-linux-any/asm/sigcontext.h | 0 .../include/powerpc-linux-any/asm/siginfo.h | 0 .../include/powerpc-linux-any/asm/signal.h | 0 .../include/powerpc-linux-any/asm/socket.h | 0 .../include/powerpc-linux-any/asm/stat.h | 0 .../include/powerpc-linux-any/asm/swab.h | 0 .../include/powerpc-linux-any/asm/termbits.h | 0 .../include/powerpc-linux-any/asm/termios.h | 0 .../include/powerpc-linux-any/asm/types.h | 0 .../include/powerpc-linux-any/asm/ucontext.h | 0 .../include/powerpc-linux-any/asm/unistd.h | 0 .../include/powerpc-linux-gnu/bits/endian.h | 0 .../powerpc-linux-gnu/bits/environments.h | 0 .../include/powerpc-linux-gnu/bits/fcntl.h | 0 .../include/powerpc-linux-gnu/bits/fenv.h | 0 .../powerpc-linux-gnu/bits/fenvinline.h | 0 .../include/powerpc-linux-gnu/bits/floatn.h | 0 .../include/powerpc-linux-gnu/bits/fp-fast.h | 0 .../include/powerpc-linux-gnu/bits/hwcap.h | 0 .../powerpc-linux-gnu/bits/ioctl-types.h | 0 .../include/powerpc-linux-gnu/bits/ipc.h | 0 .../powerpc-linux-gnu/bits/iscanonical.h | 0 .../include/powerpc-linux-gnu/bits/link.h | 0 .../powerpc-linux-gnu/bits/local_lim.h | 0 .../powerpc-linux-gnu/bits/long-double.h | 0 .../include/powerpc-linux-gnu/bits/mman.h | 0 .../include/powerpc-linux-gnu/bits/msq-pad.h | 0 .../include/powerpc-linux-gnu/bits/procfs.h | 0 .../bits/pthreadtypes-arch.h | 0 .../include/powerpc-linux-gnu/bits/sem-pad.h | 0 .../powerpc-linux-gnu/bits/semaphore.h | 0 .../include/powerpc-linux-gnu/bits/setjmp.h | 0 .../include/powerpc-linux-gnu/bits/shm-pad.h | 0 .../include/powerpc-linux-gnu/bits/sigstack.h | 0 .../include/powerpc-linux-gnu/bits/stat.h | 0 .../powerpc-linux-gnu/bits/termios-baud.h | 0 .../powerpc-linux-gnu/bits/termios-c_cc.h | 0 .../powerpc-linux-gnu/bits/termios-c_cflag.h | 0 .../powerpc-linux-gnu/bits/termios-c_iflag.h | 0 .../powerpc-linux-gnu/bits/termios-c_lflag.h | 0 .../powerpc-linux-gnu/bits/termios-c_oflag.h | 0 .../powerpc-linux-gnu/bits/termios-misc.h | 0 .../include/powerpc-linux-gnu/bits/wordsize.h | 0 .../include/powerpc-linux-gnu/fpu_control.h | 0 .../powerpc-linux-gnu/gnu/lib-names-32.h | 0 .../include/powerpc-linux-gnu/gnu/lib-names.h | 0 .../include/powerpc-linux-gnu/gnu/stubs.h | 0 .../libc}/include/powerpc-linux-gnu/ieee754.h | 0 .../include/powerpc-linux-gnu/sys/ptrace.h | 0 .../include/powerpc-linux-gnu/sys/ucontext.h | 0 .../include/powerpc-linux-gnu/sys/user.h | 0 .../libc}/include/powerpc-linux-musl/bfd.h | 0 .../include/powerpc-linux-musl/bfd_stdint.h | 0 .../powerpc-linux-musl/bits/alltypes.h | 0 .../include/powerpc-linux-musl/bits/endian.h | 0 .../include/powerpc-linux-musl/bits/errno.h | 0 .../include/powerpc-linux-musl/bits/fcntl.h | 0 .../include/powerpc-linux-musl/bits/fenv.h | 0 .../include/powerpc-linux-musl/bits/hwcap.h | 0 .../include/powerpc-linux-musl/bits/ioctl.h | 0 .../include/powerpc-linux-musl/bits/ipc.h | 0 .../include/powerpc-linux-musl/bits/mman.h | 0 .../include/powerpc-linux-musl/bits/msg.h | 0 .../include/powerpc-linux-musl/bits/ptrace.h | 0 .../include/powerpc-linux-musl/bits/sem.h | 0 .../include/powerpc-linux-musl/bits/setjmp.h | 0 .../include/powerpc-linux-musl/bits/shm.h | 0 .../include/powerpc-linux-musl/bits/signal.h | 0 .../include/powerpc-linux-musl/bits/socket.h | 0 .../include/powerpc-linux-musl/bits/stat.h | 0 .../include/powerpc-linux-musl/bits/stdint.h | 0 .../include/powerpc-linux-musl/bits/syscall.h | 0 .../include/powerpc-linux-musl/bits/termios.h | 0 .../include/powerpc-linux-musl/bits/user.h | 0 .../include/powerpc64-linux-any/asm/auxvec.h | 0 .../powerpc64-linux-any/asm/bitsperlong.h | 0 .../powerpc64-linux-any/asm/byteorder.h | 0 .../include/powerpc64-linux-any/asm/errno.h | 0 .../include/powerpc64-linux-any/asm/fcntl.h | 0 .../include/powerpc64-linux-any/asm/ioctl.h | 0 .../include/powerpc64-linux-any/asm/ioctls.h | 0 .../include/powerpc64-linux-any/asm/ipcbuf.h | 0 .../include/powerpc64-linux-any/asm/kvm.h | 0 .../powerpc64-linux-any/asm/kvm_para.h | 0 .../include/powerpc64-linux-any/asm/mman.h | 0 .../include/powerpc64-linux-any/asm/msgbuf.h | 0 .../powerpc64-linux-any/asm/perf_regs.h | 0 .../powerpc64-linux-any/asm/posix_types.h | 0 .../include/powerpc64-linux-any/asm/ptrace.h | 0 .../include/powerpc64-linux-any/asm/sembuf.h | 0 .../include/powerpc64-linux-any/asm/setup.h | 0 .../include/powerpc64-linux-any/asm/shmbuf.h | 0 .../powerpc64-linux-any/asm/sigcontext.h | 0 .../include/powerpc64-linux-any/asm/siginfo.h | 0 .../include/powerpc64-linux-any/asm/signal.h | 0 .../include/powerpc64-linux-any/asm/socket.h | 0 .../include/powerpc64-linux-any/asm/stat.h | 0 .../include/powerpc64-linux-any/asm/swab.h | 0 .../powerpc64-linux-any/asm/termbits.h | 0 .../include/powerpc64-linux-any/asm/termios.h | 0 .../include/powerpc64-linux-any/asm/types.h | 0 .../powerpc64-linux-any/asm/ucontext.h | 0 .../include/powerpc64-linux-any/asm/unistd.h | 0 .../include/powerpc64-linux-gnu/bits/endian.h | 0 .../powerpc64-linux-gnu/bits/environments.h | 0 .../include/powerpc64-linux-gnu/bits/fcntl.h | 0 .../include/powerpc64-linux-gnu/bits/fenv.h | 0 .../powerpc64-linux-gnu/bits/fenvinline.h | 0 .../include/powerpc64-linux-gnu/bits/floatn.h | 0 .../powerpc64-linux-gnu/bits/fp-fast.h | 0 .../include/powerpc64-linux-gnu/bits/hwcap.h | 0 .../powerpc64-linux-gnu/bits/ioctl-types.h | 0 .../include/powerpc64-linux-gnu/bits/ipc.h | 0 .../powerpc64-linux-gnu/bits/iscanonical.h | 0 .../include/powerpc64-linux-gnu/bits/link.h | 0 .../powerpc64-linux-gnu/bits/local_lim.h | 0 .../powerpc64-linux-gnu/bits/long-double.h | 0 .../include/powerpc64-linux-gnu/bits/mman.h | 0 .../powerpc64-linux-gnu/bits/msq-pad.h | 0 .../include/powerpc64-linux-gnu/bits/procfs.h | 0 .../bits/pthreadtypes-arch.h | 0 .../powerpc64-linux-gnu/bits/sem-pad.h | 0 .../powerpc64-linux-gnu/bits/semaphore.h | 0 .../include/powerpc64-linux-gnu/bits/setjmp.h | 0 .../powerpc64-linux-gnu/bits/shm-pad.h | 0 .../powerpc64-linux-gnu/bits/sigstack.h | 0 .../include/powerpc64-linux-gnu/bits/stat.h | 0 .../powerpc64-linux-gnu/bits/termios-baud.h | 0 .../powerpc64-linux-gnu/bits/termios-c_cc.h | 0 .../bits/termios-c_cflag.h | 0 .../bits/termios-c_iflag.h | 0 .../bits/termios-c_lflag.h | 0 .../bits/termios-c_oflag.h | 0 .../powerpc64-linux-gnu/bits/termios-misc.h | 0 .../powerpc64-linux-gnu/bits/wordsize.h | 0 .../include/powerpc64-linux-gnu/fpu_control.h | 0 .../powerpc64-linux-gnu/gnu/lib-names-64-v1.h | 0 .../powerpc64-linux-gnu/gnu/lib-names.h | 0 .../powerpc64-linux-gnu/gnu/stubs-64-v1.h | 0 .../include/powerpc64-linux-gnu/gnu/stubs.h | 0 .../include/powerpc64-linux-gnu/ieee754.h | 0 .../include/powerpc64-linux-gnu/sys/ptrace.h | 0 .../powerpc64-linux-gnu/sys/ucontext.h | 0 .../include/powerpc64-linux-gnu/sys/user.h | 0 .../include/powerpc64-linux-musl/bfd_stdint.h | 0 .../powerpc64-linux-musl/bits/alltypes.h | 0 .../powerpc64-linux-musl/bits/endian.h | 0 .../include/powerpc64-linux-musl/bits/errno.h | 0 .../include/powerpc64-linux-musl/bits/fcntl.h | 0 .../include/powerpc64-linux-musl/bits/fenv.h | 0 .../include/powerpc64-linux-musl/bits/hwcap.h | 0 .../include/powerpc64-linux-musl/bits/ioctl.h | 0 .../include/powerpc64-linux-musl/bits/ipc.h | 0 .../powerpc64-linux-musl/bits/limits.h | 0 .../include/powerpc64-linux-musl/bits/mman.h | 0 .../include/powerpc64-linux-musl/bits/msg.h | 0 .../include/powerpc64-linux-musl/bits/posix.h | 0 .../powerpc64-linux-musl/bits/ptrace.h | 0 .../include/powerpc64-linux-musl/bits/reg.h | 0 .../include/powerpc64-linux-musl/bits/sem.h | 0 .../powerpc64-linux-musl/bits/setjmp.h | 0 .../include/powerpc64-linux-musl/bits/shm.h | 0 .../powerpc64-linux-musl/bits/signal.h | 0 .../powerpc64-linux-musl/bits/socket.h | 0 .../include/powerpc64-linux-musl/bits/stat.h | 0 .../powerpc64-linux-musl/bits/syscall.h | 0 .../powerpc64-linux-musl/bits/termios.h | 0 .../include/powerpc64-linux-musl/bits/user.h | 0 .../powerpc64le-linux-any/asm/auxvec.h | 0 .../powerpc64le-linux-any/asm/bitsperlong.h | 0 .../powerpc64le-linux-any/asm/byteorder.h | 0 .../include/powerpc64le-linux-any/asm/errno.h | 0 .../include/powerpc64le-linux-any/asm/fcntl.h | 0 .../include/powerpc64le-linux-any/asm/ioctl.h | 0 .../powerpc64le-linux-any/asm/ioctls.h | 0 .../powerpc64le-linux-any/asm/ipcbuf.h | 0 .../include/powerpc64le-linux-any/asm/kvm.h | 0 .../powerpc64le-linux-any/asm/kvm_para.h | 0 .../include/powerpc64le-linux-any/asm/mman.h | 0 .../powerpc64le-linux-any/asm/msgbuf.h | 0 .../powerpc64le-linux-any/asm/perf_regs.h | 0 .../powerpc64le-linux-any/asm/posix_types.h | 0 .../powerpc64le-linux-any/asm/ptrace.h | 0 .../powerpc64le-linux-any/asm/sembuf.h | 0 .../include/powerpc64le-linux-any/asm/setup.h | 0 .../powerpc64le-linux-any/asm/shmbuf.h | 0 .../powerpc64le-linux-any/asm/sigcontext.h | 0 .../powerpc64le-linux-any/asm/siginfo.h | 0 .../powerpc64le-linux-any/asm/signal.h | 0 .../powerpc64le-linux-any/asm/socket.h | 0 .../include/powerpc64le-linux-any/asm/stat.h | 0 .../include/powerpc64le-linux-any/asm/swab.h | 0 .../powerpc64le-linux-any/asm/termbits.h | 0 .../powerpc64le-linux-any/asm/termios.h | 0 .../include/powerpc64le-linux-any/asm/types.h | 0 .../powerpc64le-linux-any/asm/ucontext.h | 0 .../powerpc64le-linux-any/asm/unistd.h | 0 .../powerpc64le-linux-gnu/bits/endian.h | 0 .../powerpc64le-linux-gnu/bits/environments.h | 0 .../powerpc64le-linux-gnu/bits/fcntl.h | 0 .../include/powerpc64le-linux-gnu/bits/fenv.h | 0 .../powerpc64le-linux-gnu/bits/fenvinline.h | 0 .../powerpc64le-linux-gnu/bits/floatn.h | 0 .../powerpc64le-linux-gnu/bits/fp-fast.h | 0 .../powerpc64le-linux-gnu/bits/hwcap.h | 0 .../powerpc64le-linux-gnu/bits/ioctl-types.h | 0 .../include/powerpc64le-linux-gnu/bits/ipc.h | 0 .../powerpc64le-linux-gnu/bits/iscanonical.h | 0 .../include/powerpc64le-linux-gnu/bits/link.h | 0 .../powerpc64le-linux-gnu/bits/local_lim.h | 0 .../powerpc64le-linux-gnu/bits/long-double.h | 0 .../include/powerpc64le-linux-gnu/bits/mman.h | 0 .../powerpc64le-linux-gnu/bits/msq-pad.h | 0 .../powerpc64le-linux-gnu/bits/procfs.h | 0 .../bits/pthreadtypes-arch.h | 0 .../powerpc64le-linux-gnu/bits/sem-pad.h | 0 .../powerpc64le-linux-gnu/bits/semaphore.h | 0 .../powerpc64le-linux-gnu/bits/setjmp.h | 0 .../powerpc64le-linux-gnu/bits/shm-pad.h | 0 .../powerpc64le-linux-gnu/bits/sigstack.h | 0 .../include/powerpc64le-linux-gnu/bits/stat.h | 0 .../powerpc64le-linux-gnu/bits/termios-baud.h | 0 .../powerpc64le-linux-gnu/bits/termios-c_cc.h | 0 .../bits/termios-c_cflag.h | 0 .../bits/termios-c_iflag.h | 0 .../bits/termios-c_lflag.h | 0 .../bits/termios-c_oflag.h | 0 .../powerpc64le-linux-gnu/bits/termios-misc.h | 0 .../powerpc64le-linux-gnu/bits/wordsize.h | 0 .../powerpc64le-linux-gnu/fpu_control.h | 0 .../gnu/lib-names-64-v2.h | 0 .../powerpc64le-linux-gnu/gnu/lib-names.h | 0 .../powerpc64le-linux-gnu/gnu/stubs-64-v2.h | 0 .../include/powerpc64le-linux-gnu/gnu/stubs.h | 0 .../include/powerpc64le-linux-gnu/ieee754.h | 0 .../powerpc64le-linux-gnu/sys/ptrace.h | 0 .../powerpc64le-linux-gnu/sys/ucontext.h | 0 .../include/powerpc64le-linux-gnu/sys/user.h | 0 .../powerpc64le-linux-musl/bfd_stdint.h | 0 .../powerpc64le-linux-musl/bits/alltypes.h | 0 .../powerpc64le-linux-musl/bits/endian.h | 0 .../powerpc64le-linux-musl/bits/errno.h | 0 .../powerpc64le-linux-musl/bits/fcntl.h | 0 .../powerpc64le-linux-musl/bits/fenv.h | 0 .../powerpc64le-linux-musl/bits/hwcap.h | 0 .../powerpc64le-linux-musl/bits/ioctl.h | 0 .../include/powerpc64le-linux-musl/bits/ipc.h | 0 .../powerpc64le-linux-musl/bits/limits.h | 0 .../powerpc64le-linux-musl/bits/mman.h | 0 .../include/powerpc64le-linux-musl/bits/msg.h | 0 .../powerpc64le-linux-musl/bits/posix.h | 0 .../powerpc64le-linux-musl/bits/ptrace.h | 0 .../include/powerpc64le-linux-musl/bits/reg.h | 0 .../include/powerpc64le-linux-musl/bits/sem.h | 0 .../powerpc64le-linux-musl/bits/setjmp.h | 0 .../include/powerpc64le-linux-musl/bits/shm.h | 0 .../powerpc64le-linux-musl/bits/signal.h | 0 .../powerpc64le-linux-musl/bits/socket.h | 0 .../powerpc64le-linux-musl/bits/stat.h | 0 .../powerpc64le-linux-musl/bits/syscall.h | 0 .../powerpc64le-linux-musl/bits/termios.h | 0 .../powerpc64le-linux-musl/bits/user.h | 0 .../include/riscv32-linux-any/asm/auxvec.h | 0 .../riscv32-linux-any/asm/bitsperlong.h | 0 .../include/riscv32-linux-any/asm/byteorder.h | 0 .../libc}/include/riscv32-linux-any/asm/elf.h | 0 .../include/riscv32-linux-any/asm/hwcap.h | 0 .../riscv32-linux-any/asm/posix_types.h | 0 .../include/riscv32-linux-any/asm/ptrace.h | 0 .../include/riscv32-linux-any/asm/setup.h | 0 .../riscv32-linux-any/asm/sigcontext.h | 0 .../include/riscv32-linux-any/asm/siginfo.h | 0 .../include/riscv32-linux-any/asm/signal.h | 0 .../include/riscv32-linux-any/asm/stat.h | 0 .../include/riscv32-linux-any/asm/ucontext.h | 0 .../include/riscv32-linux-any/asm/unistd.h | 0 .../libc}/include/riscv32-linux-musl/bfd.h | 0 .../include/riscv32-linux-musl/bfd_stdint.h | 0 .../riscv32-linux-musl/bits/alltypes.h | 0 .../include/riscv32-linux-musl/bits/endian.h | 0 .../include/riscv32-linux-musl/bits/fenv.h | 0 .../include/riscv32-linux-musl/bits/float.h | 0 .../include/riscv32-linux-musl/bits/ipc.h | 0 .../include/riscv32-linux-musl/bits/posix.h | 0 .../include/riscv32-linux-musl/bits/reg.h | 0 .../include/riscv32-linux-musl/bits/sem.h | 0 .../include/riscv32-linux-musl/bits/setjmp.h | 0 .../include/riscv32-linux-musl/bits/shm.h | 0 .../include/riscv32-linux-musl/bits/signal.h | 0 .../include/riscv32-linux-musl/bits/socket.h | 0 .../include/riscv32-linux-musl/bits/stat.h | 0 .../include/riscv32-linux-musl/bits/stdint.h | 0 .../include/riscv32-linux-musl/bits/syscall.h | 0 .../include/riscv32-linux-musl/bits/user.h | 0 .../libc}/include/riscv32-linux-musl/elf.h | 0 .../include/riscv32-linux-musl/netinet/tcp.h | 0 .../include/riscv32-linux-musl/netinet/udp.h | 0 .../libc}/include/riscv32-linux-musl/signal.h | 0 .../include/riscv32-linux-musl/sys/signalfd.h | 0 .../include/riscv32-linux-musl/sys/socket.h | 0 .../include/riscv64-linux-any/asm/auxvec.h | 0 .../riscv64-linux-any/asm/bitsperlong.h | 0 .../include/riscv64-linux-any/asm/byteorder.h | 0 .../libc}/include/riscv64-linux-any/asm/elf.h | 0 .../include/riscv64-linux-any/asm/hwcap.h | 0 .../riscv64-linux-any/asm/posix_types.h | 0 .../include/riscv64-linux-any/asm/ptrace.h | 0 .../include/riscv64-linux-any/asm/setup.h | 0 .../riscv64-linux-any/asm/sigcontext.h | 0 .../include/riscv64-linux-any/asm/siginfo.h | 0 .../include/riscv64-linux-any/asm/signal.h | 0 .../include/riscv64-linux-any/asm/stat.h | 0 .../include/riscv64-linux-any/asm/ucontext.h | 0 .../include/riscv64-linux-any/asm/unistd.h | 0 .../include/riscv64-linux-gnu/bits/endian.h | 0 .../include/riscv64-linux-gnu/bits/fcntl.h | 0 .../include/riscv64-linux-gnu/bits/fenv.h | 0 .../include/riscv64-linux-gnu/bits/floatn.h | 0 .../include/riscv64-linux-gnu/bits/link.h | 0 .../riscv64-linux-gnu/bits/long-double.h | 0 .../include/riscv64-linux-gnu/bits/procfs.h | 0 .../bits/pthreadtypes-arch.h | 0 .../riscv64-linux-gnu/bits/semaphore.h | 0 .../include/riscv64-linux-gnu/bits/setjmp.h | 0 .../riscv64-linux-gnu/bits/sigcontext.h | 0 .../include/riscv64-linux-gnu/bits/stat.h | 0 .../include/riscv64-linux-gnu/bits/statfs.h | 0 .../riscv64-linux-gnu/bits/typesizes.h | 0 .../include/riscv64-linux-gnu/bits/wordsize.h | 0 .../include/riscv64-linux-gnu/fpu_control.h | 0 .../riscv64-linux-gnu/gnu/lib-names-lp64.h | 0 .../include/riscv64-linux-gnu/gnu/lib-names.h | 0 .../riscv64-linux-gnu/gnu/stubs-lp64.h | 0 .../include/riscv64-linux-gnu/gnu/stubs.h | 0 .../libc}/include/riscv64-linux-gnu/ieee754.h | 0 .../libc}/include/riscv64-linux-gnu/sys/asm.h | 0 .../include/riscv64-linux-gnu/sys/cachectl.h | 0 .../include/riscv64-linux-gnu/sys/ucontext.h | 0 .../include/riscv64-linux-gnu/sys/user.h | 0 .../include/riscv64-linux-musl/bfd_stdint.h | 0 .../riscv64-linux-musl/bits/alltypes.h | 0 .../include/riscv64-linux-musl/bits/endian.h | 0 .../include/riscv64-linux-musl/bits/fenv.h | 0 .../include/riscv64-linux-musl/bits/float.h | 0 .../include/riscv64-linux-musl/bits/ipc.h | 0 .../include/riscv64-linux-musl/bits/limits.h | 0 .../include/riscv64-linux-musl/bits/mman.h | 0 .../include/riscv64-linux-musl/bits/posix.h | 0 .../include/riscv64-linux-musl/bits/reg.h | 0 .../include/riscv64-linux-musl/bits/sem.h | 0 .../include/riscv64-linux-musl/bits/setjmp.h | 0 .../include/riscv64-linux-musl/bits/shm.h | 0 .../include/riscv64-linux-musl/bits/signal.h | 0 .../include/riscv64-linux-musl/bits/socket.h | 0 .../include/riscv64-linux-musl/bits/stat.h | 0 .../include/riscv64-linux-musl/bits/syscall.h | 0 .../include/riscv64-linux-musl/bits/user.h | 0 .../libc}/include/riscv64-linux-musl/elf.h | 0 .../include/riscv64-linux-musl/netinet/tcp.h | 0 .../include/riscv64-linux-musl/netinet/udp.h | 0 .../libc}/include/riscv64-linux-musl/signal.h | 0 .../include/riscv64-linux-musl/sys/signalfd.h | 0 .../include/riscv64-linux-musl/sys/socket.h | 0 .../include/s390x-linux-any/asm/auxvec.h | 0 .../include/s390x-linux-any/asm/bitsperlong.h | 0 .../s390x-linux-any/asm/bpf_perf_event.h | 0 .../include/s390x-linux-any/asm/byteorder.h | 0 .../libc}/include/s390x-linux-any/asm/chpid.h | 0 .../libc}/include/s390x-linux-any/asm/chsc.h | 0 .../libc}/include/s390x-linux-any/asm/clp.h | 0 .../libc}/include/s390x-linux-any/asm/cmb.h | 0 .../libc}/include/s390x-linux-any/asm/dasd.h | 0 .../libc}/include/s390x-linux-any/asm/debug.h | 0 .../s390x-linux-any/asm/guarded_storage.h | 0 .../libc}/include/s390x-linux-any/asm/hypfs.h | 0 .../include/s390x-linux-any/asm/ioctls.h | 0 .../include/s390x-linux-any/asm/ipcbuf.h | 0 .../libc}/include/s390x-linux-any/asm/kvm.h | 0 .../include/s390x-linux-any/asm/kvm_para.h | 0 .../include/s390x-linux-any/asm/kvm_perf.h | 0 .../include/s390x-linux-any/asm/monwriter.h | 0 .../include/s390x-linux-any/asm/perf_regs.h | 0 .../libc}/include/s390x-linux-any/asm/pkey.h | 0 .../include/s390x-linux-any/asm/posix_types.h | 0 .../include/s390x-linux-any/asm/ptrace.h | 0 .../libc}/include/s390x-linux-any/asm/qeth.h | 0 .../s390x-linux-any/asm/runtime_instr.h | 0 .../libc}/include/s390x-linux-any/asm/schid.h | 0 .../include/s390x-linux-any/asm/sclp_ctl.h | 0 .../libc}/include/s390x-linux-any/asm/setup.h | 0 .../libc}/include/s390x-linux-any/asm/sie.h | 0 .../include/s390x-linux-any/asm/sigcontext.h | 0 .../include/s390x-linux-any/asm/siginfo.h | 0 .../include/s390x-linux-any/asm/signal.h | 0 .../include/s390x-linux-any/asm/socket.h | 0 .../libc}/include/s390x-linux-any/asm/stat.h | 0 .../include/s390x-linux-any/asm/statfs.h | 0 .../libc}/include/s390x-linux-any/asm/sthyi.h | 0 .../include/s390x-linux-any/asm/tape390.h | 0 .../include/s390x-linux-any/asm/termios.h | 0 .../libc}/include/s390x-linux-any/asm/types.h | 0 .../include/s390x-linux-any/asm/ucontext.h | 0 .../include/s390x-linux-any/asm/unistd.h | 0 .../include/s390x-linux-any/asm/unistd_32.h | 0 .../include/s390x-linux-any/asm/unistd_64.h | 0 .../include/s390x-linux-any/asm/virtio-ccw.h | 0 .../libc}/include/s390x-linux-any/asm/vmcp.h | 0 .../libc}/include/s390x-linux-any/asm/vtoc.h | 0 .../include/s390x-linux-any/asm/zcrypt.h | 0 .../include/s390x-linux-gnu/bits/elfclass.h | 0 .../include/s390x-linux-gnu/bits/endian.h | 0 .../s390x-linux-gnu/bits/environments.h | 0 .../include/s390x-linux-gnu/bits/fcntl.h | 0 .../libc}/include/s390x-linux-gnu/bits/fenv.h | 0 .../include/s390x-linux-gnu/bits/floatn.h | 0 .../s390x-linux-gnu/bits/flt-eval-method.h | 0 .../include/s390x-linux-gnu/bits/hwcap.h | 0 .../libc}/include/s390x-linux-gnu/bits/ipc.h | 0 .../libc}/include/s390x-linux-gnu/bits/link.h | 0 .../s390x-linux-gnu/bits/long-double.h | 0 .../s390x-linux-gnu/bits/procfs-extra.h | 0 .../include/s390x-linux-gnu/bits/procfs-id.h | 0 .../include/s390x-linux-gnu/bits/procfs.h | 0 .../s390x-linux-gnu/bits/pthreadtypes-arch.h | 0 .../include/s390x-linux-gnu/bits/semaphore.h | 0 .../include/s390x-linux-gnu/bits/setjmp.h | 0 .../include/s390x-linux-gnu/bits/sigaction.h | 0 .../libc}/include/s390x-linux-gnu/bits/stat.h | 0 .../include/s390x-linux-gnu/bits/statfs.h | 0 .../include/s390x-linux-gnu/bits/typesizes.h | 0 .../libc}/include/s390x-linux-gnu/bits/utmp.h | 0 .../include/s390x-linux-gnu/bits/utmpx.h | 0 .../include/s390x-linux-gnu/bits/wordsize.h | 0 .../include/s390x-linux-gnu/bits/xtitypes.h | 0 .../include/s390x-linux-gnu/fpu_control.h | 0 .../s390x-linux-gnu/gnu/lib-names-64.h | 0 .../include/s390x-linux-gnu/gnu/lib-names.h | 0 .../include/s390x-linux-gnu/gnu/stubs-64.h | 0 .../libc}/include/s390x-linux-gnu/gnu/stubs.h | 0 .../libc}/include/s390x-linux-gnu/ieee754.h | 0 .../libc}/include/s390x-linux-gnu/sys/elf.h | 0 .../include/s390x-linux-gnu/sys/ptrace.h | 0 .../include/s390x-linux-gnu/sys/ucontext.h | 0 .../libc}/include/s390x-linux-gnu/sys/user.h | 0 .../include/s390x-linux-musl/bfd_stdint.h | 0 .../include/s390x-linux-musl/bits/alltypes.h | 0 .../include/s390x-linux-musl/bits/endian.h | 0 .../include/s390x-linux-musl/bits/fcntl.h | 0 .../include/s390x-linux-musl/bits/fenv.h | 0 .../include/s390x-linux-musl/bits/float.h | 0 .../include/s390x-linux-musl/bits/hwcap.h | 0 .../include/s390x-linux-musl/bits/ioctl_fix.h | 0 .../libc}/include/s390x-linux-musl/bits/ipc.h | 0 .../include/s390x-linux-musl/bits/limits.h | 0 .../include/s390x-linux-musl/bits/link.h | 0 .../libc}/include/s390x-linux-musl/bits/msg.h | 0 .../include/s390x-linux-musl/bits/posix.h | 0 .../include/s390x-linux-musl/bits/ptrace.h | 0 .../libc}/include/s390x-linux-musl/bits/reg.h | 0 .../libc}/include/s390x-linux-musl/bits/sem.h | 0 .../include/s390x-linux-musl/bits/setjmp.h | 0 .../include/s390x-linux-musl/bits/signal.h | 0 .../include/s390x-linux-musl/bits/socket.h | 0 .../include/s390x-linux-musl/bits/stat.h | 0 .../include/s390x-linux-musl/bits/statfs.h | 0 .../include/s390x-linux-musl/bits/syscall.h | 0 .../include/s390x-linux-musl/bits/user.h | 0 .../libc}/include/sparc-linux-gnu/a.out.h | 0 .../include/sparc-linux-gnu/bits/a.out.h | 0 .../include/sparc-linux-gnu/bits/endian.h | 0 .../sparc-linux-gnu/bits/environments.h | 0 .../include/sparc-linux-gnu/bits/epoll.h | 0 .../include/sparc-linux-gnu/bits/errno.h | 0 .../include/sparc-linux-gnu/bits/eventfd.h | 0 .../include/sparc-linux-gnu/bits/fcntl.h | 0 .../libc}/include/sparc-linux-gnu/bits/fenv.h | 0 .../include/sparc-linux-gnu/bits/floatn.h | 0 .../include/sparc-linux-gnu/bits/hwcap.h | 0 .../include/sparc-linux-gnu/bits/inotify.h | 0 .../include/sparc-linux-gnu/bits/ioctls.h | 0 .../libc}/include/sparc-linux-gnu/bits/ipc.h | 0 .../libc}/include/sparc-linux-gnu/bits/link.h | 0 .../include/sparc-linux-gnu/bits/local_lim.h | 0 .../sparc-linux-gnu/bits/long-double.h | 0 .../libc}/include/sparc-linux-gnu/bits/mman.h | 0 .../include/sparc-linux-gnu/bits/msq-pad.h | 0 .../libc}/include/sparc-linux-gnu/bits/poll.h | 0 .../sparc-linux-gnu/bits/procfs-extra.h | 0 .../include/sparc-linux-gnu/bits/procfs-id.h | 0 .../include/sparc-linux-gnu/bits/procfs.h | 0 .../sparc-linux-gnu/bits/pthreadtypes-arch.h | 0 .../include/sparc-linux-gnu/bits/resource.h | 0 .../include/sparc-linux-gnu/bits/sem-pad.h | 0 .../include/sparc-linux-gnu/bits/semaphore.h | 0 .../include/sparc-linux-gnu/bits/setjmp.h | 0 .../include/sparc-linux-gnu/bits/shm-pad.h | 0 .../include/sparc-linux-gnu/bits/shmlba.h | 0 .../include/sparc-linux-gnu/bits/sigaction.h | 0 .../include/sparc-linux-gnu/bits/sigcontext.h | 0 .../sparc-linux-gnu/bits/siginfo-arch.h | 0 .../bits/siginfo-consts-arch.h | 0 .../include/sparc-linux-gnu/bits/signalfd.h | 0 .../include/sparc-linux-gnu/bits/signum.h | 0 .../include/sparc-linux-gnu/bits/sigstack.h | 0 .../sparc-linux-gnu/bits/socket_type.h | 0 .../libc}/include/sparc-linux-gnu/bits/stat.h | 0 .../sparc-linux-gnu/bits/termios-baud.h | 0 .../sparc-linux-gnu/bits/termios-c_cc.h | 0 .../sparc-linux-gnu/bits/termios-c_oflag.h | 0 .../sparc-linux-gnu/bits/termios-struct.h | 0 .../include/sparc-linux-gnu/bits/timerfd.h | 0 .../include/sparc-linux-gnu/bits/typesizes.h | 0 .../include/sparc-linux-gnu/bits/wordsize.h | 0 .../include/sparc-linux-gnu/fpu_control.h | 0 .../sparc-linux-gnu/gnu/lib-names-64.h | 0 .../include/sparc-linux-gnu/gnu/lib-names.h | 0 .../include/sparc-linux-gnu/gnu/stubs-64.h | 0 .../libc}/include/sparc-linux-gnu/gnu/stubs.h | 0 .../libc}/include/sparc-linux-gnu/ieee754.h | 0 .../include/sparc-linux-gnu/sys/ptrace.h | 0 .../include/sparc-linux-gnu/sys/ucontext.h | 0 .../libc}/include/sparc-linux-gnu/sys/user.h | 0 .../libc}/include/sparcv9-linux-gnu/a.out.h | 0 .../include/sparcv9-linux-gnu/bits/a.out.h | 0 .../include/sparcv9-linux-gnu/bits/endian.h | 0 .../sparcv9-linux-gnu/bits/environments.h | 0 .../include/sparcv9-linux-gnu/bits/epoll.h | 0 .../include/sparcv9-linux-gnu/bits/errno.h | 0 .../include/sparcv9-linux-gnu/bits/eventfd.h | 0 .../include/sparcv9-linux-gnu/bits/fcntl.h | 0 .../include/sparcv9-linux-gnu/bits/fenv.h | 0 .../include/sparcv9-linux-gnu/bits/floatn.h | 0 .../include/sparcv9-linux-gnu/bits/hwcap.h | 0 .../include/sparcv9-linux-gnu/bits/inotify.h | 0 .../include/sparcv9-linux-gnu/bits/ioctls.h | 0 .../include/sparcv9-linux-gnu/bits/ipc.h | 0 .../include/sparcv9-linux-gnu/bits/link.h | 0 .../sparcv9-linux-gnu/bits/local_lim.h | 0 .../sparcv9-linux-gnu/bits/long-double.h | 0 .../include/sparcv9-linux-gnu/bits/mman.h | 0 .../include/sparcv9-linux-gnu/bits/msq-pad.h | 0 .../include/sparcv9-linux-gnu/bits/poll.h | 0 .../sparcv9-linux-gnu/bits/procfs-extra.h | 0 .../sparcv9-linux-gnu/bits/procfs-id.h | 0 .../include/sparcv9-linux-gnu/bits/procfs.h | 0 .../bits/pthreadtypes-arch.h | 0 .../include/sparcv9-linux-gnu/bits/resource.h | 0 .../include/sparcv9-linux-gnu/bits/sem-pad.h | 0 .../sparcv9-linux-gnu/bits/semaphore.h | 0 .../include/sparcv9-linux-gnu/bits/setjmp.h | 0 .../include/sparcv9-linux-gnu/bits/shm-pad.h | 0 .../include/sparcv9-linux-gnu/bits/shmlba.h | 0 .../sparcv9-linux-gnu/bits/sigaction.h | 0 .../sparcv9-linux-gnu/bits/sigcontext.h | 0 .../sparcv9-linux-gnu/bits/siginfo-arch.h | 0 .../bits/siginfo-consts-arch.h | 0 .../include/sparcv9-linux-gnu/bits/signalfd.h | 0 .../include/sparcv9-linux-gnu/bits/signum.h | 0 .../include/sparcv9-linux-gnu/bits/sigstack.h | 0 .../sparcv9-linux-gnu/bits/socket_type.h | 0 .../include/sparcv9-linux-gnu/bits/stat.h | 0 .../sparcv9-linux-gnu/bits/termios-baud.h | 0 .../sparcv9-linux-gnu/bits/termios-c_cc.h | 0 .../sparcv9-linux-gnu/bits/termios-c_oflag.h | 0 .../sparcv9-linux-gnu/bits/termios-struct.h | 0 .../include/sparcv9-linux-gnu/bits/timerfd.h | 0 .../sparcv9-linux-gnu/bits/typesizes.h | 0 .../include/sparcv9-linux-gnu/bits/wordsize.h | 0 .../include/sparcv9-linux-gnu/fpu_control.h | 0 .../include/sparcv9-linux-gnu/gnu/lib-names.h | 0 .../include/sparcv9-linux-gnu/gnu/stubs-32.h | 0 .../include/sparcv9-linux-gnu/gnu/stubs.h | 0 .../libc}/include/sparcv9-linux-gnu/ieee754.h | 0 .../include/sparcv9-linux-gnu/sys/ptrace.h | 0 .../include/sparcv9-linux-gnu/sys/ucontext.h | 0 .../include/sparcv9-linux-gnu/sys/user.h | 0 .../wasm32-freestanding-musl/bits/alltypes.h | 0 .../include/wasm32-freestanding-musl/errno.h | 0 .../include/x86_64-linux-any/asm/auxvec.h | 0 .../x86_64-linux-any/asm/bitsperlong.h | 0 .../include/x86_64-linux-any/asm/byteorder.h | 0 .../libc}/include/x86_64-linux-any/asm/kvm.h | 0 .../include/x86_64-linux-any/asm/kvm_para.h | 0 .../libc}/include/x86_64-linux-any/asm/mman.h | 0 .../include/x86_64-linux-any/asm/msgbuf.h | 0 .../include/x86_64-linux-any/asm/perf_regs.h | 0 .../x86_64-linux-any/asm/posix_types.h | 0 .../include/x86_64-linux-any/asm/ptrace.h | 0 .../include/x86_64-linux-any/asm/sembuf.h | 0 .../include/x86_64-linux-any/asm/setup.h | 0 .../include/x86_64-linux-any/asm/shmbuf.h | 0 .../include/x86_64-linux-any/asm/sigcontext.h | 0 .../include/x86_64-linux-any/asm/siginfo.h | 0 .../include/x86_64-linux-any/asm/signal.h | 0 .../libc}/include/x86_64-linux-any/asm/stat.h | 0 .../include/x86_64-linux-any/asm/statfs.h | 0 .../libc}/include/x86_64-linux-any/asm/swab.h | 0 .../include/x86_64-linux-any/asm/types.h | 0 .../include/x86_64-linux-any/asm/ucontext.h | 0 .../include/x86_64-linux-any/asm/unistd.h | 0 .../include/x86_64-linux-gnu/bits/a.out.h | 0 .../include/x86_64-linux-gnu/bits/endian.h | 0 .../x86_64-linux-gnu/bits/environments.h | 0 .../include/x86_64-linux-gnu/bits/epoll.h | 0 .../include/x86_64-linux-gnu/bits/fcntl.h | 0 .../include/x86_64-linux-gnu/bits/fenv.h | 0 .../include/x86_64-linux-gnu/bits/floatn.h | 0 .../x86_64-linux-gnu/bits/flt-eval-method.h | 0 .../include/x86_64-linux-gnu/bits/fp-logb.h | 0 .../x86_64-linux-gnu/bits/indirect-return.h | 0 .../include/x86_64-linux-gnu/bits/ipctypes.h | 0 .../x86_64-linux-gnu/bits/iscanonical.h | 0 .../include/x86_64-linux-gnu/bits/link.h | 0 .../x86_64-linux-gnu/bits/long-double.h | 0 .../bits/math-vector-fortran.h | 0 .../x86_64-linux-gnu/bits/math-vector.h | 0 .../include/x86_64-linux-gnu/bits/mman.h | 0 .../include/x86_64-linux-gnu/bits/procfs-id.h | 0 .../include/x86_64-linux-gnu/bits/procfs.h | 0 .../x86_64-linux-gnu/bits/pthreadtypes-arch.h | 0 .../include/x86_64-linux-gnu/bits/select.h | 0 .../include/x86_64-linux-gnu/bits/sem-pad.h | 0 .../include/x86_64-linux-gnu/bits/semaphore.h | 0 .../include/x86_64-linux-gnu/bits/setjmp.h | 0 .../x86_64-linux-gnu/bits/sigcontext.h | 0 .../x86_64-linux-gnu/bits/siginfo-arch.h | 0 .../include/x86_64-linux-gnu/bits/stat.h | 0 .../include/x86_64-linux-gnu/bits/sysctl.h | 0 .../include/x86_64-linux-gnu/bits/timesize.h | 0 .../include/x86_64-linux-gnu/bits/typesizes.h | 0 .../include/x86_64-linux-gnu/bits/wordsize.h | 0 .../include/x86_64-linux-gnu/bits/xtitypes.h | 0 .../include/x86_64-linux-gnu/fpu_control.h | 0 .../x86_64-linux-gnu/gnu/lib-names-64.h | 0 .../include/x86_64-linux-gnu/gnu/lib-names.h | 0 .../include/x86_64-linux-gnu/gnu/stubs-64.h | 0 .../include/x86_64-linux-gnu/gnu/stubs.h | 0 .../libc}/include/x86_64-linux-gnu/sys/elf.h | 0 .../libc}/include/x86_64-linux-gnu/sys/io.h | 0 .../include/x86_64-linux-gnu/sys/ptrace.h | 0 .../include/x86_64-linux-gnu/sys/ucontext.h | 0 .../libc}/include/x86_64-linux-gnu/sys/user.h | 0 .../include/x86_64-linux-gnux32/bits/a.out.h | 0 .../include/x86_64-linux-gnux32/bits/endian.h | 0 .../x86_64-linux-gnux32/bits/environments.h | 0 .../include/x86_64-linux-gnux32/bits/epoll.h | 0 .../include/x86_64-linux-gnux32/bits/fcntl.h | 0 .../include/x86_64-linux-gnux32/bits/fenv.h | 0 .../include/x86_64-linux-gnux32/bits/floatn.h | 0 .../bits/flt-eval-method.h | 0 .../x86_64-linux-gnux32/bits/fp-logb.h | 0 .../bits/indirect-return.h | 0 .../x86_64-linux-gnux32/bits/ipctypes.h | 0 .../x86_64-linux-gnux32/bits/iscanonical.h | 0 .../include/x86_64-linux-gnux32/bits/link.h | 0 .../x86_64-linux-gnux32/bits/long-double.h | 0 .../bits/math-vector-fortran.h | 0 .../x86_64-linux-gnux32/bits/math-vector.h | 0 .../include/x86_64-linux-gnux32/bits/mman.h | 0 .../x86_64-linux-gnux32/bits/procfs-id.h | 0 .../include/x86_64-linux-gnux32/bits/procfs.h | 0 .../bits/pthreadtypes-arch.h | 0 .../include/x86_64-linux-gnux32/bits/select.h | 0 .../x86_64-linux-gnux32/bits/sem-pad.h | 0 .../x86_64-linux-gnux32/bits/semaphore.h | 0 .../include/x86_64-linux-gnux32/bits/setjmp.h | 0 .../x86_64-linux-gnux32/bits/sigcontext.h | 0 .../x86_64-linux-gnux32/bits/siginfo-arch.h | 0 .../include/x86_64-linux-gnux32/bits/stat.h | 0 .../include/x86_64-linux-gnux32/bits/sysctl.h | 0 .../x86_64-linux-gnux32/bits/timesize.h | 0 .../x86_64-linux-gnux32/bits/typesizes.h | 0 .../x86_64-linux-gnux32/bits/wordsize.h | 0 .../x86_64-linux-gnux32/bits/xtitypes.h | 0 .../include/x86_64-linux-gnux32/fpu_control.h | 0 .../x86_64-linux-gnux32/gnu/lib-names-x32.h | 0 .../x86_64-linux-gnux32/gnu/lib-names.h | 0 .../x86_64-linux-gnux32/gnu/stubs-x32.h | 0 .../include/x86_64-linux-gnux32/gnu/stubs.h | 0 .../include/x86_64-linux-gnux32/sys/elf.h | 0 .../include/x86_64-linux-gnux32/sys/io.h | 0 .../include/x86_64-linux-gnux32/sys/ptrace.h | 0 .../x86_64-linux-gnux32/sys/ucontext.h | 0 .../include/x86_64-linux-gnux32/sys/user.h | 0 .../include/x86_64-linux-musl/bfd_stdint.h | 0 .../include/x86_64-linux-musl/bits/alltypes.h | 0 .../include/x86_64-linux-musl/bits/endian.h | 0 .../include/x86_64-linux-musl/bits/fcntl.h | 0 .../include/x86_64-linux-musl/bits/fenv.h | 0 .../include/x86_64-linux-musl/bits/float.h | 0 .../libc}/include/x86_64-linux-musl/bits/io.h | 0 .../include/x86_64-linux-musl/bits/ipc.h | 0 .../include/x86_64-linux-musl/bits/limits.h | 0 .../include/x86_64-linux-musl/bits/mman.h | 0 .../include/x86_64-linux-musl/bits/msg.h | 0 .../include/x86_64-linux-musl/bits/posix.h | 0 .../include/x86_64-linux-musl/bits/ptrace.h | 0 .../include/x86_64-linux-musl/bits/reg.h | 0 .../include/x86_64-linux-musl/bits/setjmp.h | 0 .../include/x86_64-linux-musl/bits/signal.h | 0 .../include/x86_64-linux-musl/bits/socket.h | 0 .../include/x86_64-linux-musl/bits/stat.h | 0 .../include/x86_64-linux-musl/bits/syscall.h | 0 .../include/x86_64-linux-musl/bits/user.h | 0 {libc => lib/libc}/mingw/complex/_cabs.c | 0 {libc => lib/libc}/mingw/complex/cabs.c | 0 {libc => lib/libc}/mingw/complex/cabs.def.h | 0 {libc => lib/libc}/mingw/complex/cabsf.c | 0 {libc => lib/libc}/mingw/complex/cabsl.c | 0 {libc => lib/libc}/mingw/complex/cacos.c | 0 {libc => lib/libc}/mingw/complex/cacos.def.h | 0 {libc => lib/libc}/mingw/complex/cacosf.c | 0 {libc => lib/libc}/mingw/complex/cacosh.def.h | 0 {libc => lib/libc}/mingw/complex/cacosl.c | 0 {libc => lib/libc}/mingw/complex/carg.c | 0 {libc => lib/libc}/mingw/complex/carg.def.h | 0 {libc => lib/libc}/mingw/complex/cargf.c | 0 {libc => lib/libc}/mingw/complex/cargl.c | 0 {libc => lib/libc}/mingw/complex/casin.c | 0 {libc => lib/libc}/mingw/complex/casin.def.h | 0 {libc => lib/libc}/mingw/complex/casinf.c | 0 {libc => lib/libc}/mingw/complex/casinh.def.h | 0 {libc => lib/libc}/mingw/complex/casinl.c | 0 {libc => lib/libc}/mingw/complex/catan.c | 0 {libc => lib/libc}/mingw/complex/catan.def.h | 0 {libc => lib/libc}/mingw/complex/catanf.c | 0 {libc => lib/libc}/mingw/complex/catanh.def.h | 0 {libc => lib/libc}/mingw/complex/catanl.c | 0 {libc => lib/libc}/mingw/complex/ccos.c | 0 {libc => lib/libc}/mingw/complex/ccos.def.h | 0 {libc => lib/libc}/mingw/complex/ccosf.c | 0 {libc => lib/libc}/mingw/complex/ccosh.def.h | 0 {libc => lib/libc}/mingw/complex/ccosl.c | 0 {libc => lib/libc}/mingw/complex/cexp.c | 0 {libc => lib/libc}/mingw/complex/cexp.def.h | 0 {libc => lib/libc}/mingw/complex/cexpf.c | 0 {libc => lib/libc}/mingw/complex/cexpl.c | 0 {libc => lib/libc}/mingw/complex/cimag.c | 0 {libc => lib/libc}/mingw/complex/cimag.def.h | 0 {libc => lib/libc}/mingw/complex/cimagf.c | 0 {libc => lib/libc}/mingw/complex/cimagl.c | 0 {libc => lib/libc}/mingw/complex/clog.c | 0 {libc => lib/libc}/mingw/complex/clog.def.h | 0 {libc => lib/libc}/mingw/complex/clog10.c | 0 {libc => lib/libc}/mingw/complex/clog10.def.h | 0 {libc => lib/libc}/mingw/complex/clog10f.c | 0 {libc => lib/libc}/mingw/complex/clog10l.c | 0 {libc => lib/libc}/mingw/complex/clogf.c | 0 {libc => lib/libc}/mingw/complex/clogl.c | 0 .../libc}/mingw/complex/complex_internal.h | 0 {libc => lib/libc}/mingw/complex/conj.c | 0 {libc => lib/libc}/mingw/complex/conj.def.h | 0 {libc => lib/libc}/mingw/complex/conjf.c | 0 {libc => lib/libc}/mingw/complex/conjl.c | 0 {libc => lib/libc}/mingw/complex/cpow.c | 0 {libc => lib/libc}/mingw/complex/cpow.def.h | 0 {libc => lib/libc}/mingw/complex/cpowf.c | 0 {libc => lib/libc}/mingw/complex/cpowl.c | 0 {libc => lib/libc}/mingw/complex/cproj.c | 0 {libc => lib/libc}/mingw/complex/cproj.def.h | 0 {libc => lib/libc}/mingw/complex/cprojf.c | 0 {libc => lib/libc}/mingw/complex/cprojl.c | 0 {libc => lib/libc}/mingw/complex/creal.c | 0 {libc => lib/libc}/mingw/complex/creal.def.h | 0 {libc => lib/libc}/mingw/complex/crealf.c | 0 {libc => lib/libc}/mingw/complex/creall.c | 0 {libc => lib/libc}/mingw/complex/csin.c | 0 {libc => lib/libc}/mingw/complex/csin.def.h | 0 {libc => lib/libc}/mingw/complex/csinf.c | 0 {libc => lib/libc}/mingw/complex/csinh.def.h | 0 {libc => lib/libc}/mingw/complex/csinl.c | 0 {libc => lib/libc}/mingw/complex/csqrt.c | 0 {libc => lib/libc}/mingw/complex/csqrt.def.h | 0 {libc => lib/libc}/mingw/complex/csqrtf.c | 0 {libc => lib/libc}/mingw/complex/csqrtl.c | 0 {libc => lib/libc}/mingw/complex/ctan.c | 0 {libc => lib/libc}/mingw/complex/ctan.def.h | 0 {libc => lib/libc}/mingw/complex/ctanf.c | 0 {libc => lib/libc}/mingw/complex/ctanh.def.h | 0 {libc => lib/libc}/mingw/complex/ctanl.c | 0 {libc => lib/libc}/mingw/crt/CRT_fp10.c | 0 {libc => lib/libc}/mingw/crt/_newmode.c | 0 {libc => lib/libc}/mingw/crt/charmax.c | 0 {libc => lib/libc}/mingw/crt/cinitexe.c | 0 {libc => lib/libc}/mingw/crt/crt0_c.c | 0 {libc => lib/libc}/mingw/crt/crt0_w.c | 0 {libc => lib/libc}/mingw/crt/crt_handler.c | 0 {libc => lib/libc}/mingw/crt/crtdll.c | 0 {libc => lib/libc}/mingw/crt/crtexe.c | 0 {libc => lib/libc}/mingw/crt/cxa_atexit.c | 0 {libc => lib/libc}/mingw/crt/dll_argv.c | 0 {libc => lib/libc}/mingw/crt/dllargv.c | 0 {libc => lib/libc}/mingw/crt/dllentry.c | 0 {libc => lib/libc}/mingw/crt/dllmain.c | 0 {libc => lib/libc}/mingw/crt/gccmain.c | 0 {libc => lib/libc}/mingw/crt/gs_support.c | 0 {libc => lib/libc}/mingw/crt/merr.c | 0 {libc => lib/libc}/mingw/crt/mingw_helpers.c | 0 {libc => lib/libc}/mingw/crt/natstart.c | 0 {libc => lib/libc}/mingw/crt/pesect.c | 0 .../libc}/mingw/crt/pseudo-reloc-list.c | 0 {libc => lib/libc}/mingw/crt/pseudo-reloc.c | 0 {libc => lib/libc}/mingw/crt/tlsmcrt.c | 0 {libc => lib/libc}/mingw/crt/tlsmthread.c | 0 {libc => lib/libc}/mingw/crt/tlssup.c | 0 {libc => lib/libc}/mingw/crt/tlsthrd.c | 0 {libc => lib/libc}/mingw/crt/udll_argv.c | 0 {libc => lib/libc}/mingw/crt/udllargc.c | 0 {libc => lib/libc}/mingw/crt/wildcard.c | 0 {libc => lib/libc}/mingw/crt/xncommod.c | 0 {libc => lib/libc}/mingw/crt/xthdloc.c | 0 {libc => lib/libc}/mingw/crt/xtxtmode.c | 0 .../libc}/mingw/def-include/func.def.in | 0 .../mingw/def-include/msvcrt-common.def.in | 0 {libc => lib/libc}/mingw/gdtoa/arithchk.c | 0 {libc => lib/libc}/mingw/gdtoa/dmisc.c | 0 {libc => lib/libc}/mingw/gdtoa/dtoa.c | 0 {libc => lib/libc}/mingw/gdtoa/g__fmt.c | 0 {libc => lib/libc}/mingw/gdtoa/g_dfmt.c | 0 {libc => lib/libc}/mingw/gdtoa/g_ffmt.c | 0 {libc => lib/libc}/mingw/gdtoa/g_xfmt.c | 0 {libc => lib/libc}/mingw/gdtoa/gd_arith.h | 0 {libc => lib/libc}/mingw/gdtoa/gd_qnan.h | 0 {libc => lib/libc}/mingw/gdtoa/gdtoa.c | 0 {libc => lib/libc}/mingw/gdtoa/gdtoa.h | 0 {libc => lib/libc}/mingw/gdtoa/gdtoaimp.h | 0 {libc => lib/libc}/mingw/gdtoa/gethex.c | 0 {libc => lib/libc}/mingw/gdtoa/gmisc.c | 0 {libc => lib/libc}/mingw/gdtoa/hd_init.c | 0 {libc => lib/libc}/mingw/gdtoa/hexnan.c | 0 {libc => lib/libc}/mingw/gdtoa/misc.c | 0 {libc => lib/libc}/mingw/gdtoa/qnan.c | 0 {libc => lib/libc}/mingw/gdtoa/smisc.c | 0 {libc => lib/libc}/mingw/gdtoa/strtodg.c | 0 {libc => lib/libc}/mingw/gdtoa/strtodnrp.c | 0 {libc => lib/libc}/mingw/gdtoa/strtof.c | 0 {libc => lib/libc}/mingw/gdtoa/strtopx.c | 0 {libc => lib/libc}/mingw/gdtoa/sum.c | 0 {libc => lib/libc}/mingw/gdtoa/ulp.c | 0 {libc => lib/libc}/mingw/include/config.h | 0 {libc => lib/libc}/mingw/include/internal.h | 0 {libc => lib/libc}/mingw/include/msvcrt.h | 0 {libc => lib/libc}/mingw/include/oscalls.h | 0 .../libc}/mingw/include/sect_attribs.h | 0 .../libc}/mingw/lib-common/advapi32.def.in | 0 {libc => lib/libc}/mingw/lib-common/gdi32.def | 0 {libc => lib/libc}/mingw/lib-common/imm32.def | 0 .../libc}/mingw/lib-common/kernel32.def.in | 0 .../libc}/mingw/lib-common/msvcrt.def.in | 0 .../libc}/mingw/lib-common/ole32.def.in | 0 .../libc}/mingw/lib-common/oleaut32.def.in | 0 .../libc}/mingw/lib-common/shell32.def | 0 .../libc}/mingw/lib-common/user32.def.in | 0 .../libc}/mingw/lib-common/version.def | 0 {libc => lib/libc}/mingw/lib-common/winmm.def | 0 {libc => lib/libc}/mingw/lib32/setupapi.def | 0 {libc => lib/libc}/mingw/lib64/setupapi.def | 0 .../libc}/mingw/libarm32/setupapi.def | 0 {libc => lib/libc}/mingw/math/abs64.c | 0 {libc => lib/libc}/mingw/math/arm/_chgsignl.S | 0 {libc => lib/libc}/mingw/math/arm/ceil.S | 0 {libc => lib/libc}/mingw/math/arm/ceilf.S | 0 {libc => lib/libc}/mingw/math/arm/ceill.S | 0 {libc => lib/libc}/mingw/math/arm/copysignl.c | 0 {libc => lib/libc}/mingw/math/arm/exp2.c | 0 {libc => lib/libc}/mingw/math/arm/floor.S | 0 {libc => lib/libc}/mingw/math/arm/floorf.S | 0 {libc => lib/libc}/mingw/math/arm/floorl.S | 0 {libc => lib/libc}/mingw/math/arm/ldexpl.c | 0 {libc => lib/libc}/mingw/math/arm/log2.c | 0 {libc => lib/libc}/mingw/math/arm/nearbyint.S | 0 .../libc}/mingw/math/arm/nearbyintf.S | 0 .../libc}/mingw/math/arm/nearbyintl.S | 0 {libc => lib/libc}/mingw/math/arm/scalbn.c | 0 {libc => lib/libc}/mingw/math/arm/sincos.c | 0 {libc => lib/libc}/mingw/math/arm/trunc.S | 0 {libc => lib/libc}/mingw/math/arm/truncf.S | 0 .../libc}/mingw/math/arm64/_chgsignl.S | 0 {libc => lib/libc}/mingw/math/arm64/ceil.S | 0 {libc => lib/libc}/mingw/math/arm64/ceilf.S | 0 {libc => lib/libc}/mingw/math/arm64/ceill.S | 0 .../libc}/mingw/math/arm64/copysignl.c | 0 {libc => lib/libc}/mingw/math/arm64/exp2.S | 0 {libc => lib/libc}/mingw/math/arm64/exp2f.S | 0 {libc => lib/libc}/mingw/math/arm64/floor.S | 0 {libc => lib/libc}/mingw/math/arm64/floorf.S | 0 {libc => lib/libc}/mingw/math/arm64/floorl.S | 0 {libc => lib/libc}/mingw/math/arm64/ldexpl.c | 0 {libc => lib/libc}/mingw/math/arm64/log2.c | 0 .../libc}/mingw/math/arm64/nearbyint.S | 0 .../libc}/mingw/math/arm64/nearbyintf.S | 0 .../libc}/mingw/math/arm64/nearbyintl.S | 0 {libc => lib/libc}/mingw/math/arm64/scalbn.c | 0 {libc => lib/libc}/mingw/math/arm64/sincos.c | 0 {libc => lib/libc}/mingw/math/arm64/trunc.S | 0 {libc => lib/libc}/mingw/math/arm64/truncf.S | 0 {libc => lib/libc}/mingw/math/cbrt.c | 0 {libc => lib/libc}/mingw/math/cbrtf.c | 0 {libc => lib/libc}/mingw/math/cbrtl.c | 0 {libc => lib/libc}/mingw/math/cephes_emath.c | 0 {libc => lib/libc}/mingw/math/cephes_emath.h | 0 {libc => lib/libc}/mingw/math/cephes_mconf.h | 0 {libc => lib/libc}/mingw/math/copysign.c | 0 {libc => lib/libc}/mingw/math/copysignf.c | 0 {libc => lib/libc}/mingw/math/coshf.c | 0 {libc => lib/libc}/mingw/math/coshl.c | 0 {libc => lib/libc}/mingw/math/erfl.c | 0 {libc => lib/libc}/mingw/math/expf.c | 0 {libc => lib/libc}/mingw/math/fabs.c | 0 {libc => lib/libc}/mingw/math/fabsf.c | 0 {libc => lib/libc}/mingw/math/fabsl.c | 0 {libc => lib/libc}/mingw/math/fdim.c | 0 {libc => lib/libc}/mingw/math/fdimf.c | 0 {libc => lib/libc}/mingw/math/fdiml.c | 0 {libc => lib/libc}/mingw/math/fma.c | 0 {libc => lib/libc}/mingw/math/fmaf.c | 0 {libc => lib/libc}/mingw/math/fmal.c | 0 {libc => lib/libc}/mingw/math/fmax.c | 0 {libc => lib/libc}/mingw/math/fmaxf.c | 0 {libc => lib/libc}/mingw/math/fmaxl.c | 0 {libc => lib/libc}/mingw/math/fmin.c | 0 {libc => lib/libc}/mingw/math/fminf.c | 0 {libc => lib/libc}/mingw/math/fminl.c | 0 {libc => lib/libc}/mingw/math/fp_consts.c | 0 {libc => lib/libc}/mingw/math/fp_consts.h | 0 {libc => lib/libc}/mingw/math/fp_constsf.c | 0 {libc => lib/libc}/mingw/math/fp_constsl.c | 0 {libc => lib/libc}/mingw/math/fpclassify.c | 0 {libc => lib/libc}/mingw/math/fpclassifyf.c | 0 {libc => lib/libc}/mingw/math/fpclassifyl.c | 0 {libc => lib/libc}/mingw/math/frexpf.c | 0 {libc => lib/libc}/mingw/math/hypot.c | 0 {libc => lib/libc}/mingw/math/hypotf.c | 0 {libc => lib/libc}/mingw/math/hypotl.c | 0 {libc => lib/libc}/mingw/math/isnan.c | 0 {libc => lib/libc}/mingw/math/isnanf.c | 0 {libc => lib/libc}/mingw/math/isnanl.c | 0 {libc => lib/libc}/mingw/math/ldexpf.c | 0 {libc => lib/libc}/mingw/math/lgamma.c | 0 {libc => lib/libc}/mingw/math/lgammaf.c | 0 {libc => lib/libc}/mingw/math/lgammal.c | 0 {libc => lib/libc}/mingw/math/llrint.c | 0 {libc => lib/libc}/mingw/math/llrintf.c | 0 {libc => lib/libc}/mingw/math/llrintl.c | 0 {libc => lib/libc}/mingw/math/llround.c | 0 {libc => lib/libc}/mingw/math/llroundf.c | 0 {libc => lib/libc}/mingw/math/llroundl.c | 0 {libc => lib/libc}/mingw/math/log10f.c | 0 {libc => lib/libc}/mingw/math/logf.c | 0 {libc => lib/libc}/mingw/math/lrint.c | 0 {libc => lib/libc}/mingw/math/lrintf.c | 0 {libc => lib/libc}/mingw/math/lrintl.c | 0 {libc => lib/libc}/mingw/math/lround.c | 0 {libc => lib/libc}/mingw/math/lroundf.c | 0 {libc => lib/libc}/mingw/math/lroundl.c | 0 {libc => lib/libc}/mingw/math/modf.c | 0 {libc => lib/libc}/mingw/math/modff.c | 0 {libc => lib/libc}/mingw/math/modfl.c | 0 {libc => lib/libc}/mingw/math/nextafterf.c | 0 {libc => lib/libc}/mingw/math/nextafterl.c | 0 {libc => lib/libc}/mingw/math/nexttoward.c | 0 {libc => lib/libc}/mingw/math/nexttowardf.c | 0 {libc => lib/libc}/mingw/math/powf.c | 0 {libc => lib/libc}/mingw/math/powi.c | 0 {libc => lib/libc}/mingw/math/powi.def.h | 0 {libc => lib/libc}/mingw/math/powif.c | 0 {libc => lib/libc}/mingw/math/powil.c | 0 {libc => lib/libc}/mingw/math/rint.c | 0 {libc => lib/libc}/mingw/math/rintf.c | 0 {libc => lib/libc}/mingw/math/rintl.c | 0 {libc => lib/libc}/mingw/math/round.c | 0 {libc => lib/libc}/mingw/math/roundf.c | 0 {libc => lib/libc}/mingw/math/roundl.c | 0 {libc => lib/libc}/mingw/math/s_erf.c | 0 {libc => lib/libc}/mingw/math/sf_erf.c | 0 {libc => lib/libc}/mingw/math/signbit.c | 0 {libc => lib/libc}/mingw/math/signbitf.c | 0 {libc => lib/libc}/mingw/math/signbitl.c | 0 {libc => lib/libc}/mingw/math/signgam.c | 0 {libc => lib/libc}/mingw/math/sinhf.c | 0 {libc => lib/libc}/mingw/math/sinhl.c | 0 {libc => lib/libc}/mingw/math/sqrt.c | 0 {libc => lib/libc}/mingw/math/sqrt.def.h | 0 {libc => lib/libc}/mingw/math/sqrtf.c | 0 {libc => lib/libc}/mingw/math/sqrtl.c | 0 {libc => lib/libc}/mingw/math/tanhf.c | 0 {libc => lib/libc}/mingw/math/tanhl.c | 0 {libc => lib/libc}/mingw/math/tgamma.c | 0 {libc => lib/libc}/mingw/math/tgammaf.c | 0 {libc => lib/libc}/mingw/math/tgammal.c | 0 {libc => lib/libc}/mingw/math/truncl.c | 0 {libc => lib/libc}/mingw/math/x86/_chgsignl.S | 0 {libc => lib/libc}/mingw/math/x86/acosf.c | 0 {libc => lib/libc}/mingw/math/x86/acosh.c | 0 {libc => lib/libc}/mingw/math/x86/acosh.def.h | 0 {libc => lib/libc}/mingw/math/x86/acoshf.c | 0 {libc => lib/libc}/mingw/math/x86/acoshl.c | 0 {libc => lib/libc}/mingw/math/x86/acosl.c | 0 {libc => lib/libc}/mingw/math/x86/asinf.c | 0 {libc => lib/libc}/mingw/math/x86/asinh.c | 0 {libc => lib/libc}/mingw/math/x86/asinhf.c | 0 {libc => lib/libc}/mingw/math/x86/asinhl.c | 0 {libc => lib/libc}/mingw/math/x86/asinl.c | 0 {libc => lib/libc}/mingw/math/x86/atan2.c | 0 {libc => lib/libc}/mingw/math/x86/atan2f.c | 0 {libc => lib/libc}/mingw/math/x86/atan2l.c | 0 {libc => lib/libc}/mingw/math/x86/atanf.c | 0 {libc => lib/libc}/mingw/math/x86/atanh.c | 0 {libc => lib/libc}/mingw/math/x86/atanhf.c | 0 {libc => lib/libc}/mingw/math/x86/atanhl.c | 0 {libc => lib/libc}/mingw/math/x86/atanl.c | 0 {libc => lib/libc}/mingw/math/x86/ceil.S | 0 {libc => lib/libc}/mingw/math/x86/ceilf.S | 0 {libc => lib/libc}/mingw/math/x86/ceill.S | 0 {libc => lib/libc}/mingw/math/x86/copysignl.S | 0 {libc => lib/libc}/mingw/math/x86/cos.c | 0 {libc => lib/libc}/mingw/math/x86/cos.def.h | 0 {libc => lib/libc}/mingw/math/x86/cosf.c | 0 {libc => lib/libc}/mingw/math/x86/cosl.c | 0 .../libc}/mingw/math/x86/cosl_internal.S | 0 {libc => lib/libc}/mingw/math/x86/cossin.c | 0 {libc => lib/libc}/mingw/math/x86/exp.c | 0 {libc => lib/libc}/mingw/math/x86/exp.def.h | 0 {libc => lib/libc}/mingw/math/x86/exp2.S | 0 {libc => lib/libc}/mingw/math/x86/exp2f.S | 0 {libc => lib/libc}/mingw/math/x86/exp2l.S | 0 {libc => lib/libc}/mingw/math/x86/expl.c | 0 {libc => lib/libc}/mingw/math/x86/expm1.c | 0 {libc => lib/libc}/mingw/math/x86/expm1.def.h | 0 {libc => lib/libc}/mingw/math/x86/expm1f.c | 0 {libc => lib/libc}/mingw/math/x86/expm1l.c | 0 {libc => lib/libc}/mingw/math/x86/fastmath.h | 0 {libc => lib/libc}/mingw/math/x86/floor.S | 0 {libc => lib/libc}/mingw/math/x86/floorf.S | 0 {libc => lib/libc}/mingw/math/x86/floorl.S | 0 {libc => lib/libc}/mingw/math/x86/fmod.c | 0 {libc => lib/libc}/mingw/math/x86/fmodf.c | 0 {libc => lib/libc}/mingw/math/x86/fmodl.c | 0 {libc => lib/libc}/mingw/math/x86/frexpl.S | 0 {libc => lib/libc}/mingw/math/x86/fucom.c | 0 {libc => lib/libc}/mingw/math/x86/ilogb.S | 0 {libc => lib/libc}/mingw/math/x86/ilogbf.S | 0 {libc => lib/libc}/mingw/math/x86/ilogbl.S | 0 .../libc}/mingw/math/x86/internal_logl.S | 0 {libc => lib/libc}/mingw/math/x86/ldexp.c | 0 {libc => lib/libc}/mingw/math/x86/ldexpl.c | 0 {libc => lib/libc}/mingw/math/x86/log.c | 0 {libc => lib/libc}/mingw/math/x86/log.def.h | 0 {libc => lib/libc}/mingw/math/x86/log10l.S | 0 {libc => lib/libc}/mingw/math/x86/log1p.S | 0 {libc => lib/libc}/mingw/math/x86/log1pf.S | 0 {libc => lib/libc}/mingw/math/x86/log1pl.S | 0 {libc => lib/libc}/mingw/math/x86/log2.S | 0 {libc => lib/libc}/mingw/math/x86/log2f.S | 0 {libc => lib/libc}/mingw/math/x86/log2l.S | 0 {libc => lib/libc}/mingw/math/x86/logb.c | 0 {libc => lib/libc}/mingw/math/x86/logbf.c | 0 {libc => lib/libc}/mingw/math/x86/logbl.c | 0 {libc => lib/libc}/mingw/math/x86/logl.c | 0 {libc => lib/libc}/mingw/math/x86/nearbyint.S | 0 .../libc}/mingw/math/x86/nearbyintf.S | 0 .../libc}/mingw/math/x86/nearbyintl.S | 0 {libc => lib/libc}/mingw/math/x86/pow.c | 0 {libc => lib/libc}/mingw/math/x86/pow.def.h | 0 {libc => lib/libc}/mingw/math/x86/powl.c | 0 {libc => lib/libc}/mingw/math/x86/remainder.S | 0 .../libc}/mingw/math/x86/remainderf.S | 0 .../libc}/mingw/math/x86/remainderl.S | 0 {libc => lib/libc}/mingw/math/x86/remquo.S | 0 {libc => lib/libc}/mingw/math/x86/remquof.S | 0 {libc => lib/libc}/mingw/math/x86/remquol.S | 0 {libc => lib/libc}/mingw/math/x86/scalbn.S | 0 {libc => lib/libc}/mingw/math/x86/scalbnf.S | 0 {libc => lib/libc}/mingw/math/x86/scalbnl.S | 0 {libc => lib/libc}/mingw/math/x86/sin.c | 0 {libc => lib/libc}/mingw/math/x86/sin.def.h | 0 {libc => lib/libc}/mingw/math/x86/sinf.c | 0 {libc => lib/libc}/mingw/math/x86/sinl.c | 0 .../libc}/mingw/math/x86/sinl_internal.S | 0 {libc => lib/libc}/mingw/math/x86/tanf.c | 0 {libc => lib/libc}/mingw/math/x86/tanl.S | 0 {libc => lib/libc}/mingw/math/x86/trunc.S | 0 {libc => lib/libc}/mingw/math/x86/truncf.S | 0 {libc => lib/libc}/mingw/misc/__p___argv.c | 0 {libc => lib/libc}/mingw/misc/__p__acmdln.c | 0 {libc => lib/libc}/mingw/misc/__p__fmode.c | 0 {libc => lib/libc}/mingw/misc/__p__wcmdln.c | 0 .../libc}/mingw/misc/_configthreadlocale.c | 0 .../libc}/mingw/misc/_get_current_locale.c | 0 {libc => lib/libc}/mingw/misc/alarm.c | 0 {libc => lib/libc}/mingw/misc/assert.c | 0 {libc => lib/libc}/mingw/misc/basename.c | 0 {libc => lib/libc}/mingw/misc/btowc.c | 0 {libc => lib/libc}/mingw/misc/delay-f.c | 0 {libc => lib/libc}/mingw/misc/delay-n.c | 0 {libc => lib/libc}/mingw/misc/delayimp.c | 0 {libc => lib/libc}/mingw/misc/difftime.c | 0 {libc => lib/libc}/mingw/misc/difftime32.c | 0 {libc => lib/libc}/mingw/misc/difftime64.c | 0 {libc => lib/libc}/mingw/misc/dirent.c | 0 {libc => lib/libc}/mingw/misc/dirname.c | 0 {libc => lib/libc}/mingw/misc/execv.c | 0 {libc => lib/libc}/mingw/misc/execve.c | 0 {libc => lib/libc}/mingw/misc/execvp.c | 0 {libc => lib/libc}/mingw/misc/execvpe.c | 0 {libc => lib/libc}/mingw/misc/feclearexcept.c | 0 {libc => lib/libc}/mingw/misc/fegetenv.c | 0 .../libc}/mingw/misc/fegetexceptflag.c | 0 {libc => lib/libc}/mingw/misc/fegetround.c | 0 {libc => lib/libc}/mingw/misc/feholdexcept.c | 0 {libc => lib/libc}/mingw/misc/feraiseexcept.c | 0 {libc => lib/libc}/mingw/misc/fesetenv.c | 0 .../libc}/mingw/misc/fesetexceptflag.c | 0 {libc => lib/libc}/mingw/misc/fesetround.c | 0 {libc => lib/libc}/mingw/misc/fetestexcept.c | 0 {libc => lib/libc}/mingw/misc/feupdateenv.c | 0 {libc => lib/libc}/mingw/misc/ftruncate.c | 0 {libc => lib/libc}/mingw/misc/ftw.c | 0 {libc => lib/libc}/mingw/misc/ftw64.c | 0 {libc => lib/libc}/mingw/misc/fwide.c | 0 {libc => lib/libc}/mingw/misc/getlogin.c | 0 {libc => lib/libc}/mingw/misc/getopt.c | 0 {libc => lib/libc}/mingw/misc/gettimeofday.c | 0 {libc => lib/libc}/mingw/misc/imaxabs.c | 0 {libc => lib/libc}/mingw/misc/imaxdiv.c | 0 .../mingw/misc/invalid_parameter_handler.c | 0 {libc => lib/libc}/mingw/misc/isblank.c | 0 {libc => lib/libc}/mingw/misc/iswblank.c | 0 .../libc}/mingw/misc/lc_locale_func.c | 0 {libc => lib/libc}/mingw/misc/mb_wc_common.h | 0 {libc => lib/libc}/mingw/misc/mbrtowc.c | 0 {libc => lib/libc}/mingw/misc/mbsinit.c | 0 {libc => lib/libc}/mingw/misc/mempcpy.c | 0 .../libc}/mingw/misc/mingw-aligned-malloc.c | 0 {libc => lib/libc}/mingw/misc/mingw-fseek.c | 0 {libc => lib/libc}/mingw/misc/mingw_getsp.S | 0 {libc => lib/libc}/mingw/misc/mingw_matherr.c | 0 .../libc}/mingw/misc/mingw_mbwc_convert.c | 0 {libc => lib/libc}/mingw/misc/mingw_usleep.c | 0 {libc => lib/libc}/mingw/misc/mingw_wcstod.c | 0 {libc => lib/libc}/mingw/misc/mingw_wcstof.c | 0 {libc => lib/libc}/mingw/misc/mingw_wcstold.c | 0 {libc => lib/libc}/mingw/misc/mkstemp.c | 0 {libc => lib/libc}/mingw/misc/onexit_table.c | 0 {libc => lib/libc}/mingw/misc/output_format.c | 0 {libc => lib/libc}/mingw/misc/purecall.c | 0 .../libc}/mingw/misc/register_tls_atexit.c | 0 {libc => lib/libc}/mingw/misc/seterrno.c | 0 {libc => lib/libc}/mingw/misc/sleep.c | 0 {libc => lib/libc}/mingw/misc/spawnv.c | 0 {libc => lib/libc}/mingw/misc/spawnve.c | 0 {libc => lib/libc}/mingw/misc/spawnvp.c | 0 {libc => lib/libc}/mingw/misc/spawnvpe.c | 0 {libc => lib/libc}/mingw/misc/strnlen.c | 0 {libc => lib/libc}/mingw/misc/strsafe.c | 0 {libc => lib/libc}/mingw/misc/strtoimax.c | 0 {libc => lib/libc}/mingw/misc/strtold.c | 0 {libc => lib/libc}/mingw/misc/strtoumax.c | 0 {libc => lib/libc}/mingw/misc/tdelete.c | 0 {libc => lib/libc}/mingw/misc/tfind.c | 0 {libc => lib/libc}/mingw/misc/tsearch.c | 0 {libc => lib/libc}/mingw/misc/twalk.c | 0 .../libc}/mingw/misc/uchar_c16rtomb.c | 0 .../libc}/mingw/misc/uchar_c32rtomb.c | 0 .../libc}/mingw/misc/uchar_mbrtoc16.c | 0 .../libc}/mingw/misc/uchar_mbrtoc32.c | 0 {libc => lib/libc}/mingw/misc/wassert.c | 0 {libc => lib/libc}/mingw/misc/wcrtomb.c | 0 {libc => lib/libc}/mingw/misc/wcsnlen.c | 0 {libc => lib/libc}/mingw/misc/wcstof.c | 0 {libc => lib/libc}/mingw/misc/wcstoimax.c | 0 {libc => lib/libc}/mingw/misc/wcstold.c | 0 {libc => lib/libc}/mingw/misc/wcstoumax.c | 0 {libc => lib/libc}/mingw/misc/wctob.c | 0 {libc => lib/libc}/mingw/misc/wctrans.c | 0 {libc => lib/libc}/mingw/misc/wctype.c | 0 {libc => lib/libc}/mingw/misc/wdirent.c | 0 {libc => lib/libc}/mingw/misc/winbs_uint64.c | 0 {libc => lib/libc}/mingw/misc/winbs_ulong.c | 0 {libc => lib/libc}/mingw/misc/winbs_ushort.c | 0 {libc => lib/libc}/mingw/misc/wmemchr.c | 0 {libc => lib/libc}/mingw/misc/wmemcmp.c | 0 {libc => lib/libc}/mingw/misc/wmemcpy.c | 0 {libc => lib/libc}/mingw/misc/wmemmove.c | 0 {libc => lib/libc}/mingw/misc/wmempcpy.c | 0 {libc => lib/libc}/mingw/misc/wmemset.c | 0 {libc => lib/libc}/mingw/secapi/_access_s.c | 0 {libc => lib/libc}/mingw/secapi/_cgets_s.c | 0 {libc => lib/libc}/mingw/secapi/_cgetws_s.c | 0 {libc => lib/libc}/mingw/secapi/_chsize_s.c | 0 .../libc}/mingw/secapi/_controlfp_s.c | 0 {libc => lib/libc}/mingw/secapi/_cprintf_s.c | 0 .../libc}/mingw/secapi/_cprintf_s_l.c | 0 {libc => lib/libc}/mingw/secapi/_ctime32_s.c | 0 {libc => lib/libc}/mingw/secapi/_ctime64_s.c | 0 {libc => lib/libc}/mingw/secapi/_cwprintf_s.c | 0 .../libc}/mingw/secapi/_cwprintf_s_l.c | 0 {libc => lib/libc}/mingw/secapi/_gmtime32_s.c | 0 {libc => lib/libc}/mingw/secapi/_gmtime64_s.c | 0 .../libc}/mingw/secapi/_localtime32_s.c | 0 .../libc}/mingw/secapi/_localtime64_s.c | 0 {libc => lib/libc}/mingw/secapi/_mktemp_s.c | 0 {libc => lib/libc}/mingw/secapi/_sopen_s.c | 0 {libc => lib/libc}/mingw/secapi/_strdate_s.c | 0 {libc => lib/libc}/mingw/secapi/_strtime_s.c | 0 {libc => lib/libc}/mingw/secapi/_umask_s.c | 0 {libc => lib/libc}/mingw/secapi/_vcprintf_s.c | 0 .../libc}/mingw/secapi/_vcprintf_s_l.c | 0 .../libc}/mingw/secapi/_vcwprintf_s.c | 0 .../libc}/mingw/secapi/_vcwprintf_s_l.c | 0 .../libc}/mingw/secapi/_vscprintf_p.c | 0 .../libc}/mingw/secapi/_vscwprintf_p.c | 0 .../libc}/mingw/secapi/_vswprintf_p.c | 0 {libc => lib/libc}/mingw/secapi/_waccess_s.c | 0 {libc => lib/libc}/mingw/secapi/_wasctime_s.c | 0 {libc => lib/libc}/mingw/secapi/_wctime32_s.c | 0 {libc => lib/libc}/mingw/secapi/_wctime64_s.c | 0 {libc => lib/libc}/mingw/secapi/_wmktemp_s.c | 0 {libc => lib/libc}/mingw/secapi/_wstrdate_s.c | 0 {libc => lib/libc}/mingw/secapi/_wstrtime_s.c | 0 {libc => lib/libc}/mingw/secapi/asctime_s.c | 0 {libc => lib/libc}/mingw/secapi/memcpy_s.c | 0 {libc => lib/libc}/mingw/secapi/memmove_s.c | 0 {libc => lib/libc}/mingw/secapi/rand_s.c | 0 {libc => lib/libc}/mingw/secapi/sprintf_s.c | 0 {libc => lib/libc}/mingw/secapi/strerror_s.c | 0 {libc => lib/libc}/mingw/secapi/vsprintf_s.c | 0 {libc => lib/libc}/mingw/secapi/wmemcpy_s.c | 0 {libc => lib/libc}/mingw/secapi/wmemmove_s.c | 0 {libc => lib/libc}/mingw/stdio/_Exit.c | 0 .../libc}/mingw/stdio/_findfirst64i32.c | 0 .../libc}/mingw/stdio/_findnext64i32.c | 0 {libc => lib/libc}/mingw/stdio/_fstat.c | 0 {libc => lib/libc}/mingw/stdio/_fstat64i32.c | 0 {libc => lib/libc}/mingw/stdio/_ftime.c | 0 {libc => lib/libc}/mingw/stdio/_getc_nolock.c | 0 .../libc}/mingw/stdio/_getwc_nolock.c | 0 {libc => lib/libc}/mingw/stdio/_putc_nolock.c | 0 .../libc}/mingw/stdio/_putwc_nolock.c | 0 {libc => lib/libc}/mingw/stdio/_stat.c | 0 {libc => lib/libc}/mingw/stdio/_stat64i32.c | 0 .../libc}/mingw/stdio/_wfindfirst64i32.c | 0 .../libc}/mingw/stdio/_wfindnext64i32.c | 0 {libc => lib/libc}/mingw/stdio/_wstat.c | 0 {libc => lib/libc}/mingw/stdio/_wstat64i32.c | 0 .../libc}/mingw/stdio/acrt_iob_func.c | 0 {libc => lib/libc}/mingw/stdio/asprintf.c | 0 {libc => lib/libc}/mingw/stdio/atoll.c | 0 {libc => lib/libc}/mingw/stdio/fgetpos64.c | 0 {libc => lib/libc}/mingw/stdio/fopen64.c | 0 {libc => lib/libc}/mingw/stdio/fseeko32.c | 0 {libc => lib/libc}/mingw/stdio/fseeko64.c | 0 {libc => lib/libc}/mingw/stdio/fsetpos64.c | 0 {libc => lib/libc}/mingw/stdio/ftello.c | 0 {libc => lib/libc}/mingw/stdio/ftello64.c | 0 {libc => lib/libc}/mingw/stdio/ftruncate64.c | 0 {libc => lib/libc}/mingw/stdio/lltoa.c | 0 {libc => lib/libc}/mingw/stdio/lltow.c | 0 {libc => lib/libc}/mingw/stdio/lseek64.c | 0 .../libc}/mingw/stdio/mingw_asprintf.c | 0 .../libc}/mingw/stdio/mingw_fprintf.c | 0 .../libc}/mingw/stdio/mingw_fprintfw.c | 0 {libc => lib/libc}/mingw/stdio/mingw_fscanf.c | 0 .../libc}/mingw/stdio/mingw_fwscanf.c | 0 {libc => lib/libc}/mingw/stdio/mingw_lock.c | 0 .../libc}/mingw/stdio/mingw_pformat.c | 0 .../libc}/mingw/stdio/mingw_pformat.h | 0 .../libc}/mingw/stdio/mingw_pformatw.c | 0 {libc => lib/libc}/mingw/stdio/mingw_printf.c | 0 .../libc}/mingw/stdio/mingw_printfw.c | 0 {libc => lib/libc}/mingw/stdio/mingw_scanf.c | 0 .../libc}/mingw/stdio/mingw_snprintf.c | 0 .../libc}/mingw/stdio/mingw_snprintfw.c | 0 .../libc}/mingw/stdio/mingw_sprintf.c | 0 .../libc}/mingw/stdio/mingw_sprintfw.c | 0 {libc => lib/libc}/mingw/stdio/mingw_sscanf.c | 0 .../libc}/mingw/stdio/mingw_swscanf.c | 0 .../libc}/mingw/stdio/mingw_vasprintf.c | 0 .../libc}/mingw/stdio/mingw_vfprintf.c | 0 .../libc}/mingw/stdio/mingw_vfprintfw.c | 0 .../libc}/mingw/stdio/mingw_vfscanf.c | 0 .../libc}/mingw/stdio/mingw_vprintf.c | 0 .../libc}/mingw/stdio/mingw_vprintfw.c | 0 .../libc}/mingw/stdio/mingw_vsnprintf.c | 0 .../libc}/mingw/stdio/mingw_vsnprintfw.c | 0 .../libc}/mingw/stdio/mingw_vsprintf.c | 0 .../libc}/mingw/stdio/mingw_vsprintfw.c | 0 {libc => lib/libc}/mingw/stdio/mingw_wscanf.c | 0 .../libc}/mingw/stdio/mingw_wvfscanf.c | 0 {libc => lib/libc}/mingw/stdio/scanf.S | 0 .../libc}/mingw/stdio/scanf2-template.S | 0 {libc => lib/libc}/mingw/stdio/snprintf.c | 0 {libc => lib/libc}/mingw/stdio/snwprintf.c | 0 {libc => lib/libc}/mingw/stdio/strtof.c | 0 {libc => lib/libc}/mingw/stdio/strtok_r.c | 0 {libc => lib/libc}/mingw/stdio/truncate.c | 0 {libc => lib/libc}/mingw/stdio/ulltoa.c | 0 {libc => lib/libc}/mingw/stdio/ulltow.c | 0 {libc => lib/libc}/mingw/stdio/vasprintf.c | 0 {libc => lib/libc}/mingw/stdio/vfscanf.c | 0 {libc => lib/libc}/mingw/stdio/vfscanf2.S | 0 {libc => lib/libc}/mingw/stdio/vfwscanf.c | 0 {libc => lib/libc}/mingw/stdio/vfwscanf2.S | 0 {libc => lib/libc}/mingw/stdio/vscanf.c | 0 {libc => lib/libc}/mingw/stdio/vscanf2.S | 0 {libc => lib/libc}/mingw/stdio/vsnprintf.c | 0 {libc => lib/libc}/mingw/stdio/vsnwprintf.c | 0 {libc => lib/libc}/mingw/stdio/vsscanf.c | 0 {libc => lib/libc}/mingw/stdio/vsscanf2.S | 0 {libc => lib/libc}/mingw/stdio/vswscanf.c | 0 {libc => lib/libc}/mingw/stdio/vswscanf2.S | 0 {libc => lib/libc}/mingw/stdio/vwscanf.c | 0 {libc => lib/libc}/mingw/stdio/vwscanf2.S | 0 {libc => lib/libc}/mingw/stdio/wtoll.c | 0 .../libc}/musl/arch/aarch64/atomic_arch.h | 0 .../musl/arch/aarch64/bits/alltypes.h.in | 0 .../libc}/musl/arch/aarch64/bits/endian.h | 0 .../libc}/musl/arch/aarch64/bits/fcntl.h | 0 .../libc}/musl/arch/aarch64/bits/fenv.h | 0 .../libc}/musl/arch/aarch64/bits/float.h | 0 .../libc}/musl/arch/aarch64/bits/hwcap.h | 0 .../libc}/musl/arch/aarch64/bits/ipc.h | 0 .../libc}/musl/arch/aarch64/bits/limits.h | 0 .../libc}/musl/arch/aarch64/bits/msg.h | 0 .../libc}/musl/arch/aarch64/bits/posix.h | 0 .../libc}/musl/arch/aarch64/bits/reg.h | 0 .../libc}/musl/arch/aarch64/bits/sem.h | 0 .../libc}/musl/arch/aarch64/bits/setjmp.h | 0 .../libc}/musl/arch/aarch64/bits/shm.h | 0 .../libc}/musl/arch/aarch64/bits/signal.h | 0 .../libc}/musl/arch/aarch64/bits/socket.h | 0 .../libc}/musl/arch/aarch64/bits/stat.h | 0 .../libc}/musl/arch/aarch64/bits/stdint.h | 0 .../libc}/musl/arch/aarch64/bits/syscall.h.in | 0 .../libc}/musl/arch/aarch64/bits/user.h | 0 .../libc}/musl/arch/aarch64/crt_arch.h | 0 .../libc}/musl/arch/aarch64/pthread_arch.h | 0 {libc => lib/libc}/musl/arch/aarch64/reloc.h | 0 .../libc}/musl/arch/aarch64/syscall_arch.h | 0 .../libc}/musl/arch/arm/atomic_arch.h | 0 .../libc}/musl/arch/arm/bits/alltypes.h.in | 0 .../libc}/musl/arch/arm/bits/endian.h | 0 {libc => lib/libc}/musl/arch/arm/bits/fcntl.h | 0 {libc => lib/libc}/musl/arch/arm/bits/fenv.h | 0 {libc => lib/libc}/musl/arch/arm/bits/float.h | 0 {libc => lib/libc}/musl/arch/arm/bits/hwcap.h | 0 .../libc}/musl/arch/arm/bits/ioctl_fix.h | 0 .../libc}/musl/arch/arm/bits/limits.h | 0 {libc => lib/libc}/musl/arch/arm/bits/posix.h | 0 .../libc}/musl/arch/arm/bits/ptrace.h | 0 {libc => lib/libc}/musl/arch/arm/bits/reg.h | 0 .../libc}/musl/arch/arm/bits/setjmp.h | 0 .../libc}/musl/arch/arm/bits/signal.h | 0 {libc => lib/libc}/musl/arch/arm/bits/stat.h | 0 .../libc}/musl/arch/arm/bits/stdint.h | 0 .../libc}/musl/arch/arm/bits/syscall.h.in | 0 {libc => lib/libc}/musl/arch/arm/bits/user.h | 0 {libc => lib/libc}/musl/arch/arm/crt_arch.h | 0 .../libc}/musl/arch/arm/pthread_arch.h | 0 {libc => lib/libc}/musl/arch/arm/reloc.h | 0 .../libc}/musl/arch/arm/syscall_arch.h | 0 .../libc}/musl/arch/generic/bits/errno.h | 0 .../libc}/musl/arch/generic/bits/fcntl.h | 0 .../libc}/musl/arch/generic/bits/fenv.h | 0 .../libc}/musl/arch/generic/bits/hwcap.h | 0 .../libc}/musl/arch/generic/bits/io.h | 0 .../libc}/musl/arch/generic/bits/ioctl.h | 0 .../libc}/musl/arch/generic/bits/ioctl_fix.h | 0 .../libc}/musl/arch/generic/bits/ipc.h | 0 .../libc}/musl/arch/generic/bits/kd.h | 0 .../libc}/musl/arch/generic/bits/link.h | 0 .../libc}/musl/arch/generic/bits/mman.h | 0 .../libc}/musl/arch/generic/bits/msg.h | 0 .../libc}/musl/arch/generic/bits/poll.h | 0 .../libc}/musl/arch/generic/bits/ptrace.h | 0 .../libc}/musl/arch/generic/bits/resource.h | 0 .../libc}/musl/arch/generic/bits/sem.h | 0 .../libc}/musl/arch/generic/bits/shm.h | 0 .../libc}/musl/arch/generic/bits/socket.h | 0 .../libc}/musl/arch/generic/bits/soundcard.h | 0 .../libc}/musl/arch/generic/bits/statfs.h | 0 .../libc}/musl/arch/generic/bits/termios.h | 0 .../libc}/musl/arch/generic/bits/vt.h | 0 .../libc}/musl/arch/i386/atomic_arch.h | 0 .../libc}/musl/arch/i386/bits/alltypes.h.in | 0 .../libc}/musl/arch/i386/bits/endian.h | 0 {libc => lib/libc}/musl/arch/i386/bits/fenv.h | 0 .../libc}/musl/arch/i386/bits/float.h | 0 {libc => lib/libc}/musl/arch/i386/bits/io.h | 0 .../libc}/musl/arch/i386/bits/limits.h | 0 {libc => lib/libc}/musl/arch/i386/bits/mman.h | 0 .../libc}/musl/arch/i386/bits/posix.h | 0 .../libc}/musl/arch/i386/bits/ptrace.h | 0 {libc => lib/libc}/musl/arch/i386/bits/reg.h | 0 .../libc}/musl/arch/i386/bits/setjmp.h | 0 .../libc}/musl/arch/i386/bits/signal.h | 0 {libc => lib/libc}/musl/arch/i386/bits/stat.h | 0 .../libc}/musl/arch/i386/bits/stdint.h | 0 .../libc}/musl/arch/i386/bits/syscall.h.in | 0 {libc => lib/libc}/musl/arch/i386/bits/user.h | 0 {libc => lib/libc}/musl/arch/i386/crt_arch.h | 0 .../libc}/musl/arch/i386/pthread_arch.h | 0 {libc => lib/libc}/musl/arch/i386/reloc.h | 0 .../libc}/musl/arch/i386/syscall_arch.h | 0 .../libc}/musl/arch/mips/atomic_arch.h | 0 .../libc}/musl/arch/mips/bits/alltypes.h.in | 0 .../libc}/musl/arch/mips/bits/endian.h | 0 .../libc}/musl/arch/mips/bits/errno.h | 0 .../libc}/musl/arch/mips/bits/fcntl.h | 0 {libc => lib/libc}/musl/arch/mips/bits/fenv.h | 0 .../libc}/musl/arch/mips/bits/float.h | 0 .../libc}/musl/arch/mips/bits/hwcap.h | 0 .../libc}/musl/arch/mips/bits/ioctl.h | 0 .../libc}/musl/arch/mips/bits/limits.h | 0 {libc => lib/libc}/musl/arch/mips/bits/mman.h | 0 {libc => lib/libc}/musl/arch/mips/bits/msg.h | 0 {libc => lib/libc}/musl/arch/mips/bits/poll.h | 0 .../libc}/musl/arch/mips/bits/posix.h | 0 .../libc}/musl/arch/mips/bits/ptrace.h | 0 {libc => lib/libc}/musl/arch/mips/bits/reg.h | 0 .../libc}/musl/arch/mips/bits/resource.h | 0 {libc => lib/libc}/musl/arch/mips/bits/sem.h | 0 .../libc}/musl/arch/mips/bits/setjmp.h | 0 {libc => lib/libc}/musl/arch/mips/bits/shm.h | 0 .../libc}/musl/arch/mips/bits/signal.h | 0 .../libc}/musl/arch/mips/bits/socket.h | 0 {libc => lib/libc}/musl/arch/mips/bits/stat.h | 0 .../libc}/musl/arch/mips/bits/statfs.h | 0 .../libc}/musl/arch/mips/bits/stdint.h | 0 .../libc}/musl/arch/mips/bits/syscall.h.in | 0 .../libc}/musl/arch/mips/bits/termios.h | 0 {libc => lib/libc}/musl/arch/mips/bits/user.h | 0 {libc => lib/libc}/musl/arch/mips/crt_arch.h | 0 .../libc}/musl/arch/mips/ksigaction.h | 0 .../libc}/musl/arch/mips/pthread_arch.h | 0 {libc => lib/libc}/musl/arch/mips/reloc.h | 0 .../libc}/musl/arch/mips/syscall_arch.h | 0 .../libc}/musl/arch/mips64/atomic_arch.h | 0 .../libc}/musl/arch/mips64/bits/alltypes.h.in | 0 .../libc}/musl/arch/mips64/bits/endian.h | 0 .../libc}/musl/arch/mips64/bits/errno.h | 0 .../libc}/musl/arch/mips64/bits/fcntl.h | 0 .../libc}/musl/arch/mips64/bits/fenv.h | 0 .../libc}/musl/arch/mips64/bits/float.h | 0 .../libc}/musl/arch/mips64/bits/hwcap.h | 0 .../libc}/musl/arch/mips64/bits/ioctl.h | 0 .../libc}/musl/arch/mips64/bits/ipc.h | 0 .../libc}/musl/arch/mips64/bits/limits.h | 0 .../libc}/musl/arch/mips64/bits/mman.h | 0 .../libc}/musl/arch/mips64/bits/msg.h | 0 .../libc}/musl/arch/mips64/bits/poll.h | 0 .../libc}/musl/arch/mips64/bits/posix.h | 0 .../libc}/musl/arch/mips64/bits/ptrace.h | 0 .../libc}/musl/arch/mips64/bits/reg.h | 0 .../libc}/musl/arch/mips64/bits/resource.h | 0 .../libc}/musl/arch/mips64/bits/sem.h | 0 .../libc}/musl/arch/mips64/bits/setjmp.h | 0 .../libc}/musl/arch/mips64/bits/shm.h | 0 .../libc}/musl/arch/mips64/bits/signal.h | 0 .../libc}/musl/arch/mips64/bits/socket.h | 0 .../libc}/musl/arch/mips64/bits/stat.h | 0 .../libc}/musl/arch/mips64/bits/statfs.h | 0 .../libc}/musl/arch/mips64/bits/stdint.h | 0 .../libc}/musl/arch/mips64/bits/syscall.h.in | 0 .../libc}/musl/arch/mips64/bits/termios.h | 0 .../libc}/musl/arch/mips64/bits/user.h | 0 .../libc}/musl/arch/mips64/crt_arch.h | 0 .../libc}/musl/arch/mips64/ksigaction.h | 0 .../libc}/musl/arch/mips64/pthread_arch.h | 0 {libc => lib/libc}/musl/arch/mips64/reloc.h | 0 .../libc}/musl/arch/mips64/syscall_arch.h | 0 .../libc}/musl/arch/powerpc/atomic_arch.h | 0 .../musl/arch/powerpc/bits/alltypes.h.in | 0 .../libc}/musl/arch/powerpc/bits/endian.h | 0 .../libc}/musl/arch/powerpc/bits/errno.h | 0 .../libc}/musl/arch/powerpc/bits/fcntl.h | 0 .../libc}/musl/arch/powerpc/bits/fenv.h | 0 .../libc}/musl/arch/powerpc/bits/float.h | 0 .../libc}/musl/arch/powerpc/bits/hwcap.h | 0 .../libc}/musl/arch/powerpc/bits/ioctl.h | 0 .../libc}/musl/arch/powerpc/bits/ipc.h | 0 .../libc}/musl/arch/powerpc/bits/limits.h | 0 .../libc}/musl/arch/powerpc/bits/mman.h | 0 .../libc}/musl/arch/powerpc/bits/msg.h | 0 .../libc}/musl/arch/powerpc/bits/posix.h | 0 .../libc}/musl/arch/powerpc/bits/ptrace.h | 0 .../libc}/musl/arch/powerpc/bits/reg.h | 0 .../libc}/musl/arch/powerpc/bits/sem.h | 0 .../libc}/musl/arch/powerpc/bits/setjmp.h | 0 .../libc}/musl/arch/powerpc/bits/shm.h | 0 .../libc}/musl/arch/powerpc/bits/signal.h | 0 .../libc}/musl/arch/powerpc/bits/socket.h | 0 .../libc}/musl/arch/powerpc/bits/stat.h | 0 .../libc}/musl/arch/powerpc/bits/stdint.h | 0 .../libc}/musl/arch/powerpc/bits/syscall.h.in | 0 .../libc}/musl/arch/powerpc/bits/termios.h | 0 .../libc}/musl/arch/powerpc/bits/user.h | 0 .../libc}/musl/arch/powerpc/crt_arch.h | 0 .../libc}/musl/arch/powerpc/pthread_arch.h | 0 {libc => lib/libc}/musl/arch/powerpc/reloc.h | 0 .../libc}/musl/arch/powerpc/syscall_arch.h | 0 .../libc}/musl/arch/powerpc64/atomic_arch.h | 0 .../musl/arch/powerpc64/bits/alltypes.h.in | 0 .../libc}/musl/arch/powerpc64/bits/endian.h | 0 .../libc}/musl/arch/powerpc64/bits/errno.h | 0 .../libc}/musl/arch/powerpc64/bits/fcntl.h | 0 .../libc}/musl/arch/powerpc64/bits/fenv.h | 0 .../libc}/musl/arch/powerpc64/bits/float.h | 0 .../libc}/musl/arch/powerpc64/bits/hwcap.h | 0 .../libc}/musl/arch/powerpc64/bits/ioctl.h | 0 .../libc}/musl/arch/powerpc64/bits/ipc.h | 0 .../libc}/musl/arch/powerpc64/bits/limits.h | 0 .../libc}/musl/arch/powerpc64/bits/mman.h | 0 .../libc}/musl/arch/powerpc64/bits/msg.h | 0 .../libc}/musl/arch/powerpc64/bits/posix.h | 0 .../libc}/musl/arch/powerpc64/bits/ptrace.h | 0 .../libc}/musl/arch/powerpc64/bits/reg.h | 0 .../libc}/musl/arch/powerpc64/bits/sem.h | 0 .../libc}/musl/arch/powerpc64/bits/setjmp.h | 0 .../libc}/musl/arch/powerpc64/bits/shm.h | 0 .../libc}/musl/arch/powerpc64/bits/signal.h | 0 .../libc}/musl/arch/powerpc64/bits/socket.h | 0 .../libc}/musl/arch/powerpc64/bits/stat.h | 0 .../libc}/musl/arch/powerpc64/bits/stdint.h | 0 .../musl/arch/powerpc64/bits/syscall.h.in | 0 .../libc}/musl/arch/powerpc64/bits/termios.h | 0 .../libc}/musl/arch/powerpc64/bits/user.h | 0 .../libc}/musl/arch/powerpc64/crt_arch.h | 0 .../libc}/musl/arch/powerpc64/pthread_arch.h | 0 .../libc}/musl/arch/powerpc64/reloc.h | 0 .../libc}/musl/arch/powerpc64/syscall_arch.h | 0 .../libc}/musl/arch/s390x/atomic_arch.h | 0 .../libc}/musl/arch/s390x/bits/alltypes.h.in | 0 .../libc}/musl/arch/s390x/bits/endian.h | 0 .../libc}/musl/arch/s390x/bits/fcntl.h | 0 .../libc}/musl/arch/s390x/bits/fenv.h | 0 .../libc}/musl/arch/s390x/bits/float.h | 0 .../libc}/musl/arch/s390x/bits/hwcap.h | 0 .../libc}/musl/arch/s390x/bits/ioctl_fix.h | 0 {libc => lib/libc}/musl/arch/s390x/bits/ipc.h | 0 .../libc}/musl/arch/s390x/bits/limits.h | 0 .../libc}/musl/arch/s390x/bits/link.h | 0 {libc => lib/libc}/musl/arch/s390x/bits/msg.h | 0 .../libc}/musl/arch/s390x/bits/posix.h | 0 .../libc}/musl/arch/s390x/bits/ptrace.h | 0 {libc => lib/libc}/musl/arch/s390x/bits/reg.h | 0 {libc => lib/libc}/musl/arch/s390x/bits/sem.h | 0 .../libc}/musl/arch/s390x/bits/setjmp.h | 0 {libc => lib/libc}/musl/arch/s390x/bits/shm.h | 0 .../libc}/musl/arch/s390x/bits/signal.h | 0 .../libc}/musl/arch/s390x/bits/socket.h | 0 .../libc}/musl/arch/s390x/bits/stat.h | 0 .../libc}/musl/arch/s390x/bits/statfs.h | 0 .../libc}/musl/arch/s390x/bits/stdint.h | 0 .../libc}/musl/arch/s390x/bits/syscall.h.in | 0 .../libc}/musl/arch/s390x/bits/user.h | 0 {libc => lib/libc}/musl/arch/s390x/crt_arch.h | 0 .../libc}/musl/arch/s390x/pthread_arch.h | 0 {libc => lib/libc}/musl/arch/s390x/reloc.h | 0 .../libc}/musl/arch/s390x/syscall_arch.h | 0 .../libc}/musl/arch/x86_64/atomic_arch.h | 0 .../libc}/musl/arch/x86_64/bits/alltypes.h.in | 0 .../libc}/musl/arch/x86_64/bits/endian.h | 0 .../libc}/musl/arch/x86_64/bits/fcntl.h | 0 .../libc}/musl/arch/x86_64/bits/fenv.h | 0 .../libc}/musl/arch/x86_64/bits/float.h | 0 {libc => lib/libc}/musl/arch/x86_64/bits/io.h | 0 .../libc}/musl/arch/x86_64/bits/ipc.h | 0 .../libc}/musl/arch/x86_64/bits/limits.h | 0 .../libc}/musl/arch/x86_64/bits/mman.h | 0 .../libc}/musl/arch/x86_64/bits/msg.h | 0 .../libc}/musl/arch/x86_64/bits/posix.h | 0 .../libc}/musl/arch/x86_64/bits/ptrace.h | 0 .../libc}/musl/arch/x86_64/bits/reg.h | 0 .../libc}/musl/arch/x86_64/bits/setjmp.h | 0 .../libc}/musl/arch/x86_64/bits/shm.h | 0 .../libc}/musl/arch/x86_64/bits/signal.h | 0 .../libc}/musl/arch/x86_64/bits/socket.h | 0 .../libc}/musl/arch/x86_64/bits/stat.h | 0 .../libc}/musl/arch/x86_64/bits/stdint.h | 0 .../libc}/musl/arch/x86_64/bits/syscall.h.in | 0 .../libc}/musl/arch/x86_64/bits/user.h | 0 .../libc}/musl/arch/x86_64/crt_arch.h | 0 .../libc}/musl/arch/x86_64/ksigaction.h | 0 .../libc}/musl/arch/x86_64/pthread_arch.h | 0 {libc => lib/libc}/musl/arch/x86_64/reloc.h | 0 .../libc}/musl/arch/x86_64/syscall_arch.h | 0 {libc => lib/libc}/musl/crt/Scrt1.c | 0 {libc => lib/libc}/musl/crt/aarch64/crti.s | 0 {libc => lib/libc}/musl/crt/aarch64/crtn.s | 0 {libc => lib/libc}/musl/crt/arm/crti.s | 0 {libc => lib/libc}/musl/crt/arm/crtn.s | 0 {libc => lib/libc}/musl/crt/crt1.c | 0 {libc => lib/libc}/musl/crt/crti.c | 0 {libc => lib/libc}/musl/crt/crtn.c | 0 {libc => lib/libc}/musl/crt/i386/crti.s | 0 {libc => lib/libc}/musl/crt/i386/crtn.s | 0 {libc => lib/libc}/musl/crt/microblaze/crti.s | 0 {libc => lib/libc}/musl/crt/microblaze/crtn.s | 0 {libc => lib/libc}/musl/crt/mips/crti.s | 0 {libc => lib/libc}/musl/crt/mips/crtn.s | 0 {libc => lib/libc}/musl/crt/mips64/crti.s | 0 {libc => lib/libc}/musl/crt/mips64/crtn.s | 0 {libc => lib/libc}/musl/crt/mipsn32/crti.s | 0 {libc => lib/libc}/musl/crt/mipsn32/crtn.s | 0 {libc => lib/libc}/musl/crt/or1k/crti.s | 0 {libc => lib/libc}/musl/crt/or1k/crtn.s | 0 {libc => lib/libc}/musl/crt/powerpc/crti.s | 0 {libc => lib/libc}/musl/crt/powerpc/crtn.s | 0 {libc => lib/libc}/musl/crt/powerpc64/crti.s | 0 {libc => lib/libc}/musl/crt/powerpc64/crtn.s | 0 {libc => lib/libc}/musl/crt/rcrt1.c | 0 {libc => lib/libc}/musl/crt/s390x/crti.s | 0 {libc => lib/libc}/musl/crt/s390x/crtn.s | 0 {libc => lib/libc}/musl/crt/sh/crti.s | 0 {libc => lib/libc}/musl/crt/sh/crtn.s | 0 {libc => lib/libc}/musl/crt/x32/crti.s | 0 {libc => lib/libc}/musl/crt/x32/crtn.s | 0 {libc => lib/libc}/musl/crt/x86_64/crti.s | 0 {libc => lib/libc}/musl/crt/x86_64/crtn.s | 0 {libc => lib/libc}/musl/src/aio/aio.c | 0 {libc => lib/libc}/musl/src/aio/aio_suspend.c | 0 {libc => lib/libc}/musl/src/aio/lio_listio.c | 0 {libc => lib/libc}/musl/src/complex/__cexp.c | 0 {libc => lib/libc}/musl/src/complex/__cexpf.c | 0 {libc => lib/libc}/musl/src/complex/cabs.c | 0 {libc => lib/libc}/musl/src/complex/cabsf.c | 0 {libc => lib/libc}/musl/src/complex/cabsl.c | 0 {libc => lib/libc}/musl/src/complex/cacos.c | 0 {libc => lib/libc}/musl/src/complex/cacosf.c | 0 {libc => lib/libc}/musl/src/complex/cacosh.c | 0 {libc => lib/libc}/musl/src/complex/cacoshf.c | 0 {libc => lib/libc}/musl/src/complex/cacoshl.c | 0 {libc => lib/libc}/musl/src/complex/cacosl.c | 0 {libc => lib/libc}/musl/src/complex/carg.c | 0 {libc => lib/libc}/musl/src/complex/cargf.c | 0 {libc => lib/libc}/musl/src/complex/cargl.c | 0 {libc => lib/libc}/musl/src/complex/casin.c | 0 {libc => lib/libc}/musl/src/complex/casinf.c | 0 {libc => lib/libc}/musl/src/complex/casinh.c | 0 {libc => lib/libc}/musl/src/complex/casinhf.c | 0 {libc => lib/libc}/musl/src/complex/casinhl.c | 0 {libc => lib/libc}/musl/src/complex/casinl.c | 0 {libc => lib/libc}/musl/src/complex/catan.c | 0 {libc => lib/libc}/musl/src/complex/catanf.c | 0 {libc => lib/libc}/musl/src/complex/catanh.c | 0 {libc => lib/libc}/musl/src/complex/catanhf.c | 0 {libc => lib/libc}/musl/src/complex/catanhl.c | 0 {libc => lib/libc}/musl/src/complex/catanl.c | 0 {libc => lib/libc}/musl/src/complex/ccos.c | 0 {libc => lib/libc}/musl/src/complex/ccosf.c | 0 {libc => lib/libc}/musl/src/complex/ccosh.c | 0 {libc => lib/libc}/musl/src/complex/ccoshf.c | 0 {libc => lib/libc}/musl/src/complex/ccoshl.c | 0 {libc => lib/libc}/musl/src/complex/ccosl.c | 0 {libc => lib/libc}/musl/src/complex/cexp.c | 0 {libc => lib/libc}/musl/src/complex/cexpf.c | 0 {libc => lib/libc}/musl/src/complex/cexpl.c | 0 {libc => lib/libc}/musl/src/complex/cimag.c | 0 {libc => lib/libc}/musl/src/complex/cimagf.c | 0 {libc => lib/libc}/musl/src/complex/cimagl.c | 0 {libc => lib/libc}/musl/src/complex/clog.c | 0 {libc => lib/libc}/musl/src/complex/clogf.c | 0 {libc => lib/libc}/musl/src/complex/clogl.c | 0 {libc => lib/libc}/musl/src/complex/conj.c | 0 {libc => lib/libc}/musl/src/complex/conjf.c | 0 {libc => lib/libc}/musl/src/complex/conjl.c | 0 {libc => lib/libc}/musl/src/complex/cpow.c | 0 {libc => lib/libc}/musl/src/complex/cpowf.c | 0 {libc => lib/libc}/musl/src/complex/cpowl.c | 0 {libc => lib/libc}/musl/src/complex/cproj.c | 0 {libc => lib/libc}/musl/src/complex/cprojf.c | 0 {libc => lib/libc}/musl/src/complex/cprojl.c | 0 {libc => lib/libc}/musl/src/complex/creal.c | 0 {libc => lib/libc}/musl/src/complex/crealf.c | 0 {libc => lib/libc}/musl/src/complex/creall.c | 0 {libc => lib/libc}/musl/src/complex/csin.c | 0 {libc => lib/libc}/musl/src/complex/csinf.c | 0 {libc => lib/libc}/musl/src/complex/csinh.c | 0 {libc => lib/libc}/musl/src/complex/csinhf.c | 0 {libc => lib/libc}/musl/src/complex/csinhl.c | 0 {libc => lib/libc}/musl/src/complex/csinl.c | 0 {libc => lib/libc}/musl/src/complex/csqrt.c | 0 {libc => lib/libc}/musl/src/complex/csqrtf.c | 0 {libc => lib/libc}/musl/src/complex/csqrtl.c | 0 {libc => lib/libc}/musl/src/complex/ctan.c | 0 {libc => lib/libc}/musl/src/complex/ctanf.c | 0 {libc => lib/libc}/musl/src/complex/ctanh.c | 0 {libc => lib/libc}/musl/src/complex/ctanhf.c | 0 {libc => lib/libc}/musl/src/complex/ctanhl.c | 0 {libc => lib/libc}/musl/src/complex/ctanl.c | 0 {libc => lib/libc}/musl/src/conf/confstr.c | 0 {libc => lib/libc}/musl/src/conf/fpathconf.c | 0 {libc => lib/libc}/musl/src/conf/legacy.c | 0 {libc => lib/libc}/musl/src/conf/pathconf.c | 0 {libc => lib/libc}/musl/src/conf/sysconf.c | 0 {libc => lib/libc}/musl/src/crypt/crypt.c | 0 .../libc}/musl/src/crypt/crypt_blowfish.c | 0 {libc => lib/libc}/musl/src/crypt/crypt_des.c | 0 {libc => lib/libc}/musl/src/crypt/crypt_des.h | 0 {libc => lib/libc}/musl/src/crypt/crypt_md5.c | 0 {libc => lib/libc}/musl/src/crypt/crypt_r.c | 0 .../libc}/musl/src/crypt/crypt_sha256.c | 0 .../libc}/musl/src/crypt/crypt_sha512.c | 0 {libc => lib/libc}/musl/src/crypt/encrypt.c | 0 .../libc}/musl/src/ctype/__ctype_b_loc.c | 0 .../musl/src/ctype/__ctype_get_mb_cur_max.c | 0 .../musl/src/ctype/__ctype_tolower_loc.c | 0 .../musl/src/ctype/__ctype_toupper_loc.c | 0 {libc => lib/libc}/musl/src/ctype/alpha.h | 0 {libc => lib/libc}/musl/src/ctype/isalnum.c | 0 {libc => lib/libc}/musl/src/ctype/isalpha.c | 0 {libc => lib/libc}/musl/src/ctype/isascii.c | 0 {libc => lib/libc}/musl/src/ctype/isblank.c | 0 {libc => lib/libc}/musl/src/ctype/iscntrl.c | 0 {libc => lib/libc}/musl/src/ctype/isdigit.c | 0 {libc => lib/libc}/musl/src/ctype/isgraph.c | 0 {libc => lib/libc}/musl/src/ctype/islower.c | 0 {libc => lib/libc}/musl/src/ctype/isprint.c | 0 {libc => lib/libc}/musl/src/ctype/ispunct.c | 0 {libc => lib/libc}/musl/src/ctype/isspace.c | 0 {libc => lib/libc}/musl/src/ctype/isupper.c | 0 {libc => lib/libc}/musl/src/ctype/iswalnum.c | 0 {libc => lib/libc}/musl/src/ctype/iswalpha.c | 0 {libc => lib/libc}/musl/src/ctype/iswblank.c | 0 {libc => lib/libc}/musl/src/ctype/iswcntrl.c | 0 {libc => lib/libc}/musl/src/ctype/iswctype.c | 0 {libc => lib/libc}/musl/src/ctype/iswdigit.c | 0 {libc => lib/libc}/musl/src/ctype/iswgraph.c | 0 {libc => lib/libc}/musl/src/ctype/iswlower.c | 0 {libc => lib/libc}/musl/src/ctype/iswprint.c | 0 {libc => lib/libc}/musl/src/ctype/iswpunct.c | 0 {libc => lib/libc}/musl/src/ctype/iswspace.c | 0 {libc => lib/libc}/musl/src/ctype/iswupper.c | 0 {libc => lib/libc}/musl/src/ctype/iswxdigit.c | 0 {libc => lib/libc}/musl/src/ctype/isxdigit.c | 0 .../libc}/musl/src/ctype/nonspacing.h | 0 {libc => lib/libc}/musl/src/ctype/punct.h | 0 {libc => lib/libc}/musl/src/ctype/toascii.c | 0 {libc => lib/libc}/musl/src/ctype/tolower.c | 0 {libc => lib/libc}/musl/src/ctype/toupper.c | 0 {libc => lib/libc}/musl/src/ctype/towctrans.c | 0 {libc => lib/libc}/musl/src/ctype/wcswidth.c | 0 {libc => lib/libc}/musl/src/ctype/wctrans.c | 0 {libc => lib/libc}/musl/src/ctype/wcwidth.c | 0 {libc => lib/libc}/musl/src/ctype/wide.h | 0 {libc => lib/libc}/musl/src/dirent/__dirent.h | 0 .../libc}/musl/src/dirent/alphasort.c | 0 {libc => lib/libc}/musl/src/dirent/closedir.c | 0 {libc => lib/libc}/musl/src/dirent/dirfd.c | 0 .../libc}/musl/src/dirent/fdopendir.c | 0 {libc => lib/libc}/musl/src/dirent/opendir.c | 0 {libc => lib/libc}/musl/src/dirent/readdir.c | 0 .../libc}/musl/src/dirent/readdir_r.c | 0 .../libc}/musl/src/dirent/rewinddir.c | 0 {libc => lib/libc}/musl/src/dirent/scandir.c | 0 {libc => lib/libc}/musl/src/dirent/seekdir.c | 0 {libc => lib/libc}/musl/src/dirent/telldir.c | 0 .../libc}/musl/src/dirent/versionsort.c | 0 {libc => lib/libc}/musl/src/env/__environ.c | 0 {libc => lib/libc}/musl/src/env/__init_tls.c | 0 .../libc}/musl/src/env/__libc_start_main.c | 0 {libc => lib/libc}/musl/src/env/__reset_tls.c | 0 .../libc}/musl/src/env/__stack_chk_fail.c | 0 {libc => lib/libc}/musl/src/env/clearenv.c | 0 {libc => lib/libc}/musl/src/env/getenv.c | 0 {libc => lib/libc}/musl/src/env/putenv.c | 0 {libc => lib/libc}/musl/src/env/setenv.c | 0 {libc => lib/libc}/musl/src/env/unsetenv.c | 0 .../libc}/musl/src/errno/__errno_location.c | 0 .../libc}/musl/src/errno/__strerror.h | 0 {libc => lib/libc}/musl/src/errno/strerror.c | 0 {libc => lib/libc}/musl/src/exit/_Exit.c | 0 {libc => lib/libc}/musl/src/exit/abort.c | 0 .../libc}/musl/src/exit/arm/__aeabi_atexit.c | 0 {libc => lib/libc}/musl/src/exit/assert.c | 0 .../libc}/musl/src/exit/at_quick_exit.c | 0 {libc => lib/libc}/musl/src/exit/atexit.c | 0 {libc => lib/libc}/musl/src/exit/exit.c | 0 {libc => lib/libc}/musl/src/exit/quick_exit.c | 0 {libc => lib/libc}/musl/src/fcntl/creat.c | 0 {libc => lib/libc}/musl/src/fcntl/fcntl.c | 0 {libc => lib/libc}/musl/src/fcntl/open.c | 0 {libc => lib/libc}/musl/src/fcntl/openat.c | 0 .../libc}/musl/src/fcntl/posix_fadvise.c | 0 .../libc}/musl/src/fcntl/posix_fallocate.c | 0 .../libc}/musl/src/fenv/__flt_rounds.c | 0 .../libc}/musl/src/fenv/aarch64/fenv.s | 0 .../libc}/musl/src/fenv/arm/fenv-hf.S | 0 {libc => lib/libc}/musl/src/fenv/arm/fenv.c | 0 .../libc}/musl/src/fenv/fegetexceptflag.c | 0 .../libc}/musl/src/fenv/feholdexcept.c | 0 {libc => lib/libc}/musl/src/fenv/fenv.c | 0 .../libc}/musl/src/fenv/fesetexceptflag.c | 0 {libc => lib/libc}/musl/src/fenv/fesetround.c | 0 .../libc}/musl/src/fenv/feupdateenv.c | 0 {libc => lib/libc}/musl/src/fenv/i386/fenv.s | 0 {libc => lib/libc}/musl/src/fenv/m68k/fenv.c | 0 .../libc}/musl/src/fenv/mips/fenv-sf.c | 0 {libc => lib/libc}/musl/src/fenv/mips/fenv.S | 0 .../libc}/musl/src/fenv/mips64/fenv-sf.c | 0 .../libc}/musl/src/fenv/mips64/fenv.S | 0 .../libc}/musl/src/fenv/mipsn32/fenv-sf.c | 0 .../libc}/musl/src/fenv/mipsn32/fenv.S | 0 .../libc}/musl/src/fenv/powerpc/fenv-sf.c | 0 .../libc}/musl/src/fenv/powerpc/fenv.S | 0 .../libc}/musl/src/fenv/powerpc64/fenv.c | 0 {libc => lib/libc}/musl/src/fenv/s390x/fenv.c | 0 .../libc}/musl/src/fenv/sh/fenv-nofpu.c | 0 {libc => lib/libc}/musl/src/fenv/sh/fenv.S | 0 {libc => lib/libc}/musl/src/fenv/x32/fenv.s | 0 .../libc}/musl/src/fenv/x86_64/fenv.s | 0 .../libc}/musl/src/include/arpa/inet.h | 0 {libc => lib/libc}/musl/src/include/crypt.h | 0 {libc => lib/libc}/musl/src/include/errno.h | 0 .../libc}/musl/src/include/features.h | 0 .../libc}/musl/src/include/langinfo.h | 0 {libc => lib/libc}/musl/src/include/pthread.h | 0 {libc => lib/libc}/musl/src/include/resolv.h | 0 {libc => lib/libc}/musl/src/include/signal.h | 0 {libc => lib/libc}/musl/src/include/stdio.h | 0 {libc => lib/libc}/musl/src/include/stdlib.h | 0 {libc => lib/libc}/musl/src/include/string.h | 0 .../libc}/musl/src/include/sys/auxv.h | 0 .../libc}/musl/src/include/sys/mman.h | 0 .../libc}/musl/src/include/sys/sysinfo.h | 0 .../libc}/musl/src/include/sys/time.h | 0 {libc => lib/libc}/musl/src/include/time.h | 0 {libc => lib/libc}/musl/src/include/unistd.h | 0 .../libc}/musl/src/internal/aarch64/syscall.s | 0 .../libc}/musl/src/internal/arm/syscall.s | 0 {libc => lib/libc}/musl/src/internal/atomic.h | 0 .../libc}/musl/src/internal/dynlink.h | 0 .../libc}/musl/src/internal/fdpic_crt.h | 0 .../libc}/musl/src/internal/floatscan.c | 0 .../libc}/musl/src/internal/floatscan.h | 0 {libc => lib/libc}/musl/src/internal/futex.h | 0 .../libc}/musl/src/internal/i386/syscall.s | 0 .../libc}/musl/src/internal/intscan.c | 0 .../libc}/musl/src/internal/intscan.h | 0 .../libc}/musl/src/internal/ksigaction.h | 0 {libc => lib/libc}/musl/src/internal/libc.c | 0 {libc => lib/libc}/musl/src/internal/libc.h | 0 {libc => lib/libc}/musl/src/internal/libm.h | 0 .../libc}/musl/src/internal/locale_impl.h | 0 {libc => lib/libc}/musl/src/internal/lock.h | 0 .../libc}/musl/src/internal/m68k/syscall.s | 0 .../libc}/musl/src/internal/malloc_impl.h | 0 .../musl/src/internal/microblaze/syscall.s | 0 .../libc}/musl/src/internal/mips/syscall.s | 0 .../libc}/musl/src/internal/mips64/syscall.s | 0 .../libc}/musl/src/internal/mipsn32/syscall.s | 0 .../libc}/musl/src/internal/or1k/syscall.s | 0 .../libc}/musl/src/internal/powerpc/syscall.s | 0 .../musl/src/internal/powerpc64/syscall.s | 0 .../libc}/musl/src/internal/procfdname.c | 0 .../libc}/musl/src/internal/pthread_impl.h | 0 .../libc}/musl/src/internal/s390x/syscall.s | 0 .../libc}/musl/src/internal/sh/__shcall.c | 0 .../libc}/musl/src/internal/sh/syscall.s | 0 {libc => lib/libc}/musl/src/internal/shgetc.c | 0 {libc => lib/libc}/musl/src/internal/shgetc.h | 0 .../libc}/musl/src/internal/stdio_impl.h | 0 .../libc}/musl/src/internal/syscall.c | 0 .../libc}/musl/src/internal/syscall.h | 0 .../libc}/musl/src/internal/syscall_ret.c | 0 {libc => lib/libc}/musl/src/internal/vdso.c | 0 .../libc}/musl/src/internal/version.c | 0 .../libc}/musl/src/internal/version.h | 0 .../libc}/musl/src/internal/x32/syscall.s | 0 .../libc}/musl/src/internal/x86_64/syscall.s | 0 {libc => lib/libc}/musl/src/ipc/ftok.c | 0 {libc => lib/libc}/musl/src/ipc/ipc.h | 0 {libc => lib/libc}/musl/src/ipc/msgctl.c | 0 {libc => lib/libc}/musl/src/ipc/msgget.c | 0 {libc => lib/libc}/musl/src/ipc/msgrcv.c | 0 {libc => lib/libc}/musl/src/ipc/msgsnd.c | 0 {libc => lib/libc}/musl/src/ipc/semctl.c | 0 {libc => lib/libc}/musl/src/ipc/semget.c | 0 {libc => lib/libc}/musl/src/ipc/semop.c | 0 {libc => lib/libc}/musl/src/ipc/semtimedop.c | 0 {libc => lib/libc}/musl/src/ipc/shmat.c | 0 {libc => lib/libc}/musl/src/ipc/shmctl.c | 0 {libc => lib/libc}/musl/src/ipc/shmdt.c | 0 {libc => lib/libc}/musl/src/ipc/shmget.c | 0 {libc => lib/libc}/musl/src/ldso/__dlsym.c | 0 .../libc}/musl/src/ldso/aarch64/dlsym.s | 0 .../libc}/musl/src/ldso/aarch64/tlsdesc.s | 0 {libc => lib/libc}/musl/src/ldso/arm/dlsym.s | 0 .../libc}/musl/src/ldso/arm/find_exidx.c | 0 .../libc}/musl/src/ldso/arm/tlsdesc.S | 0 .../libc}/musl/src/ldso/dl_iterate_phdr.c | 0 {libc => lib/libc}/musl/src/ldso/dladdr.c | 0 {libc => lib/libc}/musl/src/ldso/dlclose.c | 0 {libc => lib/libc}/musl/src/ldso/dlerror.c | 0 {libc => lib/libc}/musl/src/ldso/dlinfo.c | 0 {libc => lib/libc}/musl/src/ldso/dlopen.c | 0 {libc => lib/libc}/musl/src/ldso/dlsym.c | 0 {libc => lib/libc}/musl/src/ldso/i386/dlsym.s | 0 .../libc}/musl/src/ldso/i386/tlsdesc.s | 0 {libc => lib/libc}/musl/src/ldso/m68k/dlsym.s | 0 .../libc}/musl/src/ldso/microblaze/dlsym.s | 0 {libc => lib/libc}/musl/src/ldso/mips/dlsym.s | 0 .../libc}/musl/src/ldso/mips64/dlsym.s | 0 .../libc}/musl/src/ldso/mipsn32/dlsym.s | 0 {libc => lib/libc}/musl/src/ldso/or1k/dlsym.s | 0 .../libc}/musl/src/ldso/powerpc/dlsym.s | 0 .../libc}/musl/src/ldso/powerpc64/dlsym.s | 0 .../libc}/musl/src/ldso/s390x/dlsym.s | 0 {libc => lib/libc}/musl/src/ldso/sh/dlsym.s | 0 {libc => lib/libc}/musl/src/ldso/tlsdesc.c | 0 {libc => lib/libc}/musl/src/ldso/x32/dlsym.s | 0 .../libc}/musl/src/ldso/x86_64/dlsym.s | 0 .../libc}/musl/src/ldso/x86_64/tlsdesc.s | 0 {libc => lib/libc}/musl/src/legacy/cuserid.c | 0 {libc => lib/libc}/musl/src/legacy/daemon.c | 0 {libc => lib/libc}/musl/src/legacy/err.c | 0 .../libc}/musl/src/legacy/euidaccess.c | 0 {libc => lib/libc}/musl/src/legacy/ftw.c | 0 {libc => lib/libc}/musl/src/legacy/futimes.c | 0 .../libc}/musl/src/legacy/getdtablesize.c | 0 .../libc}/musl/src/legacy/getloadavg.c | 0 .../libc}/musl/src/legacy/getpagesize.c | 0 {libc => lib/libc}/musl/src/legacy/getpass.c | 0 .../libc}/musl/src/legacy/getusershell.c | 0 .../libc}/musl/src/legacy/isastream.c | 0 {libc => lib/libc}/musl/src/legacy/lutimes.c | 0 {libc => lib/libc}/musl/src/legacy/ulimit.c | 0 {libc => lib/libc}/musl/src/legacy/utmpx.c | 0 {libc => lib/libc}/musl/src/legacy/valloc.c | 0 {libc => lib/libc}/musl/src/linux/adjtime.c | 0 {libc => lib/libc}/musl/src/linux/adjtimex.c | 0 .../libc}/musl/src/linux/arch_prctl.c | 0 {libc => lib/libc}/musl/src/linux/brk.c | 0 {libc => lib/libc}/musl/src/linux/cache.c | 0 {libc => lib/libc}/musl/src/linux/cap.c | 0 {libc => lib/libc}/musl/src/linux/chroot.c | 0 .../libc}/musl/src/linux/clock_adjtime.c | 0 {libc => lib/libc}/musl/src/linux/clone.c | 0 {libc => lib/libc}/musl/src/linux/epoll.c | 0 {libc => lib/libc}/musl/src/linux/eventfd.c | 0 {libc => lib/libc}/musl/src/linux/fallocate.c | 0 {libc => lib/libc}/musl/src/linux/fanotify.c | 0 {libc => lib/libc}/musl/src/linux/flock.c | 0 {libc => lib/libc}/musl/src/linux/getdents.c | 0 {libc => lib/libc}/musl/src/linux/getrandom.c | 0 {libc => lib/libc}/musl/src/linux/inotify.c | 0 {libc => lib/libc}/musl/src/linux/ioperm.c | 0 {libc => lib/libc}/musl/src/linux/iopl.c | 0 {libc => lib/libc}/musl/src/linux/klogctl.c | 0 .../libc}/musl/src/linux/memfd_create.c | 0 {libc => lib/libc}/musl/src/linux/mlock2.c | 0 {libc => lib/libc}/musl/src/linux/module.c | 0 {libc => lib/libc}/musl/src/linux/mount.c | 0 .../libc}/musl/src/linux/name_to_handle_at.c | 0 .../libc}/musl/src/linux/open_by_handle_at.c | 0 .../libc}/musl/src/linux/personality.c | 0 .../libc}/musl/src/linux/pivot_root.c | 0 {libc => lib/libc}/musl/src/linux/ppoll.c | 0 {libc => lib/libc}/musl/src/linux/prctl.c | 0 {libc => lib/libc}/musl/src/linux/prlimit.c | 0 .../libc}/musl/src/linux/process_vm.c | 0 {libc => lib/libc}/musl/src/linux/ptrace.c | 0 {libc => lib/libc}/musl/src/linux/quotactl.c | 0 {libc => lib/libc}/musl/src/linux/readahead.c | 0 {libc => lib/libc}/musl/src/linux/reboot.c | 0 .../libc}/musl/src/linux/remap_file_pages.c | 0 {libc => lib/libc}/musl/src/linux/sbrk.c | 0 {libc => lib/libc}/musl/src/linux/sendfile.c | 0 {libc => lib/libc}/musl/src/linux/setfsgid.c | 0 {libc => lib/libc}/musl/src/linux/setfsuid.c | 0 {libc => lib/libc}/musl/src/linux/setgroups.c | 0 .../libc}/musl/src/linux/sethostname.c | 0 {libc => lib/libc}/musl/src/linux/setns.c | 0 .../libc}/musl/src/linux/settimeofday.c | 0 {libc => lib/libc}/musl/src/linux/signalfd.c | 0 {libc => lib/libc}/musl/src/linux/splice.c | 0 {libc => lib/libc}/musl/src/linux/stime.c | 0 {libc => lib/libc}/musl/src/linux/swap.c | 0 .../libc}/musl/src/linux/sync_file_range.c | 0 {libc => lib/libc}/musl/src/linux/syncfs.c | 0 {libc => lib/libc}/musl/src/linux/sysinfo.c | 0 {libc => lib/libc}/musl/src/linux/tee.c | 0 {libc => lib/libc}/musl/src/linux/timerfd.c | 0 {libc => lib/libc}/musl/src/linux/unshare.c | 0 {libc => lib/libc}/musl/src/linux/utimes.c | 0 {libc => lib/libc}/musl/src/linux/vhangup.c | 0 {libc => lib/libc}/musl/src/linux/vmsplice.c | 0 {libc => lib/libc}/musl/src/linux/wait3.c | 0 {libc => lib/libc}/musl/src/linux/wait4.c | 0 .../libc}/musl/src/linux/x32/sysinfo.c | 0 {libc => lib/libc}/musl/src/linux/xattr.c | 0 .../libc}/musl/src/locale/__lctrans.c | 0 .../libc}/musl/src/locale/__mo_lookup.c | 0 {libc => lib/libc}/musl/src/locale/big5.h | 0 .../musl/src/locale/bind_textdomain_codeset.c | 0 {libc => lib/libc}/musl/src/locale/c_locale.c | 0 {libc => lib/libc}/musl/src/locale/catclose.c | 0 {libc => lib/libc}/musl/src/locale/catgets.c | 0 {libc => lib/libc}/musl/src/locale/catopen.c | 0 .../libc}/musl/src/locale/codepages.h | 0 .../libc}/musl/src/locale/dcngettext.c | 0 .../libc}/musl/src/locale/duplocale.c | 0 .../libc}/musl/src/locale/freelocale.c | 0 {libc => lib/libc}/musl/src/locale/gb18030.h | 0 {libc => lib/libc}/musl/src/locale/hkscs.h | 0 {libc => lib/libc}/musl/src/locale/iconv.c | 0 .../libc}/musl/src/locale/iconv_close.c | 0 {libc => lib/libc}/musl/src/locale/jis0208.h | 0 {libc => lib/libc}/musl/src/locale/ksc.h | 0 {libc => lib/libc}/musl/src/locale/langinfo.c | 0 .../libc}/musl/src/locale/legacychars.h | 0 .../libc}/musl/src/locale/locale_map.c | 0 .../libc}/musl/src/locale/localeconv.c | 0 .../libc}/musl/src/locale/newlocale.c | 0 {libc => lib/libc}/musl/src/locale/pleval.c | 0 {libc => lib/libc}/musl/src/locale/pleval.h | 0 {libc => lib/libc}/musl/src/locale/revjis.h | 0 .../libc}/musl/src/locale/setlocale.c | 0 {libc => lib/libc}/musl/src/locale/strcoll.c | 0 {libc => lib/libc}/musl/src/locale/strfmon.c | 0 {libc => lib/libc}/musl/src/locale/strxfrm.c | 0 .../libc}/musl/src/locale/textdomain.c | 0 .../libc}/musl/src/locale/uselocale.c | 0 {libc => lib/libc}/musl/src/locale/wcscoll.c | 0 {libc => lib/libc}/musl/src/locale/wcsxfrm.c | 0 {libc => lib/libc}/musl/src/malloc/DESIGN | 0 .../libc}/musl/src/malloc/aligned_alloc.c | 0 .../libc}/musl/src/malloc/expand_heap.c | 0 .../libc}/musl/src/malloc/lite_malloc.c | 0 {libc => lib/libc}/musl/src/malloc/malloc.c | 0 .../musl/src/malloc/malloc_usable_size.c | 0 {libc => lib/libc}/musl/src/malloc/memalign.c | 0 .../libc}/musl/src/malloc/posix_memalign.c | 0 {libc => lib/libc}/musl/src/math/__cos.c | 0 {libc => lib/libc}/musl/src/math/__cosdf.c | 0 {libc => lib/libc}/musl/src/math/__cosl.c | 0 {libc => lib/libc}/musl/src/math/__expo2.c | 0 {libc => lib/libc}/musl/src/math/__expo2f.c | 0 .../libc}/musl/src/math/__fpclassify.c | 0 .../libc}/musl/src/math/__fpclassifyf.c | 0 .../libc}/musl/src/math/__fpclassifyl.c | 0 {libc => lib/libc}/musl/src/math/__invtrigl.c | 0 {libc => lib/libc}/musl/src/math/__invtrigl.h | 0 {libc => lib/libc}/musl/src/math/__polevll.c | 0 {libc => lib/libc}/musl/src/math/__rem_pio2.c | 0 .../libc}/musl/src/math/__rem_pio2_large.c | 0 .../libc}/musl/src/math/__rem_pio2f.c | 0 .../libc}/musl/src/math/__rem_pio2l.c | 0 {libc => lib/libc}/musl/src/math/__signbit.c | 0 {libc => lib/libc}/musl/src/math/__signbitf.c | 0 {libc => lib/libc}/musl/src/math/__signbitl.c | 0 {libc => lib/libc}/musl/src/math/__sin.c | 0 {libc => lib/libc}/musl/src/math/__sindf.c | 0 {libc => lib/libc}/musl/src/math/__sinl.c | 0 {libc => lib/libc}/musl/src/math/__tan.c | 0 {libc => lib/libc}/musl/src/math/__tandf.c | 0 {libc => lib/libc}/musl/src/math/__tanl.c | 0 .../libc}/musl/src/math/aarch64/ceil.c | 0 .../libc}/musl/src/math/aarch64/ceilf.c | 0 .../libc}/musl/src/math/aarch64/fabs.c | 0 .../libc}/musl/src/math/aarch64/fabsf.c | 0 .../libc}/musl/src/math/aarch64/floor.c | 0 .../libc}/musl/src/math/aarch64/floorf.c | 0 .../libc}/musl/src/math/aarch64/fma.c | 0 .../libc}/musl/src/math/aarch64/fmaf.c | 0 .../libc}/musl/src/math/aarch64/fmax.c | 0 .../libc}/musl/src/math/aarch64/fmaxf.c | 0 .../libc}/musl/src/math/aarch64/fmin.c | 0 .../libc}/musl/src/math/aarch64/fminf.c | 0 .../libc}/musl/src/math/aarch64/llrint.c | 0 .../libc}/musl/src/math/aarch64/llrintf.c | 0 .../libc}/musl/src/math/aarch64/llround.c | 0 .../libc}/musl/src/math/aarch64/llroundf.c | 0 .../libc}/musl/src/math/aarch64/lrint.c | 0 .../libc}/musl/src/math/aarch64/lrintf.c | 0 .../libc}/musl/src/math/aarch64/lround.c | 0 .../libc}/musl/src/math/aarch64/lroundf.c | 0 .../libc}/musl/src/math/aarch64/nearbyint.c | 0 .../libc}/musl/src/math/aarch64/nearbyintf.c | 0 .../libc}/musl/src/math/aarch64/rint.c | 0 .../libc}/musl/src/math/aarch64/rintf.c | 0 .../libc}/musl/src/math/aarch64/round.c | 0 .../libc}/musl/src/math/aarch64/roundf.c | 0 .../libc}/musl/src/math/aarch64/sqrt.c | 0 .../libc}/musl/src/math/aarch64/sqrtf.c | 0 .../libc}/musl/src/math/aarch64/trunc.c | 0 .../libc}/musl/src/math/aarch64/truncf.c | 0 {libc => lib/libc}/musl/src/math/acos.c | 0 {libc => lib/libc}/musl/src/math/acosf.c | 0 {libc => lib/libc}/musl/src/math/acosh.c | 0 {libc => lib/libc}/musl/src/math/acoshf.c | 0 {libc => lib/libc}/musl/src/math/acoshl.c | 0 {libc => lib/libc}/musl/src/math/acosl.c | 0 {libc => lib/libc}/musl/src/math/arm/fabs.c | 0 {libc => lib/libc}/musl/src/math/arm/fabsf.c | 0 {libc => lib/libc}/musl/src/math/arm/fma.c | 0 {libc => lib/libc}/musl/src/math/arm/fmaf.c | 0 {libc => lib/libc}/musl/src/math/arm/sqrt.c | 0 {libc => lib/libc}/musl/src/math/arm/sqrtf.c | 0 {libc => lib/libc}/musl/src/math/asin.c | 0 {libc => lib/libc}/musl/src/math/asinf.c | 0 {libc => lib/libc}/musl/src/math/asinh.c | 0 {libc => lib/libc}/musl/src/math/asinhf.c | 0 {libc => lib/libc}/musl/src/math/asinhl.c | 0 {libc => lib/libc}/musl/src/math/asinl.c | 0 {libc => lib/libc}/musl/src/math/atan.c | 0 {libc => lib/libc}/musl/src/math/atan2.c | 0 {libc => lib/libc}/musl/src/math/atan2f.c | 0 {libc => lib/libc}/musl/src/math/atan2l.c | 0 {libc => lib/libc}/musl/src/math/atanf.c | 0 {libc => lib/libc}/musl/src/math/atanh.c | 0 {libc => lib/libc}/musl/src/math/atanhf.c | 0 {libc => lib/libc}/musl/src/math/atanhl.c | 0 {libc => lib/libc}/musl/src/math/atanl.c | 0 {libc => lib/libc}/musl/src/math/cbrt.c | 0 {libc => lib/libc}/musl/src/math/cbrtf.c | 0 {libc => lib/libc}/musl/src/math/cbrtl.c | 0 {libc => lib/libc}/musl/src/math/ceil.c | 0 {libc => lib/libc}/musl/src/math/ceilf.c | 0 {libc => lib/libc}/musl/src/math/ceill.c | 0 {libc => lib/libc}/musl/src/math/copysign.c | 0 {libc => lib/libc}/musl/src/math/copysignf.c | 0 {libc => lib/libc}/musl/src/math/copysignl.c | 0 {libc => lib/libc}/musl/src/math/cos.c | 0 {libc => lib/libc}/musl/src/math/cosf.c | 0 {libc => lib/libc}/musl/src/math/cosh.c | 0 {libc => lib/libc}/musl/src/math/coshf.c | 0 {libc => lib/libc}/musl/src/math/coshl.c | 0 {libc => lib/libc}/musl/src/math/cosl.c | 0 {libc => lib/libc}/musl/src/math/erf.c | 0 {libc => lib/libc}/musl/src/math/erff.c | 0 {libc => lib/libc}/musl/src/math/erfl.c | 0 {libc => lib/libc}/musl/src/math/exp.c | 0 {libc => lib/libc}/musl/src/math/exp10.c | 0 {libc => lib/libc}/musl/src/math/exp10f.c | 0 {libc => lib/libc}/musl/src/math/exp10l.c | 0 {libc => lib/libc}/musl/src/math/exp2.c | 0 {libc => lib/libc}/musl/src/math/exp2f.c | 0 {libc => lib/libc}/musl/src/math/exp2l.c | 0 {libc => lib/libc}/musl/src/math/expf.c | 0 {libc => lib/libc}/musl/src/math/expl.c | 0 {libc => lib/libc}/musl/src/math/expm1.c | 0 {libc => lib/libc}/musl/src/math/expm1f.c | 0 {libc => lib/libc}/musl/src/math/expm1l.c | 0 {libc => lib/libc}/musl/src/math/fabs.c | 0 {libc => lib/libc}/musl/src/math/fabsf.c | 0 {libc => lib/libc}/musl/src/math/fabsl.c | 0 {libc => lib/libc}/musl/src/math/fdim.c | 0 {libc => lib/libc}/musl/src/math/fdimf.c | 0 {libc => lib/libc}/musl/src/math/fdiml.c | 0 {libc => lib/libc}/musl/src/math/finite.c | 0 {libc => lib/libc}/musl/src/math/finitef.c | 0 {libc => lib/libc}/musl/src/math/floor.c | 0 {libc => lib/libc}/musl/src/math/floorf.c | 0 {libc => lib/libc}/musl/src/math/floorl.c | 0 {libc => lib/libc}/musl/src/math/fma.c | 0 {libc => lib/libc}/musl/src/math/fmaf.c | 0 {libc => lib/libc}/musl/src/math/fmal.c | 0 {libc => lib/libc}/musl/src/math/fmax.c | 0 {libc => lib/libc}/musl/src/math/fmaxf.c | 0 {libc => lib/libc}/musl/src/math/fmaxl.c | 0 {libc => lib/libc}/musl/src/math/fmin.c | 0 {libc => lib/libc}/musl/src/math/fminf.c | 0 {libc => lib/libc}/musl/src/math/fminl.c | 0 {libc => lib/libc}/musl/src/math/fmod.c | 0 {libc => lib/libc}/musl/src/math/fmodf.c | 0 {libc => lib/libc}/musl/src/math/fmodl.c | 0 {libc => lib/libc}/musl/src/math/frexp.c | 0 {libc => lib/libc}/musl/src/math/frexpf.c | 0 {libc => lib/libc}/musl/src/math/frexpl.c | 0 {libc => lib/libc}/musl/src/math/hypot.c | 0 {libc => lib/libc}/musl/src/math/hypotf.c | 0 {libc => lib/libc}/musl/src/math/hypotl.c | 0 .../libc}/musl/src/math/i386/__invtrigl.s | 0 {libc => lib/libc}/musl/src/math/i386/acos.s | 0 {libc => lib/libc}/musl/src/math/i386/acosf.s | 0 {libc => lib/libc}/musl/src/math/i386/acosl.s | 0 {libc => lib/libc}/musl/src/math/i386/asin.s | 0 {libc => lib/libc}/musl/src/math/i386/asinf.s | 0 {libc => lib/libc}/musl/src/math/i386/asinl.s | 0 {libc => lib/libc}/musl/src/math/i386/atan.s | 0 {libc => lib/libc}/musl/src/math/i386/atan2.s | 0 .../libc}/musl/src/math/i386/atan2f.s | 0 .../libc}/musl/src/math/i386/atan2l.s | 0 {libc => lib/libc}/musl/src/math/i386/atanf.s | 0 {libc => lib/libc}/musl/src/math/i386/atanl.s | 0 {libc => lib/libc}/musl/src/math/i386/ceil.s | 0 {libc => lib/libc}/musl/src/math/i386/ceilf.s | 0 {libc => lib/libc}/musl/src/math/i386/ceill.s | 0 {libc => lib/libc}/musl/src/math/i386/exp.s | 0 {libc => lib/libc}/musl/src/math/i386/exp2.s | 0 {libc => lib/libc}/musl/src/math/i386/exp2f.s | 0 {libc => lib/libc}/musl/src/math/i386/exp2l.s | 0 {libc => lib/libc}/musl/src/math/i386/expf.s | 0 {libc => lib/libc}/musl/src/math/i386/expl.s | 0 {libc => lib/libc}/musl/src/math/i386/expm1.s | 0 .../libc}/musl/src/math/i386/expm1f.s | 0 .../libc}/musl/src/math/i386/expm1l.s | 0 {libc => lib/libc}/musl/src/math/i386/fabs.s | 0 {libc => lib/libc}/musl/src/math/i386/fabsf.s | 0 {libc => lib/libc}/musl/src/math/i386/fabsl.s | 0 {libc => lib/libc}/musl/src/math/i386/floor.s | 0 .../libc}/musl/src/math/i386/floorf.s | 0 .../libc}/musl/src/math/i386/floorl.s | 0 {libc => lib/libc}/musl/src/math/i386/fmod.s | 0 {libc => lib/libc}/musl/src/math/i386/fmodf.s | 0 {libc => lib/libc}/musl/src/math/i386/fmodl.s | 0 {libc => lib/libc}/musl/src/math/i386/hypot.s | 0 .../libc}/musl/src/math/i386/hypotf.s | 0 {libc => lib/libc}/musl/src/math/i386/ldexp.s | 0 .../libc}/musl/src/math/i386/ldexpf.s | 0 .../libc}/musl/src/math/i386/ldexpl.s | 0 .../libc}/musl/src/math/i386/llrint.s | 0 .../libc}/musl/src/math/i386/llrintf.s | 0 .../libc}/musl/src/math/i386/llrintl.s | 0 {libc => lib/libc}/musl/src/math/i386/log.s | 0 {libc => lib/libc}/musl/src/math/i386/log10.s | 0 .../libc}/musl/src/math/i386/log10f.s | 0 .../libc}/musl/src/math/i386/log10l.s | 0 {libc => lib/libc}/musl/src/math/i386/log1p.s | 0 .../libc}/musl/src/math/i386/log1pf.s | 0 .../libc}/musl/src/math/i386/log1pl.s | 0 {libc => lib/libc}/musl/src/math/i386/log2.s | 0 {libc => lib/libc}/musl/src/math/i386/log2f.s | 0 {libc => lib/libc}/musl/src/math/i386/log2l.s | 0 {libc => lib/libc}/musl/src/math/i386/logf.s | 0 {libc => lib/libc}/musl/src/math/i386/logl.s | 0 {libc => lib/libc}/musl/src/math/i386/lrint.s | 0 .../libc}/musl/src/math/i386/lrintf.s | 0 .../libc}/musl/src/math/i386/lrintl.s | 0 .../libc}/musl/src/math/i386/remainder.s | 0 .../libc}/musl/src/math/i386/remainderf.s | 0 .../libc}/musl/src/math/i386/remainderl.s | 0 .../libc}/musl/src/math/i386/remquo.s | 0 .../libc}/musl/src/math/i386/remquof.s | 0 .../libc}/musl/src/math/i386/remquol.s | 0 {libc => lib/libc}/musl/src/math/i386/rint.s | 0 {libc => lib/libc}/musl/src/math/i386/rintf.s | 0 {libc => lib/libc}/musl/src/math/i386/rintl.s | 0 .../libc}/musl/src/math/i386/scalbln.s | 0 .../libc}/musl/src/math/i386/scalblnf.s | 0 .../libc}/musl/src/math/i386/scalblnl.s | 0 .../libc}/musl/src/math/i386/scalbn.s | 0 .../libc}/musl/src/math/i386/scalbnf.s | 0 .../libc}/musl/src/math/i386/scalbnl.s | 0 {libc => lib/libc}/musl/src/math/i386/sqrt.s | 0 {libc => lib/libc}/musl/src/math/i386/sqrtf.s | 0 {libc => lib/libc}/musl/src/math/i386/sqrtl.s | 0 {libc => lib/libc}/musl/src/math/i386/trunc.s | 0 .../libc}/musl/src/math/i386/truncf.s | 0 .../libc}/musl/src/math/i386/truncl.s | 0 {libc => lib/libc}/musl/src/math/ilogb.c | 0 {libc => lib/libc}/musl/src/math/ilogbf.c | 0 {libc => lib/libc}/musl/src/math/ilogbl.c | 0 {libc => lib/libc}/musl/src/math/j0.c | 0 {libc => lib/libc}/musl/src/math/j0f.c | 0 {libc => lib/libc}/musl/src/math/j1.c | 0 {libc => lib/libc}/musl/src/math/j1f.c | 0 {libc => lib/libc}/musl/src/math/jn.c | 0 {libc => lib/libc}/musl/src/math/jnf.c | 0 {libc => lib/libc}/musl/src/math/ldexp.c | 0 {libc => lib/libc}/musl/src/math/ldexpf.c | 0 {libc => lib/libc}/musl/src/math/ldexpl.c | 0 {libc => lib/libc}/musl/src/math/lgamma.c | 0 {libc => lib/libc}/musl/src/math/lgamma_r.c | 0 {libc => lib/libc}/musl/src/math/lgammaf.c | 0 {libc => lib/libc}/musl/src/math/lgammaf_r.c | 0 {libc => lib/libc}/musl/src/math/lgammal.c | 0 {libc => lib/libc}/musl/src/math/llrint.c | 0 {libc => lib/libc}/musl/src/math/llrintf.c | 0 {libc => lib/libc}/musl/src/math/llrintl.c | 0 {libc => lib/libc}/musl/src/math/llround.c | 0 {libc => lib/libc}/musl/src/math/llroundf.c | 0 {libc => lib/libc}/musl/src/math/llroundl.c | 0 {libc => lib/libc}/musl/src/math/log.c | 0 {libc => lib/libc}/musl/src/math/log10.c | 0 {libc => lib/libc}/musl/src/math/log10f.c | 0 {libc => lib/libc}/musl/src/math/log10l.c | 0 {libc => lib/libc}/musl/src/math/log1p.c | 0 {libc => lib/libc}/musl/src/math/log1pf.c | 0 {libc => lib/libc}/musl/src/math/log1pl.c | 0 {libc => lib/libc}/musl/src/math/log2.c | 0 {libc => lib/libc}/musl/src/math/log2f.c | 0 {libc => lib/libc}/musl/src/math/log2l.c | 0 {libc => lib/libc}/musl/src/math/logb.c | 0 {libc => lib/libc}/musl/src/math/logbf.c | 0 {libc => lib/libc}/musl/src/math/logbl.c | 0 {libc => lib/libc}/musl/src/math/logf.c | 0 {libc => lib/libc}/musl/src/math/logl.c | 0 {libc => lib/libc}/musl/src/math/lrint.c | 0 {libc => lib/libc}/musl/src/math/lrintf.c | 0 {libc => lib/libc}/musl/src/math/lrintl.c | 0 {libc => lib/libc}/musl/src/math/lround.c | 0 {libc => lib/libc}/musl/src/math/lroundf.c | 0 {libc => lib/libc}/musl/src/math/lroundl.c | 0 {libc => lib/libc}/musl/src/math/modf.c | 0 {libc => lib/libc}/musl/src/math/modff.c | 0 {libc => lib/libc}/musl/src/math/modfl.c | 0 {libc => lib/libc}/musl/src/math/nan.c | 0 {libc => lib/libc}/musl/src/math/nanf.c | 0 {libc => lib/libc}/musl/src/math/nanl.c | 0 {libc => lib/libc}/musl/src/math/nearbyint.c | 0 {libc => lib/libc}/musl/src/math/nearbyintf.c | 0 {libc => lib/libc}/musl/src/math/nearbyintl.c | 0 {libc => lib/libc}/musl/src/math/nextafter.c | 0 {libc => lib/libc}/musl/src/math/nextafterf.c | 0 {libc => lib/libc}/musl/src/math/nextafterl.c | 0 {libc => lib/libc}/musl/src/math/nexttoward.c | 0 .../libc}/musl/src/math/nexttowardf.c | 0 .../libc}/musl/src/math/nexttowardl.c | 0 {libc => lib/libc}/musl/src/math/pow.c | 0 .../libc}/musl/src/math/powerpc/fabs.c | 0 .../libc}/musl/src/math/powerpc/fabsf.c | 0 .../libc}/musl/src/math/powerpc/fma.c | 0 .../libc}/musl/src/math/powerpc/fmaf.c | 0 .../libc}/musl/src/math/powerpc/sqrt.c | 0 .../libc}/musl/src/math/powerpc/sqrtf.c | 0 .../libc}/musl/src/math/powerpc64/ceil.c | 0 .../libc}/musl/src/math/powerpc64/ceilf.c | 0 .../libc}/musl/src/math/powerpc64/fabs.c | 0 .../libc}/musl/src/math/powerpc64/fabsf.c | 0 .../libc}/musl/src/math/powerpc64/floor.c | 0 .../libc}/musl/src/math/powerpc64/floorf.c | 0 .../libc}/musl/src/math/powerpc64/fma.c | 0 .../libc}/musl/src/math/powerpc64/fmaf.c | 0 .../libc}/musl/src/math/powerpc64/fmax.c | 0 .../libc}/musl/src/math/powerpc64/fmaxf.c | 0 .../libc}/musl/src/math/powerpc64/fmin.c | 0 .../libc}/musl/src/math/powerpc64/fminf.c | 0 .../libc}/musl/src/math/powerpc64/lrint.c | 0 .../libc}/musl/src/math/powerpc64/lrintf.c | 0 .../libc}/musl/src/math/powerpc64/lround.c | 0 .../libc}/musl/src/math/powerpc64/lroundf.c | 0 .../libc}/musl/src/math/powerpc64/round.c | 0 .../libc}/musl/src/math/powerpc64/roundf.c | 0 .../libc}/musl/src/math/powerpc64/sqrt.c | 0 .../libc}/musl/src/math/powerpc64/sqrtf.c | 0 .../libc}/musl/src/math/powerpc64/trunc.c | 0 .../libc}/musl/src/math/powerpc64/truncf.c | 0 {libc => lib/libc}/musl/src/math/powf.c | 0 {libc => lib/libc}/musl/src/math/powl.c | 0 {libc => lib/libc}/musl/src/math/remainder.c | 0 {libc => lib/libc}/musl/src/math/remainderf.c | 0 {libc => lib/libc}/musl/src/math/remainderl.c | 0 {libc => lib/libc}/musl/src/math/remquo.c | 0 {libc => lib/libc}/musl/src/math/remquof.c | 0 {libc => lib/libc}/musl/src/math/remquol.c | 0 {libc => lib/libc}/musl/src/math/rint.c | 0 {libc => lib/libc}/musl/src/math/rintf.c | 0 {libc => lib/libc}/musl/src/math/rintl.c | 0 {libc => lib/libc}/musl/src/math/round.c | 0 {libc => lib/libc}/musl/src/math/roundf.c | 0 {libc => lib/libc}/musl/src/math/roundl.c | 0 {libc => lib/libc}/musl/src/math/s390x/ceil.c | 0 .../libc}/musl/src/math/s390x/ceilf.c | 0 .../libc}/musl/src/math/s390x/ceill.c | 0 {libc => lib/libc}/musl/src/math/s390x/fabs.c | 0 .../libc}/musl/src/math/s390x/fabsf.c | 0 .../libc}/musl/src/math/s390x/fabsl.c | 0 .../libc}/musl/src/math/s390x/floor.c | 0 .../libc}/musl/src/math/s390x/floorf.c | 0 .../libc}/musl/src/math/s390x/floorl.c | 0 {libc => lib/libc}/musl/src/math/s390x/fma.c | 0 {libc => lib/libc}/musl/src/math/s390x/fmaf.c | 0 .../libc}/musl/src/math/s390x/nearbyint.c | 0 .../libc}/musl/src/math/s390x/nearbyintf.c | 0 .../libc}/musl/src/math/s390x/nearbyintl.c | 0 {libc => lib/libc}/musl/src/math/s390x/rint.c | 0 .../libc}/musl/src/math/s390x/rintf.c | 0 .../libc}/musl/src/math/s390x/rintl.c | 0 .../libc}/musl/src/math/s390x/round.c | 0 .../libc}/musl/src/math/s390x/roundf.c | 0 .../libc}/musl/src/math/s390x/roundl.c | 0 {libc => lib/libc}/musl/src/math/s390x/sqrt.c | 0 .../libc}/musl/src/math/s390x/sqrtf.c | 0 .../libc}/musl/src/math/s390x/sqrtl.c | 0 .../libc}/musl/src/math/s390x/trunc.c | 0 .../libc}/musl/src/math/s390x/truncf.c | 0 .../libc}/musl/src/math/s390x/truncl.c | 0 {libc => lib/libc}/musl/src/math/scalb.c | 0 {libc => lib/libc}/musl/src/math/scalbf.c | 0 {libc => lib/libc}/musl/src/math/scalbln.c | 0 {libc => lib/libc}/musl/src/math/scalblnf.c | 0 {libc => lib/libc}/musl/src/math/scalblnl.c | 0 {libc => lib/libc}/musl/src/math/scalbn.c | 0 {libc => lib/libc}/musl/src/math/scalbnf.c | 0 {libc => lib/libc}/musl/src/math/scalbnl.c | 0 {libc => lib/libc}/musl/src/math/signgam.c | 0 .../libc}/musl/src/math/significand.c | 0 .../libc}/musl/src/math/significandf.c | 0 {libc => lib/libc}/musl/src/math/sin.c | 0 {libc => lib/libc}/musl/src/math/sincos.c | 0 {libc => lib/libc}/musl/src/math/sincosf.c | 0 {libc => lib/libc}/musl/src/math/sincosl.c | 0 {libc => lib/libc}/musl/src/math/sinf.c | 0 {libc => lib/libc}/musl/src/math/sinh.c | 0 {libc => lib/libc}/musl/src/math/sinhf.c | 0 {libc => lib/libc}/musl/src/math/sinhl.c | 0 {libc => lib/libc}/musl/src/math/sinl.c | 0 {libc => lib/libc}/musl/src/math/sqrt.c | 0 {libc => lib/libc}/musl/src/math/sqrtf.c | 0 {libc => lib/libc}/musl/src/math/sqrtl.c | 0 {libc => lib/libc}/musl/src/math/tan.c | 0 {libc => lib/libc}/musl/src/math/tanf.c | 0 {libc => lib/libc}/musl/src/math/tanh.c | 0 {libc => lib/libc}/musl/src/math/tanhf.c | 0 {libc => lib/libc}/musl/src/math/tanhl.c | 0 {libc => lib/libc}/musl/src/math/tanl.c | 0 {libc => lib/libc}/musl/src/math/tgamma.c | 0 {libc => lib/libc}/musl/src/math/tgammaf.c | 0 {libc => lib/libc}/musl/src/math/tgammal.c | 0 {libc => lib/libc}/musl/src/math/trunc.c | 0 {libc => lib/libc}/musl/src/math/truncf.c | 0 {libc => lib/libc}/musl/src/math/truncl.c | 0 .../libc}/musl/src/math/x32/__invtrigl.s | 0 {libc => lib/libc}/musl/src/math/x32/acosl.s | 0 {libc => lib/libc}/musl/src/math/x32/asinl.s | 0 {libc => lib/libc}/musl/src/math/x32/atan2l.s | 0 {libc => lib/libc}/musl/src/math/x32/atanl.s | 0 {libc => lib/libc}/musl/src/math/x32/ceill.s | 0 {libc => lib/libc}/musl/src/math/x32/exp2l.s | 0 {libc => lib/libc}/musl/src/math/x32/expl.s | 0 {libc => lib/libc}/musl/src/math/x32/expm1l.s | 0 {libc => lib/libc}/musl/src/math/x32/fabs.s | 0 {libc => lib/libc}/musl/src/math/x32/fabsf.s | 0 {libc => lib/libc}/musl/src/math/x32/fabsl.s | 0 {libc => lib/libc}/musl/src/math/x32/floorl.s | 0 {libc => lib/libc}/musl/src/math/x32/fma.c | 0 {libc => lib/libc}/musl/src/math/x32/fmaf.c | 0 {libc => lib/libc}/musl/src/math/x32/fmodl.s | 0 {libc => lib/libc}/musl/src/math/x32/llrint.s | 0 .../libc}/musl/src/math/x32/llrintf.s | 0 .../libc}/musl/src/math/x32/llrintl.s | 0 {libc => lib/libc}/musl/src/math/x32/log10l.s | 0 {libc => lib/libc}/musl/src/math/x32/log1pl.s | 0 {libc => lib/libc}/musl/src/math/x32/log2l.s | 0 {libc => lib/libc}/musl/src/math/x32/logl.s | 0 {libc => lib/libc}/musl/src/math/x32/lrint.s | 0 {libc => lib/libc}/musl/src/math/x32/lrintf.s | 0 {libc => lib/libc}/musl/src/math/x32/lrintl.s | 0 .../libc}/musl/src/math/x32/remainderl.s | 0 {libc => lib/libc}/musl/src/math/x32/rintl.s | 0 {libc => lib/libc}/musl/src/math/x32/sqrt.s | 0 {libc => lib/libc}/musl/src/math/x32/sqrtf.s | 0 {libc => lib/libc}/musl/src/math/x32/sqrtl.s | 0 {libc => lib/libc}/musl/src/math/x32/truncl.s | 0 .../libc}/musl/src/math/x86_64/__invtrigl.s | 0 .../libc}/musl/src/math/x86_64/acosl.s | 0 .../libc}/musl/src/math/x86_64/asinl.s | 0 .../libc}/musl/src/math/x86_64/atan2l.s | 0 .../libc}/musl/src/math/x86_64/atanl.s | 0 .../libc}/musl/src/math/x86_64/ceill.s | 0 .../libc}/musl/src/math/x86_64/exp2l.s | 0 .../libc}/musl/src/math/x86_64/expl.s | 0 .../libc}/musl/src/math/x86_64/expm1l.s | 0 .../libc}/musl/src/math/x86_64/fabs.s | 0 .../libc}/musl/src/math/x86_64/fabsf.s | 0 .../libc}/musl/src/math/x86_64/fabsl.s | 0 .../libc}/musl/src/math/x86_64/floorl.s | 0 {libc => lib/libc}/musl/src/math/x86_64/fma.c | 0 .../libc}/musl/src/math/x86_64/fmaf.c | 0 .../libc}/musl/src/math/x86_64/fmodl.s | 0 .../libc}/musl/src/math/x86_64/llrint.s | 0 .../libc}/musl/src/math/x86_64/llrintf.s | 0 .../libc}/musl/src/math/x86_64/llrintl.s | 0 .../libc}/musl/src/math/x86_64/log10l.s | 0 .../libc}/musl/src/math/x86_64/log1pl.s | 0 .../libc}/musl/src/math/x86_64/log2l.s | 0 .../libc}/musl/src/math/x86_64/logl.s | 0 .../libc}/musl/src/math/x86_64/lrint.s | 0 .../libc}/musl/src/math/x86_64/lrintf.s | 0 .../libc}/musl/src/math/x86_64/lrintl.s | 0 .../libc}/musl/src/math/x86_64/remainderl.s | 0 .../libc}/musl/src/math/x86_64/rintl.s | 0 .../libc}/musl/src/math/x86_64/sqrt.s | 0 .../libc}/musl/src/math/x86_64/sqrtf.s | 0 .../libc}/musl/src/math/x86_64/sqrtl.s | 0 .../libc}/musl/src/math/x86_64/truncl.s | 0 {libc => lib/libc}/musl/src/misc/a64l.c | 0 {libc => lib/libc}/musl/src/misc/basename.c | 0 {libc => lib/libc}/musl/src/misc/dirname.c | 0 {libc => lib/libc}/musl/src/misc/ffs.c | 0 {libc => lib/libc}/musl/src/misc/ffsl.c | 0 {libc => lib/libc}/musl/src/misc/ffsll.c | 0 {libc => lib/libc}/musl/src/misc/fmtmsg.c | 0 {libc => lib/libc}/musl/src/misc/forkpty.c | 0 .../musl/src/misc/get_current_dir_name.c | 0 {libc => lib/libc}/musl/src/misc/getauxval.c | 0 .../libc}/musl/src/misc/getdomainname.c | 0 {libc => lib/libc}/musl/src/misc/getentropy.c | 0 {libc => lib/libc}/musl/src/misc/gethostid.c | 0 {libc => lib/libc}/musl/src/misc/getopt.c | 0 .../libc}/musl/src/misc/getopt_long.c | 0 .../libc}/musl/src/misc/getpriority.c | 0 {libc => lib/libc}/musl/src/misc/getresgid.c | 0 {libc => lib/libc}/musl/src/misc/getresuid.c | 0 {libc => lib/libc}/musl/src/misc/getrlimit.c | 0 {libc => lib/libc}/musl/src/misc/getrusage.c | 0 {libc => lib/libc}/musl/src/misc/getsubopt.c | 0 {libc => lib/libc}/musl/src/misc/initgroups.c | 0 {libc => lib/libc}/musl/src/misc/ioctl.c | 0 {libc => lib/libc}/musl/src/misc/issetugid.c | 0 {libc => lib/libc}/musl/src/misc/lockf.c | 0 {libc => lib/libc}/musl/src/misc/login_tty.c | 0 {libc => lib/libc}/musl/src/misc/mntent.c | 0 {libc => lib/libc}/musl/src/misc/nftw.c | 0 {libc => lib/libc}/musl/src/misc/openpty.c | 0 {libc => lib/libc}/musl/src/misc/ptsname.c | 0 {libc => lib/libc}/musl/src/misc/pty.c | 0 {libc => lib/libc}/musl/src/misc/realpath.c | 0 .../libc}/musl/src/misc/setdomainname.c | 0 .../libc}/musl/src/misc/setpriority.c | 0 {libc => lib/libc}/musl/src/misc/setrlimit.c | 0 {libc => lib/libc}/musl/src/misc/syscall.c | 0 {libc => lib/libc}/musl/src/misc/syslog.c | 0 {libc => lib/libc}/musl/src/misc/uname.c | 0 {libc => lib/libc}/musl/src/misc/wordexp.c | 0 {libc => lib/libc}/musl/src/mman/madvise.c | 0 {libc => lib/libc}/musl/src/mman/mincore.c | 0 {libc => lib/libc}/musl/src/mman/mlock.c | 0 {libc => lib/libc}/musl/src/mman/mlockall.c | 0 {libc => lib/libc}/musl/src/mman/mmap.c | 0 {libc => lib/libc}/musl/src/mman/mprotect.c | 0 {libc => lib/libc}/musl/src/mman/mremap.c | 0 {libc => lib/libc}/musl/src/mman/msync.c | 0 {libc => lib/libc}/musl/src/mman/munlock.c | 0 {libc => lib/libc}/musl/src/mman/munlockall.c | 0 {libc => lib/libc}/musl/src/mman/munmap.c | 0 .../libc}/musl/src/mman/posix_madvise.c | 0 {libc => lib/libc}/musl/src/mman/shm_open.c | 0 {libc => lib/libc}/musl/src/mq/mq_close.c | 0 {libc => lib/libc}/musl/src/mq/mq_getattr.c | 0 {libc => lib/libc}/musl/src/mq/mq_notify.c | 0 {libc => lib/libc}/musl/src/mq/mq_open.c | 0 {libc => lib/libc}/musl/src/mq/mq_receive.c | 0 {libc => lib/libc}/musl/src/mq/mq_send.c | 0 {libc => lib/libc}/musl/src/mq/mq_setattr.c | 0 .../libc}/musl/src/mq/mq_timedreceive.c | 0 {libc => lib/libc}/musl/src/mq/mq_timedsend.c | 0 {libc => lib/libc}/musl/src/mq/mq_unlink.c | 0 {libc => lib/libc}/musl/src/multibyte/btowc.c | 0 .../libc}/musl/src/multibyte/c16rtomb.c | 0 .../libc}/musl/src/multibyte/c32rtomb.c | 0 .../libc}/musl/src/multibyte/internal.c | 0 .../libc}/musl/src/multibyte/internal.h | 0 {libc => lib/libc}/musl/src/multibyte/mblen.c | 0 .../libc}/musl/src/multibyte/mbrlen.c | 0 .../libc}/musl/src/multibyte/mbrtoc16.c | 0 .../libc}/musl/src/multibyte/mbrtoc32.c | 0 .../libc}/musl/src/multibyte/mbrtowc.c | 0 .../libc}/musl/src/multibyte/mbsinit.c | 0 .../libc}/musl/src/multibyte/mbsnrtowcs.c | 0 .../libc}/musl/src/multibyte/mbsrtowcs.c | 0 .../libc}/musl/src/multibyte/mbstowcs.c | 0 .../libc}/musl/src/multibyte/mbtowc.c | 0 .../libc}/musl/src/multibyte/wcrtomb.c | 0 .../libc}/musl/src/multibyte/wcsnrtombs.c | 0 .../libc}/musl/src/multibyte/wcsrtombs.c | 0 .../libc}/musl/src/multibyte/wcstombs.c | 0 {libc => lib/libc}/musl/src/multibyte/wctob.c | 0 .../libc}/musl/src/multibyte/wctomb.c | 0 {libc => lib/libc}/musl/src/network/accept.c | 0 {libc => lib/libc}/musl/src/network/accept4.c | 0 {libc => lib/libc}/musl/src/network/bind.c | 0 {libc => lib/libc}/musl/src/network/connect.c | 0 {libc => lib/libc}/musl/src/network/dn_comp.c | 0 .../libc}/musl/src/network/dn_expand.c | 0 .../libc}/musl/src/network/dn_skipname.c | 0 .../libc}/musl/src/network/dns_parse.c | 0 {libc => lib/libc}/musl/src/network/ent.c | 0 {libc => lib/libc}/musl/src/network/ether.c | 0 .../libc}/musl/src/network/freeaddrinfo.c | 0 .../libc}/musl/src/network/gai_strerror.c | 0 .../libc}/musl/src/network/getaddrinfo.c | 0 .../libc}/musl/src/network/gethostbyaddr.c | 0 .../libc}/musl/src/network/gethostbyaddr_r.c | 0 .../libc}/musl/src/network/gethostbyname.c | 0 .../libc}/musl/src/network/gethostbyname2.c | 0 .../libc}/musl/src/network/gethostbyname2_r.c | 0 .../libc}/musl/src/network/gethostbyname_r.c | 0 .../libc}/musl/src/network/getifaddrs.c | 0 .../libc}/musl/src/network/getnameinfo.c | 0 .../libc}/musl/src/network/getpeername.c | 0 .../libc}/musl/src/network/getservbyname.c | 0 .../libc}/musl/src/network/getservbyname_r.c | 0 .../libc}/musl/src/network/getservbyport.c | 0 .../libc}/musl/src/network/getservbyport_r.c | 0 .../libc}/musl/src/network/getsockname.c | 0 .../libc}/musl/src/network/getsockopt.c | 0 {libc => lib/libc}/musl/src/network/h_errno.c | 0 {libc => lib/libc}/musl/src/network/herror.c | 0 .../libc}/musl/src/network/hstrerror.c | 0 {libc => lib/libc}/musl/src/network/htonl.c | 0 {libc => lib/libc}/musl/src/network/htons.c | 0 .../libc}/musl/src/network/if_freenameindex.c | 0 .../libc}/musl/src/network/if_indextoname.c | 0 .../libc}/musl/src/network/if_nameindex.c | 0 .../libc}/musl/src/network/if_nametoindex.c | 0 .../libc}/musl/src/network/in6addr_any.c | 0 .../libc}/musl/src/network/in6addr_loopback.c | 0 .../libc}/musl/src/network/inet_addr.c | 0 .../libc}/musl/src/network/inet_aton.c | 0 .../libc}/musl/src/network/inet_legacy.c | 0 .../libc}/musl/src/network/inet_ntoa.c | 0 .../libc}/musl/src/network/inet_ntop.c | 0 .../libc}/musl/src/network/inet_pton.c | 0 {libc => lib/libc}/musl/src/network/listen.c | 0 {libc => lib/libc}/musl/src/network/lookup.h | 0 .../libc}/musl/src/network/lookup_ipliteral.c | 0 .../libc}/musl/src/network/lookup_name.c | 0 .../libc}/musl/src/network/lookup_serv.c | 0 {libc => lib/libc}/musl/src/network/netlink.c | 0 {libc => lib/libc}/musl/src/network/netlink.h | 0 {libc => lib/libc}/musl/src/network/netname.c | 0 .../libc}/musl/src/network/ns_parse.c | 0 {libc => lib/libc}/musl/src/network/ntohl.c | 0 {libc => lib/libc}/musl/src/network/ntohs.c | 0 {libc => lib/libc}/musl/src/network/proto.c | 0 {libc => lib/libc}/musl/src/network/recv.c | 0 .../libc}/musl/src/network/recvfrom.c | 0 .../libc}/musl/src/network/recvmmsg.c | 0 {libc => lib/libc}/musl/src/network/recvmsg.c | 0 .../libc}/musl/src/network/res_init.c | 0 .../libc}/musl/src/network/res_mkquery.c | 0 .../libc}/musl/src/network/res_msend.c | 0 .../libc}/musl/src/network/res_query.c | 0 .../libc}/musl/src/network/res_querydomain.c | 0 .../libc}/musl/src/network/res_send.c | 0 .../libc}/musl/src/network/res_state.c | 0 .../libc}/musl/src/network/resolvconf.c | 0 {libc => lib/libc}/musl/src/network/send.c | 0 .../libc}/musl/src/network/sendmmsg.c | 0 {libc => lib/libc}/musl/src/network/sendmsg.c | 0 {libc => lib/libc}/musl/src/network/sendto.c | 0 {libc => lib/libc}/musl/src/network/serv.c | 0 .../libc}/musl/src/network/setsockopt.c | 0 .../libc}/musl/src/network/shutdown.c | 0 .../libc}/musl/src/network/sockatmark.c | 0 {libc => lib/libc}/musl/src/network/socket.c | 0 .../libc}/musl/src/network/socketpair.c | 0 .../libc}/musl/src/passwd/fgetgrent.c | 0 .../libc}/musl/src/passwd/fgetpwent.c | 0 .../libc}/musl/src/passwd/fgetspent.c | 0 {libc => lib/libc}/musl/src/passwd/getgr_a.c | 0 {libc => lib/libc}/musl/src/passwd/getgr_r.c | 0 {libc => lib/libc}/musl/src/passwd/getgrent.c | 0 .../libc}/musl/src/passwd/getgrent_a.c | 0 .../libc}/musl/src/passwd/getgrouplist.c | 0 {libc => lib/libc}/musl/src/passwd/getpw_a.c | 0 {libc => lib/libc}/musl/src/passwd/getpw_r.c | 0 {libc => lib/libc}/musl/src/passwd/getpwent.c | 0 .../libc}/musl/src/passwd/getpwent_a.c | 0 {libc => lib/libc}/musl/src/passwd/getspent.c | 0 {libc => lib/libc}/musl/src/passwd/getspnam.c | 0 .../libc}/musl/src/passwd/getspnam_r.c | 0 {libc => lib/libc}/musl/src/passwd/lckpwdf.c | 0 {libc => lib/libc}/musl/src/passwd/nscd.h | 0 .../libc}/musl/src/passwd/nscd_query.c | 0 {libc => lib/libc}/musl/src/passwd/putgrent.c | 0 {libc => lib/libc}/musl/src/passwd/putpwent.c | 0 {libc => lib/libc}/musl/src/passwd/putspent.c | 0 {libc => lib/libc}/musl/src/passwd/pwf.h | 0 .../libc}/musl/src/prng/__rand48_step.c | 0 {libc => lib/libc}/musl/src/prng/__seed48.c | 0 {libc => lib/libc}/musl/src/prng/drand48.c | 0 {libc => lib/libc}/musl/src/prng/lcong48.c | 0 {libc => lib/libc}/musl/src/prng/lrand48.c | 0 {libc => lib/libc}/musl/src/prng/mrand48.c | 0 {libc => lib/libc}/musl/src/prng/rand.c | 0 {libc => lib/libc}/musl/src/prng/rand48.h | 0 {libc => lib/libc}/musl/src/prng/rand_r.c | 0 {libc => lib/libc}/musl/src/prng/random.c | 0 {libc => lib/libc}/musl/src/prng/seed48.c | 0 {libc => lib/libc}/musl/src/prng/srand48.c | 0 .../libc}/musl/src/process/arm/vfork.s | 0 {libc => lib/libc}/musl/src/process/execl.c | 0 {libc => lib/libc}/musl/src/process/execle.c | 0 {libc => lib/libc}/musl/src/process/execlp.c | 0 {libc => lib/libc}/musl/src/process/execv.c | 0 {libc => lib/libc}/musl/src/process/execve.c | 0 {libc => lib/libc}/musl/src/process/execvp.c | 0 {libc => lib/libc}/musl/src/process/fdop.h | 0 {libc => lib/libc}/musl/src/process/fexecve.c | 0 {libc => lib/libc}/musl/src/process/fork.c | 0 .../libc}/musl/src/process/i386/vfork.s | 0 .../libc}/musl/src/process/posix_spawn.c | 0 .../posix_spawn_file_actions_addclose.c | 0 .../posix_spawn_file_actions_adddup2.c | 0 .../posix_spawn_file_actions_addopen.c | 0 .../posix_spawn_file_actions_destroy.c | 0 .../process/posix_spawn_file_actions_init.c | 0 .../src/process/posix_spawnattr_destroy.c | 0 .../src/process/posix_spawnattr_getflags.c | 0 .../src/process/posix_spawnattr_getpgroup.c | 0 .../process/posix_spawnattr_getsigdefault.c | 0 .../src/process/posix_spawnattr_getsigmask.c | 0 .../musl/src/process/posix_spawnattr_init.c | 0 .../musl/src/process/posix_spawnattr_sched.c | 0 .../src/process/posix_spawnattr_setflags.c | 0 .../src/process/posix_spawnattr_setpgroup.c | 0 .../process/posix_spawnattr_setsigdefault.c | 0 .../src/process/posix_spawnattr_setsigmask.c | 0 .../libc}/musl/src/process/posix_spawnp.c | 0 .../libc}/musl/src/process/s390x/vfork.s | 0 .../libc}/musl/src/process/sh/vfork.s | 0 {libc => lib/libc}/musl/src/process/system.c | 0 {libc => lib/libc}/musl/src/process/vfork.c | 0 {libc => lib/libc}/musl/src/process/wait.c | 0 {libc => lib/libc}/musl/src/process/waitid.c | 0 {libc => lib/libc}/musl/src/process/waitpid.c | 0 .../libc}/musl/src/process/x32/vfork.s | 0 .../libc}/musl/src/process/x86_64/vfork.s | 0 {libc => lib/libc}/musl/src/regex/fnmatch.c | 0 {libc => lib/libc}/musl/src/regex/glob.c | 0 {libc => lib/libc}/musl/src/regex/regcomp.c | 0 {libc => lib/libc}/musl/src/regex/regerror.c | 0 {libc => lib/libc}/musl/src/regex/regexec.c | 0 {libc => lib/libc}/musl/src/regex/tre-mem.c | 0 {libc => lib/libc}/musl/src/regex/tre.h | 0 {libc => lib/libc}/musl/src/sched/affinity.c | 0 .../libc}/musl/src/sched/sched_cpucount.c | 0 .../musl/src/sched/sched_get_priority_max.c | 0 .../libc}/musl/src/sched/sched_getcpu.c | 0 .../libc}/musl/src/sched/sched_getparam.c | 0 .../libc}/musl/src/sched/sched_getscheduler.c | 0 .../musl/src/sched/sched_rr_get_interval.c | 0 .../libc}/musl/src/sched/sched_setparam.c | 0 .../libc}/musl/src/sched/sched_setscheduler.c | 0 .../libc}/musl/src/sched/sched_yield.c | 0 {libc => lib/libc}/musl/src/search/hsearch.c | 0 {libc => lib/libc}/musl/src/search/insque.c | 0 {libc => lib/libc}/musl/src/search/lsearch.c | 0 {libc => lib/libc}/musl/src/search/tdelete.c | 0 {libc => lib/libc}/musl/src/search/tdestroy.c | 0 {libc => lib/libc}/musl/src/search/tfind.c | 0 {libc => lib/libc}/musl/src/search/tsearch.c | 0 {libc => lib/libc}/musl/src/search/tsearch.h | 0 {libc => lib/libc}/musl/src/search/twalk.c | 0 {libc => lib/libc}/musl/src/select/poll.c | 0 {libc => lib/libc}/musl/src/select/pselect.c | 0 {libc => lib/libc}/musl/src/select/select.c | 0 .../libc}/musl/src/setjmp/aarch64/longjmp.s | 0 .../libc}/musl/src/setjmp/aarch64/setjmp.s | 0 .../libc}/musl/src/setjmp/arm/longjmp.s | 0 .../libc}/musl/src/setjmp/arm/setjmp.s | 0 .../libc}/musl/src/setjmp/i386/longjmp.s | 0 .../libc}/musl/src/setjmp/i386/setjmp.s | 0 {libc => lib/libc}/musl/src/setjmp/longjmp.c | 0 .../libc}/musl/src/setjmp/m68k/longjmp.s | 0 .../libc}/musl/src/setjmp/m68k/setjmp.s | 0 .../musl/src/setjmp/microblaze/longjmp.s | 0 .../libc}/musl/src/setjmp/microblaze/setjmp.s | 0 .../libc}/musl/src/setjmp/mips/longjmp.S | 0 .../libc}/musl/src/setjmp/mips/setjmp.S | 0 .../libc}/musl/src/setjmp/mips64/longjmp.S | 0 .../libc}/musl/src/setjmp/mips64/setjmp.S | 0 .../libc}/musl/src/setjmp/mipsn32/longjmp.S | 0 .../libc}/musl/src/setjmp/mipsn32/setjmp.S | 0 .../libc}/musl/src/setjmp/or1k/longjmp.s | 0 .../libc}/musl/src/setjmp/or1k/setjmp.s | 0 .../libc}/musl/src/setjmp/powerpc/longjmp.S | 0 .../libc}/musl/src/setjmp/powerpc/setjmp.S | 0 .../libc}/musl/src/setjmp/powerpc64/longjmp.s | 0 .../libc}/musl/src/setjmp/powerpc64/setjmp.s | 0 .../libc}/musl/src/setjmp/s390x/longjmp.s | 0 .../libc}/musl/src/setjmp/s390x/setjmp.s | 0 {libc => lib/libc}/musl/src/setjmp/setjmp.c | 0 .../libc}/musl/src/setjmp/sh/longjmp.S | 0 .../libc}/musl/src/setjmp/sh/setjmp.S | 0 .../libc}/musl/src/setjmp/x32/longjmp.s | 0 .../libc}/musl/src/setjmp/x32/setjmp.s | 0 .../libc}/musl/src/setjmp/x86_64/longjmp.s | 0 .../libc}/musl/src/setjmp/x86_64/setjmp.s | 0 .../libc}/musl/src/signal/aarch64/restore.s | 0 .../libc}/musl/src/signal/aarch64/sigsetjmp.s | 0 .../libc}/musl/src/signal/arm/restore.s | 0 .../libc}/musl/src/signal/arm/sigsetjmp.s | 0 {libc => lib/libc}/musl/src/signal/block.c | 0 .../libc}/musl/src/signal/getitimer.c | 0 .../libc}/musl/src/signal/i386/restore.s | 0 .../libc}/musl/src/signal/i386/sigsetjmp.s | 0 {libc => lib/libc}/musl/src/signal/kill.c | 0 {libc => lib/libc}/musl/src/signal/killpg.c | 0 .../libc}/musl/src/signal/m68k/sigsetjmp.s | 0 .../musl/src/signal/microblaze/restore.s | 0 .../musl/src/signal/microblaze/sigsetjmp.s | 0 .../libc}/musl/src/signal/mips/restore.s | 0 .../libc}/musl/src/signal/mips/sigsetjmp.s | 0 .../libc}/musl/src/signal/mips64/restore.s | 0 .../libc}/musl/src/signal/mips64/sigsetjmp.s | 0 .../libc}/musl/src/signal/mipsn32/restore.s | 0 .../libc}/musl/src/signal/mipsn32/sigsetjmp.s | 0 .../libc}/musl/src/signal/or1k/sigsetjmp.s | 0 .../libc}/musl/src/signal/powerpc/restore.s | 0 .../libc}/musl/src/signal/powerpc/sigsetjmp.s | 0 .../libc}/musl/src/signal/powerpc64/restore.s | 0 .../musl/src/signal/powerpc64/sigsetjmp.s | 0 {libc => lib/libc}/musl/src/signal/psiginfo.c | 0 {libc => lib/libc}/musl/src/signal/psignal.c | 0 {libc => lib/libc}/musl/src/signal/raise.c | 0 {libc => lib/libc}/musl/src/signal/restore.c | 0 .../libc}/musl/src/signal/s390x/restore.s | 0 .../libc}/musl/src/signal/s390x/sigsetjmp.s | 0 .../libc}/musl/src/signal/setitimer.c | 0 .../libc}/musl/src/signal/sh/restore.s | 0 .../libc}/musl/src/signal/sh/sigsetjmp.s | 0 .../libc}/musl/src/signal/sigaction.c | 0 .../libc}/musl/src/signal/sigaddset.c | 0 .../libc}/musl/src/signal/sigaltstack.c | 0 .../libc}/musl/src/signal/sigandset.c | 0 .../libc}/musl/src/signal/sigdelset.c | 0 .../libc}/musl/src/signal/sigemptyset.c | 0 .../libc}/musl/src/signal/sigfillset.c | 0 {libc => lib/libc}/musl/src/signal/sighold.c | 0 .../libc}/musl/src/signal/sigignore.c | 0 .../libc}/musl/src/signal/siginterrupt.c | 0 .../libc}/musl/src/signal/sigisemptyset.c | 0 .../libc}/musl/src/signal/sigismember.c | 0 .../libc}/musl/src/signal/siglongjmp.c | 0 {libc => lib/libc}/musl/src/signal/signal.c | 0 {libc => lib/libc}/musl/src/signal/sigorset.c | 0 {libc => lib/libc}/musl/src/signal/sigpause.c | 0 .../libc}/musl/src/signal/sigpending.c | 0 .../libc}/musl/src/signal/sigprocmask.c | 0 {libc => lib/libc}/musl/src/signal/sigqueue.c | 0 {libc => lib/libc}/musl/src/signal/sigrelse.c | 0 {libc => lib/libc}/musl/src/signal/sigrtmax.c | 0 {libc => lib/libc}/musl/src/signal/sigrtmin.c | 0 {libc => lib/libc}/musl/src/signal/sigset.c | 0 .../libc}/musl/src/signal/sigsetjmp.c | 0 .../libc}/musl/src/signal/sigsetjmp_tail.c | 0 .../libc}/musl/src/signal/sigsuspend.c | 0 .../libc}/musl/src/signal/sigtimedwait.c | 0 {libc => lib/libc}/musl/src/signal/sigwait.c | 0 .../libc}/musl/src/signal/sigwaitinfo.c | 0 .../libc}/musl/src/signal/x32/restore.s | 0 .../libc}/musl/src/signal/x32/sigsetjmp.s | 0 .../libc}/musl/src/signal/x86_64/restore.s | 0 .../libc}/musl/src/signal/x86_64/sigsetjmp.s | 0 {libc => lib/libc}/musl/src/stat/__xstat.c | 0 {libc => lib/libc}/musl/src/stat/chmod.c | 0 {libc => lib/libc}/musl/src/stat/fchmod.c | 0 {libc => lib/libc}/musl/src/stat/fchmodat.c | 0 {libc => lib/libc}/musl/src/stat/fstat.c | 0 {libc => lib/libc}/musl/src/stat/fstatat.c | 0 {libc => lib/libc}/musl/src/stat/futimens.c | 0 {libc => lib/libc}/musl/src/stat/futimesat.c | 0 {libc => lib/libc}/musl/src/stat/lchmod.c | 0 {libc => lib/libc}/musl/src/stat/lstat.c | 0 {libc => lib/libc}/musl/src/stat/mkdir.c | 0 {libc => lib/libc}/musl/src/stat/mkdirat.c | 0 {libc => lib/libc}/musl/src/stat/mkfifo.c | 0 {libc => lib/libc}/musl/src/stat/mkfifoat.c | 0 {libc => lib/libc}/musl/src/stat/mknod.c | 0 {libc => lib/libc}/musl/src/stat/mknodat.c | 0 {libc => lib/libc}/musl/src/stat/stat.c | 0 {libc => lib/libc}/musl/src/stat/statvfs.c | 0 {libc => lib/libc}/musl/src/stat/umask.c | 0 {libc => lib/libc}/musl/src/stat/utimensat.c | 0 .../libc}/musl/src/stdio/__fclose_ca.c | 0 {libc => lib/libc}/musl/src/stdio/__fdopen.c | 0 .../libc}/musl/src/stdio/__fmodeflags.c | 0 .../libc}/musl/src/stdio/__fopen_rb_ca.c | 0 .../libc}/musl/src/stdio/__lockfile.c | 0 .../libc}/musl/src/stdio/__overflow.c | 0 .../libc}/musl/src/stdio/__stdio_close.c | 0 .../libc}/musl/src/stdio/__stdio_exit.c | 0 .../libc}/musl/src/stdio/__stdio_read.c | 0 .../libc}/musl/src/stdio/__stdio_seek.c | 0 .../libc}/musl/src/stdio/__stdio_write.c | 0 .../libc}/musl/src/stdio/__stdout_write.c | 0 .../libc}/musl/src/stdio/__string_read.c | 0 {libc => lib/libc}/musl/src/stdio/__toread.c | 0 {libc => lib/libc}/musl/src/stdio/__towrite.c | 0 {libc => lib/libc}/musl/src/stdio/__uflow.c | 0 {libc => lib/libc}/musl/src/stdio/asprintf.c | 0 {libc => lib/libc}/musl/src/stdio/clearerr.c | 0 {libc => lib/libc}/musl/src/stdio/dprintf.c | 0 {libc => lib/libc}/musl/src/stdio/ext.c | 0 {libc => lib/libc}/musl/src/stdio/ext2.c | 0 {libc => lib/libc}/musl/src/stdio/fclose.c | 0 {libc => lib/libc}/musl/src/stdio/feof.c | 0 {libc => lib/libc}/musl/src/stdio/ferror.c | 0 {libc => lib/libc}/musl/src/stdio/fflush.c | 0 {libc => lib/libc}/musl/src/stdio/fgetc.c | 0 {libc => lib/libc}/musl/src/stdio/fgetln.c | 0 {libc => lib/libc}/musl/src/stdio/fgetpos.c | 0 {libc => lib/libc}/musl/src/stdio/fgets.c | 0 {libc => lib/libc}/musl/src/stdio/fgetwc.c | 0 {libc => lib/libc}/musl/src/stdio/fgetws.c | 0 {libc => lib/libc}/musl/src/stdio/fileno.c | 0 {libc => lib/libc}/musl/src/stdio/flockfile.c | 0 {libc => lib/libc}/musl/src/stdio/fmemopen.c | 0 {libc => lib/libc}/musl/src/stdio/fopen.c | 0 .../libc}/musl/src/stdio/fopencookie.c | 0 {libc => lib/libc}/musl/src/stdio/fprintf.c | 0 {libc => lib/libc}/musl/src/stdio/fputc.c | 0 {libc => lib/libc}/musl/src/stdio/fputs.c | 0 {libc => lib/libc}/musl/src/stdio/fputwc.c | 0 {libc => lib/libc}/musl/src/stdio/fputws.c | 0 {libc => lib/libc}/musl/src/stdio/fread.c | 0 {libc => lib/libc}/musl/src/stdio/freopen.c | 0 {libc => lib/libc}/musl/src/stdio/fscanf.c | 0 {libc => lib/libc}/musl/src/stdio/fseek.c | 0 {libc => lib/libc}/musl/src/stdio/fsetpos.c | 0 {libc => lib/libc}/musl/src/stdio/ftell.c | 0 .../libc}/musl/src/stdio/ftrylockfile.c | 0 .../libc}/musl/src/stdio/funlockfile.c | 0 {libc => lib/libc}/musl/src/stdio/fwide.c | 0 {libc => lib/libc}/musl/src/stdio/fwprintf.c | 0 {libc => lib/libc}/musl/src/stdio/fwrite.c | 0 {libc => lib/libc}/musl/src/stdio/fwscanf.c | 0 {libc => lib/libc}/musl/src/stdio/getc.c | 0 {libc => lib/libc}/musl/src/stdio/getc.h | 0 .../libc}/musl/src/stdio/getc_unlocked.c | 0 {libc => lib/libc}/musl/src/stdio/getchar.c | 0 .../libc}/musl/src/stdio/getchar_unlocked.c | 0 {libc => lib/libc}/musl/src/stdio/getdelim.c | 0 {libc => lib/libc}/musl/src/stdio/getline.c | 0 {libc => lib/libc}/musl/src/stdio/gets.c | 0 {libc => lib/libc}/musl/src/stdio/getw.c | 0 {libc => lib/libc}/musl/src/stdio/getwc.c | 0 {libc => lib/libc}/musl/src/stdio/getwchar.c | 0 {libc => lib/libc}/musl/src/stdio/ofl.c | 0 {libc => lib/libc}/musl/src/stdio/ofl_add.c | 0 .../libc}/musl/src/stdio/open_memstream.c | 0 .../libc}/musl/src/stdio/open_wmemstream.c | 0 {libc => lib/libc}/musl/src/stdio/pclose.c | 0 {libc => lib/libc}/musl/src/stdio/perror.c | 0 {libc => lib/libc}/musl/src/stdio/popen.c | 0 {libc => lib/libc}/musl/src/stdio/printf.c | 0 {libc => lib/libc}/musl/src/stdio/putc.c | 0 {libc => lib/libc}/musl/src/stdio/putc.h | 0 .../libc}/musl/src/stdio/putc_unlocked.c | 0 {libc => lib/libc}/musl/src/stdio/putchar.c | 0 .../libc}/musl/src/stdio/putchar_unlocked.c | 0 {libc => lib/libc}/musl/src/stdio/puts.c | 0 {libc => lib/libc}/musl/src/stdio/putw.c | 0 {libc => lib/libc}/musl/src/stdio/putwc.c | 0 {libc => lib/libc}/musl/src/stdio/putwchar.c | 0 {libc => lib/libc}/musl/src/stdio/remove.c | 0 {libc => lib/libc}/musl/src/stdio/rename.c | 0 {libc => lib/libc}/musl/src/stdio/rewind.c | 0 {libc => lib/libc}/musl/src/stdio/scanf.c | 0 {libc => lib/libc}/musl/src/stdio/setbuf.c | 0 {libc => lib/libc}/musl/src/stdio/setbuffer.c | 0 .../libc}/musl/src/stdio/setlinebuf.c | 0 {libc => lib/libc}/musl/src/stdio/setvbuf.c | 0 {libc => lib/libc}/musl/src/stdio/snprintf.c | 0 {libc => lib/libc}/musl/src/stdio/sprintf.c | 0 {libc => lib/libc}/musl/src/stdio/sscanf.c | 0 {libc => lib/libc}/musl/src/stdio/stderr.c | 0 {libc => lib/libc}/musl/src/stdio/stdin.c | 0 {libc => lib/libc}/musl/src/stdio/stdout.c | 0 {libc => lib/libc}/musl/src/stdio/swprintf.c | 0 {libc => lib/libc}/musl/src/stdio/swscanf.c | 0 {libc => lib/libc}/musl/src/stdio/tempnam.c | 0 {libc => lib/libc}/musl/src/stdio/tmpfile.c | 0 {libc => lib/libc}/musl/src/stdio/tmpnam.c | 0 {libc => lib/libc}/musl/src/stdio/ungetc.c | 0 {libc => lib/libc}/musl/src/stdio/ungetwc.c | 0 {libc => lib/libc}/musl/src/stdio/vasprintf.c | 0 {libc => lib/libc}/musl/src/stdio/vdprintf.c | 0 {libc => lib/libc}/musl/src/stdio/vfprintf.c | 0 {libc => lib/libc}/musl/src/stdio/vfscanf.c | 0 {libc => lib/libc}/musl/src/stdio/vfwprintf.c | 0 {libc => lib/libc}/musl/src/stdio/vfwscanf.c | 0 {libc => lib/libc}/musl/src/stdio/vprintf.c | 0 {libc => lib/libc}/musl/src/stdio/vscanf.c | 0 {libc => lib/libc}/musl/src/stdio/vsnprintf.c | 0 {libc => lib/libc}/musl/src/stdio/vsprintf.c | 0 {libc => lib/libc}/musl/src/stdio/vsscanf.c | 0 {libc => lib/libc}/musl/src/stdio/vswprintf.c | 0 {libc => lib/libc}/musl/src/stdio/vswscanf.c | 0 {libc => lib/libc}/musl/src/stdio/vwprintf.c | 0 {libc => lib/libc}/musl/src/stdio/vwscanf.c | 0 {libc => lib/libc}/musl/src/stdio/wprintf.c | 0 {libc => lib/libc}/musl/src/stdio/wscanf.c | 0 {libc => lib/libc}/musl/src/stdlib/abs.c | 0 {libc => lib/libc}/musl/src/stdlib/atof.c | 0 {libc => lib/libc}/musl/src/stdlib/atoi.c | 0 {libc => lib/libc}/musl/src/stdlib/atol.c | 0 {libc => lib/libc}/musl/src/stdlib/atoll.c | 0 {libc => lib/libc}/musl/src/stdlib/bsearch.c | 0 {libc => lib/libc}/musl/src/stdlib/div.c | 0 {libc => lib/libc}/musl/src/stdlib/ecvt.c | 0 {libc => lib/libc}/musl/src/stdlib/fcvt.c | 0 {libc => lib/libc}/musl/src/stdlib/gcvt.c | 0 {libc => lib/libc}/musl/src/stdlib/imaxabs.c | 0 {libc => lib/libc}/musl/src/stdlib/imaxdiv.c | 0 {libc => lib/libc}/musl/src/stdlib/labs.c | 0 {libc => lib/libc}/musl/src/stdlib/ldiv.c | 0 {libc => lib/libc}/musl/src/stdlib/llabs.c | 0 {libc => lib/libc}/musl/src/stdlib/lldiv.c | 0 {libc => lib/libc}/musl/src/stdlib/qsort.c | 0 {libc => lib/libc}/musl/src/stdlib/strtod.c | 0 {libc => lib/libc}/musl/src/stdlib/strtol.c | 0 {libc => lib/libc}/musl/src/stdlib/wcstod.c | 0 {libc => lib/libc}/musl/src/stdlib/wcstol.c | 0 .../musl/src/string/arm/__aeabi_memcpy.s | 0 .../musl/src/string/arm/__aeabi_memset.s | 0 .../libc}/musl/src/string/arm/memcpy.c | 0 .../libc}/musl/src/string/arm/memcpy_le.S | 0 {libc => lib/libc}/musl/src/string/bcmp.c | 0 {libc => lib/libc}/musl/src/string/bcopy.c | 0 {libc => lib/libc}/musl/src/string/bzero.c | 0 .../libc}/musl/src/string/explicit_bzero.c | 0 .../libc}/musl/src/string/i386/memcpy.s | 0 .../libc}/musl/src/string/i386/memmove.s | 0 .../libc}/musl/src/string/i386/memset.s | 0 {libc => lib/libc}/musl/src/string/index.c | 0 {libc => lib/libc}/musl/src/string/memccpy.c | 0 {libc => lib/libc}/musl/src/string/memchr.c | 0 {libc => lib/libc}/musl/src/string/memcmp.c | 0 {libc => lib/libc}/musl/src/string/memcpy.c | 0 {libc => lib/libc}/musl/src/string/memmem.c | 0 {libc => lib/libc}/musl/src/string/memmove.c | 0 {libc => lib/libc}/musl/src/string/mempcpy.c | 0 {libc => lib/libc}/musl/src/string/memrchr.c | 0 {libc => lib/libc}/musl/src/string/memset.c | 0 {libc => lib/libc}/musl/src/string/rindex.c | 0 {libc => lib/libc}/musl/src/string/stpcpy.c | 0 {libc => lib/libc}/musl/src/string/stpncpy.c | 0 .../libc}/musl/src/string/strcasecmp.c | 0 .../libc}/musl/src/string/strcasestr.c | 0 {libc => lib/libc}/musl/src/string/strcat.c | 0 {libc => lib/libc}/musl/src/string/strchr.c | 0 .../libc}/musl/src/string/strchrnul.c | 0 {libc => lib/libc}/musl/src/string/strcmp.c | 0 {libc => lib/libc}/musl/src/string/strcpy.c | 0 {libc => lib/libc}/musl/src/string/strcspn.c | 0 {libc => lib/libc}/musl/src/string/strdup.c | 0 .../libc}/musl/src/string/strerror_r.c | 0 {libc => lib/libc}/musl/src/string/strlcat.c | 0 {libc => lib/libc}/musl/src/string/strlcpy.c | 0 {libc => lib/libc}/musl/src/string/strlen.c | 0 .../libc}/musl/src/string/strncasecmp.c | 0 {libc => lib/libc}/musl/src/string/strncat.c | 0 {libc => lib/libc}/musl/src/string/strncmp.c | 0 {libc => lib/libc}/musl/src/string/strncpy.c | 0 {libc => lib/libc}/musl/src/string/strndup.c | 0 {libc => lib/libc}/musl/src/string/strnlen.c | 0 {libc => lib/libc}/musl/src/string/strpbrk.c | 0 {libc => lib/libc}/musl/src/string/strrchr.c | 0 {libc => lib/libc}/musl/src/string/strsep.c | 0 .../libc}/musl/src/string/strsignal.c | 0 {libc => lib/libc}/musl/src/string/strspn.c | 0 {libc => lib/libc}/musl/src/string/strstr.c | 0 {libc => lib/libc}/musl/src/string/strtok.c | 0 {libc => lib/libc}/musl/src/string/strtok_r.c | 0 .../libc}/musl/src/string/strverscmp.c | 0 {libc => lib/libc}/musl/src/string/swab.c | 0 {libc => lib/libc}/musl/src/string/wcpcpy.c | 0 {libc => lib/libc}/musl/src/string/wcpncpy.c | 0 .../libc}/musl/src/string/wcscasecmp.c | 0 .../libc}/musl/src/string/wcscasecmp_l.c | 0 {libc => lib/libc}/musl/src/string/wcscat.c | 0 {libc => lib/libc}/musl/src/string/wcschr.c | 0 {libc => lib/libc}/musl/src/string/wcscmp.c | 0 {libc => lib/libc}/musl/src/string/wcscpy.c | 0 {libc => lib/libc}/musl/src/string/wcscspn.c | 0 {libc => lib/libc}/musl/src/string/wcsdup.c | 0 {libc => lib/libc}/musl/src/string/wcslen.c | 0 .../libc}/musl/src/string/wcsncasecmp.c | 0 .../libc}/musl/src/string/wcsncasecmp_l.c | 0 {libc => lib/libc}/musl/src/string/wcsncat.c | 0 {libc => lib/libc}/musl/src/string/wcsncmp.c | 0 {libc => lib/libc}/musl/src/string/wcsncpy.c | 0 {libc => lib/libc}/musl/src/string/wcsnlen.c | 0 {libc => lib/libc}/musl/src/string/wcspbrk.c | 0 {libc => lib/libc}/musl/src/string/wcsrchr.c | 0 {libc => lib/libc}/musl/src/string/wcsspn.c | 0 {libc => lib/libc}/musl/src/string/wcsstr.c | 0 {libc => lib/libc}/musl/src/string/wcstok.c | 0 {libc => lib/libc}/musl/src/string/wcswcs.c | 0 {libc => lib/libc}/musl/src/string/wmemchr.c | 0 {libc => lib/libc}/musl/src/string/wmemcmp.c | 0 {libc => lib/libc}/musl/src/string/wmemcpy.c | 0 {libc => lib/libc}/musl/src/string/wmemmove.c | 0 {libc => lib/libc}/musl/src/string/wmemset.c | 0 .../libc}/musl/src/string/x86_64/memcpy.s | 0 .../libc}/musl/src/string/x86_64/memmove.s | 0 .../libc}/musl/src/string/x86_64/memset.s | 0 {libc => lib/libc}/musl/src/temp/__randname.c | 0 {libc => lib/libc}/musl/src/temp/mkdtemp.c | 0 {libc => lib/libc}/musl/src/temp/mkostemp.c | 0 {libc => lib/libc}/musl/src/temp/mkostemps.c | 0 {libc => lib/libc}/musl/src/temp/mkstemp.c | 0 {libc => lib/libc}/musl/src/temp/mkstemps.c | 0 {libc => lib/libc}/musl/src/temp/mktemp.c | 0 .../libc}/musl/src/termios/cfgetospeed.c | 0 .../libc}/musl/src/termios/cfmakeraw.c | 0 .../libc}/musl/src/termios/cfsetospeed.c | 0 {libc => lib/libc}/musl/src/termios/tcdrain.c | 0 {libc => lib/libc}/musl/src/termios/tcflow.c | 0 {libc => lib/libc}/musl/src/termios/tcflush.c | 0 .../libc}/musl/src/termios/tcgetattr.c | 0 .../libc}/musl/src/termios/tcgetsid.c | 0 .../libc}/musl/src/termios/tcsendbreak.c | 0 .../libc}/musl/src/termios/tcsetattr.c | 0 {libc => lib/libc}/musl/src/thread/__lock.c | 0 .../libc}/musl/src/thread/__set_thread_area.c | 0 .../libc}/musl/src/thread/__syscall_cp.c | 0 .../libc}/musl/src/thread/__timedwait.c | 0 .../libc}/musl/src/thread/__tls_get_addr.c | 0 .../libc}/musl/src/thread/__unmapself.c | 0 {libc => lib/libc}/musl/src/thread/__wait.c | 0 .../src/thread/aarch64/__set_thread_area.s | 0 .../musl/src/thread/aarch64/__unmapself.s | 0 .../libc}/musl/src/thread/aarch64/clone.s | 0 .../musl/src/thread/aarch64/syscall_cp.s | 0 .../musl/src/thread/arm/__aeabi_read_tp.s | 0 .../musl/src/thread/arm/__set_thread_area.c | 0 .../libc}/musl/src/thread/arm/__unmapself.s | 0 .../libc}/musl/src/thread/arm/atomics.s | 0 .../libc}/musl/src/thread/arm/clone.s | 0 .../libc}/musl/src/thread/arm/syscall_cp.s | 0 .../libc}/musl/src/thread/call_once.c | 0 {libc => lib/libc}/musl/src/thread/clone.c | 0 .../libc}/musl/src/thread/cnd_broadcast.c | 0 .../libc}/musl/src/thread/cnd_destroy.c | 0 {libc => lib/libc}/musl/src/thread/cnd_init.c | 0 .../libc}/musl/src/thread/cnd_signal.c | 0 .../libc}/musl/src/thread/cnd_timedwait.c | 0 {libc => lib/libc}/musl/src/thread/cnd_wait.c | 0 .../libc}/musl/src/thread/default_attr.c | 0 .../musl/src/thread/i386/__set_thread_area.s | 0 .../libc}/musl/src/thread/i386/__unmapself.s | 0 .../libc}/musl/src/thread/i386/clone.s | 0 .../libc}/musl/src/thread/i386/syscall_cp.s | 0 {libc => lib/libc}/musl/src/thread/i386/tls.s | 0 {libc => lib/libc}/musl/src/thread/lock_ptc.c | 0 .../musl/src/thread/m68k/__m68k_read_tp.s | 0 .../libc}/musl/src/thread/m68k/clone.s | 0 .../libc}/musl/src/thread/m68k/syscall_cp.s | 0 .../src/thread/microblaze/__set_thread_area.s | 0 .../musl/src/thread/microblaze/__unmapself.s | 0 .../libc}/musl/src/thread/microblaze/clone.s | 0 .../musl/src/thread/microblaze/syscall_cp.s | 0 .../libc}/musl/src/thread/mips/__unmapself.s | 0 .../libc}/musl/src/thread/mips/clone.s | 0 .../libc}/musl/src/thread/mips/syscall_cp.s | 0 .../musl/src/thread/mips64/__unmapself.s | 0 .../libc}/musl/src/thread/mips64/clone.s | 0 .../libc}/musl/src/thread/mips64/syscall_cp.s | 0 .../musl/src/thread/mipsn32/__unmapself.s | 0 .../libc}/musl/src/thread/mipsn32/clone.s | 0 .../musl/src/thread/mipsn32/syscall_cp.s | 0 .../libc}/musl/src/thread/mtx_destroy.c | 0 {libc => lib/libc}/musl/src/thread/mtx_init.c | 0 {libc => lib/libc}/musl/src/thread/mtx_lock.c | 0 .../libc}/musl/src/thread/mtx_timedlock.c | 0 .../libc}/musl/src/thread/mtx_trylock.c | 0 .../libc}/musl/src/thread/mtx_unlock.c | 0 .../musl/src/thread/or1k/__set_thread_area.s | 0 .../libc}/musl/src/thread/or1k/__unmapself.s | 0 .../libc}/musl/src/thread/or1k/clone.s | 0 .../libc}/musl/src/thread/or1k/syscall_cp.s | 0 .../src/thread/powerpc/__set_thread_area.s | 0 .../musl/src/thread/powerpc/__unmapself.s | 0 .../libc}/musl/src/thread/powerpc/clone.s | 0 .../musl/src/thread/powerpc/syscall_cp.s | 0 .../src/thread/powerpc64/__set_thread_area.s | 0 .../musl/src/thread/powerpc64/__unmapself.s | 0 .../libc}/musl/src/thread/powerpc64/clone.s | 0 .../musl/src/thread/powerpc64/syscall_cp.s | 0 .../libc}/musl/src/thread/pthread_atfork.c | 0 .../musl/src/thread/pthread_attr_destroy.c | 0 .../libc}/musl/src/thread/pthread_attr_get.c | 0 .../libc}/musl/src/thread/pthread_attr_init.c | 0 .../src/thread/pthread_attr_setdetachstate.c | 0 .../src/thread/pthread_attr_setguardsize.c | 0 .../src/thread/pthread_attr_setinheritsched.c | 0 .../src/thread/pthread_attr_setschedparam.c | 0 .../src/thread/pthread_attr_setschedpolicy.c | 0 .../musl/src/thread/pthread_attr_setscope.c | 0 .../musl/src/thread/pthread_attr_setstack.c | 0 .../src/thread/pthread_attr_setstacksize.c | 0 .../musl/src/thread/pthread_barrier_destroy.c | 0 .../musl/src/thread/pthread_barrier_init.c | 0 .../musl/src/thread/pthread_barrier_wait.c | 0 .../src/thread/pthread_barrierattr_destroy.c | 0 .../src/thread/pthread_barrierattr_init.c | 0 .../thread/pthread_barrierattr_setpshared.c | 0 .../libc}/musl/src/thread/pthread_cancel.c | 0 .../musl/src/thread/pthread_cleanup_push.c | 0 .../musl/src/thread/pthread_cond_broadcast.c | 0 .../musl/src/thread/pthread_cond_destroy.c | 0 .../libc}/musl/src/thread/pthread_cond_init.c | 0 .../musl/src/thread/pthread_cond_signal.c | 0 .../musl/src/thread/pthread_cond_timedwait.c | 0 .../libc}/musl/src/thread/pthread_cond_wait.c | 0 .../src/thread/pthread_condattr_destroy.c | 0 .../musl/src/thread/pthread_condattr_init.c | 0 .../src/thread/pthread_condattr_setclock.c | 0 .../src/thread/pthread_condattr_setpshared.c | 0 .../libc}/musl/src/thread/pthread_create.c | 0 .../libc}/musl/src/thread/pthread_detach.c | 0 .../libc}/musl/src/thread/pthread_equal.c | 0 .../musl/src/thread/pthread_getattr_np.c | 0 .../musl/src/thread/pthread_getconcurrency.c | 0 .../musl/src/thread/pthread_getcpuclockid.c | 0 .../musl/src/thread/pthread_getschedparam.c | 0 .../musl/src/thread/pthread_getspecific.c | 0 .../libc}/musl/src/thread/pthread_join.c | 0 .../musl/src/thread/pthread_key_create.c | 0 .../musl/src/thread/pthread_key_delete.c | 0 .../libc}/musl/src/thread/pthread_kill.c | 0 .../src/thread/pthread_mutex_consistent.c | 0 .../musl/src/thread/pthread_mutex_destroy.c | 0 .../src/thread/pthread_mutex_getprioceiling.c | 0 .../musl/src/thread/pthread_mutex_init.c | 0 .../musl/src/thread/pthread_mutex_lock.c | 0 .../src/thread/pthread_mutex_setprioceiling.c | 0 .../musl/src/thread/pthread_mutex_timedlock.c | 0 .../musl/src/thread/pthread_mutex_trylock.c | 0 .../musl/src/thread/pthread_mutex_unlock.c | 0 .../src/thread/pthread_mutexattr_destroy.c | 0 .../musl/src/thread/pthread_mutexattr_init.c | 0 .../thread/pthread_mutexattr_setprotocol.c | 0 .../src/thread/pthread_mutexattr_setpshared.c | 0 .../src/thread/pthread_mutexattr_setrobust.c | 0 .../src/thread/pthread_mutexattr_settype.c | 0 .../libc}/musl/src/thread/pthread_once.c | 0 .../musl/src/thread/pthread_rwlock_destroy.c | 0 .../musl/src/thread/pthread_rwlock_init.c | 0 .../musl/src/thread/pthread_rwlock_rdlock.c | 0 .../src/thread/pthread_rwlock_timedrdlock.c | 0 .../src/thread/pthread_rwlock_timedwrlock.c | 0 .../src/thread/pthread_rwlock_tryrdlock.c | 0 .../src/thread/pthread_rwlock_trywrlock.c | 0 .../musl/src/thread/pthread_rwlock_unlock.c | 0 .../musl/src/thread/pthread_rwlock_wrlock.c | 0 .../src/thread/pthread_rwlockattr_destroy.c | 0 .../musl/src/thread/pthread_rwlockattr_init.c | 0 .../thread/pthread_rwlockattr_setpshared.c | 0 .../libc}/musl/src/thread/pthread_self.c | 0 .../src/thread/pthread_setattr_default_np.c | 0 .../musl/src/thread/pthread_setcancelstate.c | 0 .../musl/src/thread/pthread_setcanceltype.c | 0 .../musl/src/thread/pthread_setconcurrency.c | 0 .../musl/src/thread/pthread_setname_np.c | 0 .../musl/src/thread/pthread_setschedparam.c | 0 .../musl/src/thread/pthread_setschedprio.c | 0 .../musl/src/thread/pthread_setspecific.c | 0 .../libc}/musl/src/thread/pthread_sigmask.c | 0 .../musl/src/thread/pthread_spin_destroy.c | 0 .../libc}/musl/src/thread/pthread_spin_init.c | 0 .../libc}/musl/src/thread/pthread_spin_lock.c | 0 .../musl/src/thread/pthread_spin_trylock.c | 0 .../musl/src/thread/pthread_spin_unlock.c | 0 .../musl/src/thread/pthread_testcancel.c | 0 .../musl/src/thread/s390x/__set_thread_area.s | 0 .../musl/src/thread/s390x/__tls_get_offset.s | 0 .../libc}/musl/src/thread/s390x/__unmapself.s | 0 .../libc}/musl/src/thread/s390x/clone.s | 0 .../libc}/musl/src/thread/s390x/syscall_cp.s | 0 .../libc}/musl/src/thread/sem_destroy.c | 0 .../libc}/musl/src/thread/sem_getvalue.c | 0 {libc => lib/libc}/musl/src/thread/sem_init.c | 0 {libc => lib/libc}/musl/src/thread/sem_open.c | 0 {libc => lib/libc}/musl/src/thread/sem_post.c | 0 .../libc}/musl/src/thread/sem_timedwait.c | 0 .../libc}/musl/src/thread/sem_trywait.c | 0 .../libc}/musl/src/thread/sem_unlink.c | 0 {libc => lib/libc}/musl/src/thread/sem_wait.c | 0 .../musl/src/thread/sh/__set_thread_area.c | 0 .../libc}/musl/src/thread/sh/__unmapself.c | 0 .../musl/src/thread/sh/__unmapself_mmu.s | 0 .../libc}/musl/src/thread/sh/atomics.s | 0 {libc => lib/libc}/musl/src/thread/sh/clone.s | 0 .../libc}/musl/src/thread/sh/syscall_cp.s | 0 {libc => lib/libc}/musl/src/thread/synccall.c | 0 .../libc}/musl/src/thread/syscall_cp.c | 0 .../libc}/musl/src/thread/thrd_create.c | 0 .../libc}/musl/src/thread/thrd_exit.c | 0 .../libc}/musl/src/thread/thrd_join.c | 0 .../libc}/musl/src/thread/thrd_sleep.c | 0 .../libc}/musl/src/thread/thrd_yield.c | 0 {libc => lib/libc}/musl/src/thread/tls.c | 0 .../libc}/musl/src/thread/tss_create.c | 0 .../libc}/musl/src/thread/tss_delete.c | 0 {libc => lib/libc}/musl/src/thread/tss_set.c | 0 {libc => lib/libc}/musl/src/thread/vmlock.c | 0 .../musl/src/thread/x32/__set_thread_area.s | 0 .../libc}/musl/src/thread/x32/__unmapself.s | 0 .../libc}/musl/src/thread/x32/clone.s | 0 .../libc}/musl/src/thread/x32/syscall_cp.s | 0 .../musl/src/thread/x32/syscall_cp_fixup.c | 0 .../src/thread/x86_64/__set_thread_area.s | 0 .../musl/src/thread/x86_64/__unmapself.s | 0 .../libc}/musl/src/thread/x86_64/clone.s | 0 .../libc}/musl/src/thread/x86_64/syscall_cp.s | 0 {libc => lib/libc}/musl/src/time/__map_file.c | 0 .../libc}/musl/src/time/__month_to_secs.c | 0 .../libc}/musl/src/time/__secs_to_tm.c | 0 .../libc}/musl/src/time/__tm_to_secs.c | 0 {libc => lib/libc}/musl/src/time/__tz.c | 0 .../libc}/musl/src/time/__year_to_secs.c | 0 {libc => lib/libc}/musl/src/time/asctime.c | 0 {libc => lib/libc}/musl/src/time/asctime_r.c | 0 {libc => lib/libc}/musl/src/time/clock.c | 0 .../libc}/musl/src/time/clock_getcpuclockid.c | 0 .../libc}/musl/src/time/clock_getres.c | 0 .../libc}/musl/src/time/clock_gettime.c | 0 .../libc}/musl/src/time/clock_nanosleep.c | 0 .../libc}/musl/src/time/clock_settime.c | 0 {libc => lib/libc}/musl/src/time/ctime.c | 0 {libc => lib/libc}/musl/src/time/ctime_r.c | 0 {libc => lib/libc}/musl/src/time/difftime.c | 0 {libc => lib/libc}/musl/src/time/ftime.c | 0 {libc => lib/libc}/musl/src/time/getdate.c | 0 .../libc}/musl/src/time/gettimeofday.c | 0 {libc => lib/libc}/musl/src/time/gmtime.c | 0 {libc => lib/libc}/musl/src/time/gmtime_r.c | 0 {libc => lib/libc}/musl/src/time/localtime.c | 0 .../libc}/musl/src/time/localtime_r.c | 0 {libc => lib/libc}/musl/src/time/mktime.c | 0 {libc => lib/libc}/musl/src/time/nanosleep.c | 0 {libc => lib/libc}/musl/src/time/strftime.c | 0 {libc => lib/libc}/musl/src/time/strptime.c | 0 {libc => lib/libc}/musl/src/time/time.c | 0 {libc => lib/libc}/musl/src/time/time_impl.h | 0 {libc => lib/libc}/musl/src/time/timegm.c | 0 .../libc}/musl/src/time/timer_create.c | 0 .../libc}/musl/src/time/timer_delete.c | 0 .../libc}/musl/src/time/timer_getoverrun.c | 0 .../libc}/musl/src/time/timer_gettime.c | 0 .../libc}/musl/src/time/timer_settime.c | 0 {libc => lib/libc}/musl/src/time/times.c | 0 .../libc}/musl/src/time/timespec_get.c | 0 {libc => lib/libc}/musl/src/time/utime.c | 0 {libc => lib/libc}/musl/src/time/wcsftime.c | 0 {libc => lib/libc}/musl/src/unistd/_exit.c | 0 {libc => lib/libc}/musl/src/unistd/access.c | 0 {libc => lib/libc}/musl/src/unistd/acct.c | 0 {libc => lib/libc}/musl/src/unistd/alarm.c | 0 {libc => lib/libc}/musl/src/unistd/chdir.c | 0 {libc => lib/libc}/musl/src/unistd/chown.c | 0 {libc => lib/libc}/musl/src/unistd/close.c | 0 {libc => lib/libc}/musl/src/unistd/ctermid.c | 0 {libc => lib/libc}/musl/src/unistd/dup.c | 0 {libc => lib/libc}/musl/src/unistd/dup2.c | 0 {libc => lib/libc}/musl/src/unistd/dup3.c | 0 .../libc}/musl/src/unistd/faccessat.c | 0 {libc => lib/libc}/musl/src/unistd/fchdir.c | 0 {libc => lib/libc}/musl/src/unistd/fchown.c | 0 {libc => lib/libc}/musl/src/unistd/fchownat.c | 0 .../libc}/musl/src/unistd/fdatasync.c | 0 {libc => lib/libc}/musl/src/unistd/fsync.c | 0 .../libc}/musl/src/unistd/ftruncate.c | 0 {libc => lib/libc}/musl/src/unistd/getcwd.c | 0 {libc => lib/libc}/musl/src/unistd/getegid.c | 0 {libc => lib/libc}/musl/src/unistd/geteuid.c | 0 {libc => lib/libc}/musl/src/unistd/getgid.c | 0 .../libc}/musl/src/unistd/getgroups.c | 0 .../libc}/musl/src/unistd/gethostname.c | 0 {libc => lib/libc}/musl/src/unistd/getlogin.c | 0 .../libc}/musl/src/unistd/getlogin_r.c | 0 {libc => lib/libc}/musl/src/unistd/getpgid.c | 0 {libc => lib/libc}/musl/src/unistd/getpgrp.c | 0 {libc => lib/libc}/musl/src/unistd/getpid.c | 0 {libc => lib/libc}/musl/src/unistd/getppid.c | 0 {libc => lib/libc}/musl/src/unistd/getsid.c | 0 {libc => lib/libc}/musl/src/unistd/getuid.c | 0 {libc => lib/libc}/musl/src/unistd/isatty.c | 0 {libc => lib/libc}/musl/src/unistd/lchown.c | 0 {libc => lib/libc}/musl/src/unistd/link.c | 0 {libc => lib/libc}/musl/src/unistd/linkat.c | 0 {libc => lib/libc}/musl/src/unistd/lseek.c | 0 .../libc}/musl/src/unistd/mips/pipe.s | 0 .../libc}/musl/src/unistd/mips64/pipe.s | 0 .../libc}/musl/src/unistd/mipsn32/pipe.s | 0 {libc => lib/libc}/musl/src/unistd/nice.c | 0 {libc => lib/libc}/musl/src/unistd/pause.c | 0 {libc => lib/libc}/musl/src/unistd/pipe.c | 0 {libc => lib/libc}/musl/src/unistd/pipe2.c | 0 .../libc}/musl/src/unistd/posix_close.c | 0 {libc => lib/libc}/musl/src/unistd/pread.c | 0 {libc => lib/libc}/musl/src/unistd/preadv.c | 0 {libc => lib/libc}/musl/src/unistd/pwrite.c | 0 {libc => lib/libc}/musl/src/unistd/pwritev.c | 0 {libc => lib/libc}/musl/src/unistd/read.c | 0 {libc => lib/libc}/musl/src/unistd/readlink.c | 0 .../libc}/musl/src/unistd/readlinkat.c | 0 {libc => lib/libc}/musl/src/unistd/readv.c | 0 {libc => lib/libc}/musl/src/unistd/renameat.c | 0 {libc => lib/libc}/musl/src/unistd/rmdir.c | 0 {libc => lib/libc}/musl/src/unistd/setegid.c | 0 {libc => lib/libc}/musl/src/unistd/seteuid.c | 0 {libc => lib/libc}/musl/src/unistd/setgid.c | 0 {libc => lib/libc}/musl/src/unistd/setpgid.c | 0 {libc => lib/libc}/musl/src/unistd/setpgrp.c | 0 {libc => lib/libc}/musl/src/unistd/setregid.c | 0 .../libc}/musl/src/unistd/setresgid.c | 0 .../libc}/musl/src/unistd/setresuid.c | 0 {libc => lib/libc}/musl/src/unistd/setreuid.c | 0 {libc => lib/libc}/musl/src/unistd/setsid.c | 0 {libc => lib/libc}/musl/src/unistd/setuid.c | 0 {libc => lib/libc}/musl/src/unistd/setxid.c | 0 {libc => lib/libc}/musl/src/unistd/sh/pipe.s | 0 {libc => lib/libc}/musl/src/unistd/sleep.c | 0 {libc => lib/libc}/musl/src/unistd/symlink.c | 0 .../libc}/musl/src/unistd/symlinkat.c | 0 {libc => lib/libc}/musl/src/unistd/sync.c | 0 .../libc}/musl/src/unistd/tcgetpgrp.c | 0 .../libc}/musl/src/unistd/tcsetpgrp.c | 0 {libc => lib/libc}/musl/src/unistd/truncate.c | 0 {libc => lib/libc}/musl/src/unistd/ttyname.c | 0 .../libc}/musl/src/unistd/ttyname_r.c | 0 {libc => lib/libc}/musl/src/unistd/ualarm.c | 0 {libc => lib/libc}/musl/src/unistd/unlink.c | 0 {libc => lib/libc}/musl/src/unistd/unlinkat.c | 0 {libc => lib/libc}/musl/src/unistd/usleep.c | 0 {libc => lib/libc}/musl/src/unistd/write.c | 0 {libc => lib/libc}/musl/src/unistd/writev.c | 0 {libcxx => lib/libcxx}/include/CMakeLists.txt | 0 .../libcxx}/include/__bit_reference | 0 .../libcxx}/include/__bsd_locale_defaults.h | 0 .../libcxx}/include/__bsd_locale_fallbacks.h | 0 {libcxx => lib/libcxx}/include/__config | 0 .../libcxx}/include/__config_site.in | 0 {libcxx => lib/libcxx}/include/__debug | 0 {libcxx => lib/libcxx}/include/__errc | 0 .../libcxx}/include/__functional_03 | 0 .../libcxx}/include/__functional_base | 0 .../libcxx}/include/__functional_base_03 | 0 {libcxx => lib/libcxx}/include/__hash_table | 0 .../libcxx}/include/__libcpp_version | 0 {libcxx => lib/libcxx}/include/__locale | 0 {libcxx => lib/libcxx}/include/__mutex_base | 0 {libcxx => lib/libcxx}/include/__node_handle | 0 {libcxx => lib/libcxx}/include/__nullptr | 0 {libcxx => lib/libcxx}/include/__split_buffer | 0 .../libcxx}/include/__sso_allocator | 0 {libcxx => lib/libcxx}/include/__std_stream | 0 {libcxx => lib/libcxx}/include/__string | 0 .../libcxx}/include/__threading_support | 0 {libcxx => lib/libcxx}/include/__tree | 0 {libcxx => lib/libcxx}/include/__tuple | 0 {libcxx => lib/libcxx}/include/__undef_macros | 0 {libcxx => lib/libcxx}/include/algorithm | 0 {libcxx => lib/libcxx}/include/any | 0 {libcxx => lib/libcxx}/include/array | 0 {libcxx => lib/libcxx}/include/atomic | 0 {libcxx => lib/libcxx}/include/bit | 0 {libcxx => lib/libcxx}/include/bitset | 0 {libcxx => lib/libcxx}/include/cassert | 0 {libcxx => lib/libcxx}/include/ccomplex | 0 {libcxx => lib/libcxx}/include/cctype | 0 {libcxx => lib/libcxx}/include/cerrno | 0 {libcxx => lib/libcxx}/include/cfenv | 0 {libcxx => lib/libcxx}/include/cfloat | 0 {libcxx => lib/libcxx}/include/charconv | 0 {libcxx => lib/libcxx}/include/chrono | 0 {libcxx => lib/libcxx}/include/cinttypes | 0 {libcxx => lib/libcxx}/include/ciso646 | 0 {libcxx => lib/libcxx}/include/climits | 0 {libcxx => lib/libcxx}/include/clocale | 0 {libcxx => lib/libcxx}/include/cmath | 0 {libcxx => lib/libcxx}/include/codecvt | 0 {libcxx => lib/libcxx}/include/compare | 0 {libcxx => lib/libcxx}/include/complex | 0 {libcxx => lib/libcxx}/include/complex.h | 0 .../libcxx}/include/condition_variable | 0 {libcxx => lib/libcxx}/include/csetjmp | 0 {libcxx => lib/libcxx}/include/csignal | 0 {libcxx => lib/libcxx}/include/cstdarg | 0 {libcxx => lib/libcxx}/include/cstdbool | 0 {libcxx => lib/libcxx}/include/cstddef | 0 {libcxx => lib/libcxx}/include/cstdint | 0 {libcxx => lib/libcxx}/include/cstdio | 0 {libcxx => lib/libcxx}/include/cstdlib | 0 {libcxx => lib/libcxx}/include/cstring | 0 {libcxx => lib/libcxx}/include/ctgmath | 0 {libcxx => lib/libcxx}/include/ctime | 0 {libcxx => lib/libcxx}/include/ctype.h | 0 {libcxx => lib/libcxx}/include/cwchar | 0 {libcxx => lib/libcxx}/include/cwctype | 0 {libcxx => lib/libcxx}/include/deque | 0 {libcxx => lib/libcxx}/include/errno.h | 0 {libcxx => lib/libcxx}/include/exception | 0 .../libcxx}/include/experimental/__config | 0 .../libcxx}/include/experimental/__memory | 0 .../libcxx}/include/experimental/algorithm | 0 .../libcxx}/include/experimental/any | 0 .../libcxx}/include/experimental/chrono | 0 .../libcxx}/include/experimental/coroutine | 0 .../libcxx}/include/experimental/deque | 0 .../libcxx}/include/experimental/filesystem | 0 .../libcxx}/include/experimental/forward_list | 0 .../libcxx}/include/experimental/functional | 0 .../libcxx}/include/experimental/iterator | 0 .../libcxx}/include/experimental/list | 0 .../libcxx}/include/experimental/map | 0 .../include/experimental/memory_resource | 0 .../libcxx}/include/experimental/numeric | 0 .../libcxx}/include/experimental/optional | 0 .../include/experimental/propagate_const | 0 .../libcxx}/include/experimental/ratio | 0 .../libcxx}/include/experimental/regex | 0 .../libcxx}/include/experimental/set | 0 .../libcxx}/include/experimental/simd | 0 .../libcxx}/include/experimental/string | 0 .../libcxx}/include/experimental/string_view | 0 .../libcxx}/include/experimental/system_error | 0 .../libcxx}/include/experimental/tuple | 0 .../libcxx}/include/experimental/type_traits | 0 .../include/experimental/unordered_map | 0 .../include/experimental/unordered_set | 0 .../libcxx}/include/experimental/utility | 0 .../libcxx}/include/experimental/vector | 0 {libcxx => lib/libcxx}/include/ext/__hash | 0 {libcxx => lib/libcxx}/include/ext/hash_map | 0 {libcxx => lib/libcxx}/include/ext/hash_set | 0 {libcxx => lib/libcxx}/include/filesystem | 0 {libcxx => lib/libcxx}/include/float.h | 0 {libcxx => lib/libcxx}/include/forward_list | 0 {libcxx => lib/libcxx}/include/fstream | 0 {libcxx => lib/libcxx}/include/functional | 0 {libcxx => lib/libcxx}/include/future | 0 .../libcxx}/include/initializer_list | 0 {libcxx => lib/libcxx}/include/inttypes.h | 0 {libcxx => lib/libcxx}/include/iomanip | 0 {libcxx => lib/libcxx}/include/ios | 0 {libcxx => lib/libcxx}/include/iosfwd | 0 {libcxx => lib/libcxx}/include/iostream | 0 {libcxx => lib/libcxx}/include/istream | 0 {libcxx => lib/libcxx}/include/iterator | 0 {libcxx => lib/libcxx}/include/limits | 0 {libcxx => lib/libcxx}/include/limits.h | 0 {libcxx => lib/libcxx}/include/list | 0 {libcxx => lib/libcxx}/include/locale | 0 {libcxx => lib/libcxx}/include/locale.h | 0 {libcxx => lib/libcxx}/include/map | 0 {libcxx => lib/libcxx}/include/math.h | 0 {libcxx => lib/libcxx}/include/memory | 0 .../libcxx}/include/module.modulemap | 0 {libcxx => lib/libcxx}/include/mutex | 0 {libcxx => lib/libcxx}/include/new | 0 {libcxx => lib/libcxx}/include/numeric | 0 {libcxx => lib/libcxx}/include/optional | 0 {libcxx => lib/libcxx}/include/ostream | 0 {libcxx => lib/libcxx}/include/queue | 0 {libcxx => lib/libcxx}/include/random | 0 {libcxx => lib/libcxx}/include/ratio | 0 {libcxx => lib/libcxx}/include/regex | 0 .../libcxx}/include/scoped_allocator | 0 {libcxx => lib/libcxx}/include/set | 0 {libcxx => lib/libcxx}/include/setjmp.h | 0 {libcxx => lib/libcxx}/include/shared_mutex | 0 {libcxx => lib/libcxx}/include/span | 0 {libcxx => lib/libcxx}/include/sstream | 0 {libcxx => lib/libcxx}/include/stack | 0 {libcxx => lib/libcxx}/include/stdbool.h | 0 {libcxx => lib/libcxx}/include/stddef.h | 0 {libcxx => lib/libcxx}/include/stdexcept | 0 {libcxx => lib/libcxx}/include/stdint.h | 0 {libcxx => lib/libcxx}/include/stdio.h | 0 {libcxx => lib/libcxx}/include/stdlib.h | 0 {libcxx => lib/libcxx}/include/streambuf | 0 {libcxx => lib/libcxx}/include/string | 0 {libcxx => lib/libcxx}/include/string.h | 0 {libcxx => lib/libcxx}/include/string_view | 0 {libcxx => lib/libcxx}/include/strstream | 0 .../include/support/android/locale_bionic.h | 0 .../libcxx}/include/support/fuchsia/xlocale.h | 0 .../libcxx}/include/support/ibm/limits.h | 0 .../include/support/ibm/locale_mgmt_aix.h | 0 .../libcxx}/include/support/ibm/support.h | 0 .../libcxx}/include/support/ibm/xlocale.h | 0 .../libcxx}/include/support/musl/xlocale.h | 0 .../libcxx}/include/support/newlib/xlocale.h | 0 .../include/support/solaris/floatingpoint.h | 0 .../libcxx}/include/support/solaris/wchar.h | 0 .../libcxx}/include/support/solaris/xlocale.h | 0 .../include/support/win32/limits_msvc_win32.h | 0 .../include/support/win32/locale_win32.h | 0 .../support/xlocale/__nop_locale_mgmt.h | 0 .../support/xlocale/__posix_l_fallback.h | 0 .../support/xlocale/__strtonum_fallback.h | 0 .../libcxx}/include/support/xlocale/xlocale.h | 0 {libcxx => lib/libcxx}/include/system_error | 0 {libcxx => lib/libcxx}/include/tgmath.h | 0 {libcxx => lib/libcxx}/include/thread | 0 {libcxx => lib/libcxx}/include/tuple | 0 {libcxx => lib/libcxx}/include/type_traits | 0 {libcxx => lib/libcxx}/include/typeindex | 0 {libcxx => lib/libcxx}/include/typeinfo | 0 {libcxx => lib/libcxx}/include/unordered_map | 0 {libcxx => lib/libcxx}/include/unordered_set | 0 {libcxx => lib/libcxx}/include/utility | 0 {libcxx => lib/libcxx}/include/valarray | 0 {libcxx => lib/libcxx}/include/variant | 0 {libcxx => lib/libcxx}/include/vector | 0 {libcxx => lib/libcxx}/include/version | 0 {libcxx => lib/libcxx}/include/wchar.h | 0 {libcxx => lib/libcxx}/include/wctype.h | 0 .../libunwind}/include/__libunwind_config.h | 0 .../libunwind}/include/libunwind.h | 0 .../include/mach-o/compact_unwind_encoding.h | 0 {libunwind => lib/libunwind}/include/unwind.h | 0 .../libunwind}/src/AddressSpace.hpp | 0 .../libunwind}/src/CompactUnwinder.hpp | 0 .../libunwind}/src/DwarfInstructions.hpp | 0 .../libunwind}/src/DwarfParser.hpp | 0 .../libunwind}/src/EHHeaderParser.hpp | 0 {libunwind => lib/libunwind}/src/RWMutex.hpp | 0 .../libunwind}/src/Registers.hpp | 0 .../libunwind}/src/Unwind-EHABI.cpp | 0 .../libunwind}/src/Unwind-EHABI.h | 0 .../libunwind}/src/Unwind-seh.cpp | 0 .../libunwind}/src/Unwind-sjlj.c | 0 .../libunwind}/src/UnwindCursor.hpp | 0 .../libunwind}/src/UnwindLevel1-gcc-ext.c | 0 .../libunwind}/src/UnwindLevel1.c | 0 .../libunwind}/src/UnwindRegistersRestore.S | 0 .../libunwind}/src/UnwindRegistersSave.S | 0 .../libunwind}/src/Unwind_AppleExtras.cpp | 0 {libunwind => lib/libunwind}/src/assembly.h | 0 {libunwind => lib/libunwind}/src/config.h | 0 {libunwind => lib/libunwind}/src/dwarf2.h | 0 .../libunwind}/src/libunwind.cpp | 0 .../libunwind}/src/libunwind_ext.h | 0 std/fs.zig | 3 +- std/fs/file.zig | 17 +- std/os/windows.zig | 56 +++++-- std/os/windows/bits.zig | 158 ++++++++++++++++++ std/os/windows/ntdll.zig | 15 ++ std/os/windows/status.zig | 5 + 7963 files changed, 237 insertions(+), 36 deletions(-) rename {c_headers => lib/include}/__clang_cuda_builtin_vars.h (100%) rename {c_headers => lib/include}/__clang_cuda_cmath.h (100%) rename {c_headers => lib/include}/__clang_cuda_complex_builtins.h (100%) rename {c_headers => lib/include}/__clang_cuda_device_functions.h (100%) rename {c_headers => lib/include}/__clang_cuda_intrinsics.h (100%) rename {c_headers => lib/include}/__clang_cuda_libdevice_declares.h (100%) rename {c_headers => lib/include}/__clang_cuda_math_forward_declares.h (100%) rename {c_headers => lib/include}/__clang_cuda_runtime_wrapper.h (100%) rename {c_headers => lib/include}/__stddef_max_align_t.h (100%) rename {c_headers => lib/include}/__wmmintrin_aes.h (100%) rename {c_headers => lib/include}/__wmmintrin_pclmul.h (100%) rename {c_headers => lib/include}/adxintrin.h (100%) rename {c_headers => lib/include}/altivec.h (100%) rename {c_headers => lib/include}/ammintrin.h (100%) rename {c_headers => lib/include}/arm64intr.h (100%) rename {c_headers => lib/include}/arm_acle.h (100%) rename {c_headers => lib/include}/arm_fp16.h (100%) rename {c_headers => lib/include}/arm_neon.h (100%) rename {c_headers => lib/include}/armintr.h (100%) rename {c_headers => lib/include}/avx2intrin.h (100%) rename {c_headers => lib/include}/avx512bitalgintrin.h (100%) rename {c_headers => lib/include}/avx512bwintrin.h (100%) rename {c_headers => lib/include}/avx512cdintrin.h (100%) rename {c_headers => lib/include}/avx512dqintrin.h (100%) rename {c_headers => lib/include}/avx512erintrin.h (100%) rename {c_headers => lib/include}/avx512fintrin.h (100%) rename {c_headers => lib/include}/avx512ifmaintrin.h (100%) rename {c_headers => lib/include}/avx512ifmavlintrin.h (100%) rename {c_headers => lib/include}/avx512pfintrin.h (100%) rename {c_headers => lib/include}/avx512vbmi2intrin.h (100%) rename {c_headers => lib/include}/avx512vbmiintrin.h (100%) rename {c_headers => lib/include}/avx512vbmivlintrin.h (100%) rename {c_headers => lib/include}/avx512vlbitalgintrin.h (100%) rename {c_headers => lib/include}/avx512vlbwintrin.h (100%) rename {c_headers => lib/include}/avx512vlcdintrin.h (100%) rename {c_headers => lib/include}/avx512vldqintrin.h (100%) rename {c_headers => lib/include}/avx512vlintrin.h (100%) rename {c_headers => lib/include}/avx512vlvbmi2intrin.h (100%) rename {c_headers => lib/include}/avx512vlvnniintrin.h (100%) rename {c_headers => lib/include}/avx512vnniintrin.h (100%) rename {c_headers => lib/include}/avx512vpopcntdqintrin.h (100%) rename {c_headers => lib/include}/avx512vpopcntdqvlintrin.h (100%) rename {c_headers => lib/include}/avxintrin.h (100%) rename {c_headers => lib/include}/bmi2intrin.h (100%) rename {c_headers => lib/include}/bmiintrin.h (100%) rename {c_headers => lib/include}/cetintrin.h (100%) rename {c_headers => lib/include}/cldemoteintrin.h (100%) rename {c_headers => lib/include}/clflushoptintrin.h (100%) rename {c_headers => lib/include}/clwbintrin.h (100%) rename {c_headers => lib/include}/clzerointrin.h (100%) rename {c_headers => lib/include}/cpuid.h (100%) rename {c_headers => lib/include}/cuda_wrappers/algorithm (100%) rename {c_headers => lib/include}/cuda_wrappers/complex (100%) rename {c_headers => lib/include}/cuda_wrappers/new (100%) rename {c_headers => lib/include}/emmintrin.h (100%) rename {c_headers => lib/include}/f16cintrin.h (100%) rename {c_headers => lib/include}/float.h (100%) rename {c_headers => lib/include}/fma4intrin.h (100%) rename {c_headers => lib/include}/fmaintrin.h (100%) rename {c_headers => lib/include}/fxsrintrin.h (100%) rename {c_headers => lib/include}/gfniintrin.h (100%) rename {c_headers => lib/include}/htmintrin.h (100%) rename {c_headers => lib/include}/htmxlintrin.h (100%) rename {c_headers => lib/include}/ia32intrin.h (100%) rename {c_headers => lib/include}/immintrin.h (100%) rename {c_headers => lib/include}/intrin.h (100%) rename {c_headers => lib/include}/inttypes.h (100%) rename {c_headers => lib/include}/invpcidintrin.h (100%) rename {c_headers => lib/include}/iso646.h (100%) rename {c_headers => lib/include}/limits.h (100%) rename {c_headers => lib/include}/lwpintrin.h (100%) rename {c_headers => lib/include}/lzcntintrin.h (100%) rename {c_headers => lib/include}/mm3dnow.h (100%) rename {c_headers => lib/include}/mm_malloc.h (100%) rename {c_headers => lib/include}/mmintrin.h (100%) rename {c_headers => lib/include}/module.modulemap (100%) rename {c_headers => lib/include}/movdirintrin.h (100%) rename {c_headers => lib/include}/msa.h (100%) rename {c_headers => lib/include}/mwaitxintrin.h (100%) rename {c_headers => lib/include}/nmmintrin.h (100%) rename {c_headers => lib/include}/opencl-c.h (100%) rename {c_headers => lib/include}/pconfigintrin.h (100%) rename {c_headers => lib/include}/pkuintrin.h (100%) rename {c_headers => lib/include}/pmmintrin.h (100%) rename {c_headers => lib/include}/popcntintrin.h (100%) rename {c_headers => lib/include}/prfchwintrin.h (100%) rename {c_headers => lib/include}/ptwriteintrin.h (100%) rename {c_headers => lib/include}/rdseedintrin.h (100%) rename {c_headers => lib/include}/rtmintrin.h (100%) rename {c_headers => lib/include}/s390intrin.h (100%) rename {c_headers => lib/include}/sgxintrin.h (100%) rename {c_headers => lib/include}/shaintrin.h (100%) rename {c_headers => lib/include}/smmintrin.h (100%) rename {c_headers => lib/include}/stdalign.h (100%) rename {c_headers => lib/include}/stdarg.h (100%) rename {c_headers => lib/include}/stdatomic.h (100%) rename {c_headers => lib/include}/stdbool.h (100%) rename {c_headers => lib/include}/stddef.h (100%) rename {c_headers => lib/include}/stdint.h (100%) rename {c_headers => lib/include}/stdnoreturn.h (100%) rename {c_headers => lib/include}/tbmintrin.h (100%) rename {c_headers => lib/include}/tgmath.h (100%) rename {c_headers => lib/include}/tmmintrin.h (100%) rename {c_headers => lib/include}/unwind.h (100%) rename {c_headers => lib/include}/vadefs.h (100%) rename {c_headers => lib/include}/vaesintrin.h (100%) rename {c_headers => lib/include}/varargs.h (100%) rename {c_headers => lib/include}/vecintrin.h (100%) rename {c_headers => lib/include}/vpclmulqdqintrin.h (100%) rename {c_headers => lib/include}/waitpkgintrin.h (100%) rename {c_headers => lib/include}/wbnoinvdintrin.h (100%) rename {c_headers => lib/include}/wmmintrin.h (100%) rename {c_headers => lib/include}/x86intrin.h (100%) rename {c_headers => lib/include}/xmmintrin.h (100%) rename {c_headers => lib/include}/xopintrin.h (100%) rename {c_headers => lib/include}/xsavecintrin.h (100%) rename {c_headers => lib/include}/xsaveintrin.h (100%) rename {c_headers => lib/include}/xsaveoptintrin.h (100%) rename {c_headers => lib/include}/xsavesintrin.h (100%) rename {c_headers => lib/include}/xtestintrin.h (100%) rename {libc => lib/libc}/glibc/abi.txt (100%) rename {libc => lib/libc}/glibc/bits/byteswap.h (100%) rename {libc => lib/libc}/glibc/bits/endian.h (100%) rename {libc => lib/libc}/glibc/bits/floatn-common.h (100%) rename {libc => lib/libc}/glibc/bits/libc-header-start.h (100%) rename {libc => lib/libc}/glibc/bits/long-double.h (100%) rename {libc => lib/libc}/glibc/bits/pthreadtypes.h (100%) rename {libc => lib/libc}/glibc/bits/select.h (100%) rename {libc => lib/libc}/glibc/bits/signum-generic.h (100%) rename {libc => lib/libc}/glibc/bits/stat.h (100%) rename {libc => lib/libc}/glibc/bits/stdint-intn.h (100%) rename {libc => lib/libc}/glibc/bits/stdlib-bsearch.h (100%) rename {libc => lib/libc}/glibc/bits/time64.h (100%) rename {libc => lib/libc}/glibc/bits/timesize.h (100%) rename {libc => lib/libc}/glibc/bits/types/__sigset_t.h (100%) rename {libc => lib/libc}/glibc/bits/types/struct_sched_param.h (100%) rename {libc => lib/libc}/glibc/bits/typesizes.h (100%) rename {libc => lib/libc}/glibc/bits/uintn-identity.h (100%) rename {libc => lib/libc}/glibc/bits/waitflags.h (100%) rename {libc => lib/libc}/glibc/bits/waitstatus.h (100%) rename {libc => lib/libc}/glibc/csu/abi-note.S (100%) rename {libc => lib/libc}/glibc/csu/abi-tag.h (100%) rename {libc => lib/libc}/glibc/csu/elf-init.c (100%) rename {libc => lib/libc}/glibc/debug/stack_chk_fail_local.c (100%) rename {libc => lib/libc}/glibc/elf/elf.h (100%) rename {libc => lib/libc}/glibc/fns.txt (100%) rename {libc => lib/libc}/glibc/include/alloca.h (100%) rename {libc => lib/libc}/glibc/include/bits/cpu-set.h (100%) rename {libc => lib/libc}/glibc/include/bits/statx.h (100%) rename {libc => lib/libc}/glibc/include/bits/stdlib-float.h (100%) rename {libc => lib/libc}/glibc/include/bits/types.h (100%) rename {libc => lib/libc}/glibc/include/bits/types/__locale_t.h (100%) rename {libc => lib/libc}/glibc/include/bits/types/clock_t.h (100%) rename {libc => lib/libc}/glibc/include/bits/types/clockid_t.h (100%) rename {libc => lib/libc}/glibc/include/bits/types/locale_t.h (100%) rename {libc => lib/libc}/glibc/include/bits/types/sig_atomic_t.h (100%) rename {libc => lib/libc}/glibc/include/bits/types/sigset_t.h (100%) rename {libc => lib/libc}/glibc/include/bits/types/struct_itimerspec.h (100%) rename {libc => lib/libc}/glibc/include/bits/types/struct_timespec.h (100%) rename {libc => lib/libc}/glibc/include/bits/types/struct_timeval.h (100%) rename {libc => lib/libc}/glibc/include/bits/types/struct_tm.h (100%) rename {libc => lib/libc}/glibc/include/bits/types/time_t.h (100%) rename {libc => lib/libc}/glibc/include/bits/types/timer_t.h (100%) rename {libc => lib/libc}/glibc/include/config.h (100%) rename {libc => lib/libc}/glibc/include/dso_handle.h (100%) rename {libc => lib/libc}/glibc/include/elf.h (100%) rename {libc => lib/libc}/glibc/include/endian.h (100%) rename {libc => lib/libc}/glibc/include/features.h (100%) rename {libc => lib/libc}/glibc/include/gnu/stubs.h (100%) rename {libc => lib/libc}/glibc/include/libc-modules.h (100%) rename {libc => lib/libc}/glibc/include/libc-pointer-arith.h (100%) rename {libc => lib/libc}/glibc/include/libc-symbols.h (100%) rename {libc => lib/libc}/glibc/include/pthread.h (100%) rename {libc => lib/libc}/glibc/include/signal.h (100%) rename {libc => lib/libc}/glibc/include/stap-probe.h (100%) rename {libc => lib/libc}/glibc/include/stdc-predef.h (100%) rename {libc => lib/libc}/glibc/include/stdlib.h (100%) rename {libc => lib/libc}/glibc/include/sys/cdefs.h (100%) rename {libc => lib/libc}/glibc/include/sys/select.h (100%) rename {libc => lib/libc}/glibc/include/sys/signal.h (100%) rename {libc => lib/libc}/glibc/include/sys/stat.h (100%) rename {libc => lib/libc}/glibc/include/sys/types.h (100%) rename {libc => lib/libc}/glibc/include/syscall.h (100%) rename {libc => lib/libc}/glibc/io/bits/statx.h (100%) rename {libc => lib/libc}/glibc/io/fstat.c (100%) rename {libc => lib/libc}/glibc/io/fstat64.c (100%) rename {libc => lib/libc}/glibc/io/fstatat.c (100%) rename {libc => lib/libc}/glibc/io/fstatat64.c (100%) rename {libc => lib/libc}/glibc/io/lstat.c (100%) rename {libc => lib/libc}/glibc/io/lstat64.c (100%) rename {libc => lib/libc}/glibc/io/mknod.c (100%) rename {libc => lib/libc}/glibc/io/mknodat.c (100%) rename {libc => lib/libc}/glibc/io/stat.c (100%) rename {libc => lib/libc}/glibc/io/stat64.c (100%) rename {libc => lib/libc}/glibc/io/sys/stat.h (100%) rename {libc => lib/libc}/glibc/locale/bits/types/__locale_t.h (100%) rename {libc => lib/libc}/glibc/locale/bits/types/locale_t.h (100%) rename {libc => lib/libc}/glibc/misc/sys/cdefs.h (100%) rename {libc => lib/libc}/glibc/misc/sys/select.h (100%) rename {libc => lib/libc}/glibc/misc/syscall.h (100%) rename {libc => lib/libc}/glibc/nptl/pthread_atfork.c (100%) rename {libc => lib/libc}/glibc/posix/bits/cpu-set.h (100%) rename {libc => lib/libc}/glibc/posix/bits/types.h (100%) rename {libc => lib/libc}/glibc/posix/sys/types.h (100%) rename {libc => lib/libc}/glibc/signal/bits/types/sig_atomic_t.h (100%) rename {libc => lib/libc}/glibc/signal/bits/types/sigset_t.h (100%) rename {libc => lib/libc}/glibc/signal/signal.h (100%) rename {libc => lib/libc}/glibc/signal/sys/signal.h (100%) rename {libc => lib/libc}/glibc/stdlib/alloca.h (100%) rename {libc => lib/libc}/glibc/stdlib/at_quick_exit.c (100%) rename {libc => lib/libc}/glibc/stdlib/atexit.c (100%) rename {libc => lib/libc}/glibc/stdlib/bits/stdlib-float.h (100%) rename {libc => lib/libc}/glibc/stdlib/exit.h (100%) rename {libc => lib/libc}/glibc/stdlib/stdlib.h (100%) rename {libc => lib/libc}/glibc/string/endian.h (100%) rename {libc => lib/libc}/glibc/sysdeps/aarch64/bits/endian.h (100%) rename {libc => lib/libc}/glibc/sysdeps/aarch64/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/aarch64/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/aarch64/dl-sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/aarch64/nptl/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/glibc/sysdeps/aarch64/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/aarch64/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/alpha/bits/endian.h (100%) rename {libc => lib/libc}/glibc/sysdeps/alpha/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/alpha/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/alpha/dl-dtprocnum.h (100%) rename {libc => lib/libc}/glibc/sysdeps/alpha/dl-sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/alpha/nptl/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/glibc/sysdeps/alpha/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/arm/bits/endian.h (100%) rename {libc => lib/libc}/glibc/sysdeps/arm/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/arm/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/arm/dl-sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/arm/nptl/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/glibc/sysdeps/arm/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/arm/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/generic/dl-dtprocnum.h (100%) rename {libc => lib/libc}/glibc/sysdeps/generic/dl-sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/generic/dwarf2.h (100%) rename {libc => lib/libc}/glibc/sysdeps/generic/libc-lock.h (100%) rename {libc => lib/libc}/glibc/sysdeps/generic/symbol-hacks.h (100%) rename {libc => lib/libc}/glibc/sysdeps/generic/sys/syscall.h (100%) rename {libc => lib/libc}/glibc/sysdeps/generic/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/generic/tls.h (100%) rename {libc => lib/libc}/glibc/sysdeps/hppa/bits/endian.h (100%) rename {libc => lib/libc}/glibc/sysdeps/hppa/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/hppa/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/hppa/nptl/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/glibc/sysdeps/hppa/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/hppa/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/htl/bits/pthread.h (100%) rename {libc => lib/libc}/glibc/sysdeps/htl/bits/thread-shared-types.h (100%) rename {libc => lib/libc}/glibc/sysdeps/htl/libc-lockP.h (100%) rename {libc => lib/libc}/glibc/sysdeps/htl/pthread.h (100%) rename {libc => lib/libc}/glibc/sysdeps/i386/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/i386/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/i386/htl/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/glibc/sysdeps/i386/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/i386/symbol-hacks.h (100%) rename {libc => lib/libc}/glibc/sysdeps/i386/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/ia64/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/ia64/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/ia64/dl-dtprocnum.h (100%) rename {libc => lib/libc}/glibc/sysdeps/ia64/dl-sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/ia64/nptl/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/glibc/sysdeps/ia64/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/ia64/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/init_array/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/init_array/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/m68k/bits/endian.h (100%) rename {libc => lib/libc}/glibc/sysdeps/m68k/coldfire/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/m68k/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/m68k/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/m68k/m680x0/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/m68k/nptl/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/glibc/sysdeps/m68k/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/m68k/symbol-hacks.h (100%) rename {libc => lib/libc}/glibc/sysdeps/m68k/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/mach/hurd/bits/stat.h (100%) rename {libc => lib/libc}/glibc/sysdeps/mach/hurd/bits/typesizes.h (100%) rename {libc => lib/libc}/glibc/sysdeps/mach/hurd/dl-sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/mach/hurd/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/mach/i386/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/mach/libc-lock.h (100%) rename {libc => lib/libc}/glibc/sysdeps/mach/sys/syscall.h (100%) rename {libc => lib/libc}/glibc/sysdeps/mach/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/microblaze/bits/endian.h (100%) rename {libc => lib/libc}/glibc/sysdeps/microblaze/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/microblaze/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/microblaze/nptl/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/glibc/sysdeps/microblaze/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/microblaze/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/mips/bits/endian.h (100%) rename {libc => lib/libc}/glibc/sysdeps/mips/dl-dtprocnum.h (100%) rename {libc => lib/libc}/glibc/sysdeps/mips/mips32/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/mips/mips32/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/mips/mips64/n32/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/mips/mips64/n32/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/mips/mips64/n64/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/mips/mips64/n64/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/mips/nptl/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/glibc/sysdeps/mips/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/nptl/bits/pthreadtypes.h (100%) rename {libc => lib/libc}/glibc/sysdeps/nptl/bits/thread-shared-types.h (100%) rename {libc => lib/libc}/glibc/sysdeps/nptl/libc-lock.h (100%) rename {libc => lib/libc}/glibc/sysdeps/nptl/libc-lockP.h (100%) rename {libc => lib/libc}/glibc/sysdeps/nptl/pthread.h (100%) rename {libc => lib/libc}/glibc/sysdeps/powerpc/bits/endian.h (100%) rename {libc => lib/libc}/glibc/sysdeps/powerpc/nptl/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/glibc/sysdeps/powerpc/powerpc32/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/powerpc/powerpc32/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/powerpc/powerpc32/dl-dtprocnum.h (100%) rename {libc => lib/libc}/glibc/sysdeps/powerpc/powerpc32/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/powerpc/powerpc32/symbol-hacks.h (100%) rename {libc => lib/libc}/glibc/sysdeps/powerpc/powerpc32/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/powerpc/powerpc64/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/powerpc/powerpc64/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/powerpc/powerpc64/dl-dtprocnum.h (100%) rename {libc => lib/libc}/glibc/sysdeps/powerpc/powerpc64/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/powerpc/powerpc64/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/powerpc/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/riscv/bits/endian.h (100%) rename {libc => lib/libc}/glibc/sysdeps/riscv/nptl/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/glibc/sysdeps/riscv/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/s390/bits/endian.h (100%) rename {libc => lib/libc}/glibc/sysdeps/s390/nptl/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/glibc/sysdeps/s390/s390-32/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/s390/s390-32/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/s390/s390-32/dl-sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/s390/s390-32/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/s390/s390-32/symbol-hacks.h (100%) rename {libc => lib/libc}/glibc/sysdeps/s390/s390-32/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/s390/s390-64/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/s390/s390-64/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/s390/s390-64/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/s390/s390-64/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/sh/bits/endian.h (100%) rename {libc => lib/libc}/glibc/sysdeps/sh/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/sh/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/sh/nptl/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/glibc/sysdeps/sh/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/sh/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/sparc/bits/endian.h (100%) rename {libc => lib/libc}/glibc/sysdeps/sparc/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/sparc/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/sparc/dl-dtprocnum.h (100%) rename {libc => lib/libc}/glibc/sysdeps/sparc/dl-sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/sparc/nptl/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/glibc/sysdeps/sparc/sparc32/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/sparc/sparc64/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/sparc/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/alpha/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/arm/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/i386/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/mips/mips32/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/mips/mips64/n32/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/mips/mips64/n64/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/mips/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/powerpc/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sh/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/aarch64/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/aarch64/sys/elf.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/aarch64/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/alpha/bits/stat.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/alpha/bits/typesizes.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/alpha/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/alpha/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/arm/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/arm/sys/elf.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/arm/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/bits/stat.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/bits/timex.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/dl-sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/generic/bits/stat.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/generic/bits/typesizes.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/generic/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/hppa/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/hppa/pthread.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/hppa/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/i386/dl-sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/i386/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/i386/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/ia64/bits/endian.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/ia64/bits/stat.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/ia64/dl-sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/ia64/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/ia64/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/include/bits/syscall.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/include/sys/timex.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/m68k/bits/stat.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/m68k/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/m68k/m680x0/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/m68k/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/microblaze/bits/stat.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/microblaze/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/microblaze/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/mips/bits/stat.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/mips/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/mips/mips32/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/powerpc/bits/stat.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/powerpc/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/riscv/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/riscv/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/s390/bits/stat.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/s390/bits/typesizes.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/s390/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/s390/sys/elf.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/sh/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/sh/sh4/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/sh/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/sparc/bits/stat.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/sparc/bits/typesizes.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/sparc/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/sparc/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/sys/syscall.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/sys/timex.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/x86/bits/stat.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/x86/bits/typesizes.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/x86/sys/elf.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/x86_64/kernel-features.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/x86_64/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/unix/x86_64/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/wordsize-32/divdi3-symbol-hacks.h (100%) rename {libc => lib/libc}/glibc/sysdeps/x86/bits/endian.h (100%) rename {libc => lib/libc}/glibc/sysdeps/x86/bits/select.h (100%) rename {libc => lib/libc}/glibc/sysdeps/x86/bits/wordsize.h (100%) rename {libc => lib/libc}/glibc/sysdeps/x86/nptl/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/glibc/sysdeps/x86/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/x86_64/crti.S (100%) rename {libc => lib/libc}/glibc/sysdeps/x86_64/crtn.S (100%) rename {libc => lib/libc}/glibc/sysdeps/x86_64/start.S (100%) rename {libc => lib/libc}/glibc/sysdeps/x86_64/sysdep.h (100%) rename {libc => lib/libc}/glibc/sysdeps/x86_64/x32/symbol-hacks.h (100%) rename {libc => lib/libc}/glibc/sysdeps/x86_64/x32/sysdep.h (100%) rename {libc => lib/libc}/glibc/time/bits/types/clock_t.h (100%) rename {libc => lib/libc}/glibc/time/bits/types/clockid_t.h (100%) rename {libc => lib/libc}/glibc/time/bits/types/struct_itimerspec.h (100%) rename {libc => lib/libc}/glibc/time/bits/types/struct_timespec.h (100%) rename {libc => lib/libc}/glibc/time/bits/types/struct_timeval.h (100%) rename {libc => lib/libc}/glibc/time/bits/types/struct_tm.h (100%) rename {libc => lib/libc}/glibc/time/bits/types/time_t.h (100%) rename {libc => lib/libc}/glibc/time/bits/types/timer_t.h (100%) rename {libc => lib/libc}/glibc/vers.txt (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/auxvec.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/bitsperlong.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/bpf_perf_event.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/byteorder.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/fcntl.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/hwcap.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/kvm.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/kvm_para.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/param.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/perf_regs.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/posix_types.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/ptrace.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/setup.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/sigcontext.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/siginfo.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/signal.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/stat.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/statfs.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/ucontext.h (100%) rename {libc => lib/libc}/include/aarch64-linux-any/asm/unistd.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/endian.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/fcntl.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/fenv.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/floatn.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/fp-fast.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/hwcap.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/ipc.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/link.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/local_lim.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/long-double.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/procfs.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/semaphore.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/setjmp.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/sigstack.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/stat.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/statfs.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/typesizes.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/bits/wordsize.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/fpu_control.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/gnu/lib-names-lp64.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/gnu/stubs-lp64.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/gnu/stubs.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/ieee754.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/sys/elf.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/sys/ptrace.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/sys/ucontext.h (100%) rename {libc => lib/libc}/include/aarch64-linux-gnu/sys/user.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bfd_stdint.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bits/alltypes.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bits/endian.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bits/fenv.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bits/float.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bits/hwcap.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bits/ipc.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bits/limits.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bits/posix.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bits/reg.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bits/sem.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bits/setjmp.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bits/signal.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bits/socket.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bits/stat.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bits/syscall.h (100%) rename {libc => lib/libc}/include/aarch64-linux-musleabi/bits/user.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/auxvec.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/bitsperlong.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/bpf_perf_event.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/byteorder.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/fcntl.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/hwcap.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/kvm.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/kvm_para.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/param.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/perf_regs.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/posix_types.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/ptrace.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/setup.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/sigcontext.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/siginfo.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/signal.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/stat.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/statfs.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/ucontext.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-any/asm/unistd.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/endian.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/fcntl.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/fenv.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/floatn.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/fp-fast.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/hwcap.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/ipc.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/link.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/local_lim.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/long-double.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/procfs.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/semaphore.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/setjmp.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/sigstack.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/stat.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/statfs.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/typesizes.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/bits/wordsize.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/fpu_control.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/gnu/lib-names-lp64_be.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/gnu/stubs-lp64_be.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/gnu/stubs.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/ieee754.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/sys/elf.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/sys/ptrace.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/sys/ucontext.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-gnu/sys/user.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bfd_stdint.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bits/alltypes.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bits/endian.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bits/fenv.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bits/float.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bits/hwcap.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bits/ipc.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bits/limits.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bits/posix.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bits/reg.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bits/sem.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bits/setjmp.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bits/signal.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bits/socket.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bits/stat.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bits/syscall.h (100%) rename {libc => lib/libc}/include/aarch64_be-linux-musl/bits/user.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/auxvec.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/bitsperlong.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/bpf_perf_event.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/errno-base.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/errno.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/fcntl.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/hugetlb_encode.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/int-l64.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/int-ll64.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/ioctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/ioctls.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/ipcbuf.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/kvm_para.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/mman-common.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/mman.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/msgbuf.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/param.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/poll.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/posix_types.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/resource.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/sembuf.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/setup.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/shmbuf.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/shmparam.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/siginfo.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/signal-defs.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/signal.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/socket.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/sockios.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/stat.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/statfs.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/swab.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/termbits.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/termios.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/types.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/ucontext.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm-generic/unistd.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/a.out.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/auxvec.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/bitfield.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/bitsperlong.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/boot.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/bootparam.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/bootx.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/bpf_perf_event.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/break.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/byteorder.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/cachectl.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/cputable.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/debugreg.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/e820.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/eeh.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/elf.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/epapr_hcalls.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/errno.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/fcntl.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/hw_breakpoint.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/hwcap.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/hwcap2.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/inst.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/ioctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/ioctls.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/ipcbuf.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/ist.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/kvm.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/kvm_para.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/kvm_perf.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/ldt.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/mce.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/mman.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/msgbuf.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/msr.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/mtrr.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/nvram.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/opal-prd.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/param.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/perf_event.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/perf_regs.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/poll.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/posix_types.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/posix_types_32.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/posix_types_64.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/posix_types_x32.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/prctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/processor-flags.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/ps3fb.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/ptrace-abi.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/ptrace.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/reg.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/resource.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/sembuf.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/setup.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/sgidefs.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/shmbuf.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/sigcontext.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/sigcontext32.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/siginfo.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/signal.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/socket.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/sockios.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/spu_info.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/stat.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/statfs.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/svm.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/swab.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/syscalls.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/sysmips.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/termbits.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/termios.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/tm.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/types.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/ucontext.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/unistd-common.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/unistd-eabi.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/unistd-oabi.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/unistd.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/unistd_32.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/unistd_64.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/unistd_x32.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/vm86.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/vmx.h (100%) rename {libc => lib/libc}/include/any-linux-any/asm/vsyscall.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/a.out.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/acct.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/adb.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/adfs_fs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/affs_hardblocks.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/agpgart.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/aio_abi.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/am437x-vpfe.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/android/binder.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/apm_bios.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/arcfb.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/arm_sdei.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/aspeed-lpc-ctrl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atalk.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atm.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atm_eni.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atm_he.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atm_idt77105.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atm_nicstar.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atm_tcp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atm_zatm.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atmapi.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atmarp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atmbr2684.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atmclip.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atmdev.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atmioc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atmlec.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atmmpc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atmppp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atmsap.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/atmsvc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/audit.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/auto_dev-ioctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/auto_fs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/auto_fs4.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/auxvec.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ax25.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/b1lli.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/batadv_packet.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/batman_adv.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/baycom.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/bcache.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/bcm933xx_hcs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/bfs_fs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/binfmts.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/blkpg.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/blktrace_api.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/blkzoned.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/bpf.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/bpf_common.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/bpf_perf_event.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/bpfilter.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/bpqether.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/bsg.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/bt-bmc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/btf.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/btrfs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/btrfs_tree.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/byteorder/big_endian.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/byteorder/little_endian.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/caif/caif_socket.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/caif/if_caif.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/can.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/can/bcm.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/can/error.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/can/gw.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/can/netlink.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/can/raw.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/can/vxcan.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/capability.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/capi.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/cciss_defs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/cciss_ioctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/cdrom.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/cec-funcs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/cec.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/cgroupstats.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/chio.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/cifs/cifs_mount.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/cm4000_cs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/cn_proc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/coda.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/coda_psdev.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/coff.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/connector.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/const.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/coresight-stm.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/cramfs_fs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/cryptouser.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/cuda.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/cyclades.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/cycx_cfm.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dcbnl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dccp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/devlink.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dlm.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dlm_device.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dlm_netlink.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dlm_plock.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dlmconstants.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dm-ioctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dm-log-userspace.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dma-buf.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dn.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dqblk_xfs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dvb/audio.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dvb/ca.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dvb/dmx.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dvb/frontend.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dvb/net.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dvb/osd.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dvb/version.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/dvb/video.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/edd.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/efs_fs_sb.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/elf-em.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/elf-fdpic.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/elf.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/elfcore.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/errno.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/errqueue.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/erspan.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ethtool.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/eventpoll.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/fadvise.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/falloc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/fanotify.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/fb.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/fcntl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/fd.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/fdreg.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/fib_rules.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/fiemap.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/filter.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/firewire-cdev.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/firewire-constants.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/flat.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/fou.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/fpga-dfl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/fs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/fsi.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/fsl_hypervisor.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/fsmap.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/fuse.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/futex.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/gameport.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/gen_stats.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/genetlink.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/genwqe/genwqe_card.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/gfs2_ondisk.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/gigaset_dev.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/gpio.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/gsmmux.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/gtp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/hash_info.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/hdlc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/hdlc/ioctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/hdlcdrv.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/hdreg.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/hid.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/hiddev.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/hidraw.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/hpet.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/hsi/cs-protocol.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/hsi/hsi_char.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/hsr_netlink.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/hw_breakpoint.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/hyperv.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/hysdn_if.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/i2c-dev.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/i2c.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/i2o-dev.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/i8k.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/icmp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/icmpv6.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_addr.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_addrlabel.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_alg.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_arcnet.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_arp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_bonding.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_bridge.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_cablemodem.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_eql.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_ether.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_fc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_fddi.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_frad.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_hippi.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_infiniband.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_link.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_ltalk.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_macsec.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_packet.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_phonet.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_plip.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_ppp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_pppol2tp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_pppox.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_slip.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_team.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_tun.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_tunnel.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_vlan.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_x25.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/if_xdp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ife.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/igmp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/iio/events.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/iio/types.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ila.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/in.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/in6.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/in_route.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/inet_diag.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/inotify.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/input-event-codes.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/input.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ioctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ip.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ip6_tunnel.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ip_vs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ipc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ipmi.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ipmi_bmc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ipmi_msgdefs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ipsec.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ipv6.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ipv6_route.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ipx.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/irqnr.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/isdn.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/isdn/capicmd.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/isdn_divertif.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/isdn_ppp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/isdnif.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/iso_fs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ivtv.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ivtvfb.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/jffs2.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/joystick.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/kcm.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/kcmp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/kcov.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/kd.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/kdev_t.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/kernel-page-flags.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/kernel.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/kernelcapi.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/kexec.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/keyboard.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/keyctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/kfd_ioctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/kvm.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/kvm_para.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/l2tp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/libc-compat.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/lightnvm.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/limits.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/lirc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/llc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/loop.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/lp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/lwtunnel.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/magic.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/major.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/map_to_7segment.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/matroxfb.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/max2175.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/mdio.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/media-bus-format.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/media.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/mei.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/membarrier.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/memfd.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/mempolicy.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/meye.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/mic_common.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/mic_ioctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/mii.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/minix_fs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/mman.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/mmc/ioctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/mmtimer.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/module.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/mpls.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/mpls_iptunnel.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/mqueue.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/mroute.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/mroute6.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/msdos_fs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/msg.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/mtio.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/n_r3964.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nbd-netlink.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nbd.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ncsi.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ndctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/neighbour.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/net.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/net_dropmon.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/net_namespace.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/net_tstamp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netconf.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netdevice.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/ipset/ip_set.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/ipset/ip_set_bitmap.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/ipset/ip_set_hash.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/ipset/ip_set_list.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nf_conntrack_common.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nf_conntrack_ftp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nf_conntrack_sctp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nf_conntrack_tcp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nf_conntrack_tuple_common.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nf_log.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nf_nat.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nf_tables.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nf_tables_compat.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nfnetlink.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nfnetlink_acct.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nfnetlink_compat.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nfnetlink_conntrack.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nfnetlink_cthelper.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nfnetlink_cttimeout.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nfnetlink_log.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nfnetlink_osf.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/nfnetlink_queue.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/x_tables.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_AUDIT.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_CHECKSUM.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_CLASSIFY.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_CONNSECMARK.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_CT.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_HMARK.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_IDLETIMER.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_LED.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_LOG.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_NFLOG.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_NFQUEUE.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_SECMARK.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_SYNPROXY.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_TCPOPTSTRIP.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_TEE.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_TPROXY.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_addrtype.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_bpf.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_cgroup.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_cluster.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_comment.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_connbytes.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_connlabel.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_connlimit.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_connmark.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_conntrack.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_cpu.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_dccp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_devgroup.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_dscp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_ecn.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_esp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_hashlimit.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_helper.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_ipcomp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_iprange.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_ipvs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_l2tp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_length.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_limit.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_mac.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_mark.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_multiport.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_nfacct.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_osf.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_owner.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_physdev.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_pkttype.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_policy.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_quota.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_rateest.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_realm.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_recent.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_rpfilter.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_sctp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_set.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_socket.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_state.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_statistic.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_string.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_tcpmss.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_tcpudp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_time.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter/xt_u32.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_arp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_arp/arp_tables.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_arp/arpt_mangle.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebt_802_3.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebt_among.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebt_arp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebt_arpreply.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebt_ip.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebt_ip6.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebt_limit.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebt_log.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebt_mark_m.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebt_mark_t.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebt_nat.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebt_nflog.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebt_pkttype.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebt_redirect.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebt_stp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebt_vlan.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_bridge/ebtables.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_decnet.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv4.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv4/ip_tables.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv4/ipt_CLUSTERIP.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv4/ipt_LOG.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv4/ipt_REJECT.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv4/ipt_ah.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv4/ipt_ecn.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv4/ipt_ttl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv6.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv6/ip6_tables.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv6/ip6t_LOG.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv6/ip6t_NPT.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv6/ip6t_REJECT.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv6/ip6t_ah.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv6/ip6t_frag.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv6/ip6t_hl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv6/ip6t_ipv6header.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv6/ip6t_mh.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv6/ip6t_opts.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv6/ip6t_rt.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netfilter_ipv6/ip6t_srh.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netlink.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netlink_diag.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/netrom.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nfc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nfs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nfs2.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nfs3.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nfs4.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nfs4_mount.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nfs_fs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nfs_idmap.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nfs_mount.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nfsacl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nfsd/cld.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nfsd/debug.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nfsd/export.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nfsd/nfsfh.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nfsd/stats.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nilfs2_api.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nilfs2_ondisk.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nl80211.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nsfs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nubus.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nvme_ioctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/nvram.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/omap3isp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/omapfb.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/oom.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/openvswitch.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/packet_diag.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/param.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/parport.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/patchkey.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/pci.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/pci_regs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/pcitest.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/perf_event.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/personality.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/pfkeyv2.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/pg.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/phantom.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/phonet.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/pkt_cls.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/pkt_sched.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/pktcdvd.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/pmu.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/poll.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/posix_acl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/posix_acl_xattr.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/posix_types.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ppdev.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ppp-comp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ppp-ioctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ppp_defs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/pps.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/pr.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/prctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/psample.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/psci.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/psp-sev.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ptp_clock.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ptrace.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/qemu_fw_cfg.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/qnx4_fs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/qnxtypes.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/qrtr.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/quota.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/radeonfb.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/raid/md_p.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/raid/md_u.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/random.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/raw.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/rds.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/reboot.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/reiserfs_fs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/reiserfs_xattr.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/resource.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/rfkill.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/rio_cm_cdev.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/rio_mport_cdev.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/romfs_fs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/rose.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/route.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/rpmsg.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/rseq.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/rtc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/rtnetlink.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/rxrpc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/scc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/sched.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/sched/types.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/scif_ioctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/screen_info.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/sctp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/sdla.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/seccomp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/securebits.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/sed-opal.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/seg6.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/seg6_genl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/seg6_hmac.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/seg6_iptunnel.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/seg6_local.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/selinux_netlink.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/sem.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/serial.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/serial_core.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/serial_reg.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/serio.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/shm.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/signal.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/signalfd.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/smc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/smc_diag.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/smiapp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/snmp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/sock_diag.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/socket.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/sockios.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/sonet.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/sonypi.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/sound.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/soundcard.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/spi/spidev.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/stat.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/stddef.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/stm.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/string.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/sunrpc/debug.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/suspend_ioctls.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/swab.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/switchtec_ioctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/sync_file.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/synclink.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/sysctl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/sysinfo.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/target_core_user.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/taskstats.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_act/tc_bpf.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_act/tc_connmark.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_act/tc_csum.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_act/tc_defact.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_act/tc_gact.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_act/tc_ife.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_act/tc_ipt.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_act/tc_mirred.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_act/tc_nat.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_act/tc_pedit.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_act/tc_sample.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_act/tc_skbedit.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_act/tc_skbmod.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_act/tc_tunnel_key.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_act/tc_vlan.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_ematch/tc_em_cmp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_ematch/tc_em_ipt.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_ematch/tc_em_meta.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_ematch/tc_em_nbyte.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tc_ematch/tc_em_text.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tcp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tcp_metrics.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tee.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/termios.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/thermal.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/time.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/timerfd.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/times.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/timex.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tiocl.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tipc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tipc_config.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tipc_netlink.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tipc_sockets_diag.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tls.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/toshiba.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tty.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/tty_flags.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/types.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/udf_fs_i.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/udp.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/uhid.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/uinput.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/uio.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/uleds.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/ultrasound.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/un.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/unistd.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/unix_diag.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/usb/audio.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/usb/cdc-wdm.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/usb/cdc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/usb/ch11.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/usb/ch9.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/usb/charger.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/usb/functionfs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/usb/g_printer.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/usb/g_uvc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/usb/gadgetfs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/usb/midi.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/usb/tmc.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/usb/video.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/usbdevice_fs.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/usbip.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/userfaultfd.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/userio.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/utime.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/utsname.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/uuid.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/uvcvideo.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/v4l2-common.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/v4l2-controls.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/v4l2-dv-timings.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/v4l2-mediabus.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/v4l2-subdev.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/vbox_err.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/vbox_vmmdev_types.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/vboxguest.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/version.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/veth.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/vfio.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/vfio_ccw.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/vhost.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/videodev2.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_9p.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_balloon.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_blk.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_config.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_console.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_crypto.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_gpu.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_ids.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_input.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_mmio.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_net.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_pci.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_ring.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_rng.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_scsi.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_types.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/virtio_vsock.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/vm_sockets.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/vm_sockets_diag.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/vmcore.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/vsockmon.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/vt.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/vtpm_proxy.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/wait.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/wanrouter.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/watchdog.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/wimax.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/wimax/i2400m.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/wireless.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/wmi.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/x25.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/xattr.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/xfrm.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/xilinx-v4l2-controls.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/zorro.h (100%) rename {libc => lib/libc}/include/any-linux-any/linux/zorro_ids.h (100%) rename {libc => lib/libc}/include/any-windows-any/GL/gl.h (100%) rename {libc => lib/libc}/include/any-windows-any/GL/glaux.h (100%) rename {libc => lib/libc}/include/any-windows-any/GL/glcorearb.h (100%) rename {libc => lib/libc}/include/any-windows-any/GL/glext.h (100%) rename {libc => lib/libc}/include/any-windows-any/GL/glu.h (100%) rename {libc => lib/libc}/include/any-windows-any/GL/glxext.h (100%) rename {libc => lib/libc}/include/any-windows-any/GL/wglext.h (100%) rename {libc => lib/libc}/include/any-windows-any/_bsd_types.h (100%) rename {libc => lib/libc}/include/any-windows-any/_cygwin.h (100%) rename {libc => lib/libc}/include/any-windows-any/_dbdao.h (100%) rename {libc => lib/libc}/include/any-windows-any/_mingw.h (100%) rename {libc => lib/libc}/include/any-windows-any/_mingw_dxhelper.h (100%) rename {libc => lib/libc}/include/any-windows-any/_mingw_mac.h (100%) rename {libc => lib/libc}/include/any-windows-any/_mingw_off_t.h (100%) rename {libc => lib/libc}/include/any-windows-any/_mingw_print_pop.h (100%) rename {libc => lib/libc}/include/any-windows-any/_mingw_print_push.h (100%) rename {libc => lib/libc}/include/any-windows-any/_mingw_secapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/_mingw_stat64.h (100%) rename {libc => lib/libc}/include/any-windows-any/_mingw_stdarg.h (100%) rename {libc => lib/libc}/include/any-windows-any/_mingw_unicode.h (100%) rename {libc => lib/libc}/include/any-windows-any/_timeval.h (100%) rename {libc => lib/libc}/include/any-windows-any/accctrl.h (100%) rename {libc => lib/libc}/include/any-windows-any/aclapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/aclui.h (100%) rename {libc => lib/libc}/include/any-windows-any/activation.h (100%) rename {libc => lib/libc}/include/any-windows-any/activaut.h (100%) rename {libc => lib/libc}/include/any-windows-any/activdbg.h (100%) rename {libc => lib/libc}/include/any-windows-any/activdbg100.h (100%) rename {libc => lib/libc}/include/any-windows-any/activecf.h (100%) rename {libc => lib/libc}/include/any-windows-any/activeds.h (100%) rename {libc => lib/libc}/include/any-windows-any/activprof.h (100%) rename {libc => lib/libc}/include/any-windows-any/activscp.h (100%) rename {libc => lib/libc}/include/any-windows-any/adc.h (100%) rename {libc => lib/libc}/include/any-windows-any/adhoc.h (100%) rename {libc => lib/libc}/include/any-windows-any/admex.h (100%) rename {libc => lib/libc}/include/any-windows-any/adoctint.h (100%) rename {libc => lib/libc}/include/any-windows-any/adodef.h (100%) rename {libc => lib/libc}/include/any-windows-any/adogpool.h (100%) rename {libc => lib/libc}/include/any-windows-any/adogpool_backcompat.h (100%) rename {libc => lib/libc}/include/any-windows-any/adoguids.h (100%) rename {libc => lib/libc}/include/any-windows-any/adoid.h (100%) rename {libc => lib/libc}/include/any-windows-any/adoint.h (100%) rename {libc => lib/libc}/include/any-windows-any/adoint_backcompat.h (100%) rename {libc => lib/libc}/include/any-windows-any/adojet.h (100%) rename {libc => lib/libc}/include/any-windows-any/adomd.h (100%) rename {libc => lib/libc}/include/any-windows-any/adptif.h (100%) rename {libc => lib/libc}/include/any-windows-any/adsdb.h (100%) rename {libc => lib/libc}/include/any-windows-any/adserr.h (100%) rename {libc => lib/libc}/include/any-windows-any/adshlp.h (100%) rename {libc => lib/libc}/include/any-windows-any/adsiid.h (100%) rename {libc => lib/libc}/include/any-windows-any/adsnms.h (100%) rename {libc => lib/libc}/include/any-windows-any/adsprop.h (100%) rename {libc => lib/libc}/include/any-windows-any/adssts.h (100%) rename {libc => lib/libc}/include/any-windows-any/adtgen.h (100%) rename {libc => lib/libc}/include/any-windows-any/advpub.h (100%) rename {libc => lib/libc}/include/any-windows-any/af_irda.h (100%) rename {libc => lib/libc}/include/any-windows-any/afxres.h (100%) rename {libc => lib/libc}/include/any-windows-any/agtctl.h (100%) rename {libc => lib/libc}/include/any-windows-any/agterr.h (100%) rename {libc => lib/libc}/include/any-windows-any/agtsvr.h (100%) rename {libc => lib/libc}/include/any-windows-any/alg.h (100%) rename {libc => lib/libc}/include/any-windows-any/alink.h (100%) rename {libc => lib/libc}/include/any-windows-any/amaudio.h (100%) rename {libc => lib/libc}/include/any-windows-any/amstream.h (100%) rename {libc => lib/libc}/include/any-windows-any/amstream.idl (100%) rename {libc => lib/libc}/include/any-windows-any/amvideo.h (100%) rename {libc => lib/libc}/include/any-windows-any/amvideo.idl (100%) rename {libc => lib/libc}/include/any-windows-any/apdevpkey.h (100%) rename {libc => lib/libc}/include/any-windows-any/apiset.h (100%) rename {libc => lib/libc}/include/any-windows-any/apisetcconv.h (100%) rename {libc => lib/libc}/include/any-windows-any/appmgmt.h (100%) rename {libc => lib/libc}/include/any-windows-any/aqadmtyp.h (100%) rename {libc => lib/libc}/include/any-windows-any/asptlb.h (100%) rename {libc => lib/libc}/include/any-windows-any/assert.h (100%) rename {libc => lib/libc}/include/any-windows-any/atacct.h (100%) rename {libc => lib/libc}/include/any-windows-any/atalkwsh.h (100%) rename {libc => lib/libc}/include/any-windows-any/atsmedia.h (100%) rename {libc => lib/libc}/include/any-windows-any/audevcod.h (100%) rename {libc => lib/libc}/include/any-windows-any/audioapotypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/audioclient.h (100%) rename {libc => lib/libc}/include/any-windows-any/audioendpoints.h (100%) rename {libc => lib/libc}/include/any-windows-any/audioengineendpoint.h (100%) rename {libc => lib/libc}/include/any-windows-any/audiopolicy.h (100%) rename {libc => lib/libc}/include/any-windows-any/audiosessiontypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/austream.h (100%) rename {libc => lib/libc}/include/any-windows-any/austream.idl (100%) rename {libc => lib/libc}/include/any-windows-any/authif.h (100%) rename {libc => lib/libc}/include/any-windows-any/authz.h (100%) rename {libc => lib/libc}/include/any-windows-any/aux_ulib.h (100%) rename {libc => lib/libc}/include/any-windows-any/avifmt.h (100%) rename {libc => lib/libc}/include/any-windows-any/aviriff.h (100%) rename {libc => lib/libc}/include/any-windows-any/avrfsdk.h (100%) rename {libc => lib/libc}/include/any-windows-any/avrt.h (100%) rename {libc => lib/libc}/include/any-windows-any/axextendenums.h (100%) rename {libc => lib/libc}/include/any-windows-any/azroles.h (100%) rename {libc => lib/libc}/include/any-windows-any/basetsd.h (100%) rename {libc => lib/libc}/include/any-windows-any/basetyps.h (100%) rename {libc => lib/libc}/include/any-windows-any/batclass.h (100%) rename {libc => lib/libc}/include/any-windows-any/bcrypt.h (100%) rename {libc => lib/libc}/include/any-windows-any/bdaiface.h (100%) rename {libc => lib/libc}/include/any-windows-any/bdaiface_enums.h (100%) rename {libc => lib/libc}/include/any-windows-any/bdamedia.h (100%) rename {libc => lib/libc}/include/any-windows-any/bdatypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/bemapiset.h (100%) rename {libc => lib/libc}/include/any-windows-any/bh.h (100%) rename {libc => lib/libc}/include/any-windows-any/bidispl.h (100%) rename {libc => lib/libc}/include/any-windows-any/bits.h (100%) rename {libc => lib/libc}/include/any-windows-any/bits1_5.h (100%) rename {libc => lib/libc}/include/any-windows-any/bits2_0.h (100%) rename {libc => lib/libc}/include/any-windows-any/bitscfg.h (100%) rename {libc => lib/libc}/include/any-windows-any/bitsmsg.h (100%) rename {libc => lib/libc}/include/any-windows-any/blberr.h (100%) rename {libc => lib/libc}/include/any-windows-any/bluetoothapis.h (100%) rename {libc => lib/libc}/include/any-windows-any/bthdef.h (100%) rename {libc => lib/libc}/include/any-windows-any/bthsdpdef.h (100%) rename {libc => lib/libc}/include/any-windows-any/bugcodes.h (100%) rename {libc => lib/libc}/include/any-windows-any/callobj.h (100%) rename {libc => lib/libc}/include/any-windows-any/cardmod.h (100%) rename {libc => lib/libc}/include/any-windows-any/casetup.h (100%) rename {libc => lib/libc}/include/any-windows-any/cchannel.h (100%) rename {libc => lib/libc}/include/any-windows-any/cderr.h (100%) rename {libc => lib/libc}/include/any-windows-any/cdoex.h (100%) rename {libc => lib/libc}/include/any-windows-any/cdoexerr.h (100%) rename {libc => lib/libc}/include/any-windows-any/cdoexm.h (100%) rename {libc => lib/libc}/include/any-windows-any/cdoexstr.h (100%) rename {libc => lib/libc}/include/any-windows-any/cdonts.h (100%) rename {libc => lib/libc}/include/any-windows-any/cdosys.h (100%) rename {libc => lib/libc}/include/any-windows-any/cdosyserr.h (100%) rename {libc => lib/libc}/include/any-windows-any/cdosysstr.h (100%) rename {libc => lib/libc}/include/any-windows-any/celib.h (100%) rename {libc => lib/libc}/include/any-windows-any/certadm.h (100%) rename {libc => lib/libc}/include/any-windows-any/certbase.h (100%) rename {libc => lib/libc}/include/any-windows-any/certbcli.h (100%) rename {libc => lib/libc}/include/any-windows-any/certcli.h (100%) rename {libc => lib/libc}/include/any-windows-any/certenc.h (100%) rename {libc => lib/libc}/include/any-windows-any/certenroll.h (100%) rename {libc => lib/libc}/include/any-windows-any/certexit.h (100%) rename {libc => lib/libc}/include/any-windows-any/certif.h (100%) rename {libc => lib/libc}/include/any-windows-any/certmod.h (100%) rename {libc => lib/libc}/include/any-windows-any/certpol.h (100%) rename {libc => lib/libc}/include/any-windows-any/certreqd.h (100%) rename {libc => lib/libc}/include/any-windows-any/certsrv.h (100%) rename {libc => lib/libc}/include/any-windows-any/certview.h (100%) rename {libc => lib/libc}/include/any-windows-any/cfg.h (100%) rename {libc => lib/libc}/include/any-windows-any/cfgmgr32.h (100%) rename {libc => lib/libc}/include/any-windows-any/cguid.h (100%) rename {libc => lib/libc}/include/any-windows-any/chanmgr.h (100%) rename {libc => lib/libc}/include/any-windows-any/cierror.h (100%) rename {libc => lib/libc}/include/any-windows-any/clfs.h (100%) rename {libc => lib/libc}/include/any-windows-any/clfsmgmt.h (100%) rename {libc => lib/libc}/include/any-windows-any/clfsmgmtw32.h (100%) rename {libc => lib/libc}/include/any-windows-any/clfsw32.h (100%) rename {libc => lib/libc}/include/any-windows-any/cluadmex.h (100%) rename {libc => lib/libc}/include/any-windows-any/clusapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/cluscfgguids.h (100%) rename {libc => lib/libc}/include/any-windows-any/cluscfgserver.h (100%) rename {libc => lib/libc}/include/any-windows-any/cluscfgwizard.h (100%) rename {libc => lib/libc}/include/any-windows-any/cmdtree.h (100%) rename {libc => lib/libc}/include/any-windows-any/cmnquery.h (100%) rename {libc => lib/libc}/include/any-windows-any/codecapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/color.dlg (100%) rename {libc => lib/libc}/include/any-windows-any/colordlg.h (100%) rename {libc => lib/libc}/include/any-windows-any/comadmin.h (100%) rename {libc => lib/libc}/include/any-windows-any/combaseapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/comcat.h (100%) rename {libc => lib/libc}/include/any-windows-any/comdef.h (100%) rename {libc => lib/libc}/include/any-windows-any/comdefsp.h (100%) rename {libc => lib/libc}/include/any-windows-any/comip.h (100%) rename {libc => lib/libc}/include/any-windows-any/comlite.h (100%) rename {libc => lib/libc}/include/any-windows-any/commapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/commctrl.h (100%) rename {libc => lib/libc}/include/any-windows-any/commctrl.rh (100%) rename {libc => lib/libc}/include/any-windows-any/commdlg.h (100%) rename {libc => lib/libc}/include/any-windows-any/common.ver (100%) rename {libc => lib/libc}/include/any-windows-any/commoncontrols.h (100%) rename {libc => lib/libc}/include/any-windows-any/complex.h (100%) rename {libc => lib/libc}/include/any-windows-any/compobj.h (100%) rename {libc => lib/libc}/include/any-windows-any/compressapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/compstui.h (100%) rename {libc => lib/libc}/include/any-windows-any/comsvcs.h (100%) rename {libc => lib/libc}/include/any-windows-any/comutil.h (100%) rename {libc => lib/libc}/include/any-windows-any/confpriv.h (100%) rename {libc => lib/libc}/include/any-windows-any/conio.h (100%) rename {libc => lib/libc}/include/any-windows-any/control.h (100%) rename {libc => lib/libc}/include/any-windows-any/cor.h (100%) rename {libc => lib/libc}/include/any-windows-any/corecrt_startup.h (100%) rename {libc => lib/libc}/include/any-windows-any/corerror.h (100%) rename {libc => lib/libc}/include/any-windows-any/corhdr.h (100%) rename {libc => lib/libc}/include/any-windows-any/correg.h (100%) rename {libc => lib/libc}/include/any-windows-any/cpl.h (100%) rename {libc => lib/libc}/include/any-windows-any/cplext.h (100%) rename {libc => lib/libc}/include/any-windows-any/credssp.h (100%) rename {libc => lib/libc}/include/any-windows-any/crtdbg.h (100%) rename {libc => lib/libc}/include/any-windows-any/crtdefs.h (100%) rename {libc => lib/libc}/include/any-windows-any/cryptuiapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/cryptxml.h (100%) rename {libc => lib/libc}/include/any-windows-any/cscapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/cscobj.h (100%) rename {libc => lib/libc}/include/any-windows-any/ctfutb.h (100%) rename {libc => lib/libc}/include/any-windows-any/ctxtcall.h (100%) rename {libc => lib/libc}/include/any-windows-any/ctype.h (100%) rename {libc => lib/libc}/include/any-windows-any/custcntl.h (100%) rename {libc => lib/libc}/include/any-windows-any/d2d1.h (100%) rename {libc => lib/libc}/include/any-windows-any/d2d1_1.h (100%) rename {libc => lib/libc}/include/any-windows-any/d2d1_1helper.h (100%) rename {libc => lib/libc}/include/any-windows-any/d2d1effectauthor.h (100%) rename {libc => lib/libc}/include/any-windows-any/d2d1effecthelpers.h (100%) rename {libc => lib/libc}/include/any-windows-any/d2d1effects.h (100%) rename {libc => lib/libc}/include/any-windows-any/d2d1helper.h (100%) rename {libc => lib/libc}/include/any-windows-any/d2dbasetypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/d2derr.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d10.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d10.idl (100%) rename {libc => lib/libc}/include/any-windows-any/d3d10_1.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d10_1.idl (100%) rename {libc => lib/libc}/include/any-windows-any/d3d10_1shader.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d10effect.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d10misc.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d10sdklayers.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d10sdklayers.idl (100%) rename {libc => lib/libc}/include/any-windows-any/d3d10shader.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d11.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d11.idl (100%) rename {libc => lib/libc}/include/any-windows-any/d3d11_1.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d11_1.idl (100%) rename {libc => lib/libc}/include/any-windows-any/d3d11_2.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d11_2.idl (100%) rename {libc => lib/libc}/include/any-windows-any/d3d11_3.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d11_3.idl (100%) rename {libc => lib/libc}/include/any-windows-any/d3d11_4.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d11_4.idl (100%) rename {libc => lib/libc}/include/any-windows-any/d3d11sdklayers.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d11sdklayers.idl (100%) rename {libc => lib/libc}/include/any-windows-any/d3d11shader.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d8.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d8caps.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d8types.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d9.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d9caps.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3d9types.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3dcaps.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3dcommon.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3dcommon.idl (100%) rename {libc => lib/libc}/include/any-windows-any/d3dcompiler.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3dhal.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3drm.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3drmdef.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3drmobj.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3dtypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3dvec.inl (100%) rename {libc => lib/libc}/include/any-windows-any/d3dx9.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3dx9anim.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3dx9core.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3dx9effect.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3dx9math.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3dx9math.inl (100%) rename {libc => lib/libc}/include/any-windows-any/d3dx9mesh.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3dx9shader.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3dx9shape.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3dx9tex.h (100%) rename {libc => lib/libc}/include/any-windows-any/d3dx9xof.h (100%) rename {libc => lib/libc}/include/any-windows-any/daogetrw.h (100%) rename {libc => lib/libc}/include/any-windows-any/datapath.h (100%) rename {libc => lib/libc}/include/any-windows-any/datetimeapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/davclnt.h (100%) rename {libc => lib/libc}/include/any-windows-any/dbdaoerr.h (100%) rename {libc => lib/libc}/include/any-windows-any/dbdaoid.h (100%) rename {libc => lib/libc}/include/any-windows-any/dbdaoint.h (100%) rename {libc => lib/libc}/include/any-windows-any/dbgautoattach.h (100%) rename {libc => lib/libc}/include/any-windows-any/dbgeng.h (100%) rename {libc => lib/libc}/include/any-windows-any/dbghelp.h (100%) rename {libc => lib/libc}/include/any-windows-any/dbgprop.h (100%) rename {libc => lib/libc}/include/any-windows-any/dbt.h (100%) rename {libc => lib/libc}/include/any-windows-any/dciddi.h (100%) rename {libc => lib/libc}/include/any-windows-any/dciman.h (100%) rename {libc => lib/libc}/include/any-windows-any/dcommon.h (100%) rename {libc => lib/libc}/include/any-windows-any/dcomp.h (100%) rename {libc => lib/libc}/include/any-windows-any/dcompanimation.h (100%) rename {libc => lib/libc}/include/any-windows-any/dcomptypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/dde.h (100%) rename {libc => lib/libc}/include/any-windows-any/dde.rh (100%) rename {libc => lib/libc}/include/any-windows-any/ddeml.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/acpiioct.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/afilter.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/amtvuids.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/atm.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/bdasup.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/classpnp.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/csq.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/d3dhal.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/d3dhalex.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/d4drvif.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/d4iface.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/dderror.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/dmusicks.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/drivinit.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/drmk.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/dxapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/fltsafe.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/hidclass.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/hubbusif.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/ide.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/ioaccess.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/kbdmou.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/mcd.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/mce.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/miniport.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/minitape.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/mountdev.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/mountmgr.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/msports.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/ndis.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/ndisguid.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/ndistapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/ndiswan.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/netpnp.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/ntagp.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/ntddk.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/ntddpcm.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/ntddsnd.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/ntifs.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/ntimage.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/ntnls.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/ntpoapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/ntstrsafe.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/oprghdlr.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/parallel.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/pfhook.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/poclass.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/portcls.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/punknown.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/scsi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/scsiscan.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/scsiwmi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/smbus.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/srb.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/stdunk.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/storport.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/strmini.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/swenum.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/tdikrnl.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/tdistat.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/upssvc.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/usbbusif.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/usbdlib.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/usbdrivr.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/usbkern.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/usbprint.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/usbprotocoldefs.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/usbscan.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/usbstorioctl.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/video.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/videoagp.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/wdm.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/wdmguid.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/wmidata.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/wmilib.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/ws2san.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddk/xfilter.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddraw.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddrawgdi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddrawi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddstream.h (100%) rename {libc => lib/libc}/include/any-windows-any/ddstream.idl (100%) rename {libc => lib/libc}/include/any-windows-any/debugapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/delayimp.h (100%) rename {libc => lib/libc}/include/any-windows-any/devguid.h (100%) rename {libc => lib/libc}/include/any-windows-any/devicetopology.h (100%) rename {libc => lib/libc}/include/any-windows-any/devioctl.h (100%) rename {libc => lib/libc}/include/any-windows-any/devpkey.h (100%) rename {libc => lib/libc}/include/any-windows-any/devpropdef.h (100%) rename {libc => lib/libc}/include/any-windows-any/dhcpcsdk.h (100%) rename {libc => lib/libc}/include/any-windows-any/dhcpsapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/dhcpssdk.h (100%) rename {libc => lib/libc}/include/any-windows-any/dhcpv6csdk.h (100%) rename {libc => lib/libc}/include/any-windows-any/dhtmldid.h (100%) rename {libc => lib/libc}/include/any-windows-any/dhtmled.h (100%) rename {libc => lib/libc}/include/any-windows-any/dhtmliid.h (100%) rename {libc => lib/libc}/include/any-windows-any/digitalv.h (100%) rename {libc => lib/libc}/include/any-windows-any/dimm.h (100%) rename {libc => lib/libc}/include/any-windows-any/dinput.h (100%) rename {libc => lib/libc}/include/any-windows-any/dir.h (100%) rename {libc => lib/libc}/include/any-windows-any/direct.h (100%) rename {libc => lib/libc}/include/any-windows-any/dirent.h (100%) rename {libc => lib/libc}/include/any-windows-any/diskguid.h (100%) rename {libc => lib/libc}/include/any-windows-any/dispatch.h (100%) rename {libc => lib/libc}/include/any-windows-any/dispdib.h (100%) rename {libc => lib/libc}/include/any-windows-any/dispex.h (100%) rename {libc => lib/libc}/include/any-windows-any/dlcapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/dlgs.h (100%) rename {libc => lib/libc}/include/any-windows-any/dls1.h (100%) rename {libc => lib/libc}/include/any-windows-any/dls2.h (100%) rename {libc => lib/libc}/include/any-windows-any/dmdls.h (100%) rename {libc => lib/libc}/include/any-windows-any/dmemmgr.h (100%) rename {libc => lib/libc}/include/any-windows-any/dmerror.h (100%) rename {libc => lib/libc}/include/any-windows-any/dmksctrl.h (100%) rename {libc => lib/libc}/include/any-windows-any/dmo.h (100%) rename {libc => lib/libc}/include/any-windows-any/dmodshow.h (100%) rename {libc => lib/libc}/include/any-windows-any/dmodshow.idl (100%) rename {libc => lib/libc}/include/any-windows-any/dmoreg.h (100%) rename {libc => lib/libc}/include/any-windows-any/dmort.h (100%) rename {libc => lib/libc}/include/any-windows-any/dmplugin.h (100%) rename {libc => lib/libc}/include/any-windows-any/dmusbuff.h (100%) rename {libc => lib/libc}/include/any-windows-any/dmusicc.h (100%) rename {libc => lib/libc}/include/any-windows-any/dmusicf.h (100%) rename {libc => lib/libc}/include/any-windows-any/dmusici.h (100%) rename {libc => lib/libc}/include/any-windows-any/dmusics.h (100%) rename {libc => lib/libc}/include/any-windows-any/docobj.h (100%) rename {libc => lib/libc}/include/any-windows-any/docobjectservice.h (100%) rename {libc => lib/libc}/include/any-windows-any/documenttarget.h (100%) rename {libc => lib/libc}/include/any-windows-any/domdid.h (100%) rename {libc => lib/libc}/include/any-windows-any/dos.h (100%) rename {libc => lib/libc}/include/any-windows-any/downloadmgr.h (100%) rename {libc => lib/libc}/include/any-windows-any/dpaddr.h (100%) rename {libc => lib/libc}/include/any-windows-any/dpapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/dpfilter.h (100%) rename {libc => lib/libc}/include/any-windows-any/dplay.h (100%) rename {libc => lib/libc}/include/any-windows-any/dplay8.h (100%) rename {libc => lib/libc}/include/any-windows-any/dplobby.h (100%) rename {libc => lib/libc}/include/any-windows-any/dplobby8.h (100%) rename {libc => lib/libc}/include/any-windows-any/dpnathlp.h (100%) rename {libc => lib/libc}/include/any-windows-any/driverspecs.h (100%) rename {libc => lib/libc}/include/any-windows-any/drmexternals.h (100%) rename {libc => lib/libc}/include/any-windows-any/dsadmin.h (100%) rename {libc => lib/libc}/include/any-windows-any/dsclient.h (100%) rename {libc => lib/libc}/include/any-windows-any/dsconf.h (100%) rename {libc => lib/libc}/include/any-windows-any/dsdriver.h (100%) rename {libc => lib/libc}/include/any-windows-any/dsgetdc.h (100%) rename {libc => lib/libc}/include/any-windows-any/dshow.h (100%) rename {libc => lib/libc}/include/any-windows-any/dskquota.h (100%) rename {libc => lib/libc}/include/any-windows-any/dsound.h (100%) rename {libc => lib/libc}/include/any-windows-any/dsquery.h (100%) rename {libc => lib/libc}/include/any-windows-any/dsrole.h (100%) rename {libc => lib/libc}/include/any-windows-any/dssec.h (100%) rename {libc => lib/libc}/include/any-windows-any/dtchelp.h (100%) rename {libc => lib/libc}/include/any-windows-any/dvbsiparser.h (100%) rename {libc => lib/libc}/include/any-windows-any/dvdevcod.h (100%) rename {libc => lib/libc}/include/any-windows-any/dvdmedia.h (100%) rename {libc => lib/libc}/include/any-windows-any/dvec.h (100%) rename {libc => lib/libc}/include/any-windows-any/dvobj.h (100%) rename {libc => lib/libc}/include/any-windows-any/dwmapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/dwrite.h (100%) rename {libc => lib/libc}/include/any-windows-any/dwrite_1.h (100%) rename {libc => lib/libc}/include/any-windows-any/dwrite_2.h (100%) rename {libc => lib/libc}/include/any-windows-any/dwrite_3.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxdiag.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxerr8.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxerr9.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxfile.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxgi.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxgi.idl (100%) rename {libc => lib/libc}/include/any-windows-any/dxgi1_2.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxgi1_2.idl (100%) rename {libc => lib/libc}/include/any-windows-any/dxgi1_3.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxgi1_3.idl (100%) rename {libc => lib/libc}/include/any-windows-any/dxgi1_4.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxgi1_4.idl (100%) rename {libc => lib/libc}/include/any-windows-any/dxgi1_5.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxgi1_5.idl (100%) rename {libc => lib/libc}/include/any-windows-any/dxgi1_6.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxgi1_6.idl (100%) rename {libc => lib/libc}/include/any-windows-any/dxgicommon.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxgicommon.idl (100%) rename {libc => lib/libc}/include/any-windows-any/dxgiformat.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxgiformat.idl (100%) rename {libc => lib/libc}/include/any-windows-any/dxgitype.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxgitype.idl (100%) rename {libc => lib/libc}/include/any-windows-any/dxtmpl.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxva.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxva2api.h (100%) rename {libc => lib/libc}/include/any-windows-any/dxvahd.h (100%) rename {libc => lib/libc}/include/any-windows-any/eapauthenticatoractiondefine.h (100%) rename {libc => lib/libc}/include/any-windows-any/eapauthenticatortypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/eaphosterror.h (100%) rename {libc => lib/libc}/include/any-windows-any/eaphostpeerconfigapis.h (100%) rename {libc => lib/libc}/include/any-windows-any/eaphostpeertypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/eapmethodauthenticatorapis.h (100%) rename {libc => lib/libc}/include/any-windows-any/eapmethodpeerapis.h (100%) rename {libc => lib/libc}/include/any-windows-any/eapmethodtypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/eappapis.h (100%) rename {libc => lib/libc}/include/any-windows-any/eaptypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/edevdefs.h (100%) rename {libc => lib/libc}/include/any-windows-any/eh.h (100%) rename {libc => lib/libc}/include/any-windows-any/ehstorapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/elscore.h (100%) rename {libc => lib/libc}/include/any-windows-any/emostore.h (100%) rename {libc => lib/libc}/include/any-windows-any/emptyvc.h (100%) rename {libc => lib/libc}/include/any-windows-any/endpointvolume.h (100%) rename {libc => lib/libc}/include/any-windows-any/errhandlingapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/errno.h (100%) rename {libc => lib/libc}/include/any-windows-any/error.h (100%) rename {libc => lib/libc}/include/any-windows-any/errorrep.h (100%) rename {libc => lib/libc}/include/any-windows-any/errors.h (100%) rename {libc => lib/libc}/include/any-windows-any/esent.h (100%) rename {libc => lib/libc}/include/any-windows-any/evcode.h (100%) rename {libc => lib/libc}/include/any-windows-any/evcoll.h (100%) rename {libc => lib/libc}/include/any-windows-any/eventsys.h (100%) rename {libc => lib/libc}/include/any-windows-any/evntcons.h (100%) rename {libc => lib/libc}/include/any-windows-any/evntprov.h (100%) rename {libc => lib/libc}/include/any-windows-any/evntrace.h (100%) rename {libc => lib/libc}/include/any-windows-any/evr.h (100%) rename {libc => lib/libc}/include/any-windows-any/evr9.h (100%) rename {libc => lib/libc}/include/any-windows-any/exchform.h (100%) rename {libc => lib/libc}/include/any-windows-any/excpt.h (100%) rename {libc => lib/libc}/include/any-windows-any/exdisp.h (100%) rename {libc => lib/libc}/include/any-windows-any/exdispid.h (100%) rename {libc => lib/libc}/include/any-windows-any/fci.h (100%) rename {libc => lib/libc}/include/any-windows-any/fcntl.h (100%) rename {libc => lib/libc}/include/any-windows-any/fdi.h (100%) rename {libc => lib/libc}/include/any-windows-any/fenv.h (100%) rename {libc => lib/libc}/include/any-windows-any/fibersapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/fileapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/fileextd.h (100%) rename {libc => lib/libc}/include/any-windows-any/filehc.h (100%) rename {libc => lib/libc}/include/any-windows-any/fileopen.dlg (100%) rename {libc => lib/libc}/include/any-windows-any/filter.h (100%) rename {libc => lib/libc}/include/any-windows-any/filterr.h (100%) rename {libc => lib/libc}/include/any-windows-any/findtext.dlg (100%) rename {libc => lib/libc}/include/any-windows-any/float.h (100%) rename {libc => lib/libc}/include/any-windows-any/fltdefs.h (100%) rename {libc => lib/libc}/include/any-windows-any/fltuser.h (100%) rename {libc => lib/libc}/include/any-windows-any/fltuserstructures.h (100%) rename {libc => lib/libc}/include/any-windows-any/fltwinerror.h (100%) rename {libc => lib/libc}/include/any-windows-any/font.dlg (100%) rename {libc => lib/libc}/include/any-windows-any/fpieee.h (100%) rename {libc => lib/libc}/include/any-windows-any/fsrm.h (100%) rename {libc => lib/libc}/include/any-windows-any/fsrmenums.h (100%) rename {libc => lib/libc}/include/any-windows-any/fsrmerr.h (100%) rename {libc => lib/libc}/include/any-windows-any/fsrmpipeline.h (100%) rename {libc => lib/libc}/include/any-windows-any/fsrmquota.h (100%) rename {libc => lib/libc}/include/any-windows-any/fsrmreports.h (100%) rename {libc => lib/libc}/include/any-windows-any/fsrmscreen.h (100%) rename {libc => lib/libc}/include/any-windows-any/ftsiface.h (100%) rename {libc => lib/libc}/include/any-windows-any/ftw.h (100%) rename {libc => lib/libc}/include/any-windows-any/functiondiscoveryapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/functiondiscoverycategories.h (100%) rename {libc => lib/libc}/include/any-windows-any/functiondiscoveryconstraints.h (100%) rename {libc => lib/libc}/include/any-windows-any/functiondiscoverykeys.h (100%) rename {libc => lib/libc}/include/any-windows-any/functiondiscoverykeys_devpkey.h (100%) rename {libc => lib/libc}/include/any-windows-any/functiondiscoverynotification.h (100%) rename {libc => lib/libc}/include/any-windows-any/fusion.h (100%) rename {libc => lib/libc}/include/any-windows-any/fvec.h (100%) rename {libc => lib/libc}/include/any-windows-any/fwpmtypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/fwpmu.h (100%) rename {libc => lib/libc}/include/any-windows-any/fwptypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/gb18030.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplus.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusbase.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusbrush.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdipluscolor.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdipluscolormatrix.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdipluseffects.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusenums.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusflat.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusgpstubs.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusgraphics.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusheaders.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusimageattributes.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusimagecodec.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusimaging.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusimpl.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusinit.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdipluslinecaps.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusmatrix.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusmem.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusmetafile.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusmetaheader.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdipluspath.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdipluspen.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdipluspixelformats.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplusstringformat.h (100%) rename {libc => lib/libc}/include/any-windows-any/gdiplus/gdiplustypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/getopt.h (100%) rename {libc => lib/libc}/include/any-windows-any/gpedit.h (100%) rename {libc => lib/libc}/include/any-windows-any/gpio.h (100%) rename {libc => lib/libc}/include/any-windows-any/gpmgmt.h (100%) rename {libc => lib/libc}/include/any-windows-any/guiddef.h (100%) rename {libc => lib/libc}/include/any-windows-any/h323priv.h (100%) rename {libc => lib/libc}/include/any-windows-any/handleapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/heapapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/hidclass.h (100%) rename {libc => lib/libc}/include/any-windows-any/hidpi.h (100%) rename {libc => lib/libc}/include/any-windows-any/hidsdi.h (100%) rename {libc => lib/libc}/include/any-windows-any/hidusage.h (100%) rename {libc => lib/libc}/include/any-windows-any/highlevelmonitorconfigurationapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/hlguids.h (100%) rename {libc => lib/libc}/include/any-windows-any/hliface.h (100%) rename {libc => lib/libc}/include/any-windows-any/hlink.h (100%) rename {libc => lib/libc}/include/any-windows-any/hostinfo.h (100%) rename {libc => lib/libc}/include/any-windows-any/hstring.h (100%) rename {libc => lib/libc}/include/any-windows-any/htiface.h (100%) rename {libc => lib/libc}/include/any-windows-any/htiframe.h (100%) rename {libc => lib/libc}/include/any-windows-any/htmlguid.h (100%) rename {libc => lib/libc}/include/any-windows-any/htmlhelp.h (100%) rename {libc => lib/libc}/include/any-windows-any/http.h (100%) rename {libc => lib/libc}/include/any-windows-any/httpext.h (100%) rename {libc => lib/libc}/include/any-windows-any/httpfilt.h (100%) rename {libc => lib/libc}/include/any-windows-any/httprequestid.h (100%) rename {libc => lib/libc}/include/any-windows-any/i_cryptasn1tls.h (100%) rename {libc => lib/libc}/include/any-windows-any/ia64reg.h (100%) rename {libc => lib/libc}/include/any-windows-any/iaccess.h (100%) rename {libc => lib/libc}/include/any-windows-any/iadmext.h (100%) rename {libc => lib/libc}/include/any-windows-any/iadmw.h (100%) rename {libc => lib/libc}/include/any-windows-any/iads.h (100%) rename {libc => lib/libc}/include/any-windows-any/icftypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/icm.h (100%) rename {libc => lib/libc}/include/any-windows-any/icmpapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/icmui.dlg (100%) rename {libc => lib/libc}/include/any-windows-any/icodecapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/icrsint.h (100%) rename {libc => lib/libc}/include/any-windows-any/identitycommon.h (100%) rename {libc => lib/libc}/include/any-windows-any/identitystore.h (100%) rename {libc => lib/libc}/include/any-windows-any/idf.h (100%) rename {libc => lib/libc}/include/any-windows-any/idispids.h (100%) rename {libc => lib/libc}/include/any-windows-any/iedial.h (100%) rename {libc => lib/libc}/include/any-windows-any/ieeefp.h (100%) rename {libc => lib/libc}/include/any-windows-any/ieverp.h (100%) rename {libc => lib/libc}/include/any-windows-any/ifdef.h (100%) rename {libc => lib/libc}/include/any-windows-any/iiis.h (100%) rename {libc => lib/libc}/include/any-windows-any/iiisext.h (100%) rename {libc => lib/libc}/include/any-windows-any/iimgctx.h (100%) rename {libc => lib/libc}/include/any-windows-any/iiscnfg.h (100%) rename {libc => lib/libc}/include/any-windows-any/iisrsta.h (100%) rename {libc => lib/libc}/include/any-windows-any/iketypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/ilogobj.hxx (100%) rename {libc => lib/libc}/include/any-windows-any/imagehlp.h (100%) rename {libc => lib/libc}/include/any-windows-any/ime.h (100%) rename {libc => lib/libc}/include/any-windows-any/imessage.h (100%) rename {libc => lib/libc}/include/any-windows-any/imm.h (100%) rename {libc => lib/libc}/include/any-windows-any/in6addr.h (100%) rename {libc => lib/libc}/include/any-windows-any/inaddr.h (100%) rename {libc => lib/libc}/include/any-windows-any/indexsrv.h (100%) rename {libc => lib/libc}/include/any-windows-any/inetreg.h (100%) rename {libc => lib/libc}/include/any-windows-any/inetsdk.h (100%) rename {libc => lib/libc}/include/any-windows-any/infstr.h (100%) rename {libc => lib/libc}/include/any-windows-any/initguid.h (100%) rename {libc => lib/libc}/include/any-windows-any/initoid.h (100%) rename {libc => lib/libc}/include/any-windows-any/inputscope.h (100%) rename {libc => lib/libc}/include/any-windows-any/inspectable.h (100%) rename {libc => lib/libc}/include/any-windows-any/interlockedapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/intrin.h (100%) rename {libc => lib/libc}/include/any-windows-any/intsafe.h (100%) rename {libc => lib/libc}/include/any-windows-any/intshcut.h (100%) rename {libc => lib/libc}/include/any-windows-any/inttypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/invkprxy.h (100%) rename {libc => lib/libc}/include/any-windows-any/io.h (100%) rename {libc => lib/libc}/include/any-windows-any/ioapiset.h (100%) rename {libc => lib/libc}/include/any-windows-any/ioevent.h (100%) rename {libc => lib/libc}/include/any-windows-any/ipexport.h (100%) rename {libc => lib/libc}/include/any-windows-any/iphlpapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ipifcons.h (100%) rename {libc => lib/libc}/include/any-windows-any/ipinfoid.h (100%) rename {libc => lib/libc}/include/any-windows-any/ipmib.h (100%) rename {libc => lib/libc}/include/any-windows-any/ipmsp.h (100%) rename {libc => lib/libc}/include/any-windows-any/iprtrmib.h (100%) rename {libc => lib/libc}/include/any-windows-any/ipsectypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/iptypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/ipxconst.h (100%) rename {libc => lib/libc}/include/any-windows-any/ipxrip.h (100%) rename {libc => lib/libc}/include/any-windows-any/ipxrtdef.h (100%) rename {libc => lib/libc}/include/any-windows-any/ipxsap.h (100%) rename {libc => lib/libc}/include/any-windows-any/ipxtfflt.h (100%) rename {libc => lib/libc}/include/any-windows-any/iscsidsc.h (100%) rename {libc => lib/libc}/include/any-windows-any/isguids.h (100%) rename {libc => lib/libc}/include/any-windows-any/issper16.h (100%) rename {libc => lib/libc}/include/any-windows-any/issperr.h (100%) rename {libc => lib/libc}/include/any-windows-any/isysmon.h (100%) rename {libc => lib/libc}/include/any-windows-any/ivec.h (100%) rename {libc => lib/libc}/include/any-windows-any/iwamreg.h (100%) rename {libc => lib/libc}/include/any-windows-any/jobapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/kcom.h (100%) rename {libc => lib/libc}/include/any-windows-any/knownfolders.h (100%) rename {libc => lib/libc}/include/any-windows-any/ks.h (100%) rename {libc => lib/libc}/include/any-windows-any/ksdebug.h (100%) rename {libc => lib/libc}/include/any-windows-any/ksguid.h (100%) rename {libc => lib/libc}/include/any-windows-any/ksmedia.h (100%) rename {libc => lib/libc}/include/any-windows-any/ksproxy.h (100%) rename {libc => lib/libc}/include/any-windows-any/ksuuids.h (100%) rename {libc => lib/libc}/include/any-windows-any/ktmtypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/ktmw32.h (100%) rename {libc => lib/libc}/include/any-windows-any/kxia64.h (100%) rename {libc => lib/libc}/include/any-windows-any/l2cmn.h (100%) rename {libc => lib/libc}/include/any-windows-any/libgen.h (100%) rename {libc => lib/libc}/include/any-windows-any/libloaderapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/limits.h (100%) rename {libc => lib/libc}/include/any-windows-any/lm.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmaccess.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmalert.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmapibuf.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmat.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmaudit.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmconfig.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmcons.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmdfs.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmerr.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmerrlog.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmjoin.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmmsg.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmon.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmremutl.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmrepl.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmserver.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmshare.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmsname.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmstats.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmsvc.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmuse.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmuseflg.h (100%) rename {libc => lib/libc}/include/any-windows-any/lmwksta.h (100%) rename {libc => lib/libc}/include/any-windows-any/loadperf.h (100%) rename {libc => lib/libc}/include/any-windows-any/locale.h (100%) rename {libc => lib/libc}/include/any-windows-any/locationapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/lpmapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/lzexpand.h (100%) rename {libc => lib/libc}/include/any-windows-any/madcapcl.h (100%) rename {libc => lib/libc}/include/any-windows-any/magnification.h (100%) rename {libc => lib/libc}/include/any-windows-any/mailmsgprops.h (100%) rename {libc => lib/libc}/include/any-windows-any/malloc.h (100%) rename {libc => lib/libc}/include/any-windows-any/manipulations.h (100%) rename {libc => lib/libc}/include/any-windows-any/mapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/mapicode.h (100%) rename {libc => lib/libc}/include/any-windows-any/mapidbg.h (100%) rename {libc => lib/libc}/include/any-windows-any/mapidefs.h (100%) rename {libc => lib/libc}/include/any-windows-any/mapiform.h (100%) rename {libc => lib/libc}/include/any-windows-any/mapiguid.h (100%) rename {libc => lib/libc}/include/any-windows-any/mapihook.h (100%) rename {libc => lib/libc}/include/any-windows-any/mapinls.h (100%) rename {libc => lib/libc}/include/any-windows-any/mapioid.h (100%) rename {libc => lib/libc}/include/any-windows-any/mapispi.h (100%) rename {libc => lib/libc}/include/any-windows-any/mapitags.h (100%) rename {libc => lib/libc}/include/any-windows-any/mapiutil.h (100%) rename {libc => lib/libc}/include/any-windows-any/mapival.h (100%) rename {libc => lib/libc}/include/any-windows-any/mapiwin.h (100%) rename {libc => lib/libc}/include/any-windows-any/mapiwz.h (100%) rename {libc => lib/libc}/include/any-windows-any/mapix.h (100%) rename {libc => lib/libc}/include/any-windows-any/math.h (100%) rename {libc => lib/libc}/include/any-windows-any/mbctype.h (100%) rename {libc => lib/libc}/include/any-windows-any/mbstring.h (100%) rename {libc => lib/libc}/include/any-windows-any/mciavi.h (100%) rename {libc => lib/libc}/include/any-windows-any/mcx.h (100%) rename {libc => lib/libc}/include/any-windows-any/mdbrole.hxx (100%) rename {libc => lib/libc}/include/any-windows-any/mdcommsg.h (100%) rename {libc => lib/libc}/include/any-windows-any/mddefw.h (100%) rename {libc => lib/libc}/include/any-windows-any/mdhcp.h (100%) rename {libc => lib/libc}/include/any-windows-any/mdmsg.h (100%) rename {libc => lib/libc}/include/any-windows-any/mediaerr.h (100%) rename {libc => lib/libc}/include/any-windows-any/mediaobj.h (100%) rename {libc => lib/libc}/include/any-windows-any/mediaobj.idl (100%) rename {libc => lib/libc}/include/any-windows-any/medparam.h (100%) rename {libc => lib/libc}/include/any-windows-any/medparam.idl (100%) rename {libc => lib/libc}/include/any-windows-any/mem.h (100%) rename {libc => lib/libc}/include/any-windows-any/memory.h (100%) rename {libc => lib/libc}/include/any-windows-any/memoryapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/mergemod.h (100%) rename {libc => lib/libc}/include/any-windows-any/mfapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/mferror.h (100%) rename {libc => lib/libc}/include/any-windows-any/mfidl.h (100%) rename {libc => lib/libc}/include/any-windows-any/mfmp2dlna.h (100%) rename {libc => lib/libc}/include/any-windows-any/mfobjects.h (100%) rename {libc => lib/libc}/include/any-windows-any/mfplay.h (100%) rename {libc => lib/libc}/include/any-windows-any/mfreadwrite.h (100%) rename {libc => lib/libc}/include/any-windows-any/mftransform.h (100%) rename {libc => lib/libc}/include/any-windows-any/mgm.h (100%) rename {libc => lib/libc}/include/any-windows-any/mgmtapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/midles.h (100%) rename {libc => lib/libc}/include/any-windows-any/mimedisp.h (100%) rename {libc => lib/libc}/include/any-windows-any/mimeinfo.h (100%) rename {libc => lib/libc}/include/any-windows-any/minmax.h (100%) rename {libc => lib/libc}/include/any-windows-any/minwinbase.h (100%) rename {libc => lib/libc}/include/any-windows-any/minwindef.h (100%) rename {libc => lib/libc}/include/any-windows-any/mlang.h (100%) rename {libc => lib/libc}/include/any-windows-any/mmc.h (100%) rename {libc => lib/libc}/include/any-windows-any/mmcobj.h (100%) rename {libc => lib/libc}/include/any-windows-any/mmdeviceapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/mmreg.h (100%) rename {libc => lib/libc}/include/any-windows-any/mmstream.h (100%) rename {libc => lib/libc}/include/any-windows-any/mmstream.idl (100%) rename {libc => lib/libc}/include/any-windows-any/mmsystem.h (100%) rename {libc => lib/libc}/include/any-windows-any/mobsync.h (100%) rename {libc => lib/libc}/include/any-windows-any/moniker.h (100%) rename {libc => lib/libc}/include/any-windows-any/mpeg2bits.h (100%) rename {libc => lib/libc}/include/any-windows-any/mpeg2data.h (100%) rename {libc => lib/libc}/include/any-windows-any/mpeg2psiparser.h (100%) rename {libc => lib/libc}/include/any-windows-any/mpeg2structs.h (100%) rename {libc => lib/libc}/include/any-windows-any/mprapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/mprerror.h (100%) rename {libc => lib/libc}/include/any-windows-any/mq.h (100%) rename {libc => lib/libc}/include/any-windows-any/mqmail.h (100%) rename {libc => lib/libc}/include/any-windows-any/mqoai.h (100%) rename {libc => lib/libc}/include/any-windows-any/msacm.h (100%) rename {libc => lib/libc}/include/any-windows-any/msacmdlg.dlg (100%) rename {libc => lib/libc}/include/any-windows-any/msacmdlg.h (100%) rename {libc => lib/libc}/include/any-windows-any/msado15.h (100%) rename {libc => lib/libc}/include/any-windows-any/msasn1.h (100%) rename {libc => lib/libc}/include/any-windows-any/msber.h (100%) rename {libc => lib/libc}/include/any-windows-any/mscat.h (100%) rename {libc => lib/libc}/include/any-windows-any/mschapp.h (100%) rename {libc => lib/libc}/include/any-windows-any/msclus.h (100%) rename {libc => lib/libc}/include/any-windows-any/mscoree.h (100%) rename {libc => lib/libc}/include/any-windows-any/msctf.h (100%) rename {libc => lib/libc}/include/any-windows-any/msctfmonitorapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/msdadc.h (100%) rename {libc => lib/libc}/include/any-windows-any/msdaguid.h (100%) rename {libc => lib/libc}/include/any-windows-any/msdaipp.h (100%) rename {libc => lib/libc}/include/any-windows-any/msdaipper.h (100%) rename {libc => lib/libc}/include/any-windows-any/msdaora.h (100%) rename {libc => lib/libc}/include/any-windows-any/msdaosp.h (100%) rename {libc => lib/libc}/include/any-windows-any/msdasc.h (100%) rename {libc => lib/libc}/include/any-windows-any/msdasql.h (100%) rename {libc => lib/libc}/include/any-windows-any/msdatsrc.h (100%) rename {libc => lib/libc}/include/any-windows-any/msdrm.h (100%) rename {libc => lib/libc}/include/any-windows-any/msdrmdefs.h (100%) rename {libc => lib/libc}/include/any-windows-any/msdshape.h (100%) rename {libc => lib/libc}/include/any-windows-any/msfs.h (100%) rename {libc => lib/libc}/include/any-windows-any/mshtmcid.h (100%) rename {libc => lib/libc}/include/any-windows-any/mshtmdid.h (100%) rename {libc => lib/libc}/include/any-windows-any/mshtmhst.h (100%) rename {libc => lib/libc}/include/any-windows-any/mshtml.h (100%) rename {libc => lib/libc}/include/any-windows-any/mshtmlc.h (100%) rename {libc => lib/libc}/include/any-windows-any/msi.h (100%) rename {libc => lib/libc}/include/any-windows-any/msidefs.h (100%) rename {libc => lib/libc}/include/any-windows-any/msimcntl.h (100%) rename {libc => lib/libc}/include/any-windows-any/msimcsdk.h (100%) rename {libc => lib/libc}/include/any-windows-any/msinkaut.h (100%) rename {libc => lib/libc}/include/any-windows-any/msinkaut_i.c (100%) rename {libc => lib/libc}/include/any-windows-any/msiquery.h (100%) rename {libc => lib/libc}/include/any-windows-any/msoav.h (100%) rename {libc => lib/libc}/include/any-windows-any/msopc.h (100%) rename {libc => lib/libc}/include/any-windows-any/msp.h (100%) rename {libc => lib/libc}/include/any-windows-any/mspab.h (100%) rename {libc => lib/libc}/include/any-windows-any/mspaddr.h (100%) rename {libc => lib/libc}/include/any-windows-any/mspbase.h (100%) rename {libc => lib/libc}/include/any-windows-any/mspcall.h (100%) rename {libc => lib/libc}/include/any-windows-any/mspcoll.h (100%) rename {libc => lib/libc}/include/any-windows-any/mspenum.h (100%) rename {libc => lib/libc}/include/any-windows-any/msplog.h (100%) rename {libc => lib/libc}/include/any-windows-any/mspst.h (100%) rename {libc => lib/libc}/include/any-windows-any/mspstrm.h (100%) rename {libc => lib/libc}/include/any-windows-any/mspterm.h (100%) rename {libc => lib/libc}/include/any-windows-any/mspthrd.h (100%) rename {libc => lib/libc}/include/any-windows-any/msptrmac.h (100%) rename {libc => lib/libc}/include/any-windows-any/msptrmar.h (100%) rename {libc => lib/libc}/include/any-windows-any/msptrmvc.h (100%) rename {libc => lib/libc}/include/any-windows-any/msputils.h (100%) rename {libc => lib/libc}/include/any-windows-any/msrdc.h (100%) rename {libc => lib/libc}/include/any-windows-any/msremote.h (100%) rename {libc => lib/libc}/include/any-windows-any/mssip.h (100%) rename {libc => lib/libc}/include/any-windows-any/msstkppg.h (100%) rename {libc => lib/libc}/include/any-windows-any/mstask.h (100%) rename {libc => lib/libc}/include/any-windows-any/mstcpip.h (100%) rename {libc => lib/libc}/include/any-windows-any/msterr.h (100%) rename {libc => lib/libc}/include/any-windows-any/mswsock.h (100%) rename {libc => lib/libc}/include/any-windows-any/msxml.h (100%) rename {libc => lib/libc}/include/any-windows-any/msxml2.h (100%) rename {libc => lib/libc}/include/any-windows-any/msxml2did.h (100%) rename {libc => lib/libc}/include/any-windows-any/msxmldid.h (100%) rename {libc => lib/libc}/include/any-windows-any/mtsadmin.h (100%) rename {libc => lib/libc}/include/any-windows-any/mtsevents.h (100%) rename {libc => lib/libc}/include/any-windows-any/mtsgrp.h (100%) rename {libc => lib/libc}/include/any-windows-any/mtx.h (100%) rename {libc => lib/libc}/include/any-windows-any/mtxadmin.h (100%) rename {libc => lib/libc}/include/any-windows-any/mtxattr.h (100%) rename {libc => lib/libc}/include/any-windows-any/mtxdm.h (100%) rename {libc => lib/libc}/include/any-windows-any/muiload.h (100%) rename {libc => lib/libc}/include/any-windows-any/multimon.h (100%) rename {libc => lib/libc}/include/any-windows-any/multinfo.h (100%) rename {libc => lib/libc}/include/any-windows-any/mxdc.h (100%) rename {libc => lib/libc}/include/any-windows-any/namedpipeapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/namespaceapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/napcertrelyingparty.h (100%) rename {libc => lib/libc}/include/any-windows-any/napcommon.h (100%) rename {libc => lib/libc}/include/any-windows-any/napenforcementclient.h (100%) rename {libc => lib/libc}/include/any-windows-any/napmanagement.h (100%) rename {libc => lib/libc}/include/any-windows-any/napmicrosoftvendorids.h (100%) rename {libc => lib/libc}/include/any-windows-any/napprotocol.h (100%) rename {libc => lib/libc}/include/any-windows-any/napservermanagement.h (100%) rename {libc => lib/libc}/include/any-windows-any/napsystemhealthagent.h (100%) rename {libc => lib/libc}/include/any-windows-any/napsystemhealthvalidator.h (100%) rename {libc => lib/libc}/include/any-windows-any/naptypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/naputil.h (100%) rename {libc => lib/libc}/include/any-windows-any/nb30.h (100%) rename {libc => lib/libc}/include/any-windows-any/ncrypt.h (100%) rename {libc => lib/libc}/include/any-windows-any/ndattrib.h (100%) rename {libc => lib/libc}/include/any-windows-any/ndfapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ndhelper.h (100%) rename {libc => lib/libc}/include/any-windows-any/ndkinfo.h (100%) rename {libc => lib/libc}/include/any-windows-any/ndr64types.h (100%) rename {libc => lib/libc}/include/any-windows-any/ndrtypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/netcon.h (100%) rename {libc => lib/libc}/include/any-windows-any/neterr.h (100%) rename {libc => lib/libc}/include/any-windows-any/netevent.h (100%) rename {libc => lib/libc}/include/any-windows-any/netfw.h (100%) rename {libc => lib/libc}/include/any-windows-any/netioapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/netlistmgr.h (100%) rename {libc => lib/libc}/include/any-windows-any/netmon.h (100%) rename {libc => lib/libc}/include/any-windows-any/netprov.h (100%) rename {libc => lib/libc}/include/any-windows-any/nettypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/new.h (100%) rename {libc => lib/libc}/include/any-windows-any/newapis.h (100%) rename {libc => lib/libc}/include/any-windows-any/newdev.h (100%) rename {libc => lib/libc}/include/any-windows-any/nldef.h (100%) rename {libc => lib/libc}/include/any-windows-any/nmsupp.h (100%) rename {libc => lib/libc}/include/any-windows-any/npapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/nsemail.h (100%) rename {libc => lib/libc}/include/any-windows-any/nspapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntdd1394.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntdd8042.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddbeep.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddcdrm.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddcdvd.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddchgr.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntdddisk.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddft.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddkbd.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddmmc.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddmodm.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddmou.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddndis.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddpar.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddpsch.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddscsi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddser.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddstor.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddtape.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddtdi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddvdeo.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntddvol.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntdef.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntdsapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntdsbcli.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntdsbmsg.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntgdi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntiologc.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntldap.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntmsapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntmsmli.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntquery.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntsdexts.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntsecapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntsecpkg.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntstatus.h (100%) rename {libc => lib/libc}/include/any-windows-any/ntverp.h (100%) rename {libc => lib/libc}/include/any-windows-any/oaidl.h (100%) rename {libc => lib/libc}/include/any-windows-any/objbase.h (100%) rename {libc => lib/libc}/include/any-windows-any/objectarray.h (100%) rename {libc => lib/libc}/include/any-windows-any/objerror.h (100%) rename {libc => lib/libc}/include/any-windows-any/objidl.h (100%) rename {libc => lib/libc}/include/any-windows-any/objidlbase.h (100%) rename {libc => lib/libc}/include/any-windows-any/objsafe.h (100%) rename {libc => lib/libc}/include/any-windows-any/objsel.h (100%) rename {libc => lib/libc}/include/any-windows-any/ocidl.h (100%) rename {libc => lib/libc}/include/any-windows-any/ocmm.h (100%) rename {libc => lib/libc}/include/any-windows-any/odbcinst.h (100%) rename {libc => lib/libc}/include/any-windows-any/odbcss.h (100%) rename {libc => lib/libc}/include/any-windows-any/ole.h (100%) rename {libc => lib/libc}/include/any-windows-any/ole2.h (100%) rename {libc => lib/libc}/include/any-windows-any/ole2ver.h (100%) rename {libc => lib/libc}/include/any-windows-any/oleacc.h (100%) rename {libc => lib/libc}/include/any-windows-any/oleauto.h (100%) rename {libc => lib/libc}/include/any-windows-any/olectl.h (100%) rename {libc => lib/libc}/include/any-windows-any/olectlid.h (100%) rename {libc => lib/libc}/include/any-windows-any/oledb.h (100%) rename {libc => lib/libc}/include/any-windows-any/oledbdep.h (100%) rename {libc => lib/libc}/include/any-windows-any/oledberr.h (100%) rename {libc => lib/libc}/include/any-windows-any/oledbguid.h (100%) rename {libc => lib/libc}/include/any-windows-any/oledlg.dlg (100%) rename {libc => lib/libc}/include/any-windows-any/oledlg.h (100%) rename {libc => lib/libc}/include/any-windows-any/oleidl.h (100%) rename {libc => lib/libc}/include/any-windows-any/oletx2xa.h (100%) rename {libc => lib/libc}/include/any-windows-any/opmapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/optary.h (100%) rename {libc => lib/libc}/include/any-windows-any/p2p.h (100%) rename {libc => lib/libc}/include/any-windows-any/packoff.h (100%) rename {libc => lib/libc}/include/any-windows-any/packon.h (100%) rename {libc => lib/libc}/include/any-windows-any/parser.h (100%) rename {libc => lib/libc}/include/any-windows-any/patchapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/patchwiz.h (100%) rename {libc => lib/libc}/include/any-windows-any/pathcch.h (100%) rename {libc => lib/libc}/include/any-windows-any/pbt.h (100%) rename {libc => lib/libc}/include/any-windows-any/pchannel.h (100%) rename {libc => lib/libc}/include/any-windows-any/pciprop.h (100%) rename {libc => lib/libc}/include/any-windows-any/pcrt32.h (100%) rename {libc => lib/libc}/include/any-windows-any/pdh.h (100%) rename {libc => lib/libc}/include/any-windows-any/pdhmsg.h (100%) rename {libc => lib/libc}/include/any-windows-any/penwin.h (100%) rename {libc => lib/libc}/include/any-windows-any/perflib.h (100%) rename {libc => lib/libc}/include/any-windows-any/perhist.h (100%) rename {libc => lib/libc}/include/any-windows-any/persist.h (100%) rename {libc => lib/libc}/include/any-windows-any/pgobootrun.h (100%) rename {libc => lib/libc}/include/any-windows-any/physicalmonitorenumerationapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/pla.h (100%) rename {libc => lib/libc}/include/any-windows-any/pnrpdef.h (100%) rename {libc => lib/libc}/include/any-windows-any/pnrpns.h (100%) rename {libc => lib/libc}/include/any-windows-any/poclass.h (100%) rename {libc => lib/libc}/include/any-windows-any/polarity.h (100%) rename {libc => lib/libc}/include/any-windows-any/poppack.h (100%) rename {libc => lib/libc}/include/any-windows-any/portabledeviceconnectapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/portabledevicetypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/powrprof.h (100%) rename {libc => lib/libc}/include/any-windows-any/prnasnot.h (100%) rename {libc => lib/libc}/include/any-windows-any/prnsetup.dlg (100%) rename {libc => lib/libc}/include/any-windows-any/prntfont.h (100%) rename {libc => lib/libc}/include/any-windows-any/process.h (100%) rename {libc => lib/libc}/include/any-windows-any/processenv.h (100%) rename {libc => lib/libc}/include/any-windows-any/processthreadsapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/processtopologyapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/profile.h (100%) rename {libc => lib/libc}/include/any-windows-any/profileapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/profinfo.h (100%) rename {libc => lib/libc}/include/any-windows-any/propidl.h (100%) rename {libc => lib/libc}/include/any-windows-any/propkey.h (100%) rename {libc => lib/libc}/include/any-windows-any/propkeydef.h (100%) rename {libc => lib/libc}/include/any-windows-any/propsys.h (100%) rename {libc => lib/libc}/include/any-windows-any/propvarutil.h (100%) rename {libc => lib/libc}/include/any-windows-any/prsht.h (100%) rename {libc => lib/libc}/include/any-windows-any/psapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/psdk_inc/_dbg_LOAD_IMAGE.h (100%) rename {libc => lib/libc}/include/any-windows-any/psdk_inc/_dbg_common.h (100%) rename {libc => lib/libc}/include/any-windows-any/psdk_inc/_fd_types.h (100%) rename {libc => lib/libc}/include/any-windows-any/psdk_inc/_ip_mreq1.h (100%) rename {libc => lib/libc}/include/any-windows-any/psdk_inc/_ip_types.h (100%) rename {libc => lib/libc}/include/any-windows-any/psdk_inc/_pop_BOOL.h (100%) rename {libc => lib/libc}/include/any-windows-any/psdk_inc/_push_BOOL.h (100%) rename {libc => lib/libc}/include/any-windows-any/psdk_inc/_socket_types.h (100%) rename {libc => lib/libc}/include/any-windows-any/psdk_inc/_varenum.h (100%) rename {libc => lib/libc}/include/any-windows-any/psdk_inc/_ws1_undef.h (100%) rename {libc => lib/libc}/include/any-windows-any/psdk_inc/_wsa_errnos.h (100%) rename {libc => lib/libc}/include/any-windows-any/psdk_inc/_wsadata.h (100%) rename {libc => lib/libc}/include/any-windows-any/psdk_inc/_xmitfile.h (100%) rename {libc => lib/libc}/include/any-windows-any/psdk_inc/intrin-impl.h (100%) rename {libc => lib/libc}/include/any-windows-any/pshpack1.h (100%) rename {libc => lib/libc}/include/any-windows-any/pshpack2.h (100%) rename {libc => lib/libc}/include/any-windows-any/pshpack4.h (100%) rename {libc => lib/libc}/include/any-windows-any/pshpack8.h (100%) rename {libc => lib/libc}/include/any-windows-any/pshpck16.h (100%) rename {libc => lib/libc}/include/any-windows-any/pstore.h (100%) rename {libc => lib/libc}/include/any-windows-any/pthread_signal.h (100%) rename {libc => lib/libc}/include/any-windows-any/pthread_time.h (100%) rename {libc => lib/libc}/include/any-windows-any/pthread_unistd.h (100%) rename {libc => lib/libc}/include/any-windows-any/qedit.h (100%) rename {libc => lib/libc}/include/any-windows-any/qedit.idl (100%) rename {libc => lib/libc}/include/any-windows-any/qmgr.h (100%) rename {libc => lib/libc}/include/any-windows-any/qnetwork.h (100%) rename {libc => lib/libc}/include/any-windows-any/qnetwork.idl (100%) rename {libc => lib/libc}/include/any-windows-any/qos.h (100%) rename {libc => lib/libc}/include/any-windows-any/qos2.h (100%) rename {libc => lib/libc}/include/any-windows-any/qosname.h (100%) rename {libc => lib/libc}/include/any-windows-any/qospol.h (100%) rename {libc => lib/libc}/include/any-windows-any/qossp.h (100%) rename {libc => lib/libc}/include/any-windows-any/ras.h (100%) rename {libc => lib/libc}/include/any-windows-any/rasdlg.h (100%) rename {libc => lib/libc}/include/any-windows-any/raseapif.h (100%) rename {libc => lib/libc}/include/any-windows-any/raserror.h (100%) rename {libc => lib/libc}/include/any-windows-any/rassapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/rasshost.h (100%) rename {libc => lib/libc}/include/any-windows-any/ratings.h (100%) rename {libc => lib/libc}/include/any-windows-any/rdpencomapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/realtimeapiset.h (100%) rename {libc => lib/libc}/include/any-windows-any/reason.h (100%) rename {libc => lib/libc}/include/any-windows-any/recguids.h (100%) rename {libc => lib/libc}/include/any-windows-any/reconcil.h (100%) rename {libc => lib/libc}/include/any-windows-any/regbag.h (100%) rename {libc => lib/libc}/include/any-windows-any/regstr.h (100%) rename {libc => lib/libc}/include/any-windows-any/rend.h (100%) rename {libc => lib/libc}/include/any-windows-any/resapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/restartmanager.h (100%) rename {libc => lib/libc}/include/any-windows-any/richedit.h (100%) rename {libc => lib/libc}/include/any-windows-any/richole.h (100%) rename {libc => lib/libc}/include/any-windows-any/rkeysvcc.h (100%) rename {libc => lib/libc}/include/any-windows-any/rnderr.h (100%) rename {libc => lib/libc}/include/any-windows-any/roapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/routprot.h (100%) rename {libc => lib/libc}/include/any-windows-any/rpc.h (100%) rename {libc => lib/libc}/include/any-windows-any/rpcasync.h (100%) rename {libc => lib/libc}/include/any-windows-any/rpcdce.h (100%) rename {libc => lib/libc}/include/any-windows-any/rpcdcep.h (100%) rename {libc => lib/libc}/include/any-windows-any/rpcndr.h (100%) rename {libc => lib/libc}/include/any-windows-any/rpcnsi.h (100%) rename {libc => lib/libc}/include/any-windows-any/rpcnsip.h (100%) rename {libc => lib/libc}/include/any-windows-any/rpcnterr.h (100%) rename {libc => lib/libc}/include/any-windows-any/rpcproxy.h (100%) rename {libc => lib/libc}/include/any-windows-any/rpcsal.h (100%) rename {libc => lib/libc}/include/any-windows-any/rpcssl.h (100%) rename {libc => lib/libc}/include/any-windows-any/rrascfg.h (100%) rename {libc => lib/libc}/include/any-windows-any/rtcapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/rtccore.h (100%) rename {libc => lib/libc}/include/any-windows-any/rtcerr.h (100%) rename {libc => lib/libc}/include/any-windows-any/rtinfo.h (100%) rename {libc => lib/libc}/include/any-windows-any/rtm.h (100%) rename {libc => lib/libc}/include/any-windows-any/rtmv2.h (100%) rename {libc => lib/libc}/include/any-windows-any/rtutils.h (100%) rename {libc => lib/libc}/include/any-windows-any/sal.h (100%) rename {libc => lib/libc}/include/any-windows-any/sapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/sapi51.h (100%) rename {libc => lib/libc}/include/any-windows-any/sapi53.h (100%) rename {libc => lib/libc}/include/any-windows-any/sapi54.h (100%) rename {libc => lib/libc}/include/any-windows-any/sas.h (100%) rename {libc => lib/libc}/include/any-windows-any/sbe.h (100%) rename {libc => lib/libc}/include/any-windows-any/scarddat.h (100%) rename {libc => lib/libc}/include/any-windows-any/scarderr.h (100%) rename {libc => lib/libc}/include/any-windows-any/scardmgr.h (100%) rename {libc => lib/libc}/include/any-windows-any/scardsrv.h (100%) rename {libc => lib/libc}/include/any-windows-any/scardssp.h (100%) rename {libc => lib/libc}/include/any-windows-any/scesvc.h (100%) rename {libc => lib/libc}/include/any-windows-any/schannel.h (100%) rename {libc => lib/libc}/include/any-windows-any/schedule.h (100%) rename {libc => lib/libc}/include/any-windows-any/schemadef.h (100%) rename {libc => lib/libc}/include/any-windows-any/schnlsp.h (100%) rename {libc => lib/libc}/include/any-windows-any/scode.h (100%) rename {libc => lib/libc}/include/any-windows-any/scrnsave.h (100%) rename {libc => lib/libc}/include/any-windows-any/scrptids.h (100%) rename {libc => lib/libc}/include/any-windows-any/sddl.h (100%) rename {libc => lib/libc}/include/any-windows-any/sdkddkver.h (100%) rename {libc => lib/libc}/include/any-windows-any/sdks/_mingw_ddk.h (100%) rename {libc => lib/libc}/include/any-windows-any/sdks/_mingw_directx.h (100%) rename {libc => lib/libc}/include/any-windows-any/sdoias.h (100%) rename {libc => lib/libc}/include/any-windows-any/sdpblb.h (100%) rename {libc => lib/libc}/include/any-windows-any/sdperr.h (100%) rename {libc => lib/libc}/include/any-windows-any/search.h (100%) rename {libc => lib/libc}/include/any-windows-any/sec_api/conio_s.h (100%) rename {libc => lib/libc}/include/any-windows-any/sec_api/crtdbg_s.h (100%) rename {libc => lib/libc}/include/any-windows-any/sec_api/mbstring_s.h (100%) rename {libc => lib/libc}/include/any-windows-any/sec_api/search_s.h (100%) rename {libc => lib/libc}/include/any-windows-any/sec_api/stdio_s.h (100%) rename {libc => lib/libc}/include/any-windows-any/sec_api/stdlib_s.h (100%) rename {libc => lib/libc}/include/any-windows-any/sec_api/stralign_s.h (100%) rename {libc => lib/libc}/include/any-windows-any/sec_api/string_s.h (100%) rename {libc => lib/libc}/include/any-windows-any/sec_api/sys/timeb_s.h (100%) rename {libc => lib/libc}/include/any-windows-any/sec_api/tchar_s.h (100%) rename {libc => lib/libc}/include/any-windows-any/sec_api/wchar_s.h (100%) rename {libc => lib/libc}/include/any-windows-any/secext.h (100%) rename {libc => lib/libc}/include/any-windows-any/security.h (100%) rename {libc => lib/libc}/include/any-windows-any/securityappcontainer.h (100%) rename {libc => lib/libc}/include/any-windows-any/securitybaseapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/sehmap.h (100%) rename {libc => lib/libc}/include/any-windows-any/sens.h (100%) rename {libc => lib/libc}/include/any-windows-any/sensapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/sensevts.h (100%) rename {libc => lib/libc}/include/any-windows-any/sensors.h (100%) rename {libc => lib/libc}/include/any-windows-any/sensorsapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/servprov.h (100%) rename {libc => lib/libc}/include/any-windows-any/setjmp.h (100%) rename {libc => lib/libc}/include/any-windows-any/setjmpex.h (100%) rename {libc => lib/libc}/include/any-windows-any/setupapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/sfc.h (100%) rename {libc => lib/libc}/include/any-windows-any/shappmgr.h (100%) rename {libc => lib/libc}/include/any-windows-any/share.h (100%) rename {libc => lib/libc}/include/any-windows-any/shdeprecated.h (100%) rename {libc => lib/libc}/include/any-windows-any/shdispid.h (100%) rename {libc => lib/libc}/include/any-windows-any/shellapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/sherrors.h (100%) rename {libc => lib/libc}/include/any-windows-any/shfolder.h (100%) rename {libc => lib/libc}/include/any-windows-any/shldisp.h (100%) rename {libc => lib/libc}/include/any-windows-any/shlguid.h (100%) rename {libc => lib/libc}/include/any-windows-any/shlobj.h (100%) rename {libc => lib/libc}/include/any-windows-any/shlwapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/shobjidl.h (100%) rename {libc => lib/libc}/include/any-windows-any/shtypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/signal.h (100%) rename {libc => lib/libc}/include/any-windows-any/simpdata.h (100%) rename {libc => lib/libc}/include/any-windows-any/simpdc.h (100%) rename {libc => lib/libc}/include/any-windows-any/sipbase.h (100%) rename {libc => lib/libc}/include/any-windows-any/sisbkup.h (100%) rename {libc => lib/libc}/include/any-windows-any/slerror.h (100%) rename {libc => lib/libc}/include/any-windows-any/slpublic.h (100%) rename {libc => lib/libc}/include/any-windows-any/smpab.h (100%) rename {libc => lib/libc}/include/any-windows-any/smpms.h (100%) rename {libc => lib/libc}/include/any-windows-any/smpxp.h (100%) rename {libc => lib/libc}/include/any-windows-any/smtpguid.h (100%) rename {libc => lib/libc}/include/any-windows-any/smx.h (100%) rename {libc => lib/libc}/include/any-windows-any/snmp.h (100%) rename {libc => lib/libc}/include/any-windows-any/softpub.h (100%) rename {libc => lib/libc}/include/any-windows-any/specstrings.h (100%) rename {libc => lib/libc}/include/any-windows-any/sperror.h (100%) rename {libc => lib/libc}/include/any-windows-any/sphelper.h (100%) rename {libc => lib/libc}/include/any-windows-any/sporder.h (100%) rename {libc => lib/libc}/include/any-windows-any/sql.h (100%) rename {libc => lib/libc}/include/any-windows-any/sql_1.h (100%) rename {libc => lib/libc}/include/any-windows-any/sqlext.h (100%) rename {libc => lib/libc}/include/any-windows-any/sqloledb.h (100%) rename {libc => lib/libc}/include/any-windows-any/sqltypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/sqlucode.h (100%) rename {libc => lib/libc}/include/any-windows-any/srrestoreptapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/srv.h (100%) rename {libc => lib/libc}/include/any-windows-any/sspguid.h (100%) rename {libc => lib/libc}/include/any-windows-any/sspi.h (100%) rename {libc => lib/libc}/include/any-windows-any/sspserr.h (100%) rename {libc => lib/libc}/include/any-windows-any/sspsidl.h (100%) rename {libc => lib/libc}/include/any-windows-any/stdarg.h (100%) rename {libc => lib/libc}/include/any-windows-any/stddef.h (100%) rename {libc => lib/libc}/include/any-windows-any/stdexcpt.h (100%) rename {libc => lib/libc}/include/any-windows-any/stdint.h (100%) rename {libc => lib/libc}/include/any-windows-any/stdio.h (100%) rename {libc => lib/libc}/include/any-windows-any/stdlib.h (100%) rename {libc => lib/libc}/include/any-windows-any/sti.h (100%) rename {libc => lib/libc}/include/any-windows-any/stierr.h (100%) rename {libc => lib/libc}/include/any-windows-any/stireg.h (100%) rename {libc => lib/libc}/include/any-windows-any/stllock.h (100%) rename {libc => lib/libc}/include/any-windows-any/stm.h (100%) rename {libc => lib/libc}/include/any-windows-any/storage.h (100%) rename {libc => lib/libc}/include/any-windows-any/storduid.h (100%) rename {libc => lib/libc}/include/any-windows-any/storprop.h (100%) rename {libc => lib/libc}/include/any-windows-any/stralign.h (100%) rename {libc => lib/libc}/include/any-windows-any/string.h (100%) rename {libc => lib/libc}/include/any-windows-any/stringapiset.h (100%) rename {libc => lib/libc}/include/any-windows-any/strings.h (100%) rename {libc => lib/libc}/include/any-windows-any/strmif.h (100%) rename {libc => lib/libc}/include/any-windows-any/strsafe.h (100%) rename {libc => lib/libc}/include/any-windows-any/structuredquerycondition.h (100%) rename {libc => lib/libc}/include/any-windows-any/subauth.h (100%) rename {libc => lib/libc}/include/any-windows-any/subsmgr.h (100%) rename {libc => lib/libc}/include/any-windows-any/svcguid.h (100%) rename {libc => lib/libc}/include/any-windows-any/svrapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/swprintf.inl (100%) rename {libc => lib/libc}/include/any-windows-any/synchapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/sys/cdefs.h (100%) rename {libc => lib/libc}/include/any-windows-any/sys/fcntl.h (100%) rename {libc => lib/libc}/include/any-windows-any/sys/file.h (100%) rename {libc => lib/libc}/include/any-windows-any/sys/locking.h (100%) rename {libc => lib/libc}/include/any-windows-any/sys/param.h (100%) rename {libc => lib/libc}/include/any-windows-any/sys/stat.h (100%) rename {libc => lib/libc}/include/any-windows-any/sys/time.h (100%) rename {libc => lib/libc}/include/any-windows-any/sys/timeb.h (100%) rename {libc => lib/libc}/include/any-windows-any/sys/types.h (100%) rename {libc => lib/libc}/include/any-windows-any/sys/unistd.h (100%) rename {libc => lib/libc}/include/any-windows-any/sys/utime.h (100%) rename {libc => lib/libc}/include/any-windows-any/sysinfoapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/syslimits.h (100%) rename {libc => lib/libc}/include/any-windows-any/systemtopologyapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/t2embapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/tabflicks.h (100%) rename {libc => lib/libc}/include/any-windows-any/tapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/tapi3.h (100%) rename {libc => lib/libc}/include/any-windows-any/tapi3cc.h (100%) rename {libc => lib/libc}/include/any-windows-any/tapi3ds.h (100%) rename {libc => lib/libc}/include/any-windows-any/tapi3err.h (100%) rename {libc => lib/libc}/include/any-windows-any/tapi3if.h (100%) rename {libc => lib/libc}/include/any-windows-any/taskschd.h (100%) rename {libc => lib/libc}/include/any-windows-any/tbs.h (100%) rename {libc => lib/libc}/include/any-windows-any/tcerror.h (100%) rename {libc => lib/libc}/include/any-windows-any/tcguid.h (100%) rename {libc => lib/libc}/include/any-windows-any/tchar.h (100%) rename {libc => lib/libc}/include/any-windows-any/tcpestats.h (100%) rename {libc => lib/libc}/include/any-windows-any/tcpmib.h (100%) rename {libc => lib/libc}/include/any-windows-any/tdh.h (100%) rename {libc => lib/libc}/include/any-windows-any/tdi.h (100%) rename {libc => lib/libc}/include/any-windows-any/tdiinfo.h (100%) rename {libc => lib/libc}/include/any-windows-any/termmgr.h (100%) rename {libc => lib/libc}/include/any-windows-any/textserv.h (100%) rename {libc => lib/libc}/include/any-windows-any/textstor.h (100%) rename {libc => lib/libc}/include/any-windows-any/threadpoolapiset.h (100%) rename {libc => lib/libc}/include/any-windows-any/threadpoollegacyapiset.h (100%) rename {libc => lib/libc}/include/any-windows-any/time.h (100%) rename {libc => lib/libc}/include/any-windows-any/timeprov.h (100%) rename {libc => lib/libc}/include/any-windows-any/timezoneapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/tlbref.h (100%) rename {libc => lib/libc}/include/any-windows-any/tlhelp32.h (100%) rename {libc => lib/libc}/include/any-windows-any/tlogstg.h (100%) rename {libc => lib/libc}/include/any-windows-any/tmschema.h (100%) rename {libc => lib/libc}/include/any-windows-any/tnef.h (100%) rename {libc => lib/libc}/include/any-windows-any/tom.h (100%) rename {libc => lib/libc}/include/any-windows-any/tpcshrd.h (100%) rename {libc => lib/libc}/include/any-windows-any/traffic.h (100%) rename {libc => lib/libc}/include/any-windows-any/transact.h (100%) rename {libc => lib/libc}/include/any-windows-any/triedcid.h (100%) rename {libc => lib/libc}/include/any-windows-any/triediid.h (100%) rename {libc => lib/libc}/include/any-windows-any/triedit.h (100%) rename {libc => lib/libc}/include/any-windows-any/tsattrs.h (100%) rename {libc => lib/libc}/include/any-windows-any/tspi.h (100%) rename {libc => lib/libc}/include/any-windows-any/tssbx.h (100%) rename {libc => lib/libc}/include/any-windows-any/tsuserex.h (100%) rename {libc => lib/libc}/include/any-windows-any/tuner.h (100%) rename {libc => lib/libc}/include/any-windows-any/tvout.h (100%) rename {libc => lib/libc}/include/any-windows-any/txcoord.h (100%) rename {libc => lib/libc}/include/any-windows-any/txctx.h (100%) rename {libc => lib/libc}/include/any-windows-any/txdtc.h (100%) rename {libc => lib/libc}/include/any-windows-any/txfw32.h (100%) rename {libc => lib/libc}/include/any-windows-any/typeinfo.h (100%) rename {libc => lib/libc}/include/any-windows-any/uastrfnc.h (100%) rename {libc => lib/libc}/include/any-windows-any/uchar.h (100%) rename {libc => lib/libc}/include/any-windows-any/udpmib.h (100%) rename {libc => lib/libc}/include/any-windows-any/uianimation.h (100%) rename {libc => lib/libc}/include/any-windows-any/uiautomation.h (100%) rename {libc => lib/libc}/include/any-windows-any/uiautomationclient.h (100%) rename {libc => lib/libc}/include/any-windows-any/uiautomationcore.h (100%) rename {libc => lib/libc}/include/any-windows-any/uiautomationcoreapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/uiviewsettingsinterop.h (100%) rename {libc => lib/libc}/include/any-windows-any/umx.h (100%) rename {libc => lib/libc}/include/any-windows-any/unistd.h (100%) rename {libc => lib/libc}/include/any-windows-any/unknown.h (100%) rename {libc => lib/libc}/include/any-windows-any/unknwn.h (100%) rename {libc => lib/libc}/include/any-windows-any/unknwnbase.h (100%) rename {libc => lib/libc}/include/any-windows-any/urlhist.h (100%) rename {libc => lib/libc}/include/any-windows-any/urlmon.h (100%) rename {libc => lib/libc}/include/any-windows-any/usb.h (100%) rename {libc => lib/libc}/include/any-windows-any/usb100.h (100%) rename {libc => lib/libc}/include/any-windows-any/usb200.h (100%) rename {libc => lib/libc}/include/any-windows-any/usbcamdi.h (100%) rename {libc => lib/libc}/include/any-windows-any/usbdi.h (100%) rename {libc => lib/libc}/include/any-windows-any/usbioctl.h (100%) rename {libc => lib/libc}/include/any-windows-any/usbiodef.h (100%) rename {libc => lib/libc}/include/any-windows-any/usbprint.h (100%) rename {libc => lib/libc}/include/any-windows-any/usbrpmif.h (100%) rename {libc => lib/libc}/include/any-windows-any/usbscan.h (100%) rename {libc => lib/libc}/include/any-windows-any/usbspec.h (100%) rename {libc => lib/libc}/include/any-windows-any/usbuser.h (100%) rename {libc => lib/libc}/include/any-windows-any/userenv.h (100%) rename {libc => lib/libc}/include/any-windows-any/usp10.h (100%) rename {libc => lib/libc}/include/any-windows-any/utilapiset.h (100%) rename {libc => lib/libc}/include/any-windows-any/utime.h (100%) rename {libc => lib/libc}/include/any-windows-any/uuids.h (100%) rename {libc => lib/libc}/include/any-windows-any/uxtheme.h (100%) rename {libc => lib/libc}/include/any-windows-any/vadefs.h (100%) rename {libc => lib/libc}/include/any-windows-any/varargs.h (100%) rename {libc => lib/libc}/include/any-windows-any/vcr.h (100%) rename {libc => lib/libc}/include/any-windows-any/vdmdbg.h (100%) rename {libc => lib/libc}/include/any-windows-any/vds.h (100%) rename {libc => lib/libc}/include/any-windows-any/vdslun.h (100%) rename {libc => lib/libc}/include/any-windows-any/verinfo.ver (100%) rename {libc => lib/libc}/include/any-windows-any/versionhelpers.h (100%) rename {libc => lib/libc}/include/any-windows-any/vfw.h (100%) rename {libc => lib/libc}/include/any-windows-any/vfwmsgs.h (100%) rename {libc => lib/libc}/include/any-windows-any/virtdisk.h (100%) rename {libc => lib/libc}/include/any-windows-any/vmr9.h (100%) rename {libc => lib/libc}/include/any-windows-any/vmr9.idl (100%) rename {libc => lib/libc}/include/any-windows-any/vsadmin.h (100%) rename {libc => lib/libc}/include/any-windows-any/vsbackup.h (100%) rename {libc => lib/libc}/include/any-windows-any/vsmgmt.h (100%) rename {libc => lib/libc}/include/any-windows-any/vsprov.h (100%) rename {libc => lib/libc}/include/any-windows-any/vss.h (100%) rename {libc => lib/libc}/include/any-windows-any/vsstyle.h (100%) rename {libc => lib/libc}/include/any-windows-any/vssym32.h (100%) rename {libc => lib/libc}/include/any-windows-any/vswriter.h (100%) rename {libc => lib/libc}/include/any-windows-any/w32api.h (100%) rename {libc => lib/libc}/include/any-windows-any/wab.h (100%) rename {libc => lib/libc}/include/any-windows-any/wabapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/wabcode.h (100%) rename {libc => lib/libc}/include/any-windows-any/wabdefs.h (100%) rename {libc => lib/libc}/include/any-windows-any/wabiab.h (100%) rename {libc => lib/libc}/include/any-windows-any/wabmem.h (100%) rename {libc => lib/libc}/include/any-windows-any/wabnot.h (100%) rename {libc => lib/libc}/include/any-windows-any/wabtags.h (100%) rename {libc => lib/libc}/include/any-windows-any/wabutil.h (100%) rename {libc => lib/libc}/include/any-windows-any/wbemads.h (100%) rename {libc => lib/libc}/include/any-windows-any/wbemcli.h (100%) rename {libc => lib/libc}/include/any-windows-any/wbemdisp.h (100%) rename {libc => lib/libc}/include/any-windows-any/wbemidl.h (100%) rename {libc => lib/libc}/include/any-windows-any/wbemprov.h (100%) rename {libc => lib/libc}/include/any-windows-any/wbemtran.h (100%) rename {libc => lib/libc}/include/any-windows-any/wchar.h (100%) rename {libc => lib/libc}/include/any-windows-any/wcmconfig.h (100%) rename {libc => lib/libc}/include/any-windows-any/wcsplugin.h (100%) rename {libc => lib/libc}/include/any-windows-any/wct.h (100%) rename {libc => lib/libc}/include/any-windows-any/wctype.h (100%) rename {libc => lib/libc}/include/any-windows-any/wdsbp.h (100%) rename {libc => lib/libc}/include/any-windows-any/wdsclientapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/wdspxe.h (100%) rename {libc => lib/libc}/include/any-windows-any/wdstci.h (100%) rename {libc => lib/libc}/include/any-windows-any/wdstpdi.h (100%) rename {libc => lib/libc}/include/any-windows-any/wdstptmgmt.h (100%) rename {libc => lib/libc}/include/any-windows-any/werapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/wfext.h (100%) rename {libc => lib/libc}/include/any-windows-any/wia.h (100%) rename {libc => lib/libc}/include/any-windows-any/wiadef.h (100%) rename {libc => lib/libc}/include/any-windows-any/wiadevd.h (100%) rename {libc => lib/libc}/include/any-windows-any/wiavideo.h (100%) rename {libc => lib/libc}/include/any-windows-any/winable.h (100%) rename {libc => lib/libc}/include/any-windows-any/winapifamily.h (100%) rename {libc => lib/libc}/include/any-windows-any/winbase.h (100%) rename {libc => lib/libc}/include/any-windows-any/winber.h (100%) rename {libc => lib/libc}/include/any-windows-any/wincodec.h (100%) rename {libc => lib/libc}/include/any-windows-any/wincon.h (100%) rename {libc => lib/libc}/include/any-windows-any/wincred.h (100%) rename {libc => lib/libc}/include/any-windows-any/wincrypt.h (100%) rename {libc => lib/libc}/include/any-windows-any/winddi.h (100%) rename {libc => lib/libc}/include/any-windows-any/winddiui.h (100%) rename {libc => lib/libc}/include/any-windows-any/windef.h (100%) rename {libc => lib/libc}/include/any-windows-any/windns.h (100%) rename {libc => lib/libc}/include/any-windows-any/windot11.h (100%) rename {libc => lib/libc}/include/any-windows-any/windows.foundation.h (100%) rename {libc => lib/libc}/include/any-windows-any/windows.h (100%) rename {libc => lib/libc}/include/any-windows-any/windows.security.cryptography.h (100%) rename {libc => lib/libc}/include/any-windows-any/windows.storage.h (100%) rename {libc => lib/libc}/include/any-windows-any/windows.storage.streams.h (100%) rename {libc => lib/libc}/include/any-windows-any/windows.system.threading.h (100%) rename {libc => lib/libc}/include/any-windows-any/windowsx.h (100%) rename {libc => lib/libc}/include/any-windows-any/windowsx.h16 (100%) rename {libc => lib/libc}/include/any-windows-any/winefs.h (100%) rename {libc => lib/libc}/include/any-windows-any/winerror.h (100%) rename {libc => lib/libc}/include/any-windows-any/winevt.h (100%) rename {libc => lib/libc}/include/any-windows-any/wingdi.h (100%) rename {libc => lib/libc}/include/any-windows-any/winhttp.h (100%) rename {libc => lib/libc}/include/any-windows-any/wininet.h (100%) rename {libc => lib/libc}/include/any-windows-any/winineti.h (100%) rename {libc => lib/libc}/include/any-windows-any/winioctl.h (100%) rename {libc => lib/libc}/include/any-windows-any/winldap.h (100%) rename {libc => lib/libc}/include/any-windows-any/winnetwk.h (100%) rename {libc => lib/libc}/include/any-windows-any/winnls.h (100%) rename {libc => lib/libc}/include/any-windows-any/winnls32.h (100%) rename {libc => lib/libc}/include/any-windows-any/winnt.h (100%) rename {libc => lib/libc}/include/any-windows-any/winnt.rh (100%) rename {libc => lib/libc}/include/any-windows-any/winperf.h (100%) rename {libc => lib/libc}/include/any-windows-any/winreg.h (100%) rename {libc => lib/libc}/include/any-windows-any/winresrc.h (100%) rename {libc => lib/libc}/include/any-windows-any/winsafer.h (100%) rename {libc => lib/libc}/include/any-windows-any/winsatcominterfacei.h (100%) rename {libc => lib/libc}/include/any-windows-any/winscard.h (100%) rename {libc => lib/libc}/include/any-windows-any/winsdkver.h (100%) rename {libc => lib/libc}/include/any-windows-any/winsmcrd.h (100%) rename {libc => lib/libc}/include/any-windows-any/winsnmp.h (100%) rename {libc => lib/libc}/include/any-windows-any/winsock.h (100%) rename {libc => lib/libc}/include/any-windows-any/winsock2.h (100%) rename {libc => lib/libc}/include/any-windows-any/winsplp.h (100%) rename {libc => lib/libc}/include/any-windows-any/winspool.h (100%) rename {libc => lib/libc}/include/any-windows-any/winstring.h (100%) rename {libc => lib/libc}/include/any-windows-any/winsvc.h (100%) rename {libc => lib/libc}/include/any-windows-any/winsxs.h (100%) rename {libc => lib/libc}/include/any-windows-any/winsync.h (100%) rename {libc => lib/libc}/include/any-windows-any/winternl.h (100%) rename {libc => lib/libc}/include/any-windows-any/wintrust.h (100%) rename {libc => lib/libc}/include/any-windows-any/winusb.h (100%) rename {libc => lib/libc}/include/any-windows-any/winusbio.h (100%) rename {libc => lib/libc}/include/any-windows-any/winuser.h (100%) rename {libc => lib/libc}/include/any-windows-any/winuser.rh (100%) rename {libc => lib/libc}/include/any-windows-any/winver.h (100%) rename {libc => lib/libc}/include/any-windows-any/winwlx.h (100%) rename {libc => lib/libc}/include/any-windows-any/wlanapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/wlanihvtypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/wlantypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/wmcodecdsp.h (100%) rename {libc => lib/libc}/include/any-windows-any/wmcontainer.h (100%) rename {libc => lib/libc}/include/any-windows-any/wmdrmsdk.h (100%) rename {libc => lib/libc}/include/any-windows-any/wmiatlprov.h (100%) rename {libc => lib/libc}/include/any-windows-any/wmistr.h (100%) rename {libc => lib/libc}/include/any-windows-any/wmiutils.h (100%) rename {libc => lib/libc}/include/any-windows-any/wmsbuffer.h (100%) rename {libc => lib/libc}/include/any-windows-any/wmsdkidl.h (100%) rename {libc => lib/libc}/include/any-windows-any/wnnc.h (100%) rename {libc => lib/libc}/include/any-windows-any/wow64apiset.h (100%) rename {libc => lib/libc}/include/any-windows-any/wownt16.h (100%) rename {libc => lib/libc}/include/any-windows-any/wownt32.h (100%) rename {libc => lib/libc}/include/any-windows-any/wpapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/wpapimsg.h (100%) rename {libc => lib/libc}/include/any-windows-any/wpcapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/wpcevent.h (100%) rename {libc => lib/libc}/include/any-windows-any/wpcrsmsg.h (100%) rename {libc => lib/libc}/include/any-windows-any/wpftpmsg.h (100%) rename {libc => lib/libc}/include/any-windows-any/wppstmsg.h (100%) rename {libc => lib/libc}/include/any-windows-any/wpspihlp.h (100%) rename {libc => lib/libc}/include/any-windows-any/wptypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/wpwizmsg.h (100%) rename {libc => lib/libc}/include/any-windows-any/wrl.h (100%) rename {libc => lib/libc}/include/any-windows-any/wrl/client.h (100%) rename {libc => lib/libc}/include/any-windows-any/wrl/internal.h (100%) rename {libc => lib/libc}/include/any-windows-any/wrl/module.h (100%) rename {libc => lib/libc}/include/any-windows-any/wrl/wrappers/corewrappers.h (100%) rename {libc => lib/libc}/include/any-windows-any/ws2atm.h (100%) rename {libc => lib/libc}/include/any-windows-any/ws2bth.h (100%) rename {libc => lib/libc}/include/any-windows-any/ws2def.h (100%) rename {libc => lib/libc}/include/any-windows-any/ws2dnet.h (100%) rename {libc => lib/libc}/include/any-windows-any/ws2ipdef.h (100%) rename {libc => lib/libc}/include/any-windows-any/ws2spi.h (100%) rename {libc => lib/libc}/include/any-windows-any/ws2tcpip.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsdapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsdattachment.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsdbase.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsdclient.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsddisco.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsdhost.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsdtypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsdutil.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsdxml.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsdxmldom.h (100%) rename {libc => lib/libc}/include/any-windows-any/wshisotp.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsipv6ok.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsipx.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsman.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsmandisp.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsnetbs.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsnwlink.h (100%) rename {libc => lib/libc}/include/any-windows-any/wspiapi.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsrm.h (100%) rename {libc => lib/libc}/include/any-windows-any/wsvns.h (100%) rename {libc => lib/libc}/include/any-windows-any/wtsapi32.h (100%) rename {libc => lib/libc}/include/any-windows-any/wtypes.h (100%) rename {libc => lib/libc}/include/any-windows-any/wtypesbase.h (100%) rename {libc => lib/libc}/include/any-windows-any/xa.h (100%) rename {libc => lib/libc}/include/any-windows-any/xcmc.h (100%) rename {libc => lib/libc}/include/any-windows-any/xcmcext.h (100%) rename {libc => lib/libc}/include/any-windows-any/xcmcmsx2.h (100%) rename {libc => lib/libc}/include/any-windows-any/xcmcmsxt.h (100%) rename {libc => lib/libc}/include/any-windows-any/xenroll.h (100%) rename {libc => lib/libc}/include/any-windows-any/xinput.h (100%) rename {libc => lib/libc}/include/any-windows-any/xlocinfo.h (100%) rename {libc => lib/libc}/include/any-windows-any/xmath.h (100%) rename {libc => lib/libc}/include/any-windows-any/xmldomdid.h (100%) rename {libc => lib/libc}/include/any-windows-any/xmldsodid.h (100%) rename {libc => lib/libc}/include/any-windows-any/xmllite.h (100%) rename {libc => lib/libc}/include/any-windows-any/xmltrnsf.h (100%) rename {libc => lib/libc}/include/any-windows-any/xolehlp.h (100%) rename {libc => lib/libc}/include/any-windows-any/xpsdigitalsignature.h (100%) rename {libc => lib/libc}/include/any-windows-any/xpsobjectmodel.h (100%) rename {libc => lib/libc}/include/any-windows-any/xpsobjectmodel_1.h (100%) rename {libc => lib/libc}/include/any-windows-any/xpsprint.h (100%) rename {libc => lib/libc}/include/any-windows-any/xpsrassvc.h (100%) rename {libc => lib/libc}/include/any-windows-any/ymath.h (100%) rename {libc => lib/libc}/include/any-windows-any/yvals.h (100%) rename {libc => lib/libc}/include/any-windows-any/zmouse.h (100%) rename {libc => lib/libc}/include/arm-linux-any/asm/fcntl.h (100%) rename {libc => lib/libc}/include/arm-linux-any/asm/ioctls.h (100%) rename {libc => lib/libc}/include/arm-linux-any/asm/mman.h (100%) rename {libc => lib/libc}/include/arm-linux-any/asm/statfs.h (100%) rename {libc => lib/libc}/include/arm-linux-any/asm/swab.h (100%) rename {libc => lib/libc}/include/arm-linux-any/asm/types.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/bits/endian.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/bits/fcntl.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/bits/fenv.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/bits/floatn.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/bits/hwcap.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/bits/link.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/bits/long-double.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/bits/procfs-id.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/bits/procfs.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/bits/semaphore.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/bits/setjmp.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/bits/shmlba.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/bits/stat.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/bits/wordsize.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/fpu_control.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/gnu/stubs.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/sys/ptrace.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/sys/ucontext.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabi/sys/user.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/bits/endian.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/bits/fcntl.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/bits/fenv.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/bits/floatn.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/bits/hwcap.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/bits/link.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/bits/long-double.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/bits/procfs-id.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/bits/procfs.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/bits/semaphore.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/bits/setjmp.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/bits/shmlba.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/bits/stat.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/bits/wordsize.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/fpu_control.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/gnu/stubs.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/sys/ptrace.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/sys/ucontext.h (100%) rename {libc => lib/libc}/include/arm-linux-gnueabihf/sys/user.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabi/bfd.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabi/bfd_stdint.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabi/bits/fcntl.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabi/bits/hwcap.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabi/bits/ioctl_fix.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabi/bits/msg.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabi/bits/ptrace.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabi/bits/shm.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabi/bits/stdint.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabihf/bfd.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabihf/bfd_stdint.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabihf/bits/fcntl.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabihf/bits/hwcap.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabihf/bits/ioctl_fix.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabihf/bits/msg.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabihf/bits/ptrace.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabihf/bits/shm.h (100%) rename {libc => lib/libc}/include/arm-linux-musleabihf/bits/stdint.h (100%) rename {libc => lib/libc}/include/armeb-linux-any/asm/fcntl.h (100%) rename {libc => lib/libc}/include/armeb-linux-any/asm/ioctls.h (100%) rename {libc => lib/libc}/include/armeb-linux-any/asm/mman.h (100%) rename {libc => lib/libc}/include/armeb-linux-any/asm/statfs.h (100%) rename {libc => lib/libc}/include/armeb-linux-any/asm/swab.h (100%) rename {libc => lib/libc}/include/armeb-linux-any/asm/types.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/bits/endian.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/bits/fcntl.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/bits/fenv.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/bits/floatn.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/bits/hwcap.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/bits/link.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/bits/long-double.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/bits/procfs-id.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/bits/procfs.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/bits/semaphore.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/bits/setjmp.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/bits/shmlba.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/bits/stat.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/bits/wordsize.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/fpu_control.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/gnu/stubs.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/sys/ptrace.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/sys/ucontext.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabi/sys/user.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/bits/endian.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/bits/fcntl.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/bits/fenv.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/bits/floatn.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/bits/hwcap.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/bits/link.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/bits/long-double.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/bits/procfs-id.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/bits/procfs.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/bits/semaphore.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/bits/setjmp.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/bits/shmlba.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/bits/stat.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/bits/wordsize.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/fpu_control.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/gnu/stubs.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/sys/ptrace.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/sys/ucontext.h (100%) rename {libc => lib/libc}/include/armeb-linux-gnueabihf/sys/user.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabi/bfd.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabi/bfd_stdint.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabi/bits/fcntl.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabi/bits/hwcap.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabi/bits/ioctl_fix.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabi/bits/msg.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabi/bits/ptrace.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabi/bits/shm.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabi/bits/stdint.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabihf/bfd.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabihf/bfd_stdint.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabihf/bits/fcntl.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabihf/bits/hwcap.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabihf/bits/ioctl_fix.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabihf/bits/msg.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabihf/bits/ptrace.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabihf/bits/shm.h (100%) rename {libc => lib/libc}/include/armeb-linux-musleabihf/bits/stdint.h (100%) rename {libc => lib/libc}/include/generic-glibc/a.out.h (100%) rename {libc => lib/libc}/include/generic-glibc/aio.h (100%) rename {libc => lib/libc}/include/generic-glibc/aliases.h (100%) rename {libc => lib/libc}/include/generic-glibc/alloca.h (100%) rename {libc => lib/libc}/include/generic-glibc/ar.h (100%) rename {libc => lib/libc}/include/generic-glibc/argp.h (100%) rename {libc => lib/libc}/include/generic-glibc/argz.h (100%) rename {libc => lib/libc}/include/generic-glibc/arpa/ftp.h (100%) rename {libc => lib/libc}/include/generic-glibc/arpa/inet.h (100%) rename {libc => lib/libc}/include/generic-glibc/arpa/nameser.h (100%) rename {libc => lib/libc}/include/generic-glibc/arpa/nameser_compat.h (100%) rename {libc => lib/libc}/include/generic-glibc/arpa/telnet.h (100%) rename {libc => lib/libc}/include/generic-glibc/arpa/tftp.h (100%) rename {libc => lib/libc}/include/generic-glibc/assert.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/a.out.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/argp-ldbl.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/byteswap.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/cmathcalls.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/confname.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/cpu-set.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/dirent.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/dlfcn.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/elfclass.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/endian.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/environments.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/epoll.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/err-ldbl.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/errno.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/error-ldbl.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/error.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/eventfd.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/fcntl-linux.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/fcntl.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/fcntl2.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/fenv.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/fenvinline.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/floatn-common.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/floatn.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/flt-eval-method.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/fp-fast.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/fp-logb.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/getopt_core.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/getopt_ext.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/getopt_posix.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/hwcap.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/in.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/indirect-return.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/initspin.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/inotify.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/ioctl-types.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/ioctls.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/ipc.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/ipctypes.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/iscanonical.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/libc-header-start.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/libm-simd-decl-stubs.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/link.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/local_lim.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/locale.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/long-double.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/math-finite.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/math-vector-fortran.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/math-vector.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/mathcalls-helper-functions.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/mathcalls-narrow.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/mathcalls.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/mathdef.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/mathinline.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/mman-linux.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/mman-map-flags-generic.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/mman-shared.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/mman.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/monetary-ldbl.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/mqueue.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/mqueue2.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/msq-pad.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/msq.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/netdb.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/param.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/poll.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/poll2.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/posix1_lim.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/posix2_lim.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/posix_opt.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/ppc.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/printf-ldbl.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/procfs-extra.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/procfs-id.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/procfs-prregset.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/procfs.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/pthreadtypes.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/ptrace-shared.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/resource.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/sched.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/select.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/select2.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/sem-pad.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/sem.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/semaphore.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/setjmp.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/setjmp2.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/shm-pad.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/shm.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/shmlba.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/sigaction.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/sigcontext.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/sigevent-consts.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/siginfo-arch.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/siginfo-consts-arch.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/siginfo-consts.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/signalfd.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/signum-generic.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/signum.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/sigstack.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/sigthread.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/sockaddr.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/socket.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/socket2.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/socket_type.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/ss_flags.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/stab.def (100%) rename {libc => lib/libc}/include/generic-glibc/bits/stat.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/statfs.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/statvfs.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/statx.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/stdint-intn.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/stdint-uintn.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/stdio-ldbl.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/stdio.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/stdio2.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/stdio_lim.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/stdlib-bsearch.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/stdlib-float.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/stdlib-ldbl.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/stdlib.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/string_fortified.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/strings_fortified.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/stropts.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/sys_errlist.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/syscall.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/sysctl.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/syslog-ldbl.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/syslog-path.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/syslog.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/sysmacros.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/termios-baud.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/termios-c_cc.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/termios-c_cflag.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/termios-c_iflag.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/termios-c_lflag.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/termios-c_oflag.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/termios-misc.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/termios-struct.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/termios-tcflow.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/termios.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/thread-shared-types.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/time.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/time64.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/timerfd.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/timesize.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/timex.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/FILE.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/__FILE.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/__fpos64_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/__fpos_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/__locale_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/__mbstate_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/__sigset_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/__sigval_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/clock_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/clockid_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/cookie_io_functions_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/error_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/locale_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/mbstate_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/res_state.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/sig_atomic_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/sigevent_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/siginfo_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/sigset_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/sigval_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/stack_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/struct_FILE.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/struct_iovec.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/struct_itimerspec.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/struct_osockaddr.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/struct_rusage.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/struct_sched_param.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/struct_sigstack.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/struct_timespec.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/struct_timeval.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/struct_tm.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/time_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/timer_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/types/wint_t.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/typesizes.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/uintn-identity.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/uio-ext.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/uio_lim.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/unistd.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/unistd_ext.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/utmp.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/utmpx.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/utsname.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/waitflags.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/waitstatus.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/wchar-ldbl.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/wchar.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/wchar2.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/wctype-wchar.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/wordsize.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/xopen_lim.h (100%) rename {libc => lib/libc}/include/generic-glibc/bits/xtitypes.h (100%) rename {libc => lib/libc}/include/generic-glibc/byteswap.h (100%) rename {libc => lib/libc}/include/generic-glibc/complex.h (100%) rename {libc => lib/libc}/include/generic-glibc/cpio.h (100%) rename {libc => lib/libc}/include/generic-glibc/crypt.h (100%) rename {libc => lib/libc}/include/generic-glibc/ctype.h (100%) rename {libc => lib/libc}/include/generic-glibc/dirent.h (100%) rename {libc => lib/libc}/include/generic-glibc/dlfcn.h (100%) rename {libc => lib/libc}/include/generic-glibc/elf.h (100%) rename {libc => lib/libc}/include/generic-glibc/endian.h (100%) rename {libc => lib/libc}/include/generic-glibc/envz.h (100%) rename {libc => lib/libc}/include/generic-glibc/err.h (100%) rename {libc => lib/libc}/include/generic-glibc/errno.h (100%) rename {libc => lib/libc}/include/generic-glibc/error.h (100%) rename {libc => lib/libc}/include/generic-glibc/execinfo.h (100%) rename {libc => lib/libc}/include/generic-glibc/fcntl.h (100%) rename {libc => lib/libc}/include/generic-glibc/features.h (100%) rename {libc => lib/libc}/include/generic-glibc/fenv.h (100%) rename {libc => lib/libc}/include/generic-glibc/fmtmsg.h (100%) rename {libc => lib/libc}/include/generic-glibc/fnmatch.h (100%) rename {libc => lib/libc}/include/generic-glibc/fpregdef.h (100%) rename {libc => lib/libc}/include/generic-glibc/fpu_control.h (100%) rename {libc => lib/libc}/include/generic-glibc/fstab.h (100%) rename {libc => lib/libc}/include/generic-glibc/fts.h (100%) rename {libc => lib/libc}/include/generic-glibc/ftw.h (100%) rename {libc => lib/libc}/include/generic-glibc/gconv.h (100%) rename {libc => lib/libc}/include/generic-glibc/getopt.h (100%) rename {libc => lib/libc}/include/generic-glibc/glob.h (100%) rename {libc => lib/libc}/include/generic-glibc/gnu-versions.h (100%) rename {libc => lib/libc}/include/generic-glibc/gnu/lib-names-32.h (100%) rename {libc => lib/libc}/include/generic-glibc/gnu/lib-names-hard.h (100%) rename {libc => lib/libc}/include/generic-glibc/gnu/lib-names-n32_hard.h (100%) rename {libc => lib/libc}/include/generic-glibc/gnu/lib-names-n64_hard.h (100%) rename {libc => lib/libc}/include/generic-glibc/gnu/lib-names-o32_hard.h (100%) rename {libc => lib/libc}/include/generic-glibc/gnu/lib-names-soft.h (100%) rename {libc => lib/libc}/include/generic-glibc/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/generic-glibc/gnu/libc-version.h (100%) rename {libc => lib/libc}/include/generic-glibc/gnu/stubs-32.h (100%) rename {libc => lib/libc}/include/generic-glibc/gnu/stubs-hard.h (100%) rename {libc => lib/libc}/include/generic-glibc/gnu/stubs-n32_hard.h (100%) rename {libc => lib/libc}/include/generic-glibc/gnu/stubs-n64_hard.h (100%) rename {libc => lib/libc}/include/generic-glibc/gnu/stubs-o32_hard.h (100%) rename {libc => lib/libc}/include/generic-glibc/gnu/stubs-soft.h (100%) rename {libc => lib/libc}/include/generic-glibc/gnu/stubs.h (100%) rename {libc => lib/libc}/include/generic-glibc/grp.h (100%) rename {libc => lib/libc}/include/generic-glibc/gshadow.h (100%) rename {libc => lib/libc}/include/generic-glibc/iconv.h (100%) rename {libc => lib/libc}/include/generic-glibc/ieee754.h (100%) rename {libc => lib/libc}/include/generic-glibc/ifaddrs.h (100%) rename {libc => lib/libc}/include/generic-glibc/inttypes.h (100%) rename {libc => lib/libc}/include/generic-glibc/langinfo.h (100%) rename {libc => lib/libc}/include/generic-glibc/lastlog.h (100%) rename {libc => lib/libc}/include/generic-glibc/libgen.h (100%) rename {libc => lib/libc}/include/generic-glibc/libintl.h (100%) rename {libc => lib/libc}/include/generic-glibc/limits.h (100%) rename {libc => lib/libc}/include/generic-glibc/link.h (100%) rename {libc => lib/libc}/include/generic-glibc/locale.h (100%) rename {libc => lib/libc}/include/generic-glibc/malloc.h (100%) rename {libc => lib/libc}/include/generic-glibc/math.h (100%) rename {libc => lib/libc}/include/generic-glibc/mcheck.h (100%) rename {libc => lib/libc}/include/generic-glibc/memory.h (100%) rename {libc => lib/libc}/include/generic-glibc/mntent.h (100%) rename {libc => lib/libc}/include/generic-glibc/monetary.h (100%) rename {libc => lib/libc}/include/generic-glibc/mqueue.h (100%) rename {libc => lib/libc}/include/generic-glibc/net/ethernet.h (100%) rename {libc => lib/libc}/include/generic-glibc/net/if.h (100%) rename {libc => lib/libc}/include/generic-glibc/net/if_arp.h (100%) rename {libc => lib/libc}/include/generic-glibc/net/if_packet.h (100%) rename {libc => lib/libc}/include/generic-glibc/net/if_ppp.h (100%) rename {libc => lib/libc}/include/generic-glibc/net/if_shaper.h (100%) rename {libc => lib/libc}/include/generic-glibc/net/if_slip.h (100%) rename {libc => lib/libc}/include/generic-glibc/net/ppp-comp.h (100%) rename {libc => lib/libc}/include/generic-glibc/net/ppp_defs.h (100%) rename {libc => lib/libc}/include/generic-glibc/net/route.h (100%) rename {libc => lib/libc}/include/generic-glibc/netash/ash.h (100%) rename {libc => lib/libc}/include/generic-glibc/netatalk/at.h (100%) rename {libc => lib/libc}/include/generic-glibc/netax25/ax25.h (100%) rename {libc => lib/libc}/include/generic-glibc/netdb.h (100%) rename {libc => lib/libc}/include/generic-glibc/neteconet/ec.h (100%) rename {libc => lib/libc}/include/generic-glibc/netinet/ether.h (100%) rename {libc => lib/libc}/include/generic-glibc/netinet/icmp6.h (100%) rename {libc => lib/libc}/include/generic-glibc/netinet/if_ether.h (100%) rename {libc => lib/libc}/include/generic-glibc/netinet/if_fddi.h (100%) rename {libc => lib/libc}/include/generic-glibc/netinet/if_tr.h (100%) rename {libc => lib/libc}/include/generic-glibc/netinet/igmp.h (100%) rename {libc => lib/libc}/include/generic-glibc/netinet/in.h (100%) rename {libc => lib/libc}/include/generic-glibc/netinet/in_systm.h (100%) rename {libc => lib/libc}/include/generic-glibc/netinet/ip.h (100%) rename {libc => lib/libc}/include/generic-glibc/netinet/ip6.h (100%) rename {libc => lib/libc}/include/generic-glibc/netinet/ip_icmp.h (100%) rename {libc => lib/libc}/include/generic-glibc/netinet/tcp.h (100%) rename {libc => lib/libc}/include/generic-glibc/netinet/udp.h (100%) rename {libc => lib/libc}/include/generic-glibc/netipx/ipx.h (100%) rename {libc => lib/libc}/include/generic-glibc/netiucv/iucv.h (100%) rename {libc => lib/libc}/include/generic-glibc/netpacket/packet.h (100%) rename {libc => lib/libc}/include/generic-glibc/netrom/netrom.h (100%) rename {libc => lib/libc}/include/generic-glibc/netrose/rose.h (100%) rename {libc => lib/libc}/include/generic-glibc/nfs/nfs.h (100%) rename {libc => lib/libc}/include/generic-glibc/nl_types.h (100%) rename {libc => lib/libc}/include/generic-glibc/nss.h (100%) rename {libc => lib/libc}/include/generic-glibc/obstack.h (100%) rename {libc => lib/libc}/include/generic-glibc/paths.h (100%) rename {libc => lib/libc}/include/generic-glibc/poll.h (100%) rename {libc => lib/libc}/include/generic-glibc/printf.h (100%) rename {libc => lib/libc}/include/generic-glibc/proc_service.h (100%) rename {libc => lib/libc}/include/generic-glibc/protocols/routed.h (100%) rename {libc => lib/libc}/include/generic-glibc/protocols/rwhod.h (100%) rename {libc => lib/libc}/include/generic-glibc/protocols/talkd.h (100%) rename {libc => lib/libc}/include/generic-glibc/protocols/timed.h (100%) rename {libc => lib/libc}/include/generic-glibc/pthread.h (100%) rename {libc => lib/libc}/include/generic-glibc/pty.h (100%) rename {libc => lib/libc}/include/generic-glibc/pwd.h (100%) rename {libc => lib/libc}/include/generic-glibc/re_comp.h (100%) rename {libc => lib/libc}/include/generic-glibc/regdef.h (100%) rename {libc => lib/libc}/include/generic-glibc/regex.h (100%) rename {libc => lib/libc}/include/generic-glibc/regexp.h (100%) rename {libc => lib/libc}/include/generic-glibc/resolv.h (100%) rename {libc => lib/libc}/include/generic-glibc/rpc/netdb.h (100%) rename {libc => lib/libc}/include/generic-glibc/sched.h (100%) rename {libc => lib/libc}/include/generic-glibc/scsi/scsi.h (100%) rename {libc => lib/libc}/include/generic-glibc/scsi/scsi_ioctl.h (100%) rename {libc => lib/libc}/include/generic-glibc/scsi/sg.h (100%) rename {libc => lib/libc}/include/generic-glibc/search.h (100%) rename {libc => lib/libc}/include/generic-glibc/semaphore.h (100%) rename {libc => lib/libc}/include/generic-glibc/setjmp.h (100%) rename {libc => lib/libc}/include/generic-glibc/sgidefs.h (100%) rename {libc => lib/libc}/include/generic-glibc/sgtty.h (100%) rename {libc => lib/libc}/include/generic-glibc/shadow.h (100%) rename {libc => lib/libc}/include/generic-glibc/signal.h (100%) rename {libc => lib/libc}/include/generic-glibc/spawn.h (100%) rename {libc => lib/libc}/include/generic-glibc/stab.h (100%) rename {libc => lib/libc}/include/generic-glibc/stdc-predef.h (100%) rename {libc => lib/libc}/include/generic-glibc/stdint.h (100%) rename {libc => lib/libc}/include/generic-glibc/stdio.h (100%) rename {libc => lib/libc}/include/generic-glibc/stdio_ext.h (100%) rename {libc => lib/libc}/include/generic-glibc/stdlib.h (100%) rename {libc => lib/libc}/include/generic-glibc/string.h (100%) rename {libc => lib/libc}/include/generic-glibc/strings.h (100%) rename {libc => lib/libc}/include/generic-glibc/stropts.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/acct.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/asm.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/auxv.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/bitypes.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/cachectl.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/cdefs.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/debugreg.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/dir.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/elf.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/epoll.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/errno.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/eventfd.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/fanotify.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/fcntl.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/file.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/fpregdef.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/fsuid.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/gmon.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/gmon_out.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/inotify.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/io.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/ioctl.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/ipc.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/kd.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/klog.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/mman.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/mount.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/msg.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/mtio.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/param.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/pci.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/perm.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/personality.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/platform/ppc.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/poll.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/prctl.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/procfs.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/profil.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/ptrace.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/queue.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/quota.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/random.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/raw.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/reboot.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/reg.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/regdef.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/resource.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/select.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/sem.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/sendfile.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/shm.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/signal.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/signalfd.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/socket.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/socketvar.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/soundcard.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/stat.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/statfs.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/statvfs.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/stropts.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/swap.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/syscall.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/sysctl.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/sysinfo.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/syslog.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/sysmacros.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/sysmips.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/tas.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/termios.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/time.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/timeb.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/timerfd.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/times.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/timex.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/ttychars.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/ttydefaults.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/types.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/ucontext.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/uio.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/un.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/unistd.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/user.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/utsname.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/vfs.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/vlimit.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/vm86.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/vt.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/vtimes.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/wait.h (100%) rename {libc => lib/libc}/include/generic-glibc/sys/xattr.h (100%) rename {libc => lib/libc}/include/generic-glibc/syscall.h (100%) rename {libc => lib/libc}/include/generic-glibc/sysexits.h (100%) rename {libc => lib/libc}/include/generic-glibc/syslog.h (100%) rename {libc => lib/libc}/include/generic-glibc/tar.h (100%) rename {libc => lib/libc}/include/generic-glibc/termio.h (100%) rename {libc => lib/libc}/include/generic-glibc/termios.h (100%) rename {libc => lib/libc}/include/generic-glibc/tgmath.h (100%) rename {libc => lib/libc}/include/generic-glibc/thread_db.h (100%) rename {libc => lib/libc}/include/generic-glibc/threads.h (100%) rename {libc => lib/libc}/include/generic-glibc/time.h (100%) rename {libc => lib/libc}/include/generic-glibc/ttyent.h (100%) rename {libc => lib/libc}/include/generic-glibc/uchar.h (100%) rename {libc => lib/libc}/include/generic-glibc/ucontext.h (100%) rename {libc => lib/libc}/include/generic-glibc/ulimit.h (100%) rename {libc => lib/libc}/include/generic-glibc/unistd.h (100%) rename {libc => lib/libc}/include/generic-glibc/utime.h (100%) rename {libc => lib/libc}/include/generic-glibc/utmp.h (100%) rename {libc => lib/libc}/include/generic-glibc/utmpx.h (100%) rename {libc => lib/libc}/include/generic-glibc/values.h (100%) rename {libc => lib/libc}/include/generic-glibc/wait.h (100%) rename {libc => lib/libc}/include/generic-glibc/wchar.h (100%) rename {libc => lib/libc}/include/generic-glibc/wctype.h (100%) rename {libc => lib/libc}/include/generic-glibc/wordexp.h (100%) rename {libc => lib/libc}/include/generic-musl/aio.h (100%) rename {libc => lib/libc}/include/generic-musl/alloca.h (100%) rename {libc => lib/libc}/include/generic-musl/ansidecl.h (100%) rename {libc => lib/libc}/include/generic-musl/ar.h (100%) rename {libc => lib/libc}/include/generic-musl/arpa/ftp.h (100%) rename {libc => lib/libc}/include/generic-musl/arpa/inet.h (100%) rename {libc => lib/libc}/include/generic-musl/arpa/nameser.h (100%) rename {libc => lib/libc}/include/generic-musl/arpa/nameser_compat.h (100%) rename {libc => lib/libc}/include/generic-musl/arpa/telnet.h (100%) rename {libc => lib/libc}/include/generic-musl/arpa/tftp.h (100%) rename {libc => lib/libc}/include/generic-musl/assert.h (100%) rename {libc => lib/libc}/include/generic-musl/bfd.h (100%) rename {libc => lib/libc}/include/generic-musl/bfdlink.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/alltypes.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/endian.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/errno.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/fcntl.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/fenv.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/float.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/hwcap.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/io.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/ioctl.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/ioctl_fix.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/ipc.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/kd.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/limits.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/link.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/mman.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/msg.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/poll.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/posix.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/ptrace.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/reg.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/resource.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/sem.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/setjmp.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/shm.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/signal.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/socket.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/soundcard.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/stat.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/statfs.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/stdint.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/syscall.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/termios.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/user.h (100%) rename {libc => lib/libc}/include/generic-musl/bits/vt.h (100%) rename {libc => lib/libc}/include/generic-musl/byteswap.h (100%) rename {libc => lib/libc}/include/generic-musl/complex.h (100%) rename {libc => lib/libc}/include/generic-musl/cpio.h (100%) rename {libc => lib/libc}/include/generic-musl/crypt.h (100%) rename {libc => lib/libc}/include/generic-musl/ctype.h (100%) rename {libc => lib/libc}/include/generic-musl/diagnostics.h (100%) rename {libc => lib/libc}/include/generic-musl/dirent.h (100%) rename {libc => lib/libc}/include/generic-musl/dis-asm.h (100%) rename {libc => lib/libc}/include/generic-musl/dlfcn.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/amdgpu_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/armada_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/drm_fourcc.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/drm_mode.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/drm_sarea.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/etnaviv_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/exynos_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/i810_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/i915_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/mga_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/msm_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/nouveau_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/omap_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/qxl_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/r128_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/radeon_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/savage_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/sis_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/tegra_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/v3d_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/vc4_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/vgem_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/via_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/virtgpu_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/drm/vmwgfx_drm.h (100%) rename {libc => lib/libc}/include/generic-musl/elf.h (100%) rename {libc => lib/libc}/include/generic-musl/endian.h (100%) rename {libc => lib/libc}/include/generic-musl/err.h (100%) rename {libc => lib/libc}/include/generic-musl/errno.h (100%) rename {libc => lib/libc}/include/generic-musl/fcntl.h (100%) rename {libc => lib/libc}/include/generic-musl/features.h (100%) rename {libc => lib/libc}/include/generic-musl/fenv.h (100%) rename {libc => lib/libc}/include/generic-musl/float.h (100%) rename {libc => lib/libc}/include/generic-musl/fmtmsg.h (100%) rename {libc => lib/libc}/include/generic-musl/fnmatch.h (100%) rename {libc => lib/libc}/include/generic-musl/ftw.h (100%) rename {libc => lib/libc}/include/generic-musl/getopt.h (100%) rename {libc => lib/libc}/include/generic-musl/glob.h (100%) rename {libc => lib/libc}/include/generic-musl/grp.h (100%) rename {libc => lib/libc}/include/generic-musl/iconv.h (100%) rename {libc => lib/libc}/include/generic-musl/ifaddrs.h (100%) rename {libc => lib/libc}/include/generic-musl/inttypes.h (100%) rename {libc => lib/libc}/include/generic-musl/iso646.h (100%) rename {libc => lib/libc}/include/generic-musl/langinfo.h (100%) rename {libc => lib/libc}/include/generic-musl/lastlog.h (100%) rename {libc => lib/libc}/include/generic-musl/libgen.h (100%) rename {libc => lib/libc}/include/generic-musl/libintl.h (100%) rename {libc => lib/libc}/include/generic-musl/limits.h (100%) rename {libc => lib/libc}/include/generic-musl/link.h (100%) rename {libc => lib/libc}/include/generic-musl/locale.h (100%) rename {libc => lib/libc}/include/generic-musl/malloc.h (100%) rename {libc => lib/libc}/include/generic-musl/math.h (100%) rename {libc => lib/libc}/include/generic-musl/memory.h (100%) rename {libc => lib/libc}/include/generic-musl/misc/cxl.h (100%) rename {libc => lib/libc}/include/generic-musl/misc/ocxl.h (100%) rename {libc => lib/libc}/include/generic-musl/mntent.h (100%) rename {libc => lib/libc}/include/generic-musl/monetary.h (100%) rename {libc => lib/libc}/include/generic-musl/mqueue.h (100%) rename {libc => lib/libc}/include/generic-musl/mtd/inftl-user.h (100%) rename {libc => lib/libc}/include/generic-musl/mtd/mtd-abi.h (100%) rename {libc => lib/libc}/include/generic-musl/mtd/mtd-user.h (100%) rename {libc => lib/libc}/include/generic-musl/mtd/nftl-user.h (100%) rename {libc => lib/libc}/include/generic-musl/mtd/ubi-user.h (100%) rename {libc => lib/libc}/include/generic-musl/net/ethernet.h (100%) rename {libc => lib/libc}/include/generic-musl/net/if.h (100%) rename {libc => lib/libc}/include/generic-musl/net/if_arp.h (100%) rename {libc => lib/libc}/include/generic-musl/net/route.h (100%) rename {libc => lib/libc}/include/generic-musl/netdb.h (100%) rename {libc => lib/libc}/include/generic-musl/netinet/ether.h (100%) rename {libc => lib/libc}/include/generic-musl/netinet/icmp6.h (100%) rename {libc => lib/libc}/include/generic-musl/netinet/if_ether.h (100%) rename {libc => lib/libc}/include/generic-musl/netinet/igmp.h (100%) rename {libc => lib/libc}/include/generic-musl/netinet/in.h (100%) rename {libc => lib/libc}/include/generic-musl/netinet/in_systm.h (100%) rename {libc => lib/libc}/include/generic-musl/netinet/ip.h (100%) rename {libc => lib/libc}/include/generic-musl/netinet/ip6.h (100%) rename {libc => lib/libc}/include/generic-musl/netinet/ip_icmp.h (100%) rename {libc => lib/libc}/include/generic-musl/netinet/tcp.h (100%) rename {libc => lib/libc}/include/generic-musl/netinet/udp.h (100%) rename {libc => lib/libc}/include/generic-musl/netpacket/packet.h (100%) rename {libc => lib/libc}/include/generic-musl/nl_types.h (100%) rename {libc => lib/libc}/include/generic-musl/paths.h (100%) rename {libc => lib/libc}/include/generic-musl/plugin-api.h (100%) rename {libc => lib/libc}/include/generic-musl/poll.h (100%) rename {libc => lib/libc}/include/generic-musl/pthread.h (100%) rename {libc => lib/libc}/include/generic-musl/pty.h (100%) rename {libc => lib/libc}/include/generic-musl/pwd.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/bnxt_re-abi.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/cxgb3-abi.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/cxgb4-abi.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/hfi/hfi1_ioctl.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/hfi/hfi1_user.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/hns-abi.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/i40iw-abi.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/ib_user_cm.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/ib_user_ioctl_cmds.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/ib_user_ioctl_verbs.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/ib_user_mad.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/ib_user_sa.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/ib_user_verbs.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/mlx4-abi.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/mlx5-abi.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/mlx5_user_ioctl_cmds.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/mlx5_user_ioctl_verbs.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/mthca-abi.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/nes-abi.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/ocrdma-abi.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/qedr-abi.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/rdma_netlink.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/rdma_user_cm.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/rdma_user_ioctl.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/rdma_user_ioctl_cmds.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/rdma_user_rxe.h (100%) rename {libc => lib/libc}/include/generic-musl/rdma/vmw_pvrdma-abi.h (100%) rename {libc => lib/libc}/include/generic-musl/regex.h (100%) rename {libc => lib/libc}/include/generic-musl/resolv.h (100%) rename {libc => lib/libc}/include/generic-musl/sched.h (100%) rename {libc => lib/libc}/include/generic-musl/scsi/cxlflash_ioctl.h (100%) rename {libc => lib/libc}/include/generic-musl/scsi/fc/fc_els.h (100%) rename {libc => lib/libc}/include/generic-musl/scsi/fc/fc_fs.h (100%) rename {libc => lib/libc}/include/generic-musl/scsi/fc/fc_gs.h (100%) rename {libc => lib/libc}/include/generic-musl/scsi/fc/fc_ns.h (100%) rename {libc => lib/libc}/include/generic-musl/scsi/scsi.h (100%) rename {libc => lib/libc}/include/generic-musl/scsi/scsi_bsg_fc.h (100%) rename {libc => lib/libc}/include/generic-musl/scsi/scsi_ioctl.h (100%) rename {libc => lib/libc}/include/generic-musl/scsi/scsi_netlink.h (100%) rename {libc => lib/libc}/include/generic-musl/scsi/scsi_netlink_fc.h (100%) rename {libc => lib/libc}/include/generic-musl/scsi/sg.h (100%) rename {libc => lib/libc}/include/generic-musl/search.h (100%) rename {libc => lib/libc}/include/generic-musl/semaphore.h (100%) rename {libc => lib/libc}/include/generic-musl/setjmp.h (100%) rename {libc => lib/libc}/include/generic-musl/shadow.h (100%) rename {libc => lib/libc}/include/generic-musl/signal.h (100%) rename {libc => lib/libc}/include/generic-musl/sound/asequencer.h (100%) rename {libc => lib/libc}/include/generic-musl/sound/asoc.h (100%) rename {libc => lib/libc}/include/generic-musl/sound/asound.h (100%) rename {libc => lib/libc}/include/generic-musl/sound/asound_fm.h (100%) rename {libc => lib/libc}/include/generic-musl/sound/compress_offload.h (100%) rename {libc => lib/libc}/include/generic-musl/sound/compress_params.h (100%) rename {libc => lib/libc}/include/generic-musl/sound/emu10k1.h (100%) rename {libc => lib/libc}/include/generic-musl/sound/firewire.h (100%) rename {libc => lib/libc}/include/generic-musl/sound/hdsp.h (100%) rename {libc => lib/libc}/include/generic-musl/sound/hdspm.h (100%) rename {libc => lib/libc}/include/generic-musl/sound/sb16_csp.h (100%) rename {libc => lib/libc}/include/generic-musl/sound/sfnt_info.h (100%) rename {libc => lib/libc}/include/generic-musl/sound/skl-tplg-interface.h (100%) rename {libc => lib/libc}/include/generic-musl/sound/snd_sst_tokens.h (100%) rename {libc => lib/libc}/include/generic-musl/sound/tlv.h (100%) rename {libc => lib/libc}/include/generic-musl/sound/usb_stream.h (100%) rename {libc => lib/libc}/include/generic-musl/spawn.h (100%) rename {libc => lib/libc}/include/generic-musl/stdalign.h (100%) rename {libc => lib/libc}/include/generic-musl/stdarg.h (100%) rename {libc => lib/libc}/include/generic-musl/stdbool.h (100%) rename {libc => lib/libc}/include/generic-musl/stdc-predef.h (100%) rename {libc => lib/libc}/include/generic-musl/stddef.h (100%) rename {libc => lib/libc}/include/generic-musl/stdint.h (100%) rename {libc => lib/libc}/include/generic-musl/stdio.h (100%) rename {libc => lib/libc}/include/generic-musl/stdio_ext.h (100%) rename {libc => lib/libc}/include/generic-musl/stdlib.h (100%) rename {libc => lib/libc}/include/generic-musl/stdnoreturn.h (100%) rename {libc => lib/libc}/include/generic-musl/string.h (100%) rename {libc => lib/libc}/include/generic-musl/strings.h (100%) rename {libc => lib/libc}/include/generic-musl/stropts.h (100%) rename {libc => lib/libc}/include/generic-musl/symcat.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/acct.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/auxv.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/cachectl.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/dir.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/epoll.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/errno.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/eventfd.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/fanotify.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/fcntl.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/file.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/fsuid.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/inotify.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/io.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/ioctl.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/ipc.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/kd.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/klog.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/mman.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/mount.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/msg.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/mtio.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/param.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/personality.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/poll.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/prctl.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/procfs.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/ptrace.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/quota.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/random.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/reboot.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/reg.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/resource.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/select.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/sem.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/sendfile.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/shm.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/signal.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/signalfd.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/socket.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/soundcard.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/stat.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/statfs.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/statvfs.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/stropts.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/swap.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/syscall.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/sysinfo.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/syslog.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/sysmacros.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/termios.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/time.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/timeb.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/timerfd.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/times.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/timex.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/ttydefaults.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/types.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/ucontext.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/uio.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/un.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/user.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/utsname.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/vfs.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/vt.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/wait.h (100%) rename {libc => lib/libc}/include/generic-musl/sys/xattr.h (100%) rename {libc => lib/libc}/include/generic-musl/syscall.h (100%) rename {libc => lib/libc}/include/generic-musl/sysexits.h (100%) rename {libc => lib/libc}/include/generic-musl/syslog.h (100%) rename {libc => lib/libc}/include/generic-musl/tar.h (100%) rename {libc => lib/libc}/include/generic-musl/termios.h (100%) rename {libc => lib/libc}/include/generic-musl/tgmath.h (100%) rename {libc => lib/libc}/include/generic-musl/threads.h (100%) rename {libc => lib/libc}/include/generic-musl/time.h (100%) rename {libc => lib/libc}/include/generic-musl/uchar.h (100%) rename {libc => lib/libc}/include/generic-musl/ucontext.h (100%) rename {libc => lib/libc}/include/generic-musl/ulimit.h (100%) rename {libc => lib/libc}/include/generic-musl/unistd.h (100%) rename {libc => lib/libc}/include/generic-musl/utime.h (100%) rename {libc => lib/libc}/include/generic-musl/utmp.h (100%) rename {libc => lib/libc}/include/generic-musl/utmpx.h (100%) rename {libc => lib/libc}/include/generic-musl/values.h (100%) rename {libc => lib/libc}/include/generic-musl/video/edid.h (100%) rename {libc => lib/libc}/include/generic-musl/video/sisfb.h (100%) rename {libc => lib/libc}/include/generic-musl/video/uvesafb.h (100%) rename {libc => lib/libc}/include/generic-musl/wait.h (100%) rename {libc => lib/libc}/include/generic-musl/wchar.h (100%) rename {libc => lib/libc}/include/generic-musl/wctype.h (100%) rename {libc => lib/libc}/include/generic-musl/wordexp.h (100%) rename {libc => lib/libc}/include/generic-musl/xen/evtchn.h (100%) rename {libc => lib/libc}/include/generic-musl/xen/gntalloc.h (100%) rename {libc => lib/libc}/include/generic-musl/xen/gntdev.h (100%) rename {libc => lib/libc}/include/generic-musl/xen/privcmd.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/auxvec.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/bitsperlong.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/byteorder.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/kvm.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/kvm_para.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/mman.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/msgbuf.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/perf_regs.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/posix_types.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/ptrace.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/sembuf.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/setup.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/shmbuf.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/sigcontext.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/siginfo.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/signal.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/stat.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/statfs.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/swab.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/types.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/ucontext.h (100%) rename {libc => lib/libc}/include/i386-linux-any/asm/unistd.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/a.out.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/endian.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/environments.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/epoll.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/fcntl.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/fenv.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/floatn.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/flt-eval-method.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/fp-logb.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/indirect-return.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/ipctypes.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/iscanonical.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/link.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/long-double.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/math-vector-fortran.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/math-vector.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/mman.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/procfs-id.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/procfs.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/select.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/sem-pad.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/semaphore.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/setjmp.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/sigcontext.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/siginfo-arch.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/stat.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/sysctl.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/timesize.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/typesizes.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/wordsize.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/bits/xtitypes.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/fpu_control.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/gnu/stubs.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/sys/elf.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/sys/io.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/sys/ptrace.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/sys/ucontext.h (100%) rename {libc => lib/libc}/include/i386-linux-gnu/sys/user.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bfd.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bfd_stdint.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/alltypes.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/endian.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/fcntl.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/fenv.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/float.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/io.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/limits.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/mman.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/msg.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/ptrace.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/reg.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/setjmp.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/shm.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/signal.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/stdint.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/syscall.h (100%) rename {libc => lib/libc}/include/i386-linux-musl/bits/user.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/auxvec.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/bitsperlong.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/byteorder.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/errno.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/fcntl.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/hwcap.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/ioctl.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/ioctls.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/kvm.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/kvm_para.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/mman.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/msgbuf.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/param.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/poll.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/posix_types.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/ptrace.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/resource.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/sembuf.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/setup.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/shmbuf.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/sigcontext.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/siginfo.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/signal.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/socket.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/sockios.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/stat.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/statfs.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/swab.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/termbits.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/termios.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/types.h (100%) rename {libc => lib/libc}/include/mips-linux-any/asm/unistd.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/dlfcn.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/errno.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/eventfd.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/inotify.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/ioctl-types.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/ipc.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/ipctypes.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/local_lim.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/mman.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/msq-pad.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/poll.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/resource.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/sem-pad.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/shm-pad.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/shmlba.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/sigaction.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/sigcontext.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/siginfo-arch.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/signalfd.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/signum.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/socket_type.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/statfs.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/termios-c_cc.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/termios-c_lflag.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/termios-struct.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/termios-tcflow.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/timerfd.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/bits/types/stack_t.h (100%) rename {libc => lib/libc}/include/mips-linux-gnu/ieee754.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bfd.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bfd_stdint.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/alltypes.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/endian.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/errno.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/fcntl.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/fenv.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/hwcap.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/ioctl.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/mman.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/msg.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/poll.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/ptrace.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/reg.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/resource.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/sem.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/setjmp.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/signal.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/socket.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/stat.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/statfs.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/stdint.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/syscall.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/termios.h (100%) rename {libc => lib/libc}/include/mips-linux-musl/bits/user.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/auxvec.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/bitsperlong.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/byteorder.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/errno.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/fcntl.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/hwcap.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/ioctl.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/ioctls.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/kvm.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/kvm_para.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/mman.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/msgbuf.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/param.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/poll.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/posix_types.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/ptrace.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/resource.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/sembuf.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/setup.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/shmbuf.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/sigcontext.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/siginfo.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/signal.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/socket.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/sockios.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/stat.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/statfs.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/swab.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/termbits.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/termios.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/types.h (100%) rename {libc => lib/libc}/include/mips64-linux-any/asm/unistd.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/dlfcn.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/errno.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/eventfd.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/inotify.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/ioctl-types.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/ipc.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/ipctypes.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/local_lim.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/mman.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/msq-pad.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/poll.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/resource.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/sem-pad.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/shm-pad.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/shmlba.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/sigaction.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/sigcontext.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/siginfo-arch.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/signalfd.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/signum.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/socket_type.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/statfs.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/termios-c_cc.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/termios-c_lflag.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/termios-struct.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/termios-tcflow.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/timerfd.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/bits/types/stack_t.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabi64/ieee754.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/dlfcn.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/errno.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/eventfd.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/inotify.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/ioctl-types.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/ipc.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/ipctypes.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/local_lim.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/mman.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/msq-pad.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/poll.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/resource.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/sem-pad.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/shm-pad.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/shmlba.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/sigaction.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/sigcontext.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/siginfo-arch.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/signalfd.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/signum.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/socket_type.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/statfs.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/termios-c_cc.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/termios-c_lflag.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/termios-struct.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/termios-tcflow.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/timerfd.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/bits/types/stack_t.h (100%) rename {libc => lib/libc}/include/mips64-linux-gnuabin32/ieee754.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bfd_stdint.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/alltypes.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/endian.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/errno.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/fcntl.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/fenv.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/float.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/hwcap.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/ioctl.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/ipc.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/limits.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/mman.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/poll.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/posix.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/ptrace.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/reg.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/resource.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/sem.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/setjmp.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/signal.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/socket.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/stat.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/statfs.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/syscall.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/termios.h (100%) rename {libc => lib/libc}/include/mips64-linux-musl/bits/user.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/auxvec.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/bitsperlong.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/byteorder.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/errno.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/fcntl.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/hwcap.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/ioctl.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/ioctls.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/kvm.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/kvm_para.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/mman.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/msgbuf.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/param.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/poll.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/posix_types.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/ptrace.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/resource.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/sembuf.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/setup.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/shmbuf.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/sigcontext.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/siginfo.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/signal.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/socket.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/sockios.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/stat.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/statfs.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/swab.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/termbits.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/termios.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/types.h (100%) rename {libc => lib/libc}/include/mips64el-linux-any/asm/unistd.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/dlfcn.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/errno.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/eventfd.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/inotify.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/ioctl-types.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/ipc.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/ipctypes.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/local_lim.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/mman.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/msq-pad.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/poll.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/resource.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/sem-pad.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/shm-pad.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/shmlba.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/sigaction.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/sigcontext.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/siginfo-arch.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/signalfd.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/signum.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/socket_type.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/statfs.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/termios-c_cc.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/termios-c_lflag.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/termios-struct.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/termios-tcflow.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/timerfd.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/bits/types/stack_t.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabi64/ieee754.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/dlfcn.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/errno.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/eventfd.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/inotify.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/ioctl-types.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/ipc.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/ipctypes.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/local_lim.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/mman.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/msq-pad.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/poll.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/resource.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/sem-pad.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/shm-pad.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/shmlba.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/sigaction.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/sigcontext.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/siginfo-arch.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/signalfd.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/signum.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/socket_type.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/statfs.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/termios-c_cc.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/termios-c_lflag.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/termios-struct.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/termios-tcflow.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/timerfd.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/bits/types/stack_t.h (100%) rename {libc => lib/libc}/include/mips64el-linux-gnuabin32/ieee754.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bfd_stdint.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/alltypes.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/endian.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/errno.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/fcntl.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/fenv.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/float.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/hwcap.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/ioctl.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/ipc.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/limits.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/mman.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/poll.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/posix.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/ptrace.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/reg.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/resource.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/sem.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/setjmp.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/signal.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/socket.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/stat.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/statfs.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/syscall.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/termios.h (100%) rename {libc => lib/libc}/include/mips64el-linux-musl/bits/user.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/auxvec.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/bitsperlong.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/byteorder.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/errno.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/fcntl.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/hwcap.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/ioctl.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/ioctls.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/kvm.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/kvm_para.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/mman.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/msgbuf.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/param.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/poll.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/posix_types.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/ptrace.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/resource.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/sembuf.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/setup.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/shmbuf.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/sigcontext.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/siginfo.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/signal.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/socket.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/sockios.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/stat.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/statfs.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/swab.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/termbits.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/termios.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/types.h (100%) rename {libc => lib/libc}/include/mipsel-linux-any/asm/unistd.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/dlfcn.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/errno.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/eventfd.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/inotify.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/ioctl-types.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/ipc.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/ipctypes.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/local_lim.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/mman.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/msq-pad.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/poll.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/resource.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/sem-pad.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/shm-pad.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/shmlba.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/sigaction.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/sigcontext.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/siginfo-arch.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/signalfd.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/signum.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/socket_type.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/statfs.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/termios-c_cc.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/termios-c_lflag.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/termios-struct.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/termios-tcflow.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/timerfd.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/bits/types/stack_t.h (100%) rename {libc => lib/libc}/include/mipsel-linux-gnu/ieee754.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bfd.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bfd_stdint.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/alltypes.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/endian.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/errno.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/fcntl.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/fenv.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/hwcap.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/ioctl.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/mman.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/msg.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/poll.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/ptrace.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/reg.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/resource.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/sem.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/setjmp.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/signal.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/socket.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/stat.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/statfs.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/stdint.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/syscall.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/termios.h (100%) rename {libc => lib/libc}/include/mipsel-linux-musl/bits/user.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/auxvec.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/bitsperlong.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/byteorder.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/errno.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/fcntl.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/ioctl.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/ioctls.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/ipcbuf.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/kvm.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/kvm_para.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/mman.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/msgbuf.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/perf_regs.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/posix_types.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/ptrace.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/sembuf.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/setup.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/shmbuf.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/sigcontext.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/siginfo.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/signal.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/socket.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/stat.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/swab.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/termbits.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/termios.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/types.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/ucontext.h (100%) rename {libc => lib/libc}/include/powerpc-linux-any/asm/unistd.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/endian.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/environments.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/fcntl.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/fenv.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/fenvinline.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/floatn.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/fp-fast.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/hwcap.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/ioctl-types.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/ipc.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/iscanonical.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/link.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/local_lim.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/long-double.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/mman.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/msq-pad.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/procfs.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/sem-pad.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/semaphore.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/setjmp.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/shm-pad.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/sigstack.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/stat.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/termios-baud.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/termios-c_cc.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/termios-c_cflag.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/termios-c_iflag.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/termios-c_lflag.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/termios-c_oflag.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/termios-misc.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/bits/wordsize.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/fpu_control.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/gnu/lib-names-32.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/gnu/stubs.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/ieee754.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/sys/ptrace.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/sys/ucontext.h (100%) rename {libc => lib/libc}/include/powerpc-linux-gnu/sys/user.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bfd.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bfd_stdint.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/alltypes.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/endian.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/errno.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/fcntl.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/fenv.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/hwcap.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/ioctl.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/ipc.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/mman.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/msg.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/ptrace.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/sem.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/setjmp.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/shm.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/signal.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/socket.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/stat.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/stdint.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/syscall.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/termios.h (100%) rename {libc => lib/libc}/include/powerpc-linux-musl/bits/user.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/auxvec.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/bitsperlong.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/byteorder.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/errno.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/fcntl.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/ioctl.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/ioctls.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/ipcbuf.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/kvm.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/kvm_para.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/mman.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/msgbuf.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/perf_regs.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/posix_types.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/ptrace.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/sembuf.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/setup.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/shmbuf.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/sigcontext.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/siginfo.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/signal.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/socket.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/stat.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/swab.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/termbits.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/termios.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/types.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/ucontext.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-any/asm/unistd.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/endian.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/environments.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/fcntl.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/fenv.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/fenvinline.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/floatn.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/fp-fast.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/hwcap.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/ioctl-types.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/ipc.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/iscanonical.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/link.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/local_lim.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/long-double.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/mman.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/msq-pad.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/procfs.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/sem-pad.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/semaphore.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/setjmp.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/shm-pad.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/sigstack.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/stat.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/termios-baud.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/termios-c_cc.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/termios-c_cflag.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/termios-c_iflag.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/termios-c_lflag.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/termios-c_oflag.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/termios-misc.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/bits/wordsize.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/fpu_control.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/gnu/lib-names-64-v1.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/gnu/stubs-64-v1.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/gnu/stubs.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/ieee754.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/sys/ptrace.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/sys/ucontext.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-gnu/sys/user.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bfd_stdint.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/alltypes.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/endian.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/errno.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/fcntl.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/fenv.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/hwcap.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/ioctl.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/ipc.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/limits.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/mman.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/msg.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/posix.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/ptrace.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/reg.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/sem.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/setjmp.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/shm.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/signal.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/socket.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/stat.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/syscall.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/termios.h (100%) rename {libc => lib/libc}/include/powerpc64-linux-musl/bits/user.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/auxvec.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/bitsperlong.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/byteorder.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/errno.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/fcntl.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/ioctl.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/ioctls.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/ipcbuf.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/kvm.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/kvm_para.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/mman.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/msgbuf.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/perf_regs.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/posix_types.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/ptrace.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/sembuf.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/setup.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/shmbuf.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/sigcontext.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/siginfo.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/signal.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/socket.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/stat.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/swab.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/termbits.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/termios.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/types.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/ucontext.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-any/asm/unistd.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/endian.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/environments.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/fcntl.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/fenv.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/fenvinline.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/floatn.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/fp-fast.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/hwcap.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/ioctl-types.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/ipc.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/iscanonical.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/link.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/local_lim.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/long-double.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/mman.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/msq-pad.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/procfs.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/sem-pad.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/semaphore.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/setjmp.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/shm-pad.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/sigstack.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/stat.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/termios-baud.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/termios-c_cc.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/termios-c_cflag.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/termios-c_iflag.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/termios-c_lflag.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/termios-c_oflag.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/termios-misc.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/bits/wordsize.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/fpu_control.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/gnu/lib-names-64-v2.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/gnu/stubs-64-v2.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/gnu/stubs.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/ieee754.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/sys/ptrace.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/sys/ucontext.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-gnu/sys/user.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bfd_stdint.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/alltypes.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/endian.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/errno.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/fcntl.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/fenv.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/hwcap.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/ioctl.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/ipc.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/limits.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/mman.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/msg.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/posix.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/ptrace.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/reg.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/sem.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/setjmp.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/shm.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/signal.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/socket.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/stat.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/syscall.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/termios.h (100%) rename {libc => lib/libc}/include/powerpc64le-linux-musl/bits/user.h (100%) rename {libc => lib/libc}/include/riscv32-linux-any/asm/auxvec.h (100%) rename {libc => lib/libc}/include/riscv32-linux-any/asm/bitsperlong.h (100%) rename {libc => lib/libc}/include/riscv32-linux-any/asm/byteorder.h (100%) rename {libc => lib/libc}/include/riscv32-linux-any/asm/elf.h (100%) rename {libc => lib/libc}/include/riscv32-linux-any/asm/hwcap.h (100%) rename {libc => lib/libc}/include/riscv32-linux-any/asm/posix_types.h (100%) rename {libc => lib/libc}/include/riscv32-linux-any/asm/ptrace.h (100%) rename {libc => lib/libc}/include/riscv32-linux-any/asm/setup.h (100%) rename {libc => lib/libc}/include/riscv32-linux-any/asm/sigcontext.h (100%) rename {libc => lib/libc}/include/riscv32-linux-any/asm/siginfo.h (100%) rename {libc => lib/libc}/include/riscv32-linux-any/asm/signal.h (100%) rename {libc => lib/libc}/include/riscv32-linux-any/asm/stat.h (100%) rename {libc => lib/libc}/include/riscv32-linux-any/asm/ucontext.h (100%) rename {libc => lib/libc}/include/riscv32-linux-any/asm/unistd.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bfd.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bfd_stdint.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bits/alltypes.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bits/endian.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bits/fenv.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bits/float.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bits/ipc.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bits/posix.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bits/reg.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bits/sem.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bits/setjmp.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bits/shm.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bits/signal.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bits/socket.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bits/stat.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bits/stdint.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bits/syscall.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/bits/user.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/elf.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/netinet/tcp.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/netinet/udp.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/signal.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/sys/signalfd.h (100%) rename {libc => lib/libc}/include/riscv32-linux-musl/sys/socket.h (100%) rename {libc => lib/libc}/include/riscv64-linux-any/asm/auxvec.h (100%) rename {libc => lib/libc}/include/riscv64-linux-any/asm/bitsperlong.h (100%) rename {libc => lib/libc}/include/riscv64-linux-any/asm/byteorder.h (100%) rename {libc => lib/libc}/include/riscv64-linux-any/asm/elf.h (100%) rename {libc => lib/libc}/include/riscv64-linux-any/asm/hwcap.h (100%) rename {libc => lib/libc}/include/riscv64-linux-any/asm/posix_types.h (100%) rename {libc => lib/libc}/include/riscv64-linux-any/asm/ptrace.h (100%) rename {libc => lib/libc}/include/riscv64-linux-any/asm/setup.h (100%) rename {libc => lib/libc}/include/riscv64-linux-any/asm/sigcontext.h (100%) rename {libc => lib/libc}/include/riscv64-linux-any/asm/siginfo.h (100%) rename {libc => lib/libc}/include/riscv64-linux-any/asm/signal.h (100%) rename {libc => lib/libc}/include/riscv64-linux-any/asm/stat.h (100%) rename {libc => lib/libc}/include/riscv64-linux-any/asm/ucontext.h (100%) rename {libc => lib/libc}/include/riscv64-linux-any/asm/unistd.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/bits/endian.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/bits/fcntl.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/bits/fenv.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/bits/floatn.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/bits/link.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/bits/long-double.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/bits/procfs.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/bits/semaphore.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/bits/setjmp.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/bits/sigcontext.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/bits/stat.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/bits/statfs.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/bits/typesizes.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/bits/wordsize.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/fpu_control.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/gnu/lib-names-lp64.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/gnu/stubs-lp64.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/gnu/stubs.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/ieee754.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/sys/asm.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/sys/cachectl.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/sys/ucontext.h (100%) rename {libc => lib/libc}/include/riscv64-linux-gnu/sys/user.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bfd_stdint.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/alltypes.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/endian.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/fenv.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/float.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/ipc.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/limits.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/mman.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/posix.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/reg.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/sem.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/setjmp.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/shm.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/signal.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/socket.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/stat.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/syscall.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/bits/user.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/elf.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/netinet/tcp.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/netinet/udp.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/signal.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/sys/signalfd.h (100%) rename {libc => lib/libc}/include/riscv64-linux-musl/sys/socket.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/auxvec.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/bitsperlong.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/bpf_perf_event.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/byteorder.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/chpid.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/chsc.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/clp.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/cmb.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/dasd.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/debug.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/guarded_storage.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/hypfs.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/ioctls.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/ipcbuf.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/kvm.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/kvm_para.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/kvm_perf.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/monwriter.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/perf_regs.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/pkey.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/posix_types.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/ptrace.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/qeth.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/runtime_instr.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/schid.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/sclp_ctl.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/setup.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/sie.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/sigcontext.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/siginfo.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/signal.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/socket.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/stat.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/statfs.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/sthyi.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/tape390.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/termios.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/types.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/ucontext.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/unistd.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/unistd_32.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/unistd_64.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/virtio-ccw.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/vmcp.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/vtoc.h (100%) rename {libc => lib/libc}/include/s390x-linux-any/asm/zcrypt.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/elfclass.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/endian.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/environments.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/fcntl.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/fenv.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/floatn.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/flt-eval-method.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/hwcap.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/ipc.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/link.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/long-double.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/procfs-extra.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/procfs-id.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/procfs.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/semaphore.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/setjmp.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/sigaction.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/stat.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/statfs.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/typesizes.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/utmp.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/utmpx.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/wordsize.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/bits/xtitypes.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/fpu_control.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/gnu/lib-names-64.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/gnu/stubs-64.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/gnu/stubs.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/ieee754.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/sys/elf.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/sys/ptrace.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/sys/ucontext.h (100%) rename {libc => lib/libc}/include/s390x-linux-gnu/sys/user.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bfd_stdint.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/alltypes.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/endian.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/fcntl.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/fenv.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/float.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/hwcap.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/ioctl_fix.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/ipc.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/limits.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/link.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/msg.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/posix.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/ptrace.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/reg.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/sem.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/setjmp.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/signal.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/socket.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/stat.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/statfs.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/syscall.h (100%) rename {libc => lib/libc}/include/s390x-linux-musl/bits/user.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/a.out.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/a.out.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/endian.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/environments.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/epoll.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/errno.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/eventfd.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/fcntl.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/fenv.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/floatn.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/hwcap.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/inotify.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/ioctls.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/ipc.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/link.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/local_lim.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/long-double.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/mman.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/msq-pad.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/poll.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/procfs-extra.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/procfs-id.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/procfs.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/resource.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/sem-pad.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/semaphore.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/setjmp.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/shm-pad.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/shmlba.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/sigaction.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/sigcontext.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/siginfo-arch.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/siginfo-consts-arch.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/signalfd.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/signum.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/sigstack.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/socket_type.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/stat.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/termios-baud.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/termios-c_cc.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/termios-c_oflag.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/termios-struct.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/timerfd.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/typesizes.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/bits/wordsize.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/fpu_control.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/gnu/lib-names-64.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/gnu/stubs-64.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/gnu/stubs.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/ieee754.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/sys/ptrace.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/sys/ucontext.h (100%) rename {libc => lib/libc}/include/sparc-linux-gnu/sys/user.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/a.out.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/a.out.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/endian.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/environments.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/epoll.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/errno.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/eventfd.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/fcntl.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/fenv.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/floatn.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/hwcap.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/inotify.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/ioctls.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/ipc.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/link.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/local_lim.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/long-double.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/mman.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/msq-pad.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/poll.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/procfs-extra.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/procfs-id.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/procfs.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/resource.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/sem-pad.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/semaphore.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/setjmp.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/shm-pad.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/shmlba.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/sigaction.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/sigcontext.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/siginfo-arch.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/siginfo-consts-arch.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/signalfd.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/signum.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/sigstack.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/socket_type.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/stat.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/termios-baud.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/termios-c_cc.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/termios-c_oflag.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/termios-struct.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/timerfd.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/typesizes.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/bits/wordsize.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/fpu_control.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/gnu/stubs-32.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/gnu/stubs.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/ieee754.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/sys/ptrace.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/sys/ucontext.h (100%) rename {libc => lib/libc}/include/sparcv9-linux-gnu/sys/user.h (100%) rename {libc => lib/libc}/include/wasm32-freestanding-musl/bits/alltypes.h (100%) rename {libc => lib/libc}/include/wasm32-freestanding-musl/errno.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/auxvec.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/bitsperlong.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/byteorder.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/kvm.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/kvm_para.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/mman.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/msgbuf.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/perf_regs.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/posix_types.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/ptrace.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/sembuf.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/setup.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/shmbuf.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/sigcontext.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/siginfo.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/signal.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/stat.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/statfs.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/swab.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/types.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/ucontext.h (100%) rename {libc => lib/libc}/include/x86_64-linux-any/asm/unistd.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/a.out.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/endian.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/environments.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/epoll.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/fcntl.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/fenv.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/floatn.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/flt-eval-method.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/fp-logb.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/indirect-return.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/ipctypes.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/iscanonical.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/link.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/long-double.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/math-vector-fortran.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/math-vector.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/mman.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/procfs-id.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/procfs.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/select.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/sem-pad.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/semaphore.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/setjmp.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/sigcontext.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/siginfo-arch.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/stat.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/sysctl.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/timesize.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/typesizes.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/wordsize.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/bits/xtitypes.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/fpu_control.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/gnu/lib-names-64.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/gnu/stubs-64.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/gnu/stubs.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/sys/elf.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/sys/io.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/sys/ptrace.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/sys/ucontext.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnu/sys/user.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/a.out.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/endian.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/environments.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/epoll.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/fcntl.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/fenv.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/floatn.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/flt-eval-method.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/fp-logb.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/indirect-return.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/ipctypes.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/iscanonical.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/link.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/long-double.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/math-vector-fortran.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/math-vector.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/mman.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/procfs-id.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/procfs.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/pthreadtypes-arch.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/select.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/sem-pad.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/semaphore.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/setjmp.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/sigcontext.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/siginfo-arch.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/stat.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/sysctl.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/timesize.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/typesizes.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/wordsize.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/bits/xtitypes.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/fpu_control.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/gnu/lib-names-x32.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/gnu/lib-names.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/gnu/stubs-x32.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/gnu/stubs.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/sys/elf.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/sys/io.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/sys/ptrace.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/sys/ucontext.h (100%) rename {libc => lib/libc}/include/x86_64-linux-gnux32/sys/user.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bfd_stdint.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/alltypes.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/endian.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/fcntl.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/fenv.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/float.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/io.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/ipc.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/limits.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/mman.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/msg.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/posix.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/ptrace.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/reg.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/setjmp.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/signal.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/socket.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/stat.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/syscall.h (100%) rename {libc => lib/libc}/include/x86_64-linux-musl/bits/user.h (100%) rename {libc => lib/libc}/mingw/complex/_cabs.c (100%) rename {libc => lib/libc}/mingw/complex/cabs.c (100%) rename {libc => lib/libc}/mingw/complex/cabs.def.h (100%) rename {libc => lib/libc}/mingw/complex/cabsf.c (100%) rename {libc => lib/libc}/mingw/complex/cabsl.c (100%) rename {libc => lib/libc}/mingw/complex/cacos.c (100%) rename {libc => lib/libc}/mingw/complex/cacos.def.h (100%) rename {libc => lib/libc}/mingw/complex/cacosf.c (100%) rename {libc => lib/libc}/mingw/complex/cacosh.def.h (100%) rename {libc => lib/libc}/mingw/complex/cacosl.c (100%) rename {libc => lib/libc}/mingw/complex/carg.c (100%) rename {libc => lib/libc}/mingw/complex/carg.def.h (100%) rename {libc => lib/libc}/mingw/complex/cargf.c (100%) rename {libc => lib/libc}/mingw/complex/cargl.c (100%) rename {libc => lib/libc}/mingw/complex/casin.c (100%) rename {libc => lib/libc}/mingw/complex/casin.def.h (100%) rename {libc => lib/libc}/mingw/complex/casinf.c (100%) rename {libc => lib/libc}/mingw/complex/casinh.def.h (100%) rename {libc => lib/libc}/mingw/complex/casinl.c (100%) rename {libc => lib/libc}/mingw/complex/catan.c (100%) rename {libc => lib/libc}/mingw/complex/catan.def.h (100%) rename {libc => lib/libc}/mingw/complex/catanf.c (100%) rename {libc => lib/libc}/mingw/complex/catanh.def.h (100%) rename {libc => lib/libc}/mingw/complex/catanl.c (100%) rename {libc => lib/libc}/mingw/complex/ccos.c (100%) rename {libc => lib/libc}/mingw/complex/ccos.def.h (100%) rename {libc => lib/libc}/mingw/complex/ccosf.c (100%) rename {libc => lib/libc}/mingw/complex/ccosh.def.h (100%) rename {libc => lib/libc}/mingw/complex/ccosl.c (100%) rename {libc => lib/libc}/mingw/complex/cexp.c (100%) rename {libc => lib/libc}/mingw/complex/cexp.def.h (100%) rename {libc => lib/libc}/mingw/complex/cexpf.c (100%) rename {libc => lib/libc}/mingw/complex/cexpl.c (100%) rename {libc => lib/libc}/mingw/complex/cimag.c (100%) rename {libc => lib/libc}/mingw/complex/cimag.def.h (100%) rename {libc => lib/libc}/mingw/complex/cimagf.c (100%) rename {libc => lib/libc}/mingw/complex/cimagl.c (100%) rename {libc => lib/libc}/mingw/complex/clog.c (100%) rename {libc => lib/libc}/mingw/complex/clog.def.h (100%) rename {libc => lib/libc}/mingw/complex/clog10.c (100%) rename {libc => lib/libc}/mingw/complex/clog10.def.h (100%) rename {libc => lib/libc}/mingw/complex/clog10f.c (100%) rename {libc => lib/libc}/mingw/complex/clog10l.c (100%) rename {libc => lib/libc}/mingw/complex/clogf.c (100%) rename {libc => lib/libc}/mingw/complex/clogl.c (100%) rename {libc => lib/libc}/mingw/complex/complex_internal.h (100%) rename {libc => lib/libc}/mingw/complex/conj.c (100%) rename {libc => lib/libc}/mingw/complex/conj.def.h (100%) rename {libc => lib/libc}/mingw/complex/conjf.c (100%) rename {libc => lib/libc}/mingw/complex/conjl.c (100%) rename {libc => lib/libc}/mingw/complex/cpow.c (100%) rename {libc => lib/libc}/mingw/complex/cpow.def.h (100%) rename {libc => lib/libc}/mingw/complex/cpowf.c (100%) rename {libc => lib/libc}/mingw/complex/cpowl.c (100%) rename {libc => lib/libc}/mingw/complex/cproj.c (100%) rename {libc => lib/libc}/mingw/complex/cproj.def.h (100%) rename {libc => lib/libc}/mingw/complex/cprojf.c (100%) rename {libc => lib/libc}/mingw/complex/cprojl.c (100%) rename {libc => lib/libc}/mingw/complex/creal.c (100%) rename {libc => lib/libc}/mingw/complex/creal.def.h (100%) rename {libc => lib/libc}/mingw/complex/crealf.c (100%) rename {libc => lib/libc}/mingw/complex/creall.c (100%) rename {libc => lib/libc}/mingw/complex/csin.c (100%) rename {libc => lib/libc}/mingw/complex/csin.def.h (100%) rename {libc => lib/libc}/mingw/complex/csinf.c (100%) rename {libc => lib/libc}/mingw/complex/csinh.def.h (100%) rename {libc => lib/libc}/mingw/complex/csinl.c (100%) rename {libc => lib/libc}/mingw/complex/csqrt.c (100%) rename {libc => lib/libc}/mingw/complex/csqrt.def.h (100%) rename {libc => lib/libc}/mingw/complex/csqrtf.c (100%) rename {libc => lib/libc}/mingw/complex/csqrtl.c (100%) rename {libc => lib/libc}/mingw/complex/ctan.c (100%) rename {libc => lib/libc}/mingw/complex/ctan.def.h (100%) rename {libc => lib/libc}/mingw/complex/ctanf.c (100%) rename {libc => lib/libc}/mingw/complex/ctanh.def.h (100%) rename {libc => lib/libc}/mingw/complex/ctanl.c (100%) rename {libc => lib/libc}/mingw/crt/CRT_fp10.c (100%) rename {libc => lib/libc}/mingw/crt/_newmode.c (100%) rename {libc => lib/libc}/mingw/crt/charmax.c (100%) rename {libc => lib/libc}/mingw/crt/cinitexe.c (100%) rename {libc => lib/libc}/mingw/crt/crt0_c.c (100%) rename {libc => lib/libc}/mingw/crt/crt0_w.c (100%) rename {libc => lib/libc}/mingw/crt/crt_handler.c (100%) rename {libc => lib/libc}/mingw/crt/crtdll.c (100%) rename {libc => lib/libc}/mingw/crt/crtexe.c (100%) rename {libc => lib/libc}/mingw/crt/cxa_atexit.c (100%) rename {libc => lib/libc}/mingw/crt/dll_argv.c (100%) rename {libc => lib/libc}/mingw/crt/dllargv.c (100%) rename {libc => lib/libc}/mingw/crt/dllentry.c (100%) rename {libc => lib/libc}/mingw/crt/dllmain.c (100%) rename {libc => lib/libc}/mingw/crt/gccmain.c (100%) rename {libc => lib/libc}/mingw/crt/gs_support.c (100%) rename {libc => lib/libc}/mingw/crt/merr.c (100%) rename {libc => lib/libc}/mingw/crt/mingw_helpers.c (100%) rename {libc => lib/libc}/mingw/crt/natstart.c (100%) rename {libc => lib/libc}/mingw/crt/pesect.c (100%) rename {libc => lib/libc}/mingw/crt/pseudo-reloc-list.c (100%) rename {libc => lib/libc}/mingw/crt/pseudo-reloc.c (100%) rename {libc => lib/libc}/mingw/crt/tlsmcrt.c (100%) rename {libc => lib/libc}/mingw/crt/tlsmthread.c (100%) rename {libc => lib/libc}/mingw/crt/tlssup.c (100%) rename {libc => lib/libc}/mingw/crt/tlsthrd.c (100%) rename {libc => lib/libc}/mingw/crt/udll_argv.c (100%) rename {libc => lib/libc}/mingw/crt/udllargc.c (100%) rename {libc => lib/libc}/mingw/crt/wildcard.c (100%) rename {libc => lib/libc}/mingw/crt/xncommod.c (100%) rename {libc => lib/libc}/mingw/crt/xthdloc.c (100%) rename {libc => lib/libc}/mingw/crt/xtxtmode.c (100%) rename {libc => lib/libc}/mingw/def-include/func.def.in (100%) rename {libc => lib/libc}/mingw/def-include/msvcrt-common.def.in (100%) rename {libc => lib/libc}/mingw/gdtoa/arithchk.c (100%) rename {libc => lib/libc}/mingw/gdtoa/dmisc.c (100%) rename {libc => lib/libc}/mingw/gdtoa/dtoa.c (100%) rename {libc => lib/libc}/mingw/gdtoa/g__fmt.c (100%) rename {libc => lib/libc}/mingw/gdtoa/g_dfmt.c (100%) rename {libc => lib/libc}/mingw/gdtoa/g_ffmt.c (100%) rename {libc => lib/libc}/mingw/gdtoa/g_xfmt.c (100%) rename {libc => lib/libc}/mingw/gdtoa/gd_arith.h (100%) rename {libc => lib/libc}/mingw/gdtoa/gd_qnan.h (100%) rename {libc => lib/libc}/mingw/gdtoa/gdtoa.c (100%) rename {libc => lib/libc}/mingw/gdtoa/gdtoa.h (100%) rename {libc => lib/libc}/mingw/gdtoa/gdtoaimp.h (100%) rename {libc => lib/libc}/mingw/gdtoa/gethex.c (100%) rename {libc => lib/libc}/mingw/gdtoa/gmisc.c (100%) rename {libc => lib/libc}/mingw/gdtoa/hd_init.c (100%) rename {libc => lib/libc}/mingw/gdtoa/hexnan.c (100%) rename {libc => lib/libc}/mingw/gdtoa/misc.c (100%) rename {libc => lib/libc}/mingw/gdtoa/qnan.c (100%) rename {libc => lib/libc}/mingw/gdtoa/smisc.c (100%) rename {libc => lib/libc}/mingw/gdtoa/strtodg.c (100%) rename {libc => lib/libc}/mingw/gdtoa/strtodnrp.c (100%) rename {libc => lib/libc}/mingw/gdtoa/strtof.c (100%) rename {libc => lib/libc}/mingw/gdtoa/strtopx.c (100%) rename {libc => lib/libc}/mingw/gdtoa/sum.c (100%) rename {libc => lib/libc}/mingw/gdtoa/ulp.c (100%) rename {libc => lib/libc}/mingw/include/config.h (100%) rename {libc => lib/libc}/mingw/include/internal.h (100%) rename {libc => lib/libc}/mingw/include/msvcrt.h (100%) rename {libc => lib/libc}/mingw/include/oscalls.h (100%) rename {libc => lib/libc}/mingw/include/sect_attribs.h (100%) rename {libc => lib/libc}/mingw/lib-common/advapi32.def.in (100%) rename {libc => lib/libc}/mingw/lib-common/gdi32.def (100%) rename {libc => lib/libc}/mingw/lib-common/imm32.def (100%) rename {libc => lib/libc}/mingw/lib-common/kernel32.def.in (100%) rename {libc => lib/libc}/mingw/lib-common/msvcrt.def.in (100%) rename {libc => lib/libc}/mingw/lib-common/ole32.def.in (100%) rename {libc => lib/libc}/mingw/lib-common/oleaut32.def.in (100%) rename {libc => lib/libc}/mingw/lib-common/shell32.def (100%) rename {libc => lib/libc}/mingw/lib-common/user32.def.in (100%) rename {libc => lib/libc}/mingw/lib-common/version.def (100%) rename {libc => lib/libc}/mingw/lib-common/winmm.def (100%) rename {libc => lib/libc}/mingw/lib32/setupapi.def (100%) rename {libc => lib/libc}/mingw/lib64/setupapi.def (100%) rename {libc => lib/libc}/mingw/libarm32/setupapi.def (100%) rename {libc => lib/libc}/mingw/math/abs64.c (100%) rename {libc => lib/libc}/mingw/math/arm/_chgsignl.S (100%) rename {libc => lib/libc}/mingw/math/arm/ceil.S (100%) rename {libc => lib/libc}/mingw/math/arm/ceilf.S (100%) rename {libc => lib/libc}/mingw/math/arm/ceill.S (100%) rename {libc => lib/libc}/mingw/math/arm/copysignl.c (100%) rename {libc => lib/libc}/mingw/math/arm/exp2.c (100%) rename {libc => lib/libc}/mingw/math/arm/floor.S (100%) rename {libc => lib/libc}/mingw/math/arm/floorf.S (100%) rename {libc => lib/libc}/mingw/math/arm/floorl.S (100%) rename {libc => lib/libc}/mingw/math/arm/ldexpl.c (100%) rename {libc => lib/libc}/mingw/math/arm/log2.c (100%) rename {libc => lib/libc}/mingw/math/arm/nearbyint.S (100%) rename {libc => lib/libc}/mingw/math/arm/nearbyintf.S (100%) rename {libc => lib/libc}/mingw/math/arm/nearbyintl.S (100%) rename {libc => lib/libc}/mingw/math/arm/scalbn.c (100%) rename {libc => lib/libc}/mingw/math/arm/sincos.c (100%) rename {libc => lib/libc}/mingw/math/arm/trunc.S (100%) rename {libc => lib/libc}/mingw/math/arm/truncf.S (100%) rename {libc => lib/libc}/mingw/math/arm64/_chgsignl.S (100%) rename {libc => lib/libc}/mingw/math/arm64/ceil.S (100%) rename {libc => lib/libc}/mingw/math/arm64/ceilf.S (100%) rename {libc => lib/libc}/mingw/math/arm64/ceill.S (100%) rename {libc => lib/libc}/mingw/math/arm64/copysignl.c (100%) rename {libc => lib/libc}/mingw/math/arm64/exp2.S (100%) rename {libc => lib/libc}/mingw/math/arm64/exp2f.S (100%) rename {libc => lib/libc}/mingw/math/arm64/floor.S (100%) rename {libc => lib/libc}/mingw/math/arm64/floorf.S (100%) rename {libc => lib/libc}/mingw/math/arm64/floorl.S (100%) rename {libc => lib/libc}/mingw/math/arm64/ldexpl.c (100%) rename {libc => lib/libc}/mingw/math/arm64/log2.c (100%) rename {libc => lib/libc}/mingw/math/arm64/nearbyint.S (100%) rename {libc => lib/libc}/mingw/math/arm64/nearbyintf.S (100%) rename {libc => lib/libc}/mingw/math/arm64/nearbyintl.S (100%) rename {libc => lib/libc}/mingw/math/arm64/scalbn.c (100%) rename {libc => lib/libc}/mingw/math/arm64/sincos.c (100%) rename {libc => lib/libc}/mingw/math/arm64/trunc.S (100%) rename {libc => lib/libc}/mingw/math/arm64/truncf.S (100%) rename {libc => lib/libc}/mingw/math/cbrt.c (100%) rename {libc => lib/libc}/mingw/math/cbrtf.c (100%) rename {libc => lib/libc}/mingw/math/cbrtl.c (100%) rename {libc => lib/libc}/mingw/math/cephes_emath.c (100%) rename {libc => lib/libc}/mingw/math/cephes_emath.h (100%) rename {libc => lib/libc}/mingw/math/cephes_mconf.h (100%) rename {libc => lib/libc}/mingw/math/copysign.c (100%) rename {libc => lib/libc}/mingw/math/copysignf.c (100%) rename {libc => lib/libc}/mingw/math/coshf.c (100%) rename {libc => lib/libc}/mingw/math/coshl.c (100%) rename {libc => lib/libc}/mingw/math/erfl.c (100%) rename {libc => lib/libc}/mingw/math/expf.c (100%) rename {libc => lib/libc}/mingw/math/fabs.c (100%) rename {libc => lib/libc}/mingw/math/fabsf.c (100%) rename {libc => lib/libc}/mingw/math/fabsl.c (100%) rename {libc => lib/libc}/mingw/math/fdim.c (100%) rename {libc => lib/libc}/mingw/math/fdimf.c (100%) rename {libc => lib/libc}/mingw/math/fdiml.c (100%) rename {libc => lib/libc}/mingw/math/fma.c (100%) rename {libc => lib/libc}/mingw/math/fmaf.c (100%) rename {libc => lib/libc}/mingw/math/fmal.c (100%) rename {libc => lib/libc}/mingw/math/fmax.c (100%) rename {libc => lib/libc}/mingw/math/fmaxf.c (100%) rename {libc => lib/libc}/mingw/math/fmaxl.c (100%) rename {libc => lib/libc}/mingw/math/fmin.c (100%) rename {libc => lib/libc}/mingw/math/fminf.c (100%) rename {libc => lib/libc}/mingw/math/fminl.c (100%) rename {libc => lib/libc}/mingw/math/fp_consts.c (100%) rename {libc => lib/libc}/mingw/math/fp_consts.h (100%) rename {libc => lib/libc}/mingw/math/fp_constsf.c (100%) rename {libc => lib/libc}/mingw/math/fp_constsl.c (100%) rename {libc => lib/libc}/mingw/math/fpclassify.c (100%) rename {libc => lib/libc}/mingw/math/fpclassifyf.c (100%) rename {libc => lib/libc}/mingw/math/fpclassifyl.c (100%) rename {libc => lib/libc}/mingw/math/frexpf.c (100%) rename {libc => lib/libc}/mingw/math/hypot.c (100%) rename {libc => lib/libc}/mingw/math/hypotf.c (100%) rename {libc => lib/libc}/mingw/math/hypotl.c (100%) rename {libc => lib/libc}/mingw/math/isnan.c (100%) rename {libc => lib/libc}/mingw/math/isnanf.c (100%) rename {libc => lib/libc}/mingw/math/isnanl.c (100%) rename {libc => lib/libc}/mingw/math/ldexpf.c (100%) rename {libc => lib/libc}/mingw/math/lgamma.c (100%) rename {libc => lib/libc}/mingw/math/lgammaf.c (100%) rename {libc => lib/libc}/mingw/math/lgammal.c (100%) rename {libc => lib/libc}/mingw/math/llrint.c (100%) rename {libc => lib/libc}/mingw/math/llrintf.c (100%) rename {libc => lib/libc}/mingw/math/llrintl.c (100%) rename {libc => lib/libc}/mingw/math/llround.c (100%) rename {libc => lib/libc}/mingw/math/llroundf.c (100%) rename {libc => lib/libc}/mingw/math/llroundl.c (100%) rename {libc => lib/libc}/mingw/math/log10f.c (100%) rename {libc => lib/libc}/mingw/math/logf.c (100%) rename {libc => lib/libc}/mingw/math/lrint.c (100%) rename {libc => lib/libc}/mingw/math/lrintf.c (100%) rename {libc => lib/libc}/mingw/math/lrintl.c (100%) rename {libc => lib/libc}/mingw/math/lround.c (100%) rename {libc => lib/libc}/mingw/math/lroundf.c (100%) rename {libc => lib/libc}/mingw/math/lroundl.c (100%) rename {libc => lib/libc}/mingw/math/modf.c (100%) rename {libc => lib/libc}/mingw/math/modff.c (100%) rename {libc => lib/libc}/mingw/math/modfl.c (100%) rename {libc => lib/libc}/mingw/math/nextafterf.c (100%) rename {libc => lib/libc}/mingw/math/nextafterl.c (100%) rename {libc => lib/libc}/mingw/math/nexttoward.c (100%) rename {libc => lib/libc}/mingw/math/nexttowardf.c (100%) rename {libc => lib/libc}/mingw/math/powf.c (100%) rename {libc => lib/libc}/mingw/math/powi.c (100%) rename {libc => lib/libc}/mingw/math/powi.def.h (100%) rename {libc => lib/libc}/mingw/math/powif.c (100%) rename {libc => lib/libc}/mingw/math/powil.c (100%) rename {libc => lib/libc}/mingw/math/rint.c (100%) rename {libc => lib/libc}/mingw/math/rintf.c (100%) rename {libc => lib/libc}/mingw/math/rintl.c (100%) rename {libc => lib/libc}/mingw/math/round.c (100%) rename {libc => lib/libc}/mingw/math/roundf.c (100%) rename {libc => lib/libc}/mingw/math/roundl.c (100%) rename {libc => lib/libc}/mingw/math/s_erf.c (100%) rename {libc => lib/libc}/mingw/math/sf_erf.c (100%) rename {libc => lib/libc}/mingw/math/signbit.c (100%) rename {libc => lib/libc}/mingw/math/signbitf.c (100%) rename {libc => lib/libc}/mingw/math/signbitl.c (100%) rename {libc => lib/libc}/mingw/math/signgam.c (100%) rename {libc => lib/libc}/mingw/math/sinhf.c (100%) rename {libc => lib/libc}/mingw/math/sinhl.c (100%) rename {libc => lib/libc}/mingw/math/sqrt.c (100%) rename {libc => lib/libc}/mingw/math/sqrt.def.h (100%) rename {libc => lib/libc}/mingw/math/sqrtf.c (100%) rename {libc => lib/libc}/mingw/math/sqrtl.c (100%) rename {libc => lib/libc}/mingw/math/tanhf.c (100%) rename {libc => lib/libc}/mingw/math/tanhl.c (100%) rename {libc => lib/libc}/mingw/math/tgamma.c (100%) rename {libc => lib/libc}/mingw/math/tgammaf.c (100%) rename {libc => lib/libc}/mingw/math/tgammal.c (100%) rename {libc => lib/libc}/mingw/math/truncl.c (100%) rename {libc => lib/libc}/mingw/math/x86/_chgsignl.S (100%) rename {libc => lib/libc}/mingw/math/x86/acosf.c (100%) rename {libc => lib/libc}/mingw/math/x86/acosh.c (100%) rename {libc => lib/libc}/mingw/math/x86/acosh.def.h (100%) rename {libc => lib/libc}/mingw/math/x86/acoshf.c (100%) rename {libc => lib/libc}/mingw/math/x86/acoshl.c (100%) rename {libc => lib/libc}/mingw/math/x86/acosl.c (100%) rename {libc => lib/libc}/mingw/math/x86/asinf.c (100%) rename {libc => lib/libc}/mingw/math/x86/asinh.c (100%) rename {libc => lib/libc}/mingw/math/x86/asinhf.c (100%) rename {libc => lib/libc}/mingw/math/x86/asinhl.c (100%) rename {libc => lib/libc}/mingw/math/x86/asinl.c (100%) rename {libc => lib/libc}/mingw/math/x86/atan2.c (100%) rename {libc => lib/libc}/mingw/math/x86/atan2f.c (100%) rename {libc => lib/libc}/mingw/math/x86/atan2l.c (100%) rename {libc => lib/libc}/mingw/math/x86/atanf.c (100%) rename {libc => lib/libc}/mingw/math/x86/atanh.c (100%) rename {libc => lib/libc}/mingw/math/x86/atanhf.c (100%) rename {libc => lib/libc}/mingw/math/x86/atanhl.c (100%) rename {libc => lib/libc}/mingw/math/x86/atanl.c (100%) rename {libc => lib/libc}/mingw/math/x86/ceil.S (100%) rename {libc => lib/libc}/mingw/math/x86/ceilf.S (100%) rename {libc => lib/libc}/mingw/math/x86/ceill.S (100%) rename {libc => lib/libc}/mingw/math/x86/copysignl.S (100%) rename {libc => lib/libc}/mingw/math/x86/cos.c (100%) rename {libc => lib/libc}/mingw/math/x86/cos.def.h (100%) rename {libc => lib/libc}/mingw/math/x86/cosf.c (100%) rename {libc => lib/libc}/mingw/math/x86/cosl.c (100%) rename {libc => lib/libc}/mingw/math/x86/cosl_internal.S (100%) rename {libc => lib/libc}/mingw/math/x86/cossin.c (100%) rename {libc => lib/libc}/mingw/math/x86/exp.c (100%) rename {libc => lib/libc}/mingw/math/x86/exp.def.h (100%) rename {libc => lib/libc}/mingw/math/x86/exp2.S (100%) rename {libc => lib/libc}/mingw/math/x86/exp2f.S (100%) rename {libc => lib/libc}/mingw/math/x86/exp2l.S (100%) rename {libc => lib/libc}/mingw/math/x86/expl.c (100%) rename {libc => lib/libc}/mingw/math/x86/expm1.c (100%) rename {libc => lib/libc}/mingw/math/x86/expm1.def.h (100%) rename {libc => lib/libc}/mingw/math/x86/expm1f.c (100%) rename {libc => lib/libc}/mingw/math/x86/expm1l.c (100%) rename {libc => lib/libc}/mingw/math/x86/fastmath.h (100%) rename {libc => lib/libc}/mingw/math/x86/floor.S (100%) rename {libc => lib/libc}/mingw/math/x86/floorf.S (100%) rename {libc => lib/libc}/mingw/math/x86/floorl.S (100%) rename {libc => lib/libc}/mingw/math/x86/fmod.c (100%) rename {libc => lib/libc}/mingw/math/x86/fmodf.c (100%) rename {libc => lib/libc}/mingw/math/x86/fmodl.c (100%) rename {libc => lib/libc}/mingw/math/x86/frexpl.S (100%) rename {libc => lib/libc}/mingw/math/x86/fucom.c (100%) rename {libc => lib/libc}/mingw/math/x86/ilogb.S (100%) rename {libc => lib/libc}/mingw/math/x86/ilogbf.S (100%) rename {libc => lib/libc}/mingw/math/x86/ilogbl.S (100%) rename {libc => lib/libc}/mingw/math/x86/internal_logl.S (100%) rename {libc => lib/libc}/mingw/math/x86/ldexp.c (100%) rename {libc => lib/libc}/mingw/math/x86/ldexpl.c (100%) rename {libc => lib/libc}/mingw/math/x86/log.c (100%) rename {libc => lib/libc}/mingw/math/x86/log.def.h (100%) rename {libc => lib/libc}/mingw/math/x86/log10l.S (100%) rename {libc => lib/libc}/mingw/math/x86/log1p.S (100%) rename {libc => lib/libc}/mingw/math/x86/log1pf.S (100%) rename {libc => lib/libc}/mingw/math/x86/log1pl.S (100%) rename {libc => lib/libc}/mingw/math/x86/log2.S (100%) rename {libc => lib/libc}/mingw/math/x86/log2f.S (100%) rename {libc => lib/libc}/mingw/math/x86/log2l.S (100%) rename {libc => lib/libc}/mingw/math/x86/logb.c (100%) rename {libc => lib/libc}/mingw/math/x86/logbf.c (100%) rename {libc => lib/libc}/mingw/math/x86/logbl.c (100%) rename {libc => lib/libc}/mingw/math/x86/logl.c (100%) rename {libc => lib/libc}/mingw/math/x86/nearbyint.S (100%) rename {libc => lib/libc}/mingw/math/x86/nearbyintf.S (100%) rename {libc => lib/libc}/mingw/math/x86/nearbyintl.S (100%) rename {libc => lib/libc}/mingw/math/x86/pow.c (100%) rename {libc => lib/libc}/mingw/math/x86/pow.def.h (100%) rename {libc => lib/libc}/mingw/math/x86/powl.c (100%) rename {libc => lib/libc}/mingw/math/x86/remainder.S (100%) rename {libc => lib/libc}/mingw/math/x86/remainderf.S (100%) rename {libc => lib/libc}/mingw/math/x86/remainderl.S (100%) rename {libc => lib/libc}/mingw/math/x86/remquo.S (100%) rename {libc => lib/libc}/mingw/math/x86/remquof.S (100%) rename {libc => lib/libc}/mingw/math/x86/remquol.S (100%) rename {libc => lib/libc}/mingw/math/x86/scalbn.S (100%) rename {libc => lib/libc}/mingw/math/x86/scalbnf.S (100%) rename {libc => lib/libc}/mingw/math/x86/scalbnl.S (100%) rename {libc => lib/libc}/mingw/math/x86/sin.c (100%) rename {libc => lib/libc}/mingw/math/x86/sin.def.h (100%) rename {libc => lib/libc}/mingw/math/x86/sinf.c (100%) rename {libc => lib/libc}/mingw/math/x86/sinl.c (100%) rename {libc => lib/libc}/mingw/math/x86/sinl_internal.S (100%) rename {libc => lib/libc}/mingw/math/x86/tanf.c (100%) rename {libc => lib/libc}/mingw/math/x86/tanl.S (100%) rename {libc => lib/libc}/mingw/math/x86/trunc.S (100%) rename {libc => lib/libc}/mingw/math/x86/truncf.S (100%) rename {libc => lib/libc}/mingw/misc/__p___argv.c (100%) rename {libc => lib/libc}/mingw/misc/__p__acmdln.c (100%) rename {libc => lib/libc}/mingw/misc/__p__fmode.c (100%) rename {libc => lib/libc}/mingw/misc/__p__wcmdln.c (100%) rename {libc => lib/libc}/mingw/misc/_configthreadlocale.c (100%) rename {libc => lib/libc}/mingw/misc/_get_current_locale.c (100%) rename {libc => lib/libc}/mingw/misc/alarm.c (100%) rename {libc => lib/libc}/mingw/misc/assert.c (100%) rename {libc => lib/libc}/mingw/misc/basename.c (100%) rename {libc => lib/libc}/mingw/misc/btowc.c (100%) rename {libc => lib/libc}/mingw/misc/delay-f.c (100%) rename {libc => lib/libc}/mingw/misc/delay-n.c (100%) rename {libc => lib/libc}/mingw/misc/delayimp.c (100%) rename {libc => lib/libc}/mingw/misc/difftime.c (100%) rename {libc => lib/libc}/mingw/misc/difftime32.c (100%) rename {libc => lib/libc}/mingw/misc/difftime64.c (100%) rename {libc => lib/libc}/mingw/misc/dirent.c (100%) rename {libc => lib/libc}/mingw/misc/dirname.c (100%) rename {libc => lib/libc}/mingw/misc/execv.c (100%) rename {libc => lib/libc}/mingw/misc/execve.c (100%) rename {libc => lib/libc}/mingw/misc/execvp.c (100%) rename {libc => lib/libc}/mingw/misc/execvpe.c (100%) rename {libc => lib/libc}/mingw/misc/feclearexcept.c (100%) rename {libc => lib/libc}/mingw/misc/fegetenv.c (100%) rename {libc => lib/libc}/mingw/misc/fegetexceptflag.c (100%) rename {libc => lib/libc}/mingw/misc/fegetround.c (100%) rename {libc => lib/libc}/mingw/misc/feholdexcept.c (100%) rename {libc => lib/libc}/mingw/misc/feraiseexcept.c (100%) rename {libc => lib/libc}/mingw/misc/fesetenv.c (100%) rename {libc => lib/libc}/mingw/misc/fesetexceptflag.c (100%) rename {libc => lib/libc}/mingw/misc/fesetround.c (100%) rename {libc => lib/libc}/mingw/misc/fetestexcept.c (100%) rename {libc => lib/libc}/mingw/misc/feupdateenv.c (100%) rename {libc => lib/libc}/mingw/misc/ftruncate.c (100%) rename {libc => lib/libc}/mingw/misc/ftw.c (100%) rename {libc => lib/libc}/mingw/misc/ftw64.c (100%) rename {libc => lib/libc}/mingw/misc/fwide.c (100%) rename {libc => lib/libc}/mingw/misc/getlogin.c (100%) rename {libc => lib/libc}/mingw/misc/getopt.c (100%) rename {libc => lib/libc}/mingw/misc/gettimeofday.c (100%) rename {libc => lib/libc}/mingw/misc/imaxabs.c (100%) rename {libc => lib/libc}/mingw/misc/imaxdiv.c (100%) rename {libc => lib/libc}/mingw/misc/invalid_parameter_handler.c (100%) rename {libc => lib/libc}/mingw/misc/isblank.c (100%) rename {libc => lib/libc}/mingw/misc/iswblank.c (100%) rename {libc => lib/libc}/mingw/misc/lc_locale_func.c (100%) rename {libc => lib/libc}/mingw/misc/mb_wc_common.h (100%) rename {libc => lib/libc}/mingw/misc/mbrtowc.c (100%) rename {libc => lib/libc}/mingw/misc/mbsinit.c (100%) rename {libc => lib/libc}/mingw/misc/mempcpy.c (100%) rename {libc => lib/libc}/mingw/misc/mingw-aligned-malloc.c (100%) rename {libc => lib/libc}/mingw/misc/mingw-fseek.c (100%) rename {libc => lib/libc}/mingw/misc/mingw_getsp.S (100%) rename {libc => lib/libc}/mingw/misc/mingw_matherr.c (100%) rename {libc => lib/libc}/mingw/misc/mingw_mbwc_convert.c (100%) rename {libc => lib/libc}/mingw/misc/mingw_usleep.c (100%) rename {libc => lib/libc}/mingw/misc/mingw_wcstod.c (100%) rename {libc => lib/libc}/mingw/misc/mingw_wcstof.c (100%) rename {libc => lib/libc}/mingw/misc/mingw_wcstold.c (100%) rename {libc => lib/libc}/mingw/misc/mkstemp.c (100%) rename {libc => lib/libc}/mingw/misc/onexit_table.c (100%) rename {libc => lib/libc}/mingw/misc/output_format.c (100%) rename {libc => lib/libc}/mingw/misc/purecall.c (100%) rename {libc => lib/libc}/mingw/misc/register_tls_atexit.c (100%) rename {libc => lib/libc}/mingw/misc/seterrno.c (100%) rename {libc => lib/libc}/mingw/misc/sleep.c (100%) rename {libc => lib/libc}/mingw/misc/spawnv.c (100%) rename {libc => lib/libc}/mingw/misc/spawnve.c (100%) rename {libc => lib/libc}/mingw/misc/spawnvp.c (100%) rename {libc => lib/libc}/mingw/misc/spawnvpe.c (100%) rename {libc => lib/libc}/mingw/misc/strnlen.c (100%) rename {libc => lib/libc}/mingw/misc/strsafe.c (100%) rename {libc => lib/libc}/mingw/misc/strtoimax.c (100%) rename {libc => lib/libc}/mingw/misc/strtold.c (100%) rename {libc => lib/libc}/mingw/misc/strtoumax.c (100%) rename {libc => lib/libc}/mingw/misc/tdelete.c (100%) rename {libc => lib/libc}/mingw/misc/tfind.c (100%) rename {libc => lib/libc}/mingw/misc/tsearch.c (100%) rename {libc => lib/libc}/mingw/misc/twalk.c (100%) rename {libc => lib/libc}/mingw/misc/uchar_c16rtomb.c (100%) rename {libc => lib/libc}/mingw/misc/uchar_c32rtomb.c (100%) rename {libc => lib/libc}/mingw/misc/uchar_mbrtoc16.c (100%) rename {libc => lib/libc}/mingw/misc/uchar_mbrtoc32.c (100%) rename {libc => lib/libc}/mingw/misc/wassert.c (100%) rename {libc => lib/libc}/mingw/misc/wcrtomb.c (100%) rename {libc => lib/libc}/mingw/misc/wcsnlen.c (100%) rename {libc => lib/libc}/mingw/misc/wcstof.c (100%) rename {libc => lib/libc}/mingw/misc/wcstoimax.c (100%) rename {libc => lib/libc}/mingw/misc/wcstold.c (100%) rename {libc => lib/libc}/mingw/misc/wcstoumax.c (100%) rename {libc => lib/libc}/mingw/misc/wctob.c (100%) rename {libc => lib/libc}/mingw/misc/wctrans.c (100%) rename {libc => lib/libc}/mingw/misc/wctype.c (100%) rename {libc => lib/libc}/mingw/misc/wdirent.c (100%) rename {libc => lib/libc}/mingw/misc/winbs_uint64.c (100%) rename {libc => lib/libc}/mingw/misc/winbs_ulong.c (100%) rename {libc => lib/libc}/mingw/misc/winbs_ushort.c (100%) rename {libc => lib/libc}/mingw/misc/wmemchr.c (100%) rename {libc => lib/libc}/mingw/misc/wmemcmp.c (100%) rename {libc => lib/libc}/mingw/misc/wmemcpy.c (100%) rename {libc => lib/libc}/mingw/misc/wmemmove.c (100%) rename {libc => lib/libc}/mingw/misc/wmempcpy.c (100%) rename {libc => lib/libc}/mingw/misc/wmemset.c (100%) rename {libc => lib/libc}/mingw/secapi/_access_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_cgets_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_cgetws_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_chsize_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_controlfp_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_cprintf_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_cprintf_s_l.c (100%) rename {libc => lib/libc}/mingw/secapi/_ctime32_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_ctime64_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_cwprintf_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_cwprintf_s_l.c (100%) rename {libc => lib/libc}/mingw/secapi/_gmtime32_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_gmtime64_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_localtime32_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_localtime64_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_mktemp_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_sopen_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_strdate_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_strtime_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_umask_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_vcprintf_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_vcprintf_s_l.c (100%) rename {libc => lib/libc}/mingw/secapi/_vcwprintf_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_vcwprintf_s_l.c (100%) rename {libc => lib/libc}/mingw/secapi/_vscprintf_p.c (100%) rename {libc => lib/libc}/mingw/secapi/_vscwprintf_p.c (100%) rename {libc => lib/libc}/mingw/secapi/_vswprintf_p.c (100%) rename {libc => lib/libc}/mingw/secapi/_waccess_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_wasctime_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_wctime32_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_wctime64_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_wmktemp_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_wstrdate_s.c (100%) rename {libc => lib/libc}/mingw/secapi/_wstrtime_s.c (100%) rename {libc => lib/libc}/mingw/secapi/asctime_s.c (100%) rename {libc => lib/libc}/mingw/secapi/memcpy_s.c (100%) rename {libc => lib/libc}/mingw/secapi/memmove_s.c (100%) rename {libc => lib/libc}/mingw/secapi/rand_s.c (100%) rename {libc => lib/libc}/mingw/secapi/sprintf_s.c (100%) rename {libc => lib/libc}/mingw/secapi/strerror_s.c (100%) rename {libc => lib/libc}/mingw/secapi/vsprintf_s.c (100%) rename {libc => lib/libc}/mingw/secapi/wmemcpy_s.c (100%) rename {libc => lib/libc}/mingw/secapi/wmemmove_s.c (100%) rename {libc => lib/libc}/mingw/stdio/_Exit.c (100%) rename {libc => lib/libc}/mingw/stdio/_findfirst64i32.c (100%) rename {libc => lib/libc}/mingw/stdio/_findnext64i32.c (100%) rename {libc => lib/libc}/mingw/stdio/_fstat.c (100%) rename {libc => lib/libc}/mingw/stdio/_fstat64i32.c (100%) rename {libc => lib/libc}/mingw/stdio/_ftime.c (100%) rename {libc => lib/libc}/mingw/stdio/_getc_nolock.c (100%) rename {libc => lib/libc}/mingw/stdio/_getwc_nolock.c (100%) rename {libc => lib/libc}/mingw/stdio/_putc_nolock.c (100%) rename {libc => lib/libc}/mingw/stdio/_putwc_nolock.c (100%) rename {libc => lib/libc}/mingw/stdio/_stat.c (100%) rename {libc => lib/libc}/mingw/stdio/_stat64i32.c (100%) rename {libc => lib/libc}/mingw/stdio/_wfindfirst64i32.c (100%) rename {libc => lib/libc}/mingw/stdio/_wfindnext64i32.c (100%) rename {libc => lib/libc}/mingw/stdio/_wstat.c (100%) rename {libc => lib/libc}/mingw/stdio/_wstat64i32.c (100%) rename {libc => lib/libc}/mingw/stdio/acrt_iob_func.c (100%) rename {libc => lib/libc}/mingw/stdio/asprintf.c (100%) rename {libc => lib/libc}/mingw/stdio/atoll.c (100%) rename {libc => lib/libc}/mingw/stdio/fgetpos64.c (100%) rename {libc => lib/libc}/mingw/stdio/fopen64.c (100%) rename {libc => lib/libc}/mingw/stdio/fseeko32.c (100%) rename {libc => lib/libc}/mingw/stdio/fseeko64.c (100%) rename {libc => lib/libc}/mingw/stdio/fsetpos64.c (100%) rename {libc => lib/libc}/mingw/stdio/ftello.c (100%) rename {libc => lib/libc}/mingw/stdio/ftello64.c (100%) rename {libc => lib/libc}/mingw/stdio/ftruncate64.c (100%) rename {libc => lib/libc}/mingw/stdio/lltoa.c (100%) rename {libc => lib/libc}/mingw/stdio/lltow.c (100%) rename {libc => lib/libc}/mingw/stdio/lseek64.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_asprintf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_fprintf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_fprintfw.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_fscanf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_fwscanf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_lock.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_pformat.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_pformat.h (100%) rename {libc => lib/libc}/mingw/stdio/mingw_pformatw.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_printf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_printfw.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_scanf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_snprintf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_snprintfw.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_sprintf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_sprintfw.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_sscanf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_swscanf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_vasprintf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_vfprintf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_vfprintfw.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_vfscanf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_vprintf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_vprintfw.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_vsnprintf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_vsnprintfw.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_vsprintf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_vsprintfw.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_wscanf.c (100%) rename {libc => lib/libc}/mingw/stdio/mingw_wvfscanf.c (100%) rename {libc => lib/libc}/mingw/stdio/scanf.S (100%) rename {libc => lib/libc}/mingw/stdio/scanf2-template.S (100%) rename {libc => lib/libc}/mingw/stdio/snprintf.c (100%) rename {libc => lib/libc}/mingw/stdio/snwprintf.c (100%) rename {libc => lib/libc}/mingw/stdio/strtof.c (100%) rename {libc => lib/libc}/mingw/stdio/strtok_r.c (100%) rename {libc => lib/libc}/mingw/stdio/truncate.c (100%) rename {libc => lib/libc}/mingw/stdio/ulltoa.c (100%) rename {libc => lib/libc}/mingw/stdio/ulltow.c (100%) rename {libc => lib/libc}/mingw/stdio/vasprintf.c (100%) rename {libc => lib/libc}/mingw/stdio/vfscanf.c (100%) rename {libc => lib/libc}/mingw/stdio/vfscanf2.S (100%) rename {libc => lib/libc}/mingw/stdio/vfwscanf.c (100%) rename {libc => lib/libc}/mingw/stdio/vfwscanf2.S (100%) rename {libc => lib/libc}/mingw/stdio/vscanf.c (100%) rename {libc => lib/libc}/mingw/stdio/vscanf2.S (100%) rename {libc => lib/libc}/mingw/stdio/vsnprintf.c (100%) rename {libc => lib/libc}/mingw/stdio/vsnwprintf.c (100%) rename {libc => lib/libc}/mingw/stdio/vsscanf.c (100%) rename {libc => lib/libc}/mingw/stdio/vsscanf2.S (100%) rename {libc => lib/libc}/mingw/stdio/vswscanf.c (100%) rename {libc => lib/libc}/mingw/stdio/vswscanf2.S (100%) rename {libc => lib/libc}/mingw/stdio/vwscanf.c (100%) rename {libc => lib/libc}/mingw/stdio/vwscanf2.S (100%) rename {libc => lib/libc}/mingw/stdio/wtoll.c (100%) rename {libc => lib/libc}/musl/arch/aarch64/atomic_arch.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/alltypes.h.in (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/endian.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/fcntl.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/fenv.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/float.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/hwcap.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/ipc.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/limits.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/msg.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/posix.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/reg.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/sem.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/setjmp.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/shm.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/signal.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/socket.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/stat.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/stdint.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/syscall.h.in (100%) rename {libc => lib/libc}/musl/arch/aarch64/bits/user.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/crt_arch.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/pthread_arch.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/reloc.h (100%) rename {libc => lib/libc}/musl/arch/aarch64/syscall_arch.h (100%) rename {libc => lib/libc}/musl/arch/arm/atomic_arch.h (100%) rename {libc => lib/libc}/musl/arch/arm/bits/alltypes.h.in (100%) rename {libc => lib/libc}/musl/arch/arm/bits/endian.h (100%) rename {libc => lib/libc}/musl/arch/arm/bits/fcntl.h (100%) rename {libc => lib/libc}/musl/arch/arm/bits/fenv.h (100%) rename {libc => lib/libc}/musl/arch/arm/bits/float.h (100%) rename {libc => lib/libc}/musl/arch/arm/bits/hwcap.h (100%) rename {libc => lib/libc}/musl/arch/arm/bits/ioctl_fix.h (100%) rename {libc => lib/libc}/musl/arch/arm/bits/limits.h (100%) rename {libc => lib/libc}/musl/arch/arm/bits/posix.h (100%) rename {libc => lib/libc}/musl/arch/arm/bits/ptrace.h (100%) rename {libc => lib/libc}/musl/arch/arm/bits/reg.h (100%) rename {libc => lib/libc}/musl/arch/arm/bits/setjmp.h (100%) rename {libc => lib/libc}/musl/arch/arm/bits/signal.h (100%) rename {libc => lib/libc}/musl/arch/arm/bits/stat.h (100%) rename {libc => lib/libc}/musl/arch/arm/bits/stdint.h (100%) rename {libc => lib/libc}/musl/arch/arm/bits/syscall.h.in (100%) rename {libc => lib/libc}/musl/arch/arm/bits/user.h (100%) rename {libc => lib/libc}/musl/arch/arm/crt_arch.h (100%) rename {libc => lib/libc}/musl/arch/arm/pthread_arch.h (100%) rename {libc => lib/libc}/musl/arch/arm/reloc.h (100%) rename {libc => lib/libc}/musl/arch/arm/syscall_arch.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/errno.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/fcntl.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/fenv.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/hwcap.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/io.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/ioctl.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/ioctl_fix.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/ipc.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/kd.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/link.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/mman.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/msg.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/poll.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/ptrace.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/resource.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/sem.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/shm.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/socket.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/soundcard.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/statfs.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/termios.h (100%) rename {libc => lib/libc}/musl/arch/generic/bits/vt.h (100%) rename {libc => lib/libc}/musl/arch/i386/atomic_arch.h (100%) rename {libc => lib/libc}/musl/arch/i386/bits/alltypes.h.in (100%) rename {libc => lib/libc}/musl/arch/i386/bits/endian.h (100%) rename {libc => lib/libc}/musl/arch/i386/bits/fenv.h (100%) rename {libc => lib/libc}/musl/arch/i386/bits/float.h (100%) rename {libc => lib/libc}/musl/arch/i386/bits/io.h (100%) rename {libc => lib/libc}/musl/arch/i386/bits/limits.h (100%) rename {libc => lib/libc}/musl/arch/i386/bits/mman.h (100%) rename {libc => lib/libc}/musl/arch/i386/bits/posix.h (100%) rename {libc => lib/libc}/musl/arch/i386/bits/ptrace.h (100%) rename {libc => lib/libc}/musl/arch/i386/bits/reg.h (100%) rename {libc => lib/libc}/musl/arch/i386/bits/setjmp.h (100%) rename {libc => lib/libc}/musl/arch/i386/bits/signal.h (100%) rename {libc => lib/libc}/musl/arch/i386/bits/stat.h (100%) rename {libc => lib/libc}/musl/arch/i386/bits/stdint.h (100%) rename {libc => lib/libc}/musl/arch/i386/bits/syscall.h.in (100%) rename {libc => lib/libc}/musl/arch/i386/bits/user.h (100%) rename {libc => lib/libc}/musl/arch/i386/crt_arch.h (100%) rename {libc => lib/libc}/musl/arch/i386/pthread_arch.h (100%) rename {libc => lib/libc}/musl/arch/i386/reloc.h (100%) rename {libc => lib/libc}/musl/arch/i386/syscall_arch.h (100%) rename {libc => lib/libc}/musl/arch/mips/atomic_arch.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/alltypes.h.in (100%) rename {libc => lib/libc}/musl/arch/mips/bits/endian.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/errno.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/fcntl.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/fenv.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/float.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/hwcap.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/ioctl.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/limits.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/mman.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/msg.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/poll.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/posix.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/ptrace.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/reg.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/resource.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/sem.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/setjmp.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/shm.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/signal.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/socket.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/stat.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/statfs.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/stdint.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/syscall.h.in (100%) rename {libc => lib/libc}/musl/arch/mips/bits/termios.h (100%) rename {libc => lib/libc}/musl/arch/mips/bits/user.h (100%) rename {libc => lib/libc}/musl/arch/mips/crt_arch.h (100%) rename {libc => lib/libc}/musl/arch/mips/ksigaction.h (100%) rename {libc => lib/libc}/musl/arch/mips/pthread_arch.h (100%) rename {libc => lib/libc}/musl/arch/mips/reloc.h (100%) rename {libc => lib/libc}/musl/arch/mips/syscall_arch.h (100%) rename {libc => lib/libc}/musl/arch/mips64/atomic_arch.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/alltypes.h.in (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/endian.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/errno.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/fcntl.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/fenv.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/float.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/hwcap.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/ioctl.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/ipc.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/limits.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/mman.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/msg.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/poll.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/posix.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/ptrace.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/reg.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/resource.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/sem.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/setjmp.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/shm.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/signal.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/socket.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/stat.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/statfs.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/stdint.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/syscall.h.in (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/termios.h (100%) rename {libc => lib/libc}/musl/arch/mips64/bits/user.h (100%) rename {libc => lib/libc}/musl/arch/mips64/crt_arch.h (100%) rename {libc => lib/libc}/musl/arch/mips64/ksigaction.h (100%) rename {libc => lib/libc}/musl/arch/mips64/pthread_arch.h (100%) rename {libc => lib/libc}/musl/arch/mips64/reloc.h (100%) rename {libc => lib/libc}/musl/arch/mips64/syscall_arch.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/atomic_arch.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/alltypes.h.in (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/endian.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/errno.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/fcntl.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/fenv.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/float.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/hwcap.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/ioctl.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/ipc.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/limits.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/mman.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/msg.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/posix.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/ptrace.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/reg.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/sem.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/setjmp.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/shm.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/signal.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/socket.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/stat.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/stdint.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/syscall.h.in (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/termios.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/bits/user.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/crt_arch.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/pthread_arch.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/reloc.h (100%) rename {libc => lib/libc}/musl/arch/powerpc/syscall_arch.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/atomic_arch.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/alltypes.h.in (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/endian.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/errno.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/fcntl.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/fenv.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/float.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/hwcap.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/ioctl.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/ipc.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/limits.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/mman.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/msg.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/posix.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/ptrace.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/reg.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/sem.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/setjmp.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/shm.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/signal.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/socket.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/stat.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/stdint.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/syscall.h.in (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/termios.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/bits/user.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/crt_arch.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/pthread_arch.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/reloc.h (100%) rename {libc => lib/libc}/musl/arch/powerpc64/syscall_arch.h (100%) rename {libc => lib/libc}/musl/arch/s390x/atomic_arch.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/alltypes.h.in (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/endian.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/fcntl.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/fenv.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/float.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/hwcap.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/ioctl_fix.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/ipc.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/limits.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/link.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/msg.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/posix.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/ptrace.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/reg.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/sem.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/setjmp.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/shm.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/signal.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/socket.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/stat.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/statfs.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/stdint.h (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/syscall.h.in (100%) rename {libc => lib/libc}/musl/arch/s390x/bits/user.h (100%) rename {libc => lib/libc}/musl/arch/s390x/crt_arch.h (100%) rename {libc => lib/libc}/musl/arch/s390x/pthread_arch.h (100%) rename {libc => lib/libc}/musl/arch/s390x/reloc.h (100%) rename {libc => lib/libc}/musl/arch/s390x/syscall_arch.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/atomic_arch.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/alltypes.h.in (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/endian.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/fcntl.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/fenv.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/float.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/io.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/ipc.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/limits.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/mman.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/msg.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/posix.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/ptrace.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/reg.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/setjmp.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/shm.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/signal.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/socket.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/stat.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/stdint.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/syscall.h.in (100%) rename {libc => lib/libc}/musl/arch/x86_64/bits/user.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/crt_arch.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/ksigaction.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/pthread_arch.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/reloc.h (100%) rename {libc => lib/libc}/musl/arch/x86_64/syscall_arch.h (100%) rename {libc => lib/libc}/musl/crt/Scrt1.c (100%) rename {libc => lib/libc}/musl/crt/aarch64/crti.s (100%) rename {libc => lib/libc}/musl/crt/aarch64/crtn.s (100%) rename {libc => lib/libc}/musl/crt/arm/crti.s (100%) rename {libc => lib/libc}/musl/crt/arm/crtn.s (100%) rename {libc => lib/libc}/musl/crt/crt1.c (100%) rename {libc => lib/libc}/musl/crt/crti.c (100%) rename {libc => lib/libc}/musl/crt/crtn.c (100%) rename {libc => lib/libc}/musl/crt/i386/crti.s (100%) rename {libc => lib/libc}/musl/crt/i386/crtn.s (100%) rename {libc => lib/libc}/musl/crt/microblaze/crti.s (100%) rename {libc => lib/libc}/musl/crt/microblaze/crtn.s (100%) rename {libc => lib/libc}/musl/crt/mips/crti.s (100%) rename {libc => lib/libc}/musl/crt/mips/crtn.s (100%) rename {libc => lib/libc}/musl/crt/mips64/crti.s (100%) rename {libc => lib/libc}/musl/crt/mips64/crtn.s (100%) rename {libc => lib/libc}/musl/crt/mipsn32/crti.s (100%) rename {libc => lib/libc}/musl/crt/mipsn32/crtn.s (100%) rename {libc => lib/libc}/musl/crt/or1k/crti.s (100%) rename {libc => lib/libc}/musl/crt/or1k/crtn.s (100%) rename {libc => lib/libc}/musl/crt/powerpc/crti.s (100%) rename {libc => lib/libc}/musl/crt/powerpc/crtn.s (100%) rename {libc => lib/libc}/musl/crt/powerpc64/crti.s (100%) rename {libc => lib/libc}/musl/crt/powerpc64/crtn.s (100%) rename {libc => lib/libc}/musl/crt/rcrt1.c (100%) rename {libc => lib/libc}/musl/crt/s390x/crti.s (100%) rename {libc => lib/libc}/musl/crt/s390x/crtn.s (100%) rename {libc => lib/libc}/musl/crt/sh/crti.s (100%) rename {libc => lib/libc}/musl/crt/sh/crtn.s (100%) rename {libc => lib/libc}/musl/crt/x32/crti.s (100%) rename {libc => lib/libc}/musl/crt/x32/crtn.s (100%) rename {libc => lib/libc}/musl/crt/x86_64/crti.s (100%) rename {libc => lib/libc}/musl/crt/x86_64/crtn.s (100%) rename {libc => lib/libc}/musl/src/aio/aio.c (100%) rename {libc => lib/libc}/musl/src/aio/aio_suspend.c (100%) rename {libc => lib/libc}/musl/src/aio/lio_listio.c (100%) rename {libc => lib/libc}/musl/src/complex/__cexp.c (100%) rename {libc => lib/libc}/musl/src/complex/__cexpf.c (100%) rename {libc => lib/libc}/musl/src/complex/cabs.c (100%) rename {libc => lib/libc}/musl/src/complex/cabsf.c (100%) rename {libc => lib/libc}/musl/src/complex/cabsl.c (100%) rename {libc => lib/libc}/musl/src/complex/cacos.c (100%) rename {libc => lib/libc}/musl/src/complex/cacosf.c (100%) rename {libc => lib/libc}/musl/src/complex/cacosh.c (100%) rename {libc => lib/libc}/musl/src/complex/cacoshf.c (100%) rename {libc => lib/libc}/musl/src/complex/cacoshl.c (100%) rename {libc => lib/libc}/musl/src/complex/cacosl.c (100%) rename {libc => lib/libc}/musl/src/complex/carg.c (100%) rename {libc => lib/libc}/musl/src/complex/cargf.c (100%) rename {libc => lib/libc}/musl/src/complex/cargl.c (100%) rename {libc => lib/libc}/musl/src/complex/casin.c (100%) rename {libc => lib/libc}/musl/src/complex/casinf.c (100%) rename {libc => lib/libc}/musl/src/complex/casinh.c (100%) rename {libc => lib/libc}/musl/src/complex/casinhf.c (100%) rename {libc => lib/libc}/musl/src/complex/casinhl.c (100%) rename {libc => lib/libc}/musl/src/complex/casinl.c (100%) rename {libc => lib/libc}/musl/src/complex/catan.c (100%) rename {libc => lib/libc}/musl/src/complex/catanf.c (100%) rename {libc => lib/libc}/musl/src/complex/catanh.c (100%) rename {libc => lib/libc}/musl/src/complex/catanhf.c (100%) rename {libc => lib/libc}/musl/src/complex/catanhl.c (100%) rename {libc => lib/libc}/musl/src/complex/catanl.c (100%) rename {libc => lib/libc}/musl/src/complex/ccos.c (100%) rename {libc => lib/libc}/musl/src/complex/ccosf.c (100%) rename {libc => lib/libc}/musl/src/complex/ccosh.c (100%) rename {libc => lib/libc}/musl/src/complex/ccoshf.c (100%) rename {libc => lib/libc}/musl/src/complex/ccoshl.c (100%) rename {libc => lib/libc}/musl/src/complex/ccosl.c (100%) rename {libc => lib/libc}/musl/src/complex/cexp.c (100%) rename {libc => lib/libc}/musl/src/complex/cexpf.c (100%) rename {libc => lib/libc}/musl/src/complex/cexpl.c (100%) rename {libc => lib/libc}/musl/src/complex/cimag.c (100%) rename {libc => lib/libc}/musl/src/complex/cimagf.c (100%) rename {libc => lib/libc}/musl/src/complex/cimagl.c (100%) rename {libc => lib/libc}/musl/src/complex/clog.c (100%) rename {libc => lib/libc}/musl/src/complex/clogf.c (100%) rename {libc => lib/libc}/musl/src/complex/clogl.c (100%) rename {libc => lib/libc}/musl/src/complex/conj.c (100%) rename {libc => lib/libc}/musl/src/complex/conjf.c (100%) rename {libc => lib/libc}/musl/src/complex/conjl.c (100%) rename {libc => lib/libc}/musl/src/complex/cpow.c (100%) rename {libc => lib/libc}/musl/src/complex/cpowf.c (100%) rename {libc => lib/libc}/musl/src/complex/cpowl.c (100%) rename {libc => lib/libc}/musl/src/complex/cproj.c (100%) rename {libc => lib/libc}/musl/src/complex/cprojf.c (100%) rename {libc => lib/libc}/musl/src/complex/cprojl.c (100%) rename {libc => lib/libc}/musl/src/complex/creal.c (100%) rename {libc => lib/libc}/musl/src/complex/crealf.c (100%) rename {libc => lib/libc}/musl/src/complex/creall.c (100%) rename {libc => lib/libc}/musl/src/complex/csin.c (100%) rename {libc => lib/libc}/musl/src/complex/csinf.c (100%) rename {libc => lib/libc}/musl/src/complex/csinh.c (100%) rename {libc => lib/libc}/musl/src/complex/csinhf.c (100%) rename {libc => lib/libc}/musl/src/complex/csinhl.c (100%) rename {libc => lib/libc}/musl/src/complex/csinl.c (100%) rename {libc => lib/libc}/musl/src/complex/csqrt.c (100%) rename {libc => lib/libc}/musl/src/complex/csqrtf.c (100%) rename {libc => lib/libc}/musl/src/complex/csqrtl.c (100%) rename {libc => lib/libc}/musl/src/complex/ctan.c (100%) rename {libc => lib/libc}/musl/src/complex/ctanf.c (100%) rename {libc => lib/libc}/musl/src/complex/ctanh.c (100%) rename {libc => lib/libc}/musl/src/complex/ctanhf.c (100%) rename {libc => lib/libc}/musl/src/complex/ctanhl.c (100%) rename {libc => lib/libc}/musl/src/complex/ctanl.c (100%) rename {libc => lib/libc}/musl/src/conf/confstr.c (100%) rename {libc => lib/libc}/musl/src/conf/fpathconf.c (100%) rename {libc => lib/libc}/musl/src/conf/legacy.c (100%) rename {libc => lib/libc}/musl/src/conf/pathconf.c (100%) rename {libc => lib/libc}/musl/src/conf/sysconf.c (100%) rename {libc => lib/libc}/musl/src/crypt/crypt.c (100%) rename {libc => lib/libc}/musl/src/crypt/crypt_blowfish.c (100%) rename {libc => lib/libc}/musl/src/crypt/crypt_des.c (100%) rename {libc => lib/libc}/musl/src/crypt/crypt_des.h (100%) rename {libc => lib/libc}/musl/src/crypt/crypt_md5.c (100%) rename {libc => lib/libc}/musl/src/crypt/crypt_r.c (100%) rename {libc => lib/libc}/musl/src/crypt/crypt_sha256.c (100%) rename {libc => lib/libc}/musl/src/crypt/crypt_sha512.c (100%) rename {libc => lib/libc}/musl/src/crypt/encrypt.c (100%) rename {libc => lib/libc}/musl/src/ctype/__ctype_b_loc.c (100%) rename {libc => lib/libc}/musl/src/ctype/__ctype_get_mb_cur_max.c (100%) rename {libc => lib/libc}/musl/src/ctype/__ctype_tolower_loc.c (100%) rename {libc => lib/libc}/musl/src/ctype/__ctype_toupper_loc.c (100%) rename {libc => lib/libc}/musl/src/ctype/alpha.h (100%) rename {libc => lib/libc}/musl/src/ctype/isalnum.c (100%) rename {libc => lib/libc}/musl/src/ctype/isalpha.c (100%) rename {libc => lib/libc}/musl/src/ctype/isascii.c (100%) rename {libc => lib/libc}/musl/src/ctype/isblank.c (100%) rename {libc => lib/libc}/musl/src/ctype/iscntrl.c (100%) rename {libc => lib/libc}/musl/src/ctype/isdigit.c (100%) rename {libc => lib/libc}/musl/src/ctype/isgraph.c (100%) rename {libc => lib/libc}/musl/src/ctype/islower.c (100%) rename {libc => lib/libc}/musl/src/ctype/isprint.c (100%) rename {libc => lib/libc}/musl/src/ctype/ispunct.c (100%) rename {libc => lib/libc}/musl/src/ctype/isspace.c (100%) rename {libc => lib/libc}/musl/src/ctype/isupper.c (100%) rename {libc => lib/libc}/musl/src/ctype/iswalnum.c (100%) rename {libc => lib/libc}/musl/src/ctype/iswalpha.c (100%) rename {libc => lib/libc}/musl/src/ctype/iswblank.c (100%) rename {libc => lib/libc}/musl/src/ctype/iswcntrl.c (100%) rename {libc => lib/libc}/musl/src/ctype/iswctype.c (100%) rename {libc => lib/libc}/musl/src/ctype/iswdigit.c (100%) rename {libc => lib/libc}/musl/src/ctype/iswgraph.c (100%) rename {libc => lib/libc}/musl/src/ctype/iswlower.c (100%) rename {libc => lib/libc}/musl/src/ctype/iswprint.c (100%) rename {libc => lib/libc}/musl/src/ctype/iswpunct.c (100%) rename {libc => lib/libc}/musl/src/ctype/iswspace.c (100%) rename {libc => lib/libc}/musl/src/ctype/iswupper.c (100%) rename {libc => lib/libc}/musl/src/ctype/iswxdigit.c (100%) rename {libc => lib/libc}/musl/src/ctype/isxdigit.c (100%) rename {libc => lib/libc}/musl/src/ctype/nonspacing.h (100%) rename {libc => lib/libc}/musl/src/ctype/punct.h (100%) rename {libc => lib/libc}/musl/src/ctype/toascii.c (100%) rename {libc => lib/libc}/musl/src/ctype/tolower.c (100%) rename {libc => lib/libc}/musl/src/ctype/toupper.c (100%) rename {libc => lib/libc}/musl/src/ctype/towctrans.c (100%) rename {libc => lib/libc}/musl/src/ctype/wcswidth.c (100%) rename {libc => lib/libc}/musl/src/ctype/wctrans.c (100%) rename {libc => lib/libc}/musl/src/ctype/wcwidth.c (100%) rename {libc => lib/libc}/musl/src/ctype/wide.h (100%) rename {libc => lib/libc}/musl/src/dirent/__dirent.h (100%) rename {libc => lib/libc}/musl/src/dirent/alphasort.c (100%) rename {libc => lib/libc}/musl/src/dirent/closedir.c (100%) rename {libc => lib/libc}/musl/src/dirent/dirfd.c (100%) rename {libc => lib/libc}/musl/src/dirent/fdopendir.c (100%) rename {libc => lib/libc}/musl/src/dirent/opendir.c (100%) rename {libc => lib/libc}/musl/src/dirent/readdir.c (100%) rename {libc => lib/libc}/musl/src/dirent/readdir_r.c (100%) rename {libc => lib/libc}/musl/src/dirent/rewinddir.c (100%) rename {libc => lib/libc}/musl/src/dirent/scandir.c (100%) rename {libc => lib/libc}/musl/src/dirent/seekdir.c (100%) rename {libc => lib/libc}/musl/src/dirent/telldir.c (100%) rename {libc => lib/libc}/musl/src/dirent/versionsort.c (100%) rename {libc => lib/libc}/musl/src/env/__environ.c (100%) rename {libc => lib/libc}/musl/src/env/__init_tls.c (100%) rename {libc => lib/libc}/musl/src/env/__libc_start_main.c (100%) rename {libc => lib/libc}/musl/src/env/__reset_tls.c (100%) rename {libc => lib/libc}/musl/src/env/__stack_chk_fail.c (100%) rename {libc => lib/libc}/musl/src/env/clearenv.c (100%) rename {libc => lib/libc}/musl/src/env/getenv.c (100%) rename {libc => lib/libc}/musl/src/env/putenv.c (100%) rename {libc => lib/libc}/musl/src/env/setenv.c (100%) rename {libc => lib/libc}/musl/src/env/unsetenv.c (100%) rename {libc => lib/libc}/musl/src/errno/__errno_location.c (100%) rename {libc => lib/libc}/musl/src/errno/__strerror.h (100%) rename {libc => lib/libc}/musl/src/errno/strerror.c (100%) rename {libc => lib/libc}/musl/src/exit/_Exit.c (100%) rename {libc => lib/libc}/musl/src/exit/abort.c (100%) rename {libc => lib/libc}/musl/src/exit/arm/__aeabi_atexit.c (100%) rename {libc => lib/libc}/musl/src/exit/assert.c (100%) rename {libc => lib/libc}/musl/src/exit/at_quick_exit.c (100%) rename {libc => lib/libc}/musl/src/exit/atexit.c (100%) rename {libc => lib/libc}/musl/src/exit/exit.c (100%) rename {libc => lib/libc}/musl/src/exit/quick_exit.c (100%) rename {libc => lib/libc}/musl/src/fcntl/creat.c (100%) rename {libc => lib/libc}/musl/src/fcntl/fcntl.c (100%) rename {libc => lib/libc}/musl/src/fcntl/open.c (100%) rename {libc => lib/libc}/musl/src/fcntl/openat.c (100%) rename {libc => lib/libc}/musl/src/fcntl/posix_fadvise.c (100%) rename {libc => lib/libc}/musl/src/fcntl/posix_fallocate.c (100%) rename {libc => lib/libc}/musl/src/fenv/__flt_rounds.c (100%) rename {libc => lib/libc}/musl/src/fenv/aarch64/fenv.s (100%) rename {libc => lib/libc}/musl/src/fenv/arm/fenv-hf.S (100%) rename {libc => lib/libc}/musl/src/fenv/arm/fenv.c (100%) rename {libc => lib/libc}/musl/src/fenv/fegetexceptflag.c (100%) rename {libc => lib/libc}/musl/src/fenv/feholdexcept.c (100%) rename {libc => lib/libc}/musl/src/fenv/fenv.c (100%) rename {libc => lib/libc}/musl/src/fenv/fesetexceptflag.c (100%) rename {libc => lib/libc}/musl/src/fenv/fesetround.c (100%) rename {libc => lib/libc}/musl/src/fenv/feupdateenv.c (100%) rename {libc => lib/libc}/musl/src/fenv/i386/fenv.s (100%) rename {libc => lib/libc}/musl/src/fenv/m68k/fenv.c (100%) rename {libc => lib/libc}/musl/src/fenv/mips/fenv-sf.c (100%) rename {libc => lib/libc}/musl/src/fenv/mips/fenv.S (100%) rename {libc => lib/libc}/musl/src/fenv/mips64/fenv-sf.c (100%) rename {libc => lib/libc}/musl/src/fenv/mips64/fenv.S (100%) rename {libc => lib/libc}/musl/src/fenv/mipsn32/fenv-sf.c (100%) rename {libc => lib/libc}/musl/src/fenv/mipsn32/fenv.S (100%) rename {libc => lib/libc}/musl/src/fenv/powerpc/fenv-sf.c (100%) rename {libc => lib/libc}/musl/src/fenv/powerpc/fenv.S (100%) rename {libc => lib/libc}/musl/src/fenv/powerpc64/fenv.c (100%) rename {libc => lib/libc}/musl/src/fenv/s390x/fenv.c (100%) rename {libc => lib/libc}/musl/src/fenv/sh/fenv-nofpu.c (100%) rename {libc => lib/libc}/musl/src/fenv/sh/fenv.S (100%) rename {libc => lib/libc}/musl/src/fenv/x32/fenv.s (100%) rename {libc => lib/libc}/musl/src/fenv/x86_64/fenv.s (100%) rename {libc => lib/libc}/musl/src/include/arpa/inet.h (100%) rename {libc => lib/libc}/musl/src/include/crypt.h (100%) rename {libc => lib/libc}/musl/src/include/errno.h (100%) rename {libc => lib/libc}/musl/src/include/features.h (100%) rename {libc => lib/libc}/musl/src/include/langinfo.h (100%) rename {libc => lib/libc}/musl/src/include/pthread.h (100%) rename {libc => lib/libc}/musl/src/include/resolv.h (100%) rename {libc => lib/libc}/musl/src/include/signal.h (100%) rename {libc => lib/libc}/musl/src/include/stdio.h (100%) rename {libc => lib/libc}/musl/src/include/stdlib.h (100%) rename {libc => lib/libc}/musl/src/include/string.h (100%) rename {libc => lib/libc}/musl/src/include/sys/auxv.h (100%) rename {libc => lib/libc}/musl/src/include/sys/mman.h (100%) rename {libc => lib/libc}/musl/src/include/sys/sysinfo.h (100%) rename {libc => lib/libc}/musl/src/include/sys/time.h (100%) rename {libc => lib/libc}/musl/src/include/time.h (100%) rename {libc => lib/libc}/musl/src/include/unistd.h (100%) rename {libc => lib/libc}/musl/src/internal/aarch64/syscall.s (100%) rename {libc => lib/libc}/musl/src/internal/arm/syscall.s (100%) rename {libc => lib/libc}/musl/src/internal/atomic.h (100%) rename {libc => lib/libc}/musl/src/internal/dynlink.h (100%) rename {libc => lib/libc}/musl/src/internal/fdpic_crt.h (100%) rename {libc => lib/libc}/musl/src/internal/floatscan.c (100%) rename {libc => lib/libc}/musl/src/internal/floatscan.h (100%) rename {libc => lib/libc}/musl/src/internal/futex.h (100%) rename {libc => lib/libc}/musl/src/internal/i386/syscall.s (100%) rename {libc => lib/libc}/musl/src/internal/intscan.c (100%) rename {libc => lib/libc}/musl/src/internal/intscan.h (100%) rename {libc => lib/libc}/musl/src/internal/ksigaction.h (100%) rename {libc => lib/libc}/musl/src/internal/libc.c (100%) rename {libc => lib/libc}/musl/src/internal/libc.h (100%) rename {libc => lib/libc}/musl/src/internal/libm.h (100%) rename {libc => lib/libc}/musl/src/internal/locale_impl.h (100%) rename {libc => lib/libc}/musl/src/internal/lock.h (100%) rename {libc => lib/libc}/musl/src/internal/m68k/syscall.s (100%) rename {libc => lib/libc}/musl/src/internal/malloc_impl.h (100%) rename {libc => lib/libc}/musl/src/internal/microblaze/syscall.s (100%) rename {libc => lib/libc}/musl/src/internal/mips/syscall.s (100%) rename {libc => lib/libc}/musl/src/internal/mips64/syscall.s (100%) rename {libc => lib/libc}/musl/src/internal/mipsn32/syscall.s (100%) rename {libc => lib/libc}/musl/src/internal/or1k/syscall.s (100%) rename {libc => lib/libc}/musl/src/internal/powerpc/syscall.s (100%) rename {libc => lib/libc}/musl/src/internal/powerpc64/syscall.s (100%) rename {libc => lib/libc}/musl/src/internal/procfdname.c (100%) rename {libc => lib/libc}/musl/src/internal/pthread_impl.h (100%) rename {libc => lib/libc}/musl/src/internal/s390x/syscall.s (100%) rename {libc => lib/libc}/musl/src/internal/sh/__shcall.c (100%) rename {libc => lib/libc}/musl/src/internal/sh/syscall.s (100%) rename {libc => lib/libc}/musl/src/internal/shgetc.c (100%) rename {libc => lib/libc}/musl/src/internal/shgetc.h (100%) rename {libc => lib/libc}/musl/src/internal/stdio_impl.h (100%) rename {libc => lib/libc}/musl/src/internal/syscall.c (100%) rename {libc => lib/libc}/musl/src/internal/syscall.h (100%) rename {libc => lib/libc}/musl/src/internal/syscall_ret.c (100%) rename {libc => lib/libc}/musl/src/internal/vdso.c (100%) rename {libc => lib/libc}/musl/src/internal/version.c (100%) rename {libc => lib/libc}/musl/src/internal/version.h (100%) rename {libc => lib/libc}/musl/src/internal/x32/syscall.s (100%) rename {libc => lib/libc}/musl/src/internal/x86_64/syscall.s (100%) rename {libc => lib/libc}/musl/src/ipc/ftok.c (100%) rename {libc => lib/libc}/musl/src/ipc/ipc.h (100%) rename {libc => lib/libc}/musl/src/ipc/msgctl.c (100%) rename {libc => lib/libc}/musl/src/ipc/msgget.c (100%) rename {libc => lib/libc}/musl/src/ipc/msgrcv.c (100%) rename {libc => lib/libc}/musl/src/ipc/msgsnd.c (100%) rename {libc => lib/libc}/musl/src/ipc/semctl.c (100%) rename {libc => lib/libc}/musl/src/ipc/semget.c (100%) rename {libc => lib/libc}/musl/src/ipc/semop.c (100%) rename {libc => lib/libc}/musl/src/ipc/semtimedop.c (100%) rename {libc => lib/libc}/musl/src/ipc/shmat.c (100%) rename {libc => lib/libc}/musl/src/ipc/shmctl.c (100%) rename {libc => lib/libc}/musl/src/ipc/shmdt.c (100%) rename {libc => lib/libc}/musl/src/ipc/shmget.c (100%) rename {libc => lib/libc}/musl/src/ldso/__dlsym.c (100%) rename {libc => lib/libc}/musl/src/ldso/aarch64/dlsym.s (100%) rename {libc => lib/libc}/musl/src/ldso/aarch64/tlsdesc.s (100%) rename {libc => lib/libc}/musl/src/ldso/arm/dlsym.s (100%) rename {libc => lib/libc}/musl/src/ldso/arm/find_exidx.c (100%) rename {libc => lib/libc}/musl/src/ldso/arm/tlsdesc.S (100%) rename {libc => lib/libc}/musl/src/ldso/dl_iterate_phdr.c (100%) rename {libc => lib/libc}/musl/src/ldso/dladdr.c (100%) rename {libc => lib/libc}/musl/src/ldso/dlclose.c (100%) rename {libc => lib/libc}/musl/src/ldso/dlerror.c (100%) rename {libc => lib/libc}/musl/src/ldso/dlinfo.c (100%) rename {libc => lib/libc}/musl/src/ldso/dlopen.c (100%) rename {libc => lib/libc}/musl/src/ldso/dlsym.c (100%) rename {libc => lib/libc}/musl/src/ldso/i386/dlsym.s (100%) rename {libc => lib/libc}/musl/src/ldso/i386/tlsdesc.s (100%) rename {libc => lib/libc}/musl/src/ldso/m68k/dlsym.s (100%) rename {libc => lib/libc}/musl/src/ldso/microblaze/dlsym.s (100%) rename {libc => lib/libc}/musl/src/ldso/mips/dlsym.s (100%) rename {libc => lib/libc}/musl/src/ldso/mips64/dlsym.s (100%) rename {libc => lib/libc}/musl/src/ldso/mipsn32/dlsym.s (100%) rename {libc => lib/libc}/musl/src/ldso/or1k/dlsym.s (100%) rename {libc => lib/libc}/musl/src/ldso/powerpc/dlsym.s (100%) rename {libc => lib/libc}/musl/src/ldso/powerpc64/dlsym.s (100%) rename {libc => lib/libc}/musl/src/ldso/s390x/dlsym.s (100%) rename {libc => lib/libc}/musl/src/ldso/sh/dlsym.s (100%) rename {libc => lib/libc}/musl/src/ldso/tlsdesc.c (100%) rename {libc => lib/libc}/musl/src/ldso/x32/dlsym.s (100%) rename {libc => lib/libc}/musl/src/ldso/x86_64/dlsym.s (100%) rename {libc => lib/libc}/musl/src/ldso/x86_64/tlsdesc.s (100%) rename {libc => lib/libc}/musl/src/legacy/cuserid.c (100%) rename {libc => lib/libc}/musl/src/legacy/daemon.c (100%) rename {libc => lib/libc}/musl/src/legacy/err.c (100%) rename {libc => lib/libc}/musl/src/legacy/euidaccess.c (100%) rename {libc => lib/libc}/musl/src/legacy/ftw.c (100%) rename {libc => lib/libc}/musl/src/legacy/futimes.c (100%) rename {libc => lib/libc}/musl/src/legacy/getdtablesize.c (100%) rename {libc => lib/libc}/musl/src/legacy/getloadavg.c (100%) rename {libc => lib/libc}/musl/src/legacy/getpagesize.c (100%) rename {libc => lib/libc}/musl/src/legacy/getpass.c (100%) rename {libc => lib/libc}/musl/src/legacy/getusershell.c (100%) rename {libc => lib/libc}/musl/src/legacy/isastream.c (100%) rename {libc => lib/libc}/musl/src/legacy/lutimes.c (100%) rename {libc => lib/libc}/musl/src/legacy/ulimit.c (100%) rename {libc => lib/libc}/musl/src/legacy/utmpx.c (100%) rename {libc => lib/libc}/musl/src/legacy/valloc.c (100%) rename {libc => lib/libc}/musl/src/linux/adjtime.c (100%) rename {libc => lib/libc}/musl/src/linux/adjtimex.c (100%) rename {libc => lib/libc}/musl/src/linux/arch_prctl.c (100%) rename {libc => lib/libc}/musl/src/linux/brk.c (100%) rename {libc => lib/libc}/musl/src/linux/cache.c (100%) rename {libc => lib/libc}/musl/src/linux/cap.c (100%) rename {libc => lib/libc}/musl/src/linux/chroot.c (100%) rename {libc => lib/libc}/musl/src/linux/clock_adjtime.c (100%) rename {libc => lib/libc}/musl/src/linux/clone.c (100%) rename {libc => lib/libc}/musl/src/linux/epoll.c (100%) rename {libc => lib/libc}/musl/src/linux/eventfd.c (100%) rename {libc => lib/libc}/musl/src/linux/fallocate.c (100%) rename {libc => lib/libc}/musl/src/linux/fanotify.c (100%) rename {libc => lib/libc}/musl/src/linux/flock.c (100%) rename {libc => lib/libc}/musl/src/linux/getdents.c (100%) rename {libc => lib/libc}/musl/src/linux/getrandom.c (100%) rename {libc => lib/libc}/musl/src/linux/inotify.c (100%) rename {libc => lib/libc}/musl/src/linux/ioperm.c (100%) rename {libc => lib/libc}/musl/src/linux/iopl.c (100%) rename {libc => lib/libc}/musl/src/linux/klogctl.c (100%) rename {libc => lib/libc}/musl/src/linux/memfd_create.c (100%) rename {libc => lib/libc}/musl/src/linux/mlock2.c (100%) rename {libc => lib/libc}/musl/src/linux/module.c (100%) rename {libc => lib/libc}/musl/src/linux/mount.c (100%) rename {libc => lib/libc}/musl/src/linux/name_to_handle_at.c (100%) rename {libc => lib/libc}/musl/src/linux/open_by_handle_at.c (100%) rename {libc => lib/libc}/musl/src/linux/personality.c (100%) rename {libc => lib/libc}/musl/src/linux/pivot_root.c (100%) rename {libc => lib/libc}/musl/src/linux/ppoll.c (100%) rename {libc => lib/libc}/musl/src/linux/prctl.c (100%) rename {libc => lib/libc}/musl/src/linux/prlimit.c (100%) rename {libc => lib/libc}/musl/src/linux/process_vm.c (100%) rename {libc => lib/libc}/musl/src/linux/ptrace.c (100%) rename {libc => lib/libc}/musl/src/linux/quotactl.c (100%) rename {libc => lib/libc}/musl/src/linux/readahead.c (100%) rename {libc => lib/libc}/musl/src/linux/reboot.c (100%) rename {libc => lib/libc}/musl/src/linux/remap_file_pages.c (100%) rename {libc => lib/libc}/musl/src/linux/sbrk.c (100%) rename {libc => lib/libc}/musl/src/linux/sendfile.c (100%) rename {libc => lib/libc}/musl/src/linux/setfsgid.c (100%) rename {libc => lib/libc}/musl/src/linux/setfsuid.c (100%) rename {libc => lib/libc}/musl/src/linux/setgroups.c (100%) rename {libc => lib/libc}/musl/src/linux/sethostname.c (100%) rename {libc => lib/libc}/musl/src/linux/setns.c (100%) rename {libc => lib/libc}/musl/src/linux/settimeofday.c (100%) rename {libc => lib/libc}/musl/src/linux/signalfd.c (100%) rename {libc => lib/libc}/musl/src/linux/splice.c (100%) rename {libc => lib/libc}/musl/src/linux/stime.c (100%) rename {libc => lib/libc}/musl/src/linux/swap.c (100%) rename {libc => lib/libc}/musl/src/linux/sync_file_range.c (100%) rename {libc => lib/libc}/musl/src/linux/syncfs.c (100%) rename {libc => lib/libc}/musl/src/linux/sysinfo.c (100%) rename {libc => lib/libc}/musl/src/linux/tee.c (100%) rename {libc => lib/libc}/musl/src/linux/timerfd.c (100%) rename {libc => lib/libc}/musl/src/linux/unshare.c (100%) rename {libc => lib/libc}/musl/src/linux/utimes.c (100%) rename {libc => lib/libc}/musl/src/linux/vhangup.c (100%) rename {libc => lib/libc}/musl/src/linux/vmsplice.c (100%) rename {libc => lib/libc}/musl/src/linux/wait3.c (100%) rename {libc => lib/libc}/musl/src/linux/wait4.c (100%) rename {libc => lib/libc}/musl/src/linux/x32/sysinfo.c (100%) rename {libc => lib/libc}/musl/src/linux/xattr.c (100%) rename {libc => lib/libc}/musl/src/locale/__lctrans.c (100%) rename {libc => lib/libc}/musl/src/locale/__mo_lookup.c (100%) rename {libc => lib/libc}/musl/src/locale/big5.h (100%) rename {libc => lib/libc}/musl/src/locale/bind_textdomain_codeset.c (100%) rename {libc => lib/libc}/musl/src/locale/c_locale.c (100%) rename {libc => lib/libc}/musl/src/locale/catclose.c (100%) rename {libc => lib/libc}/musl/src/locale/catgets.c (100%) rename {libc => lib/libc}/musl/src/locale/catopen.c (100%) rename {libc => lib/libc}/musl/src/locale/codepages.h (100%) rename {libc => lib/libc}/musl/src/locale/dcngettext.c (100%) rename {libc => lib/libc}/musl/src/locale/duplocale.c (100%) rename {libc => lib/libc}/musl/src/locale/freelocale.c (100%) rename {libc => lib/libc}/musl/src/locale/gb18030.h (100%) rename {libc => lib/libc}/musl/src/locale/hkscs.h (100%) rename {libc => lib/libc}/musl/src/locale/iconv.c (100%) rename {libc => lib/libc}/musl/src/locale/iconv_close.c (100%) rename {libc => lib/libc}/musl/src/locale/jis0208.h (100%) rename {libc => lib/libc}/musl/src/locale/ksc.h (100%) rename {libc => lib/libc}/musl/src/locale/langinfo.c (100%) rename {libc => lib/libc}/musl/src/locale/legacychars.h (100%) rename {libc => lib/libc}/musl/src/locale/locale_map.c (100%) rename {libc => lib/libc}/musl/src/locale/localeconv.c (100%) rename {libc => lib/libc}/musl/src/locale/newlocale.c (100%) rename {libc => lib/libc}/musl/src/locale/pleval.c (100%) rename {libc => lib/libc}/musl/src/locale/pleval.h (100%) rename {libc => lib/libc}/musl/src/locale/revjis.h (100%) rename {libc => lib/libc}/musl/src/locale/setlocale.c (100%) rename {libc => lib/libc}/musl/src/locale/strcoll.c (100%) rename {libc => lib/libc}/musl/src/locale/strfmon.c (100%) rename {libc => lib/libc}/musl/src/locale/strxfrm.c (100%) rename {libc => lib/libc}/musl/src/locale/textdomain.c (100%) rename {libc => lib/libc}/musl/src/locale/uselocale.c (100%) rename {libc => lib/libc}/musl/src/locale/wcscoll.c (100%) rename {libc => lib/libc}/musl/src/locale/wcsxfrm.c (100%) rename {libc => lib/libc}/musl/src/malloc/DESIGN (100%) rename {libc => lib/libc}/musl/src/malloc/aligned_alloc.c (100%) rename {libc => lib/libc}/musl/src/malloc/expand_heap.c (100%) rename {libc => lib/libc}/musl/src/malloc/lite_malloc.c (100%) rename {libc => lib/libc}/musl/src/malloc/malloc.c (100%) rename {libc => lib/libc}/musl/src/malloc/malloc_usable_size.c (100%) rename {libc => lib/libc}/musl/src/malloc/memalign.c (100%) rename {libc => lib/libc}/musl/src/malloc/posix_memalign.c (100%) rename {libc => lib/libc}/musl/src/math/__cos.c (100%) rename {libc => lib/libc}/musl/src/math/__cosdf.c (100%) rename {libc => lib/libc}/musl/src/math/__cosl.c (100%) rename {libc => lib/libc}/musl/src/math/__expo2.c (100%) rename {libc => lib/libc}/musl/src/math/__expo2f.c (100%) rename {libc => lib/libc}/musl/src/math/__fpclassify.c (100%) rename {libc => lib/libc}/musl/src/math/__fpclassifyf.c (100%) rename {libc => lib/libc}/musl/src/math/__fpclassifyl.c (100%) rename {libc => lib/libc}/musl/src/math/__invtrigl.c (100%) rename {libc => lib/libc}/musl/src/math/__invtrigl.h (100%) rename {libc => lib/libc}/musl/src/math/__polevll.c (100%) rename {libc => lib/libc}/musl/src/math/__rem_pio2.c (100%) rename {libc => lib/libc}/musl/src/math/__rem_pio2_large.c (100%) rename {libc => lib/libc}/musl/src/math/__rem_pio2f.c (100%) rename {libc => lib/libc}/musl/src/math/__rem_pio2l.c (100%) rename {libc => lib/libc}/musl/src/math/__signbit.c (100%) rename {libc => lib/libc}/musl/src/math/__signbitf.c (100%) rename {libc => lib/libc}/musl/src/math/__signbitl.c (100%) rename {libc => lib/libc}/musl/src/math/__sin.c (100%) rename {libc => lib/libc}/musl/src/math/__sindf.c (100%) rename {libc => lib/libc}/musl/src/math/__sinl.c (100%) rename {libc => lib/libc}/musl/src/math/__tan.c (100%) rename {libc => lib/libc}/musl/src/math/__tandf.c (100%) rename {libc => lib/libc}/musl/src/math/__tanl.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/ceil.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/ceilf.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/fabs.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/fabsf.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/floor.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/floorf.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/fma.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/fmaf.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/fmax.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/fmaxf.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/fmin.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/fminf.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/llrint.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/llrintf.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/llround.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/llroundf.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/lrint.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/lrintf.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/lround.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/lroundf.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/nearbyint.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/nearbyintf.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/rint.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/rintf.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/round.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/roundf.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/sqrt.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/sqrtf.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/trunc.c (100%) rename {libc => lib/libc}/musl/src/math/aarch64/truncf.c (100%) rename {libc => lib/libc}/musl/src/math/acos.c (100%) rename {libc => lib/libc}/musl/src/math/acosf.c (100%) rename {libc => lib/libc}/musl/src/math/acosh.c (100%) rename {libc => lib/libc}/musl/src/math/acoshf.c (100%) rename {libc => lib/libc}/musl/src/math/acoshl.c (100%) rename {libc => lib/libc}/musl/src/math/acosl.c (100%) rename {libc => lib/libc}/musl/src/math/arm/fabs.c (100%) rename {libc => lib/libc}/musl/src/math/arm/fabsf.c (100%) rename {libc => lib/libc}/musl/src/math/arm/fma.c (100%) rename {libc => lib/libc}/musl/src/math/arm/fmaf.c (100%) rename {libc => lib/libc}/musl/src/math/arm/sqrt.c (100%) rename {libc => lib/libc}/musl/src/math/arm/sqrtf.c (100%) rename {libc => lib/libc}/musl/src/math/asin.c (100%) rename {libc => lib/libc}/musl/src/math/asinf.c (100%) rename {libc => lib/libc}/musl/src/math/asinh.c (100%) rename {libc => lib/libc}/musl/src/math/asinhf.c (100%) rename {libc => lib/libc}/musl/src/math/asinhl.c (100%) rename {libc => lib/libc}/musl/src/math/asinl.c (100%) rename {libc => lib/libc}/musl/src/math/atan.c (100%) rename {libc => lib/libc}/musl/src/math/atan2.c (100%) rename {libc => lib/libc}/musl/src/math/atan2f.c (100%) rename {libc => lib/libc}/musl/src/math/atan2l.c (100%) rename {libc => lib/libc}/musl/src/math/atanf.c (100%) rename {libc => lib/libc}/musl/src/math/atanh.c (100%) rename {libc => lib/libc}/musl/src/math/atanhf.c (100%) rename {libc => lib/libc}/musl/src/math/atanhl.c (100%) rename {libc => lib/libc}/musl/src/math/atanl.c (100%) rename {libc => lib/libc}/musl/src/math/cbrt.c (100%) rename {libc => lib/libc}/musl/src/math/cbrtf.c (100%) rename {libc => lib/libc}/musl/src/math/cbrtl.c (100%) rename {libc => lib/libc}/musl/src/math/ceil.c (100%) rename {libc => lib/libc}/musl/src/math/ceilf.c (100%) rename {libc => lib/libc}/musl/src/math/ceill.c (100%) rename {libc => lib/libc}/musl/src/math/copysign.c (100%) rename {libc => lib/libc}/musl/src/math/copysignf.c (100%) rename {libc => lib/libc}/musl/src/math/copysignl.c (100%) rename {libc => lib/libc}/musl/src/math/cos.c (100%) rename {libc => lib/libc}/musl/src/math/cosf.c (100%) rename {libc => lib/libc}/musl/src/math/cosh.c (100%) rename {libc => lib/libc}/musl/src/math/coshf.c (100%) rename {libc => lib/libc}/musl/src/math/coshl.c (100%) rename {libc => lib/libc}/musl/src/math/cosl.c (100%) rename {libc => lib/libc}/musl/src/math/erf.c (100%) rename {libc => lib/libc}/musl/src/math/erff.c (100%) rename {libc => lib/libc}/musl/src/math/erfl.c (100%) rename {libc => lib/libc}/musl/src/math/exp.c (100%) rename {libc => lib/libc}/musl/src/math/exp10.c (100%) rename {libc => lib/libc}/musl/src/math/exp10f.c (100%) rename {libc => lib/libc}/musl/src/math/exp10l.c (100%) rename {libc => lib/libc}/musl/src/math/exp2.c (100%) rename {libc => lib/libc}/musl/src/math/exp2f.c (100%) rename {libc => lib/libc}/musl/src/math/exp2l.c (100%) rename {libc => lib/libc}/musl/src/math/expf.c (100%) rename {libc => lib/libc}/musl/src/math/expl.c (100%) rename {libc => lib/libc}/musl/src/math/expm1.c (100%) rename {libc => lib/libc}/musl/src/math/expm1f.c (100%) rename {libc => lib/libc}/musl/src/math/expm1l.c (100%) rename {libc => lib/libc}/musl/src/math/fabs.c (100%) rename {libc => lib/libc}/musl/src/math/fabsf.c (100%) rename {libc => lib/libc}/musl/src/math/fabsl.c (100%) rename {libc => lib/libc}/musl/src/math/fdim.c (100%) rename {libc => lib/libc}/musl/src/math/fdimf.c (100%) rename {libc => lib/libc}/musl/src/math/fdiml.c (100%) rename {libc => lib/libc}/musl/src/math/finite.c (100%) rename {libc => lib/libc}/musl/src/math/finitef.c (100%) rename {libc => lib/libc}/musl/src/math/floor.c (100%) rename {libc => lib/libc}/musl/src/math/floorf.c (100%) rename {libc => lib/libc}/musl/src/math/floorl.c (100%) rename {libc => lib/libc}/musl/src/math/fma.c (100%) rename {libc => lib/libc}/musl/src/math/fmaf.c (100%) rename {libc => lib/libc}/musl/src/math/fmal.c (100%) rename {libc => lib/libc}/musl/src/math/fmax.c (100%) rename {libc => lib/libc}/musl/src/math/fmaxf.c (100%) rename {libc => lib/libc}/musl/src/math/fmaxl.c (100%) rename {libc => lib/libc}/musl/src/math/fmin.c (100%) rename {libc => lib/libc}/musl/src/math/fminf.c (100%) rename {libc => lib/libc}/musl/src/math/fminl.c (100%) rename {libc => lib/libc}/musl/src/math/fmod.c (100%) rename {libc => lib/libc}/musl/src/math/fmodf.c (100%) rename {libc => lib/libc}/musl/src/math/fmodl.c (100%) rename {libc => lib/libc}/musl/src/math/frexp.c (100%) rename {libc => lib/libc}/musl/src/math/frexpf.c (100%) rename {libc => lib/libc}/musl/src/math/frexpl.c (100%) rename {libc => lib/libc}/musl/src/math/hypot.c (100%) rename {libc => lib/libc}/musl/src/math/hypotf.c (100%) rename {libc => lib/libc}/musl/src/math/hypotl.c (100%) rename {libc => lib/libc}/musl/src/math/i386/__invtrigl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/acos.s (100%) rename {libc => lib/libc}/musl/src/math/i386/acosf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/acosl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/asin.s (100%) rename {libc => lib/libc}/musl/src/math/i386/asinf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/asinl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/atan.s (100%) rename {libc => lib/libc}/musl/src/math/i386/atan2.s (100%) rename {libc => lib/libc}/musl/src/math/i386/atan2f.s (100%) rename {libc => lib/libc}/musl/src/math/i386/atan2l.s (100%) rename {libc => lib/libc}/musl/src/math/i386/atanf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/atanl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/ceil.s (100%) rename {libc => lib/libc}/musl/src/math/i386/ceilf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/ceill.s (100%) rename {libc => lib/libc}/musl/src/math/i386/exp.s (100%) rename {libc => lib/libc}/musl/src/math/i386/exp2.s (100%) rename {libc => lib/libc}/musl/src/math/i386/exp2f.s (100%) rename {libc => lib/libc}/musl/src/math/i386/exp2l.s (100%) rename {libc => lib/libc}/musl/src/math/i386/expf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/expl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/expm1.s (100%) rename {libc => lib/libc}/musl/src/math/i386/expm1f.s (100%) rename {libc => lib/libc}/musl/src/math/i386/expm1l.s (100%) rename {libc => lib/libc}/musl/src/math/i386/fabs.s (100%) rename {libc => lib/libc}/musl/src/math/i386/fabsf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/fabsl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/floor.s (100%) rename {libc => lib/libc}/musl/src/math/i386/floorf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/floorl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/fmod.s (100%) rename {libc => lib/libc}/musl/src/math/i386/fmodf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/fmodl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/hypot.s (100%) rename {libc => lib/libc}/musl/src/math/i386/hypotf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/ldexp.s (100%) rename {libc => lib/libc}/musl/src/math/i386/ldexpf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/ldexpl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/llrint.s (100%) rename {libc => lib/libc}/musl/src/math/i386/llrintf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/llrintl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/log.s (100%) rename {libc => lib/libc}/musl/src/math/i386/log10.s (100%) rename {libc => lib/libc}/musl/src/math/i386/log10f.s (100%) rename {libc => lib/libc}/musl/src/math/i386/log10l.s (100%) rename {libc => lib/libc}/musl/src/math/i386/log1p.s (100%) rename {libc => lib/libc}/musl/src/math/i386/log1pf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/log1pl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/log2.s (100%) rename {libc => lib/libc}/musl/src/math/i386/log2f.s (100%) rename {libc => lib/libc}/musl/src/math/i386/log2l.s (100%) rename {libc => lib/libc}/musl/src/math/i386/logf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/logl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/lrint.s (100%) rename {libc => lib/libc}/musl/src/math/i386/lrintf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/lrintl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/remainder.s (100%) rename {libc => lib/libc}/musl/src/math/i386/remainderf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/remainderl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/remquo.s (100%) rename {libc => lib/libc}/musl/src/math/i386/remquof.s (100%) rename {libc => lib/libc}/musl/src/math/i386/remquol.s (100%) rename {libc => lib/libc}/musl/src/math/i386/rint.s (100%) rename {libc => lib/libc}/musl/src/math/i386/rintf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/rintl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/scalbln.s (100%) rename {libc => lib/libc}/musl/src/math/i386/scalblnf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/scalblnl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/scalbn.s (100%) rename {libc => lib/libc}/musl/src/math/i386/scalbnf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/scalbnl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/sqrt.s (100%) rename {libc => lib/libc}/musl/src/math/i386/sqrtf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/sqrtl.s (100%) rename {libc => lib/libc}/musl/src/math/i386/trunc.s (100%) rename {libc => lib/libc}/musl/src/math/i386/truncf.s (100%) rename {libc => lib/libc}/musl/src/math/i386/truncl.s (100%) rename {libc => lib/libc}/musl/src/math/ilogb.c (100%) rename {libc => lib/libc}/musl/src/math/ilogbf.c (100%) rename {libc => lib/libc}/musl/src/math/ilogbl.c (100%) rename {libc => lib/libc}/musl/src/math/j0.c (100%) rename {libc => lib/libc}/musl/src/math/j0f.c (100%) rename {libc => lib/libc}/musl/src/math/j1.c (100%) rename {libc => lib/libc}/musl/src/math/j1f.c (100%) rename {libc => lib/libc}/musl/src/math/jn.c (100%) rename {libc => lib/libc}/musl/src/math/jnf.c (100%) rename {libc => lib/libc}/musl/src/math/ldexp.c (100%) rename {libc => lib/libc}/musl/src/math/ldexpf.c (100%) rename {libc => lib/libc}/musl/src/math/ldexpl.c (100%) rename {libc => lib/libc}/musl/src/math/lgamma.c (100%) rename {libc => lib/libc}/musl/src/math/lgamma_r.c (100%) rename {libc => lib/libc}/musl/src/math/lgammaf.c (100%) rename {libc => lib/libc}/musl/src/math/lgammaf_r.c (100%) rename {libc => lib/libc}/musl/src/math/lgammal.c (100%) rename {libc => lib/libc}/musl/src/math/llrint.c (100%) rename {libc => lib/libc}/musl/src/math/llrintf.c (100%) rename {libc => lib/libc}/musl/src/math/llrintl.c (100%) rename {libc => lib/libc}/musl/src/math/llround.c (100%) rename {libc => lib/libc}/musl/src/math/llroundf.c (100%) rename {libc => lib/libc}/musl/src/math/llroundl.c (100%) rename {libc => lib/libc}/musl/src/math/log.c (100%) rename {libc => lib/libc}/musl/src/math/log10.c (100%) rename {libc => lib/libc}/musl/src/math/log10f.c (100%) rename {libc => lib/libc}/musl/src/math/log10l.c (100%) rename {libc => lib/libc}/musl/src/math/log1p.c (100%) rename {libc => lib/libc}/musl/src/math/log1pf.c (100%) rename {libc => lib/libc}/musl/src/math/log1pl.c (100%) rename {libc => lib/libc}/musl/src/math/log2.c (100%) rename {libc => lib/libc}/musl/src/math/log2f.c (100%) rename {libc => lib/libc}/musl/src/math/log2l.c (100%) rename {libc => lib/libc}/musl/src/math/logb.c (100%) rename {libc => lib/libc}/musl/src/math/logbf.c (100%) rename {libc => lib/libc}/musl/src/math/logbl.c (100%) rename {libc => lib/libc}/musl/src/math/logf.c (100%) rename {libc => lib/libc}/musl/src/math/logl.c (100%) rename {libc => lib/libc}/musl/src/math/lrint.c (100%) rename {libc => lib/libc}/musl/src/math/lrintf.c (100%) rename {libc => lib/libc}/musl/src/math/lrintl.c (100%) rename {libc => lib/libc}/musl/src/math/lround.c (100%) rename {libc => lib/libc}/musl/src/math/lroundf.c (100%) rename {libc => lib/libc}/musl/src/math/lroundl.c (100%) rename {libc => lib/libc}/musl/src/math/modf.c (100%) rename {libc => lib/libc}/musl/src/math/modff.c (100%) rename {libc => lib/libc}/musl/src/math/modfl.c (100%) rename {libc => lib/libc}/musl/src/math/nan.c (100%) rename {libc => lib/libc}/musl/src/math/nanf.c (100%) rename {libc => lib/libc}/musl/src/math/nanl.c (100%) rename {libc => lib/libc}/musl/src/math/nearbyint.c (100%) rename {libc => lib/libc}/musl/src/math/nearbyintf.c (100%) rename {libc => lib/libc}/musl/src/math/nearbyintl.c (100%) rename {libc => lib/libc}/musl/src/math/nextafter.c (100%) rename {libc => lib/libc}/musl/src/math/nextafterf.c (100%) rename {libc => lib/libc}/musl/src/math/nextafterl.c (100%) rename {libc => lib/libc}/musl/src/math/nexttoward.c (100%) rename {libc => lib/libc}/musl/src/math/nexttowardf.c (100%) rename {libc => lib/libc}/musl/src/math/nexttowardl.c (100%) rename {libc => lib/libc}/musl/src/math/pow.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc/fabs.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc/fabsf.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc/fma.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc/fmaf.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc/sqrt.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc/sqrtf.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/ceil.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/ceilf.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/fabs.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/fabsf.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/floor.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/floorf.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/fma.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/fmaf.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/fmax.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/fmaxf.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/fmin.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/fminf.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/lrint.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/lrintf.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/lround.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/lroundf.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/round.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/roundf.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/sqrt.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/sqrtf.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/trunc.c (100%) rename {libc => lib/libc}/musl/src/math/powerpc64/truncf.c (100%) rename {libc => lib/libc}/musl/src/math/powf.c (100%) rename {libc => lib/libc}/musl/src/math/powl.c (100%) rename {libc => lib/libc}/musl/src/math/remainder.c (100%) rename {libc => lib/libc}/musl/src/math/remainderf.c (100%) rename {libc => lib/libc}/musl/src/math/remainderl.c (100%) rename {libc => lib/libc}/musl/src/math/remquo.c (100%) rename {libc => lib/libc}/musl/src/math/remquof.c (100%) rename {libc => lib/libc}/musl/src/math/remquol.c (100%) rename {libc => lib/libc}/musl/src/math/rint.c (100%) rename {libc => lib/libc}/musl/src/math/rintf.c (100%) rename {libc => lib/libc}/musl/src/math/rintl.c (100%) rename {libc => lib/libc}/musl/src/math/round.c (100%) rename {libc => lib/libc}/musl/src/math/roundf.c (100%) rename {libc => lib/libc}/musl/src/math/roundl.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/ceil.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/ceilf.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/ceill.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/fabs.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/fabsf.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/fabsl.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/floor.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/floorf.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/floorl.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/fma.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/fmaf.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/nearbyint.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/nearbyintf.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/nearbyintl.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/rint.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/rintf.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/rintl.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/round.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/roundf.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/roundl.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/sqrt.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/sqrtf.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/sqrtl.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/trunc.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/truncf.c (100%) rename {libc => lib/libc}/musl/src/math/s390x/truncl.c (100%) rename {libc => lib/libc}/musl/src/math/scalb.c (100%) rename {libc => lib/libc}/musl/src/math/scalbf.c (100%) rename {libc => lib/libc}/musl/src/math/scalbln.c (100%) rename {libc => lib/libc}/musl/src/math/scalblnf.c (100%) rename {libc => lib/libc}/musl/src/math/scalblnl.c (100%) rename {libc => lib/libc}/musl/src/math/scalbn.c (100%) rename {libc => lib/libc}/musl/src/math/scalbnf.c (100%) rename {libc => lib/libc}/musl/src/math/scalbnl.c (100%) rename {libc => lib/libc}/musl/src/math/signgam.c (100%) rename {libc => lib/libc}/musl/src/math/significand.c (100%) rename {libc => lib/libc}/musl/src/math/significandf.c (100%) rename {libc => lib/libc}/musl/src/math/sin.c (100%) rename {libc => lib/libc}/musl/src/math/sincos.c (100%) rename {libc => lib/libc}/musl/src/math/sincosf.c (100%) rename {libc => lib/libc}/musl/src/math/sincosl.c (100%) rename {libc => lib/libc}/musl/src/math/sinf.c (100%) rename {libc => lib/libc}/musl/src/math/sinh.c (100%) rename {libc => lib/libc}/musl/src/math/sinhf.c (100%) rename {libc => lib/libc}/musl/src/math/sinhl.c (100%) rename {libc => lib/libc}/musl/src/math/sinl.c (100%) rename {libc => lib/libc}/musl/src/math/sqrt.c (100%) rename {libc => lib/libc}/musl/src/math/sqrtf.c (100%) rename {libc => lib/libc}/musl/src/math/sqrtl.c (100%) rename {libc => lib/libc}/musl/src/math/tan.c (100%) rename {libc => lib/libc}/musl/src/math/tanf.c (100%) rename {libc => lib/libc}/musl/src/math/tanh.c (100%) rename {libc => lib/libc}/musl/src/math/tanhf.c (100%) rename {libc => lib/libc}/musl/src/math/tanhl.c (100%) rename {libc => lib/libc}/musl/src/math/tanl.c (100%) rename {libc => lib/libc}/musl/src/math/tgamma.c (100%) rename {libc => lib/libc}/musl/src/math/tgammaf.c (100%) rename {libc => lib/libc}/musl/src/math/tgammal.c (100%) rename {libc => lib/libc}/musl/src/math/trunc.c (100%) rename {libc => lib/libc}/musl/src/math/truncf.c (100%) rename {libc => lib/libc}/musl/src/math/truncl.c (100%) rename {libc => lib/libc}/musl/src/math/x32/__invtrigl.s (100%) rename {libc => lib/libc}/musl/src/math/x32/acosl.s (100%) rename {libc => lib/libc}/musl/src/math/x32/asinl.s (100%) rename {libc => lib/libc}/musl/src/math/x32/atan2l.s (100%) rename {libc => lib/libc}/musl/src/math/x32/atanl.s (100%) rename {libc => lib/libc}/musl/src/math/x32/ceill.s (100%) rename {libc => lib/libc}/musl/src/math/x32/exp2l.s (100%) rename {libc => lib/libc}/musl/src/math/x32/expl.s (100%) rename {libc => lib/libc}/musl/src/math/x32/expm1l.s (100%) rename {libc => lib/libc}/musl/src/math/x32/fabs.s (100%) rename {libc => lib/libc}/musl/src/math/x32/fabsf.s (100%) rename {libc => lib/libc}/musl/src/math/x32/fabsl.s (100%) rename {libc => lib/libc}/musl/src/math/x32/floorl.s (100%) rename {libc => lib/libc}/musl/src/math/x32/fma.c (100%) rename {libc => lib/libc}/musl/src/math/x32/fmaf.c (100%) rename {libc => lib/libc}/musl/src/math/x32/fmodl.s (100%) rename {libc => lib/libc}/musl/src/math/x32/llrint.s (100%) rename {libc => lib/libc}/musl/src/math/x32/llrintf.s (100%) rename {libc => lib/libc}/musl/src/math/x32/llrintl.s (100%) rename {libc => lib/libc}/musl/src/math/x32/log10l.s (100%) rename {libc => lib/libc}/musl/src/math/x32/log1pl.s (100%) rename {libc => lib/libc}/musl/src/math/x32/log2l.s (100%) rename {libc => lib/libc}/musl/src/math/x32/logl.s (100%) rename {libc => lib/libc}/musl/src/math/x32/lrint.s (100%) rename {libc => lib/libc}/musl/src/math/x32/lrintf.s (100%) rename {libc => lib/libc}/musl/src/math/x32/lrintl.s (100%) rename {libc => lib/libc}/musl/src/math/x32/remainderl.s (100%) rename {libc => lib/libc}/musl/src/math/x32/rintl.s (100%) rename {libc => lib/libc}/musl/src/math/x32/sqrt.s (100%) rename {libc => lib/libc}/musl/src/math/x32/sqrtf.s (100%) rename {libc => lib/libc}/musl/src/math/x32/sqrtl.s (100%) rename {libc => lib/libc}/musl/src/math/x32/truncl.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/__invtrigl.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/acosl.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/asinl.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/atan2l.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/atanl.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/ceill.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/exp2l.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/expl.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/expm1l.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/fabs.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/fabsf.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/fabsl.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/floorl.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/fma.c (100%) rename {libc => lib/libc}/musl/src/math/x86_64/fmaf.c (100%) rename {libc => lib/libc}/musl/src/math/x86_64/fmodl.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/llrint.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/llrintf.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/llrintl.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/log10l.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/log1pl.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/log2l.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/logl.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/lrint.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/lrintf.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/lrintl.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/remainderl.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/rintl.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/sqrt.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/sqrtf.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/sqrtl.s (100%) rename {libc => lib/libc}/musl/src/math/x86_64/truncl.s (100%) rename {libc => lib/libc}/musl/src/misc/a64l.c (100%) rename {libc => lib/libc}/musl/src/misc/basename.c (100%) rename {libc => lib/libc}/musl/src/misc/dirname.c (100%) rename {libc => lib/libc}/musl/src/misc/ffs.c (100%) rename {libc => lib/libc}/musl/src/misc/ffsl.c (100%) rename {libc => lib/libc}/musl/src/misc/ffsll.c (100%) rename {libc => lib/libc}/musl/src/misc/fmtmsg.c (100%) rename {libc => lib/libc}/musl/src/misc/forkpty.c (100%) rename {libc => lib/libc}/musl/src/misc/get_current_dir_name.c (100%) rename {libc => lib/libc}/musl/src/misc/getauxval.c (100%) rename {libc => lib/libc}/musl/src/misc/getdomainname.c (100%) rename {libc => lib/libc}/musl/src/misc/getentropy.c (100%) rename {libc => lib/libc}/musl/src/misc/gethostid.c (100%) rename {libc => lib/libc}/musl/src/misc/getopt.c (100%) rename {libc => lib/libc}/musl/src/misc/getopt_long.c (100%) rename {libc => lib/libc}/musl/src/misc/getpriority.c (100%) rename {libc => lib/libc}/musl/src/misc/getresgid.c (100%) rename {libc => lib/libc}/musl/src/misc/getresuid.c (100%) rename {libc => lib/libc}/musl/src/misc/getrlimit.c (100%) rename {libc => lib/libc}/musl/src/misc/getrusage.c (100%) rename {libc => lib/libc}/musl/src/misc/getsubopt.c (100%) rename {libc => lib/libc}/musl/src/misc/initgroups.c (100%) rename {libc => lib/libc}/musl/src/misc/ioctl.c (100%) rename {libc => lib/libc}/musl/src/misc/issetugid.c (100%) rename {libc => lib/libc}/musl/src/misc/lockf.c (100%) rename {libc => lib/libc}/musl/src/misc/login_tty.c (100%) rename {libc => lib/libc}/musl/src/misc/mntent.c (100%) rename {libc => lib/libc}/musl/src/misc/nftw.c (100%) rename {libc => lib/libc}/musl/src/misc/openpty.c (100%) rename {libc => lib/libc}/musl/src/misc/ptsname.c (100%) rename {libc => lib/libc}/musl/src/misc/pty.c (100%) rename {libc => lib/libc}/musl/src/misc/realpath.c (100%) rename {libc => lib/libc}/musl/src/misc/setdomainname.c (100%) rename {libc => lib/libc}/musl/src/misc/setpriority.c (100%) rename {libc => lib/libc}/musl/src/misc/setrlimit.c (100%) rename {libc => lib/libc}/musl/src/misc/syscall.c (100%) rename {libc => lib/libc}/musl/src/misc/syslog.c (100%) rename {libc => lib/libc}/musl/src/misc/uname.c (100%) rename {libc => lib/libc}/musl/src/misc/wordexp.c (100%) rename {libc => lib/libc}/musl/src/mman/madvise.c (100%) rename {libc => lib/libc}/musl/src/mman/mincore.c (100%) rename {libc => lib/libc}/musl/src/mman/mlock.c (100%) rename {libc => lib/libc}/musl/src/mman/mlockall.c (100%) rename {libc => lib/libc}/musl/src/mman/mmap.c (100%) rename {libc => lib/libc}/musl/src/mman/mprotect.c (100%) rename {libc => lib/libc}/musl/src/mman/mremap.c (100%) rename {libc => lib/libc}/musl/src/mman/msync.c (100%) rename {libc => lib/libc}/musl/src/mman/munlock.c (100%) rename {libc => lib/libc}/musl/src/mman/munlockall.c (100%) rename {libc => lib/libc}/musl/src/mman/munmap.c (100%) rename {libc => lib/libc}/musl/src/mman/posix_madvise.c (100%) rename {libc => lib/libc}/musl/src/mman/shm_open.c (100%) rename {libc => lib/libc}/musl/src/mq/mq_close.c (100%) rename {libc => lib/libc}/musl/src/mq/mq_getattr.c (100%) rename {libc => lib/libc}/musl/src/mq/mq_notify.c (100%) rename {libc => lib/libc}/musl/src/mq/mq_open.c (100%) rename {libc => lib/libc}/musl/src/mq/mq_receive.c (100%) rename {libc => lib/libc}/musl/src/mq/mq_send.c (100%) rename {libc => lib/libc}/musl/src/mq/mq_setattr.c (100%) rename {libc => lib/libc}/musl/src/mq/mq_timedreceive.c (100%) rename {libc => lib/libc}/musl/src/mq/mq_timedsend.c (100%) rename {libc => lib/libc}/musl/src/mq/mq_unlink.c (100%) rename {libc => lib/libc}/musl/src/multibyte/btowc.c (100%) rename {libc => lib/libc}/musl/src/multibyte/c16rtomb.c (100%) rename {libc => lib/libc}/musl/src/multibyte/c32rtomb.c (100%) rename {libc => lib/libc}/musl/src/multibyte/internal.c (100%) rename {libc => lib/libc}/musl/src/multibyte/internal.h (100%) rename {libc => lib/libc}/musl/src/multibyte/mblen.c (100%) rename {libc => lib/libc}/musl/src/multibyte/mbrlen.c (100%) rename {libc => lib/libc}/musl/src/multibyte/mbrtoc16.c (100%) rename {libc => lib/libc}/musl/src/multibyte/mbrtoc32.c (100%) rename {libc => lib/libc}/musl/src/multibyte/mbrtowc.c (100%) rename {libc => lib/libc}/musl/src/multibyte/mbsinit.c (100%) rename {libc => lib/libc}/musl/src/multibyte/mbsnrtowcs.c (100%) rename {libc => lib/libc}/musl/src/multibyte/mbsrtowcs.c (100%) rename {libc => lib/libc}/musl/src/multibyte/mbstowcs.c (100%) rename {libc => lib/libc}/musl/src/multibyte/mbtowc.c (100%) rename {libc => lib/libc}/musl/src/multibyte/wcrtomb.c (100%) rename {libc => lib/libc}/musl/src/multibyte/wcsnrtombs.c (100%) rename {libc => lib/libc}/musl/src/multibyte/wcsrtombs.c (100%) rename {libc => lib/libc}/musl/src/multibyte/wcstombs.c (100%) rename {libc => lib/libc}/musl/src/multibyte/wctob.c (100%) rename {libc => lib/libc}/musl/src/multibyte/wctomb.c (100%) rename {libc => lib/libc}/musl/src/network/accept.c (100%) rename {libc => lib/libc}/musl/src/network/accept4.c (100%) rename {libc => lib/libc}/musl/src/network/bind.c (100%) rename {libc => lib/libc}/musl/src/network/connect.c (100%) rename {libc => lib/libc}/musl/src/network/dn_comp.c (100%) rename {libc => lib/libc}/musl/src/network/dn_expand.c (100%) rename {libc => lib/libc}/musl/src/network/dn_skipname.c (100%) rename {libc => lib/libc}/musl/src/network/dns_parse.c (100%) rename {libc => lib/libc}/musl/src/network/ent.c (100%) rename {libc => lib/libc}/musl/src/network/ether.c (100%) rename {libc => lib/libc}/musl/src/network/freeaddrinfo.c (100%) rename {libc => lib/libc}/musl/src/network/gai_strerror.c (100%) rename {libc => lib/libc}/musl/src/network/getaddrinfo.c (100%) rename {libc => lib/libc}/musl/src/network/gethostbyaddr.c (100%) rename {libc => lib/libc}/musl/src/network/gethostbyaddr_r.c (100%) rename {libc => lib/libc}/musl/src/network/gethostbyname.c (100%) rename {libc => lib/libc}/musl/src/network/gethostbyname2.c (100%) rename {libc => lib/libc}/musl/src/network/gethostbyname2_r.c (100%) rename {libc => lib/libc}/musl/src/network/gethostbyname_r.c (100%) rename {libc => lib/libc}/musl/src/network/getifaddrs.c (100%) rename {libc => lib/libc}/musl/src/network/getnameinfo.c (100%) rename {libc => lib/libc}/musl/src/network/getpeername.c (100%) rename {libc => lib/libc}/musl/src/network/getservbyname.c (100%) rename {libc => lib/libc}/musl/src/network/getservbyname_r.c (100%) rename {libc => lib/libc}/musl/src/network/getservbyport.c (100%) rename {libc => lib/libc}/musl/src/network/getservbyport_r.c (100%) rename {libc => lib/libc}/musl/src/network/getsockname.c (100%) rename {libc => lib/libc}/musl/src/network/getsockopt.c (100%) rename {libc => lib/libc}/musl/src/network/h_errno.c (100%) rename {libc => lib/libc}/musl/src/network/herror.c (100%) rename {libc => lib/libc}/musl/src/network/hstrerror.c (100%) rename {libc => lib/libc}/musl/src/network/htonl.c (100%) rename {libc => lib/libc}/musl/src/network/htons.c (100%) rename {libc => lib/libc}/musl/src/network/if_freenameindex.c (100%) rename {libc => lib/libc}/musl/src/network/if_indextoname.c (100%) rename {libc => lib/libc}/musl/src/network/if_nameindex.c (100%) rename {libc => lib/libc}/musl/src/network/if_nametoindex.c (100%) rename {libc => lib/libc}/musl/src/network/in6addr_any.c (100%) rename {libc => lib/libc}/musl/src/network/in6addr_loopback.c (100%) rename {libc => lib/libc}/musl/src/network/inet_addr.c (100%) rename {libc => lib/libc}/musl/src/network/inet_aton.c (100%) rename {libc => lib/libc}/musl/src/network/inet_legacy.c (100%) rename {libc => lib/libc}/musl/src/network/inet_ntoa.c (100%) rename {libc => lib/libc}/musl/src/network/inet_ntop.c (100%) rename {libc => lib/libc}/musl/src/network/inet_pton.c (100%) rename {libc => lib/libc}/musl/src/network/listen.c (100%) rename {libc => lib/libc}/musl/src/network/lookup.h (100%) rename {libc => lib/libc}/musl/src/network/lookup_ipliteral.c (100%) rename {libc => lib/libc}/musl/src/network/lookup_name.c (100%) rename {libc => lib/libc}/musl/src/network/lookup_serv.c (100%) rename {libc => lib/libc}/musl/src/network/netlink.c (100%) rename {libc => lib/libc}/musl/src/network/netlink.h (100%) rename {libc => lib/libc}/musl/src/network/netname.c (100%) rename {libc => lib/libc}/musl/src/network/ns_parse.c (100%) rename {libc => lib/libc}/musl/src/network/ntohl.c (100%) rename {libc => lib/libc}/musl/src/network/ntohs.c (100%) rename {libc => lib/libc}/musl/src/network/proto.c (100%) rename {libc => lib/libc}/musl/src/network/recv.c (100%) rename {libc => lib/libc}/musl/src/network/recvfrom.c (100%) rename {libc => lib/libc}/musl/src/network/recvmmsg.c (100%) rename {libc => lib/libc}/musl/src/network/recvmsg.c (100%) rename {libc => lib/libc}/musl/src/network/res_init.c (100%) rename {libc => lib/libc}/musl/src/network/res_mkquery.c (100%) rename {libc => lib/libc}/musl/src/network/res_msend.c (100%) rename {libc => lib/libc}/musl/src/network/res_query.c (100%) rename {libc => lib/libc}/musl/src/network/res_querydomain.c (100%) rename {libc => lib/libc}/musl/src/network/res_send.c (100%) rename {libc => lib/libc}/musl/src/network/res_state.c (100%) rename {libc => lib/libc}/musl/src/network/resolvconf.c (100%) rename {libc => lib/libc}/musl/src/network/send.c (100%) rename {libc => lib/libc}/musl/src/network/sendmmsg.c (100%) rename {libc => lib/libc}/musl/src/network/sendmsg.c (100%) rename {libc => lib/libc}/musl/src/network/sendto.c (100%) rename {libc => lib/libc}/musl/src/network/serv.c (100%) rename {libc => lib/libc}/musl/src/network/setsockopt.c (100%) rename {libc => lib/libc}/musl/src/network/shutdown.c (100%) rename {libc => lib/libc}/musl/src/network/sockatmark.c (100%) rename {libc => lib/libc}/musl/src/network/socket.c (100%) rename {libc => lib/libc}/musl/src/network/socketpair.c (100%) rename {libc => lib/libc}/musl/src/passwd/fgetgrent.c (100%) rename {libc => lib/libc}/musl/src/passwd/fgetpwent.c (100%) rename {libc => lib/libc}/musl/src/passwd/fgetspent.c (100%) rename {libc => lib/libc}/musl/src/passwd/getgr_a.c (100%) rename {libc => lib/libc}/musl/src/passwd/getgr_r.c (100%) rename {libc => lib/libc}/musl/src/passwd/getgrent.c (100%) rename {libc => lib/libc}/musl/src/passwd/getgrent_a.c (100%) rename {libc => lib/libc}/musl/src/passwd/getgrouplist.c (100%) rename {libc => lib/libc}/musl/src/passwd/getpw_a.c (100%) rename {libc => lib/libc}/musl/src/passwd/getpw_r.c (100%) rename {libc => lib/libc}/musl/src/passwd/getpwent.c (100%) rename {libc => lib/libc}/musl/src/passwd/getpwent_a.c (100%) rename {libc => lib/libc}/musl/src/passwd/getspent.c (100%) rename {libc => lib/libc}/musl/src/passwd/getspnam.c (100%) rename {libc => lib/libc}/musl/src/passwd/getspnam_r.c (100%) rename {libc => lib/libc}/musl/src/passwd/lckpwdf.c (100%) rename {libc => lib/libc}/musl/src/passwd/nscd.h (100%) rename {libc => lib/libc}/musl/src/passwd/nscd_query.c (100%) rename {libc => lib/libc}/musl/src/passwd/putgrent.c (100%) rename {libc => lib/libc}/musl/src/passwd/putpwent.c (100%) rename {libc => lib/libc}/musl/src/passwd/putspent.c (100%) rename {libc => lib/libc}/musl/src/passwd/pwf.h (100%) rename {libc => lib/libc}/musl/src/prng/__rand48_step.c (100%) rename {libc => lib/libc}/musl/src/prng/__seed48.c (100%) rename {libc => lib/libc}/musl/src/prng/drand48.c (100%) rename {libc => lib/libc}/musl/src/prng/lcong48.c (100%) rename {libc => lib/libc}/musl/src/prng/lrand48.c (100%) rename {libc => lib/libc}/musl/src/prng/mrand48.c (100%) rename {libc => lib/libc}/musl/src/prng/rand.c (100%) rename {libc => lib/libc}/musl/src/prng/rand48.h (100%) rename {libc => lib/libc}/musl/src/prng/rand_r.c (100%) rename {libc => lib/libc}/musl/src/prng/random.c (100%) rename {libc => lib/libc}/musl/src/prng/seed48.c (100%) rename {libc => lib/libc}/musl/src/prng/srand48.c (100%) rename {libc => lib/libc}/musl/src/process/arm/vfork.s (100%) rename {libc => lib/libc}/musl/src/process/execl.c (100%) rename {libc => lib/libc}/musl/src/process/execle.c (100%) rename {libc => lib/libc}/musl/src/process/execlp.c (100%) rename {libc => lib/libc}/musl/src/process/execv.c (100%) rename {libc => lib/libc}/musl/src/process/execve.c (100%) rename {libc => lib/libc}/musl/src/process/execvp.c (100%) rename {libc => lib/libc}/musl/src/process/fdop.h (100%) rename {libc => lib/libc}/musl/src/process/fexecve.c (100%) rename {libc => lib/libc}/musl/src/process/fork.c (100%) rename {libc => lib/libc}/musl/src/process/i386/vfork.s (100%) rename {libc => lib/libc}/musl/src/process/posix_spawn.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawn_file_actions_addclose.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawn_file_actions_adddup2.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawn_file_actions_addopen.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawn_file_actions_destroy.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawn_file_actions_init.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawnattr_destroy.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawnattr_getflags.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawnattr_getpgroup.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawnattr_getsigdefault.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawnattr_getsigmask.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawnattr_init.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawnattr_sched.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawnattr_setflags.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawnattr_setpgroup.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawnattr_setsigdefault.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawnattr_setsigmask.c (100%) rename {libc => lib/libc}/musl/src/process/posix_spawnp.c (100%) rename {libc => lib/libc}/musl/src/process/s390x/vfork.s (100%) rename {libc => lib/libc}/musl/src/process/sh/vfork.s (100%) rename {libc => lib/libc}/musl/src/process/system.c (100%) rename {libc => lib/libc}/musl/src/process/vfork.c (100%) rename {libc => lib/libc}/musl/src/process/wait.c (100%) rename {libc => lib/libc}/musl/src/process/waitid.c (100%) rename {libc => lib/libc}/musl/src/process/waitpid.c (100%) rename {libc => lib/libc}/musl/src/process/x32/vfork.s (100%) rename {libc => lib/libc}/musl/src/process/x86_64/vfork.s (100%) rename {libc => lib/libc}/musl/src/regex/fnmatch.c (100%) rename {libc => lib/libc}/musl/src/regex/glob.c (100%) rename {libc => lib/libc}/musl/src/regex/regcomp.c (100%) rename {libc => lib/libc}/musl/src/regex/regerror.c (100%) rename {libc => lib/libc}/musl/src/regex/regexec.c (100%) rename {libc => lib/libc}/musl/src/regex/tre-mem.c (100%) rename {libc => lib/libc}/musl/src/regex/tre.h (100%) rename {libc => lib/libc}/musl/src/sched/affinity.c (100%) rename {libc => lib/libc}/musl/src/sched/sched_cpucount.c (100%) rename {libc => lib/libc}/musl/src/sched/sched_get_priority_max.c (100%) rename {libc => lib/libc}/musl/src/sched/sched_getcpu.c (100%) rename {libc => lib/libc}/musl/src/sched/sched_getparam.c (100%) rename {libc => lib/libc}/musl/src/sched/sched_getscheduler.c (100%) rename {libc => lib/libc}/musl/src/sched/sched_rr_get_interval.c (100%) rename {libc => lib/libc}/musl/src/sched/sched_setparam.c (100%) rename {libc => lib/libc}/musl/src/sched/sched_setscheduler.c (100%) rename {libc => lib/libc}/musl/src/sched/sched_yield.c (100%) rename {libc => lib/libc}/musl/src/search/hsearch.c (100%) rename {libc => lib/libc}/musl/src/search/insque.c (100%) rename {libc => lib/libc}/musl/src/search/lsearch.c (100%) rename {libc => lib/libc}/musl/src/search/tdelete.c (100%) rename {libc => lib/libc}/musl/src/search/tdestroy.c (100%) rename {libc => lib/libc}/musl/src/search/tfind.c (100%) rename {libc => lib/libc}/musl/src/search/tsearch.c (100%) rename {libc => lib/libc}/musl/src/search/tsearch.h (100%) rename {libc => lib/libc}/musl/src/search/twalk.c (100%) rename {libc => lib/libc}/musl/src/select/poll.c (100%) rename {libc => lib/libc}/musl/src/select/pselect.c (100%) rename {libc => lib/libc}/musl/src/select/select.c (100%) rename {libc => lib/libc}/musl/src/setjmp/aarch64/longjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/aarch64/setjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/arm/longjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/arm/setjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/i386/longjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/i386/setjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/longjmp.c (100%) rename {libc => lib/libc}/musl/src/setjmp/m68k/longjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/m68k/setjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/microblaze/longjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/microblaze/setjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/mips/longjmp.S (100%) rename {libc => lib/libc}/musl/src/setjmp/mips/setjmp.S (100%) rename {libc => lib/libc}/musl/src/setjmp/mips64/longjmp.S (100%) rename {libc => lib/libc}/musl/src/setjmp/mips64/setjmp.S (100%) rename {libc => lib/libc}/musl/src/setjmp/mipsn32/longjmp.S (100%) rename {libc => lib/libc}/musl/src/setjmp/mipsn32/setjmp.S (100%) rename {libc => lib/libc}/musl/src/setjmp/or1k/longjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/or1k/setjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/powerpc/longjmp.S (100%) rename {libc => lib/libc}/musl/src/setjmp/powerpc/setjmp.S (100%) rename {libc => lib/libc}/musl/src/setjmp/powerpc64/longjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/powerpc64/setjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/s390x/longjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/s390x/setjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/setjmp.c (100%) rename {libc => lib/libc}/musl/src/setjmp/sh/longjmp.S (100%) rename {libc => lib/libc}/musl/src/setjmp/sh/setjmp.S (100%) rename {libc => lib/libc}/musl/src/setjmp/x32/longjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/x32/setjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/x86_64/longjmp.s (100%) rename {libc => lib/libc}/musl/src/setjmp/x86_64/setjmp.s (100%) rename {libc => lib/libc}/musl/src/signal/aarch64/restore.s (100%) rename {libc => lib/libc}/musl/src/signal/aarch64/sigsetjmp.s (100%) rename {libc => lib/libc}/musl/src/signal/arm/restore.s (100%) rename {libc => lib/libc}/musl/src/signal/arm/sigsetjmp.s (100%) rename {libc => lib/libc}/musl/src/signal/block.c (100%) rename {libc => lib/libc}/musl/src/signal/getitimer.c (100%) rename {libc => lib/libc}/musl/src/signal/i386/restore.s (100%) rename {libc => lib/libc}/musl/src/signal/i386/sigsetjmp.s (100%) rename {libc => lib/libc}/musl/src/signal/kill.c (100%) rename {libc => lib/libc}/musl/src/signal/killpg.c (100%) rename {libc => lib/libc}/musl/src/signal/m68k/sigsetjmp.s (100%) rename {libc => lib/libc}/musl/src/signal/microblaze/restore.s (100%) rename {libc => lib/libc}/musl/src/signal/microblaze/sigsetjmp.s (100%) rename {libc => lib/libc}/musl/src/signal/mips/restore.s (100%) rename {libc => lib/libc}/musl/src/signal/mips/sigsetjmp.s (100%) rename {libc => lib/libc}/musl/src/signal/mips64/restore.s (100%) rename {libc => lib/libc}/musl/src/signal/mips64/sigsetjmp.s (100%) rename {libc => lib/libc}/musl/src/signal/mipsn32/restore.s (100%) rename {libc => lib/libc}/musl/src/signal/mipsn32/sigsetjmp.s (100%) rename {libc => lib/libc}/musl/src/signal/or1k/sigsetjmp.s (100%) rename {libc => lib/libc}/musl/src/signal/powerpc/restore.s (100%) rename {libc => lib/libc}/musl/src/signal/powerpc/sigsetjmp.s (100%) rename {libc => lib/libc}/musl/src/signal/powerpc64/restore.s (100%) rename {libc => lib/libc}/musl/src/signal/powerpc64/sigsetjmp.s (100%) rename {libc => lib/libc}/musl/src/signal/psiginfo.c (100%) rename {libc => lib/libc}/musl/src/signal/psignal.c (100%) rename {libc => lib/libc}/musl/src/signal/raise.c (100%) rename {libc => lib/libc}/musl/src/signal/restore.c (100%) rename {libc => lib/libc}/musl/src/signal/s390x/restore.s (100%) rename {libc => lib/libc}/musl/src/signal/s390x/sigsetjmp.s (100%) rename {libc => lib/libc}/musl/src/signal/setitimer.c (100%) rename {libc => lib/libc}/musl/src/signal/sh/restore.s (100%) rename {libc => lib/libc}/musl/src/signal/sh/sigsetjmp.s (100%) rename {libc => lib/libc}/musl/src/signal/sigaction.c (100%) rename {libc => lib/libc}/musl/src/signal/sigaddset.c (100%) rename {libc => lib/libc}/musl/src/signal/sigaltstack.c (100%) rename {libc => lib/libc}/musl/src/signal/sigandset.c (100%) rename {libc => lib/libc}/musl/src/signal/sigdelset.c (100%) rename {libc => lib/libc}/musl/src/signal/sigemptyset.c (100%) rename {libc => lib/libc}/musl/src/signal/sigfillset.c (100%) rename {libc => lib/libc}/musl/src/signal/sighold.c (100%) rename {libc => lib/libc}/musl/src/signal/sigignore.c (100%) rename {libc => lib/libc}/musl/src/signal/siginterrupt.c (100%) rename {libc => lib/libc}/musl/src/signal/sigisemptyset.c (100%) rename {libc => lib/libc}/musl/src/signal/sigismember.c (100%) rename {libc => lib/libc}/musl/src/signal/siglongjmp.c (100%) rename {libc => lib/libc}/musl/src/signal/signal.c (100%) rename {libc => lib/libc}/musl/src/signal/sigorset.c (100%) rename {libc => lib/libc}/musl/src/signal/sigpause.c (100%) rename {libc => lib/libc}/musl/src/signal/sigpending.c (100%) rename {libc => lib/libc}/musl/src/signal/sigprocmask.c (100%) rename {libc => lib/libc}/musl/src/signal/sigqueue.c (100%) rename {libc => lib/libc}/musl/src/signal/sigrelse.c (100%) rename {libc => lib/libc}/musl/src/signal/sigrtmax.c (100%) rename {libc => lib/libc}/musl/src/signal/sigrtmin.c (100%) rename {libc => lib/libc}/musl/src/signal/sigset.c (100%) rename {libc => lib/libc}/musl/src/signal/sigsetjmp.c (100%) rename {libc => lib/libc}/musl/src/signal/sigsetjmp_tail.c (100%) rename {libc => lib/libc}/musl/src/signal/sigsuspend.c (100%) rename {libc => lib/libc}/musl/src/signal/sigtimedwait.c (100%) rename {libc => lib/libc}/musl/src/signal/sigwait.c (100%) rename {libc => lib/libc}/musl/src/signal/sigwaitinfo.c (100%) rename {libc => lib/libc}/musl/src/signal/x32/restore.s (100%) rename {libc => lib/libc}/musl/src/signal/x32/sigsetjmp.s (100%) rename {libc => lib/libc}/musl/src/signal/x86_64/restore.s (100%) rename {libc => lib/libc}/musl/src/signal/x86_64/sigsetjmp.s (100%) rename {libc => lib/libc}/musl/src/stat/__xstat.c (100%) rename {libc => lib/libc}/musl/src/stat/chmod.c (100%) rename {libc => lib/libc}/musl/src/stat/fchmod.c (100%) rename {libc => lib/libc}/musl/src/stat/fchmodat.c (100%) rename {libc => lib/libc}/musl/src/stat/fstat.c (100%) rename {libc => lib/libc}/musl/src/stat/fstatat.c (100%) rename {libc => lib/libc}/musl/src/stat/futimens.c (100%) rename {libc => lib/libc}/musl/src/stat/futimesat.c (100%) rename {libc => lib/libc}/musl/src/stat/lchmod.c (100%) rename {libc => lib/libc}/musl/src/stat/lstat.c (100%) rename {libc => lib/libc}/musl/src/stat/mkdir.c (100%) rename {libc => lib/libc}/musl/src/stat/mkdirat.c (100%) rename {libc => lib/libc}/musl/src/stat/mkfifo.c (100%) rename {libc => lib/libc}/musl/src/stat/mkfifoat.c (100%) rename {libc => lib/libc}/musl/src/stat/mknod.c (100%) rename {libc => lib/libc}/musl/src/stat/mknodat.c (100%) rename {libc => lib/libc}/musl/src/stat/stat.c (100%) rename {libc => lib/libc}/musl/src/stat/statvfs.c (100%) rename {libc => lib/libc}/musl/src/stat/umask.c (100%) rename {libc => lib/libc}/musl/src/stat/utimensat.c (100%) rename {libc => lib/libc}/musl/src/stdio/__fclose_ca.c (100%) rename {libc => lib/libc}/musl/src/stdio/__fdopen.c (100%) rename {libc => lib/libc}/musl/src/stdio/__fmodeflags.c (100%) rename {libc => lib/libc}/musl/src/stdio/__fopen_rb_ca.c (100%) rename {libc => lib/libc}/musl/src/stdio/__lockfile.c (100%) rename {libc => lib/libc}/musl/src/stdio/__overflow.c (100%) rename {libc => lib/libc}/musl/src/stdio/__stdio_close.c (100%) rename {libc => lib/libc}/musl/src/stdio/__stdio_exit.c (100%) rename {libc => lib/libc}/musl/src/stdio/__stdio_read.c (100%) rename {libc => lib/libc}/musl/src/stdio/__stdio_seek.c (100%) rename {libc => lib/libc}/musl/src/stdio/__stdio_write.c (100%) rename {libc => lib/libc}/musl/src/stdio/__stdout_write.c (100%) rename {libc => lib/libc}/musl/src/stdio/__string_read.c (100%) rename {libc => lib/libc}/musl/src/stdio/__toread.c (100%) rename {libc => lib/libc}/musl/src/stdio/__towrite.c (100%) rename {libc => lib/libc}/musl/src/stdio/__uflow.c (100%) rename {libc => lib/libc}/musl/src/stdio/asprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/clearerr.c (100%) rename {libc => lib/libc}/musl/src/stdio/dprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/ext.c (100%) rename {libc => lib/libc}/musl/src/stdio/ext2.c (100%) rename {libc => lib/libc}/musl/src/stdio/fclose.c (100%) rename {libc => lib/libc}/musl/src/stdio/feof.c (100%) rename {libc => lib/libc}/musl/src/stdio/ferror.c (100%) rename {libc => lib/libc}/musl/src/stdio/fflush.c (100%) rename {libc => lib/libc}/musl/src/stdio/fgetc.c (100%) rename {libc => lib/libc}/musl/src/stdio/fgetln.c (100%) rename {libc => lib/libc}/musl/src/stdio/fgetpos.c (100%) rename {libc => lib/libc}/musl/src/stdio/fgets.c (100%) rename {libc => lib/libc}/musl/src/stdio/fgetwc.c (100%) rename {libc => lib/libc}/musl/src/stdio/fgetws.c (100%) rename {libc => lib/libc}/musl/src/stdio/fileno.c (100%) rename {libc => lib/libc}/musl/src/stdio/flockfile.c (100%) rename {libc => lib/libc}/musl/src/stdio/fmemopen.c (100%) rename {libc => lib/libc}/musl/src/stdio/fopen.c (100%) rename {libc => lib/libc}/musl/src/stdio/fopencookie.c (100%) rename {libc => lib/libc}/musl/src/stdio/fprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/fputc.c (100%) rename {libc => lib/libc}/musl/src/stdio/fputs.c (100%) rename {libc => lib/libc}/musl/src/stdio/fputwc.c (100%) rename {libc => lib/libc}/musl/src/stdio/fputws.c (100%) rename {libc => lib/libc}/musl/src/stdio/fread.c (100%) rename {libc => lib/libc}/musl/src/stdio/freopen.c (100%) rename {libc => lib/libc}/musl/src/stdio/fscanf.c (100%) rename {libc => lib/libc}/musl/src/stdio/fseek.c (100%) rename {libc => lib/libc}/musl/src/stdio/fsetpos.c (100%) rename {libc => lib/libc}/musl/src/stdio/ftell.c (100%) rename {libc => lib/libc}/musl/src/stdio/ftrylockfile.c (100%) rename {libc => lib/libc}/musl/src/stdio/funlockfile.c (100%) rename {libc => lib/libc}/musl/src/stdio/fwide.c (100%) rename {libc => lib/libc}/musl/src/stdio/fwprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/fwrite.c (100%) rename {libc => lib/libc}/musl/src/stdio/fwscanf.c (100%) rename {libc => lib/libc}/musl/src/stdio/getc.c (100%) rename {libc => lib/libc}/musl/src/stdio/getc.h (100%) rename {libc => lib/libc}/musl/src/stdio/getc_unlocked.c (100%) rename {libc => lib/libc}/musl/src/stdio/getchar.c (100%) rename {libc => lib/libc}/musl/src/stdio/getchar_unlocked.c (100%) rename {libc => lib/libc}/musl/src/stdio/getdelim.c (100%) rename {libc => lib/libc}/musl/src/stdio/getline.c (100%) rename {libc => lib/libc}/musl/src/stdio/gets.c (100%) rename {libc => lib/libc}/musl/src/stdio/getw.c (100%) rename {libc => lib/libc}/musl/src/stdio/getwc.c (100%) rename {libc => lib/libc}/musl/src/stdio/getwchar.c (100%) rename {libc => lib/libc}/musl/src/stdio/ofl.c (100%) rename {libc => lib/libc}/musl/src/stdio/ofl_add.c (100%) rename {libc => lib/libc}/musl/src/stdio/open_memstream.c (100%) rename {libc => lib/libc}/musl/src/stdio/open_wmemstream.c (100%) rename {libc => lib/libc}/musl/src/stdio/pclose.c (100%) rename {libc => lib/libc}/musl/src/stdio/perror.c (100%) rename {libc => lib/libc}/musl/src/stdio/popen.c (100%) rename {libc => lib/libc}/musl/src/stdio/printf.c (100%) rename {libc => lib/libc}/musl/src/stdio/putc.c (100%) rename {libc => lib/libc}/musl/src/stdio/putc.h (100%) rename {libc => lib/libc}/musl/src/stdio/putc_unlocked.c (100%) rename {libc => lib/libc}/musl/src/stdio/putchar.c (100%) rename {libc => lib/libc}/musl/src/stdio/putchar_unlocked.c (100%) rename {libc => lib/libc}/musl/src/stdio/puts.c (100%) rename {libc => lib/libc}/musl/src/stdio/putw.c (100%) rename {libc => lib/libc}/musl/src/stdio/putwc.c (100%) rename {libc => lib/libc}/musl/src/stdio/putwchar.c (100%) rename {libc => lib/libc}/musl/src/stdio/remove.c (100%) rename {libc => lib/libc}/musl/src/stdio/rename.c (100%) rename {libc => lib/libc}/musl/src/stdio/rewind.c (100%) rename {libc => lib/libc}/musl/src/stdio/scanf.c (100%) rename {libc => lib/libc}/musl/src/stdio/setbuf.c (100%) rename {libc => lib/libc}/musl/src/stdio/setbuffer.c (100%) rename {libc => lib/libc}/musl/src/stdio/setlinebuf.c (100%) rename {libc => lib/libc}/musl/src/stdio/setvbuf.c (100%) rename {libc => lib/libc}/musl/src/stdio/snprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/sprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/sscanf.c (100%) rename {libc => lib/libc}/musl/src/stdio/stderr.c (100%) rename {libc => lib/libc}/musl/src/stdio/stdin.c (100%) rename {libc => lib/libc}/musl/src/stdio/stdout.c (100%) rename {libc => lib/libc}/musl/src/stdio/swprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/swscanf.c (100%) rename {libc => lib/libc}/musl/src/stdio/tempnam.c (100%) rename {libc => lib/libc}/musl/src/stdio/tmpfile.c (100%) rename {libc => lib/libc}/musl/src/stdio/tmpnam.c (100%) rename {libc => lib/libc}/musl/src/stdio/ungetc.c (100%) rename {libc => lib/libc}/musl/src/stdio/ungetwc.c (100%) rename {libc => lib/libc}/musl/src/stdio/vasprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/vdprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/vfprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/vfscanf.c (100%) rename {libc => lib/libc}/musl/src/stdio/vfwprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/vfwscanf.c (100%) rename {libc => lib/libc}/musl/src/stdio/vprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/vscanf.c (100%) rename {libc => lib/libc}/musl/src/stdio/vsnprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/vsprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/vsscanf.c (100%) rename {libc => lib/libc}/musl/src/stdio/vswprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/vswscanf.c (100%) rename {libc => lib/libc}/musl/src/stdio/vwprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/vwscanf.c (100%) rename {libc => lib/libc}/musl/src/stdio/wprintf.c (100%) rename {libc => lib/libc}/musl/src/stdio/wscanf.c (100%) rename {libc => lib/libc}/musl/src/stdlib/abs.c (100%) rename {libc => lib/libc}/musl/src/stdlib/atof.c (100%) rename {libc => lib/libc}/musl/src/stdlib/atoi.c (100%) rename {libc => lib/libc}/musl/src/stdlib/atol.c (100%) rename {libc => lib/libc}/musl/src/stdlib/atoll.c (100%) rename {libc => lib/libc}/musl/src/stdlib/bsearch.c (100%) rename {libc => lib/libc}/musl/src/stdlib/div.c (100%) rename {libc => lib/libc}/musl/src/stdlib/ecvt.c (100%) rename {libc => lib/libc}/musl/src/stdlib/fcvt.c (100%) rename {libc => lib/libc}/musl/src/stdlib/gcvt.c (100%) rename {libc => lib/libc}/musl/src/stdlib/imaxabs.c (100%) rename {libc => lib/libc}/musl/src/stdlib/imaxdiv.c (100%) rename {libc => lib/libc}/musl/src/stdlib/labs.c (100%) rename {libc => lib/libc}/musl/src/stdlib/ldiv.c (100%) rename {libc => lib/libc}/musl/src/stdlib/llabs.c (100%) rename {libc => lib/libc}/musl/src/stdlib/lldiv.c (100%) rename {libc => lib/libc}/musl/src/stdlib/qsort.c (100%) rename {libc => lib/libc}/musl/src/stdlib/strtod.c (100%) rename {libc => lib/libc}/musl/src/stdlib/strtol.c (100%) rename {libc => lib/libc}/musl/src/stdlib/wcstod.c (100%) rename {libc => lib/libc}/musl/src/stdlib/wcstol.c (100%) rename {libc => lib/libc}/musl/src/string/arm/__aeabi_memcpy.s (100%) rename {libc => lib/libc}/musl/src/string/arm/__aeabi_memset.s (100%) rename {libc => lib/libc}/musl/src/string/arm/memcpy.c (100%) rename {libc => lib/libc}/musl/src/string/arm/memcpy_le.S (100%) rename {libc => lib/libc}/musl/src/string/bcmp.c (100%) rename {libc => lib/libc}/musl/src/string/bcopy.c (100%) rename {libc => lib/libc}/musl/src/string/bzero.c (100%) rename {libc => lib/libc}/musl/src/string/explicit_bzero.c (100%) rename {libc => lib/libc}/musl/src/string/i386/memcpy.s (100%) rename {libc => lib/libc}/musl/src/string/i386/memmove.s (100%) rename {libc => lib/libc}/musl/src/string/i386/memset.s (100%) rename {libc => lib/libc}/musl/src/string/index.c (100%) rename {libc => lib/libc}/musl/src/string/memccpy.c (100%) rename {libc => lib/libc}/musl/src/string/memchr.c (100%) rename {libc => lib/libc}/musl/src/string/memcmp.c (100%) rename {libc => lib/libc}/musl/src/string/memcpy.c (100%) rename {libc => lib/libc}/musl/src/string/memmem.c (100%) rename {libc => lib/libc}/musl/src/string/memmove.c (100%) rename {libc => lib/libc}/musl/src/string/mempcpy.c (100%) rename {libc => lib/libc}/musl/src/string/memrchr.c (100%) rename {libc => lib/libc}/musl/src/string/memset.c (100%) rename {libc => lib/libc}/musl/src/string/rindex.c (100%) rename {libc => lib/libc}/musl/src/string/stpcpy.c (100%) rename {libc => lib/libc}/musl/src/string/stpncpy.c (100%) rename {libc => lib/libc}/musl/src/string/strcasecmp.c (100%) rename {libc => lib/libc}/musl/src/string/strcasestr.c (100%) rename {libc => lib/libc}/musl/src/string/strcat.c (100%) rename {libc => lib/libc}/musl/src/string/strchr.c (100%) rename {libc => lib/libc}/musl/src/string/strchrnul.c (100%) rename {libc => lib/libc}/musl/src/string/strcmp.c (100%) rename {libc => lib/libc}/musl/src/string/strcpy.c (100%) rename {libc => lib/libc}/musl/src/string/strcspn.c (100%) rename {libc => lib/libc}/musl/src/string/strdup.c (100%) rename {libc => lib/libc}/musl/src/string/strerror_r.c (100%) rename {libc => lib/libc}/musl/src/string/strlcat.c (100%) rename {libc => lib/libc}/musl/src/string/strlcpy.c (100%) rename {libc => lib/libc}/musl/src/string/strlen.c (100%) rename {libc => lib/libc}/musl/src/string/strncasecmp.c (100%) rename {libc => lib/libc}/musl/src/string/strncat.c (100%) rename {libc => lib/libc}/musl/src/string/strncmp.c (100%) rename {libc => lib/libc}/musl/src/string/strncpy.c (100%) rename {libc => lib/libc}/musl/src/string/strndup.c (100%) rename {libc => lib/libc}/musl/src/string/strnlen.c (100%) rename {libc => lib/libc}/musl/src/string/strpbrk.c (100%) rename {libc => lib/libc}/musl/src/string/strrchr.c (100%) rename {libc => lib/libc}/musl/src/string/strsep.c (100%) rename {libc => lib/libc}/musl/src/string/strsignal.c (100%) rename {libc => lib/libc}/musl/src/string/strspn.c (100%) rename {libc => lib/libc}/musl/src/string/strstr.c (100%) rename {libc => lib/libc}/musl/src/string/strtok.c (100%) rename {libc => lib/libc}/musl/src/string/strtok_r.c (100%) rename {libc => lib/libc}/musl/src/string/strverscmp.c (100%) rename {libc => lib/libc}/musl/src/string/swab.c (100%) rename {libc => lib/libc}/musl/src/string/wcpcpy.c (100%) rename {libc => lib/libc}/musl/src/string/wcpncpy.c (100%) rename {libc => lib/libc}/musl/src/string/wcscasecmp.c (100%) rename {libc => lib/libc}/musl/src/string/wcscasecmp_l.c (100%) rename {libc => lib/libc}/musl/src/string/wcscat.c (100%) rename {libc => lib/libc}/musl/src/string/wcschr.c (100%) rename {libc => lib/libc}/musl/src/string/wcscmp.c (100%) rename {libc => lib/libc}/musl/src/string/wcscpy.c (100%) rename {libc => lib/libc}/musl/src/string/wcscspn.c (100%) rename {libc => lib/libc}/musl/src/string/wcsdup.c (100%) rename {libc => lib/libc}/musl/src/string/wcslen.c (100%) rename {libc => lib/libc}/musl/src/string/wcsncasecmp.c (100%) rename {libc => lib/libc}/musl/src/string/wcsncasecmp_l.c (100%) rename {libc => lib/libc}/musl/src/string/wcsncat.c (100%) rename {libc => lib/libc}/musl/src/string/wcsncmp.c (100%) rename {libc => lib/libc}/musl/src/string/wcsncpy.c (100%) rename {libc => lib/libc}/musl/src/string/wcsnlen.c (100%) rename {libc => lib/libc}/musl/src/string/wcspbrk.c (100%) rename {libc => lib/libc}/musl/src/string/wcsrchr.c (100%) rename {libc => lib/libc}/musl/src/string/wcsspn.c (100%) rename {libc => lib/libc}/musl/src/string/wcsstr.c (100%) rename {libc => lib/libc}/musl/src/string/wcstok.c (100%) rename {libc => lib/libc}/musl/src/string/wcswcs.c (100%) rename {libc => lib/libc}/musl/src/string/wmemchr.c (100%) rename {libc => lib/libc}/musl/src/string/wmemcmp.c (100%) rename {libc => lib/libc}/musl/src/string/wmemcpy.c (100%) rename {libc => lib/libc}/musl/src/string/wmemmove.c (100%) rename {libc => lib/libc}/musl/src/string/wmemset.c (100%) rename {libc => lib/libc}/musl/src/string/x86_64/memcpy.s (100%) rename {libc => lib/libc}/musl/src/string/x86_64/memmove.s (100%) rename {libc => lib/libc}/musl/src/string/x86_64/memset.s (100%) rename {libc => lib/libc}/musl/src/temp/__randname.c (100%) rename {libc => lib/libc}/musl/src/temp/mkdtemp.c (100%) rename {libc => lib/libc}/musl/src/temp/mkostemp.c (100%) rename {libc => lib/libc}/musl/src/temp/mkostemps.c (100%) rename {libc => lib/libc}/musl/src/temp/mkstemp.c (100%) rename {libc => lib/libc}/musl/src/temp/mkstemps.c (100%) rename {libc => lib/libc}/musl/src/temp/mktemp.c (100%) rename {libc => lib/libc}/musl/src/termios/cfgetospeed.c (100%) rename {libc => lib/libc}/musl/src/termios/cfmakeraw.c (100%) rename {libc => lib/libc}/musl/src/termios/cfsetospeed.c (100%) rename {libc => lib/libc}/musl/src/termios/tcdrain.c (100%) rename {libc => lib/libc}/musl/src/termios/tcflow.c (100%) rename {libc => lib/libc}/musl/src/termios/tcflush.c (100%) rename {libc => lib/libc}/musl/src/termios/tcgetattr.c (100%) rename {libc => lib/libc}/musl/src/termios/tcgetsid.c (100%) rename {libc => lib/libc}/musl/src/termios/tcsendbreak.c (100%) rename {libc => lib/libc}/musl/src/termios/tcsetattr.c (100%) rename {libc => lib/libc}/musl/src/thread/__lock.c (100%) rename {libc => lib/libc}/musl/src/thread/__set_thread_area.c (100%) rename {libc => lib/libc}/musl/src/thread/__syscall_cp.c (100%) rename {libc => lib/libc}/musl/src/thread/__timedwait.c (100%) rename {libc => lib/libc}/musl/src/thread/__tls_get_addr.c (100%) rename {libc => lib/libc}/musl/src/thread/__unmapself.c (100%) rename {libc => lib/libc}/musl/src/thread/__wait.c (100%) rename {libc => lib/libc}/musl/src/thread/aarch64/__set_thread_area.s (100%) rename {libc => lib/libc}/musl/src/thread/aarch64/__unmapself.s (100%) rename {libc => lib/libc}/musl/src/thread/aarch64/clone.s (100%) rename {libc => lib/libc}/musl/src/thread/aarch64/syscall_cp.s (100%) rename {libc => lib/libc}/musl/src/thread/arm/__aeabi_read_tp.s (100%) rename {libc => lib/libc}/musl/src/thread/arm/__set_thread_area.c (100%) rename {libc => lib/libc}/musl/src/thread/arm/__unmapself.s (100%) rename {libc => lib/libc}/musl/src/thread/arm/atomics.s (100%) rename {libc => lib/libc}/musl/src/thread/arm/clone.s (100%) rename {libc => lib/libc}/musl/src/thread/arm/syscall_cp.s (100%) rename {libc => lib/libc}/musl/src/thread/call_once.c (100%) rename {libc => lib/libc}/musl/src/thread/clone.c (100%) rename {libc => lib/libc}/musl/src/thread/cnd_broadcast.c (100%) rename {libc => lib/libc}/musl/src/thread/cnd_destroy.c (100%) rename {libc => lib/libc}/musl/src/thread/cnd_init.c (100%) rename {libc => lib/libc}/musl/src/thread/cnd_signal.c (100%) rename {libc => lib/libc}/musl/src/thread/cnd_timedwait.c (100%) rename {libc => lib/libc}/musl/src/thread/cnd_wait.c (100%) rename {libc => lib/libc}/musl/src/thread/default_attr.c (100%) rename {libc => lib/libc}/musl/src/thread/i386/__set_thread_area.s (100%) rename {libc => lib/libc}/musl/src/thread/i386/__unmapself.s (100%) rename {libc => lib/libc}/musl/src/thread/i386/clone.s (100%) rename {libc => lib/libc}/musl/src/thread/i386/syscall_cp.s (100%) rename {libc => lib/libc}/musl/src/thread/i386/tls.s (100%) rename {libc => lib/libc}/musl/src/thread/lock_ptc.c (100%) rename {libc => lib/libc}/musl/src/thread/m68k/__m68k_read_tp.s (100%) rename {libc => lib/libc}/musl/src/thread/m68k/clone.s (100%) rename {libc => lib/libc}/musl/src/thread/m68k/syscall_cp.s (100%) rename {libc => lib/libc}/musl/src/thread/microblaze/__set_thread_area.s (100%) rename {libc => lib/libc}/musl/src/thread/microblaze/__unmapself.s (100%) rename {libc => lib/libc}/musl/src/thread/microblaze/clone.s (100%) rename {libc => lib/libc}/musl/src/thread/microblaze/syscall_cp.s (100%) rename {libc => lib/libc}/musl/src/thread/mips/__unmapself.s (100%) rename {libc => lib/libc}/musl/src/thread/mips/clone.s (100%) rename {libc => lib/libc}/musl/src/thread/mips/syscall_cp.s (100%) rename {libc => lib/libc}/musl/src/thread/mips64/__unmapself.s (100%) rename {libc => lib/libc}/musl/src/thread/mips64/clone.s (100%) rename {libc => lib/libc}/musl/src/thread/mips64/syscall_cp.s (100%) rename {libc => lib/libc}/musl/src/thread/mipsn32/__unmapself.s (100%) rename {libc => lib/libc}/musl/src/thread/mipsn32/clone.s (100%) rename {libc => lib/libc}/musl/src/thread/mipsn32/syscall_cp.s (100%) rename {libc => lib/libc}/musl/src/thread/mtx_destroy.c (100%) rename {libc => lib/libc}/musl/src/thread/mtx_init.c (100%) rename {libc => lib/libc}/musl/src/thread/mtx_lock.c (100%) rename {libc => lib/libc}/musl/src/thread/mtx_timedlock.c (100%) rename {libc => lib/libc}/musl/src/thread/mtx_trylock.c (100%) rename {libc => lib/libc}/musl/src/thread/mtx_unlock.c (100%) rename {libc => lib/libc}/musl/src/thread/or1k/__set_thread_area.s (100%) rename {libc => lib/libc}/musl/src/thread/or1k/__unmapself.s (100%) rename {libc => lib/libc}/musl/src/thread/or1k/clone.s (100%) rename {libc => lib/libc}/musl/src/thread/or1k/syscall_cp.s (100%) rename {libc => lib/libc}/musl/src/thread/powerpc/__set_thread_area.s (100%) rename {libc => lib/libc}/musl/src/thread/powerpc/__unmapself.s (100%) rename {libc => lib/libc}/musl/src/thread/powerpc/clone.s (100%) rename {libc => lib/libc}/musl/src/thread/powerpc/syscall_cp.s (100%) rename {libc => lib/libc}/musl/src/thread/powerpc64/__set_thread_area.s (100%) rename {libc => lib/libc}/musl/src/thread/powerpc64/__unmapself.s (100%) rename {libc => lib/libc}/musl/src/thread/powerpc64/clone.s (100%) rename {libc => lib/libc}/musl/src/thread/powerpc64/syscall_cp.s (100%) rename {libc => lib/libc}/musl/src/thread/pthread_atfork.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_attr_destroy.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_attr_get.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_attr_init.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_attr_setdetachstate.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_attr_setguardsize.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_attr_setinheritsched.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_attr_setschedparam.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_attr_setschedpolicy.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_attr_setscope.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_attr_setstack.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_attr_setstacksize.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_barrier_destroy.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_barrier_init.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_barrier_wait.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_barrierattr_destroy.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_barrierattr_init.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_barrierattr_setpshared.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_cancel.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_cleanup_push.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_cond_broadcast.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_cond_destroy.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_cond_init.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_cond_signal.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_cond_timedwait.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_cond_wait.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_condattr_destroy.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_condattr_init.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_condattr_setclock.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_condattr_setpshared.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_create.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_detach.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_equal.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_getattr_np.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_getconcurrency.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_getcpuclockid.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_getschedparam.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_getspecific.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_join.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_key_create.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_key_delete.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_kill.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_mutex_consistent.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_mutex_destroy.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_mutex_getprioceiling.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_mutex_init.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_mutex_lock.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_mutex_setprioceiling.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_mutex_timedlock.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_mutex_trylock.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_mutex_unlock.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_mutexattr_destroy.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_mutexattr_init.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_mutexattr_setprotocol.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_mutexattr_setpshared.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_mutexattr_setrobust.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_mutexattr_settype.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_once.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_rwlock_destroy.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_rwlock_init.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_rwlock_rdlock.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_rwlock_timedrdlock.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_rwlock_timedwrlock.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_rwlock_tryrdlock.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_rwlock_trywrlock.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_rwlock_unlock.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_rwlock_wrlock.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_rwlockattr_destroy.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_rwlockattr_init.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_rwlockattr_setpshared.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_self.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_setattr_default_np.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_setcancelstate.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_setcanceltype.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_setconcurrency.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_setname_np.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_setschedparam.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_setschedprio.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_setspecific.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_sigmask.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_spin_destroy.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_spin_init.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_spin_lock.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_spin_trylock.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_spin_unlock.c (100%) rename {libc => lib/libc}/musl/src/thread/pthread_testcancel.c (100%) rename {libc => lib/libc}/musl/src/thread/s390x/__set_thread_area.s (100%) rename {libc => lib/libc}/musl/src/thread/s390x/__tls_get_offset.s (100%) rename {libc => lib/libc}/musl/src/thread/s390x/__unmapself.s (100%) rename {libc => lib/libc}/musl/src/thread/s390x/clone.s (100%) rename {libc => lib/libc}/musl/src/thread/s390x/syscall_cp.s (100%) rename {libc => lib/libc}/musl/src/thread/sem_destroy.c (100%) rename {libc => lib/libc}/musl/src/thread/sem_getvalue.c (100%) rename {libc => lib/libc}/musl/src/thread/sem_init.c (100%) rename {libc => lib/libc}/musl/src/thread/sem_open.c (100%) rename {libc => lib/libc}/musl/src/thread/sem_post.c (100%) rename {libc => lib/libc}/musl/src/thread/sem_timedwait.c (100%) rename {libc => lib/libc}/musl/src/thread/sem_trywait.c (100%) rename {libc => lib/libc}/musl/src/thread/sem_unlink.c (100%) rename {libc => lib/libc}/musl/src/thread/sem_wait.c (100%) rename {libc => lib/libc}/musl/src/thread/sh/__set_thread_area.c (100%) rename {libc => lib/libc}/musl/src/thread/sh/__unmapself.c (100%) rename {libc => lib/libc}/musl/src/thread/sh/__unmapself_mmu.s (100%) rename {libc => lib/libc}/musl/src/thread/sh/atomics.s (100%) rename {libc => lib/libc}/musl/src/thread/sh/clone.s (100%) rename {libc => lib/libc}/musl/src/thread/sh/syscall_cp.s (100%) rename {libc => lib/libc}/musl/src/thread/synccall.c (100%) rename {libc => lib/libc}/musl/src/thread/syscall_cp.c (100%) rename {libc => lib/libc}/musl/src/thread/thrd_create.c (100%) rename {libc => lib/libc}/musl/src/thread/thrd_exit.c (100%) rename {libc => lib/libc}/musl/src/thread/thrd_join.c (100%) rename {libc => lib/libc}/musl/src/thread/thrd_sleep.c (100%) rename {libc => lib/libc}/musl/src/thread/thrd_yield.c (100%) rename {libc => lib/libc}/musl/src/thread/tls.c (100%) rename {libc => lib/libc}/musl/src/thread/tss_create.c (100%) rename {libc => lib/libc}/musl/src/thread/tss_delete.c (100%) rename {libc => lib/libc}/musl/src/thread/tss_set.c (100%) rename {libc => lib/libc}/musl/src/thread/vmlock.c (100%) rename {libc => lib/libc}/musl/src/thread/x32/__set_thread_area.s (100%) rename {libc => lib/libc}/musl/src/thread/x32/__unmapself.s (100%) rename {libc => lib/libc}/musl/src/thread/x32/clone.s (100%) rename {libc => lib/libc}/musl/src/thread/x32/syscall_cp.s (100%) rename {libc => lib/libc}/musl/src/thread/x32/syscall_cp_fixup.c (100%) rename {libc => lib/libc}/musl/src/thread/x86_64/__set_thread_area.s (100%) rename {libc => lib/libc}/musl/src/thread/x86_64/__unmapself.s (100%) rename {libc => lib/libc}/musl/src/thread/x86_64/clone.s (100%) rename {libc => lib/libc}/musl/src/thread/x86_64/syscall_cp.s (100%) rename {libc => lib/libc}/musl/src/time/__map_file.c (100%) rename {libc => lib/libc}/musl/src/time/__month_to_secs.c (100%) rename {libc => lib/libc}/musl/src/time/__secs_to_tm.c (100%) rename {libc => lib/libc}/musl/src/time/__tm_to_secs.c (100%) rename {libc => lib/libc}/musl/src/time/__tz.c (100%) rename {libc => lib/libc}/musl/src/time/__year_to_secs.c (100%) rename {libc => lib/libc}/musl/src/time/asctime.c (100%) rename {libc => lib/libc}/musl/src/time/asctime_r.c (100%) rename {libc => lib/libc}/musl/src/time/clock.c (100%) rename {libc => lib/libc}/musl/src/time/clock_getcpuclockid.c (100%) rename {libc => lib/libc}/musl/src/time/clock_getres.c (100%) rename {libc => lib/libc}/musl/src/time/clock_gettime.c (100%) rename {libc => lib/libc}/musl/src/time/clock_nanosleep.c (100%) rename {libc => lib/libc}/musl/src/time/clock_settime.c (100%) rename {libc => lib/libc}/musl/src/time/ctime.c (100%) rename {libc => lib/libc}/musl/src/time/ctime_r.c (100%) rename {libc => lib/libc}/musl/src/time/difftime.c (100%) rename {libc => lib/libc}/musl/src/time/ftime.c (100%) rename {libc => lib/libc}/musl/src/time/getdate.c (100%) rename {libc => lib/libc}/musl/src/time/gettimeofday.c (100%) rename {libc => lib/libc}/musl/src/time/gmtime.c (100%) rename {libc => lib/libc}/musl/src/time/gmtime_r.c (100%) rename {libc => lib/libc}/musl/src/time/localtime.c (100%) rename {libc => lib/libc}/musl/src/time/localtime_r.c (100%) rename {libc => lib/libc}/musl/src/time/mktime.c (100%) rename {libc => lib/libc}/musl/src/time/nanosleep.c (100%) rename {libc => lib/libc}/musl/src/time/strftime.c (100%) rename {libc => lib/libc}/musl/src/time/strptime.c (100%) rename {libc => lib/libc}/musl/src/time/time.c (100%) rename {libc => lib/libc}/musl/src/time/time_impl.h (100%) rename {libc => lib/libc}/musl/src/time/timegm.c (100%) rename {libc => lib/libc}/musl/src/time/timer_create.c (100%) rename {libc => lib/libc}/musl/src/time/timer_delete.c (100%) rename {libc => lib/libc}/musl/src/time/timer_getoverrun.c (100%) rename {libc => lib/libc}/musl/src/time/timer_gettime.c (100%) rename {libc => lib/libc}/musl/src/time/timer_settime.c (100%) rename {libc => lib/libc}/musl/src/time/times.c (100%) rename {libc => lib/libc}/musl/src/time/timespec_get.c (100%) rename {libc => lib/libc}/musl/src/time/utime.c (100%) rename {libc => lib/libc}/musl/src/time/wcsftime.c (100%) rename {libc => lib/libc}/musl/src/unistd/_exit.c (100%) rename {libc => lib/libc}/musl/src/unistd/access.c (100%) rename {libc => lib/libc}/musl/src/unistd/acct.c (100%) rename {libc => lib/libc}/musl/src/unistd/alarm.c (100%) rename {libc => lib/libc}/musl/src/unistd/chdir.c (100%) rename {libc => lib/libc}/musl/src/unistd/chown.c (100%) rename {libc => lib/libc}/musl/src/unistd/close.c (100%) rename {libc => lib/libc}/musl/src/unistd/ctermid.c (100%) rename {libc => lib/libc}/musl/src/unistd/dup.c (100%) rename {libc => lib/libc}/musl/src/unistd/dup2.c (100%) rename {libc => lib/libc}/musl/src/unistd/dup3.c (100%) rename {libc => lib/libc}/musl/src/unistd/faccessat.c (100%) rename {libc => lib/libc}/musl/src/unistd/fchdir.c (100%) rename {libc => lib/libc}/musl/src/unistd/fchown.c (100%) rename {libc => lib/libc}/musl/src/unistd/fchownat.c (100%) rename {libc => lib/libc}/musl/src/unistd/fdatasync.c (100%) rename {libc => lib/libc}/musl/src/unistd/fsync.c (100%) rename {libc => lib/libc}/musl/src/unistd/ftruncate.c (100%) rename {libc => lib/libc}/musl/src/unistd/getcwd.c (100%) rename {libc => lib/libc}/musl/src/unistd/getegid.c (100%) rename {libc => lib/libc}/musl/src/unistd/geteuid.c (100%) rename {libc => lib/libc}/musl/src/unistd/getgid.c (100%) rename {libc => lib/libc}/musl/src/unistd/getgroups.c (100%) rename {libc => lib/libc}/musl/src/unistd/gethostname.c (100%) rename {libc => lib/libc}/musl/src/unistd/getlogin.c (100%) rename {libc => lib/libc}/musl/src/unistd/getlogin_r.c (100%) rename {libc => lib/libc}/musl/src/unistd/getpgid.c (100%) rename {libc => lib/libc}/musl/src/unistd/getpgrp.c (100%) rename {libc => lib/libc}/musl/src/unistd/getpid.c (100%) rename {libc => lib/libc}/musl/src/unistd/getppid.c (100%) rename {libc => lib/libc}/musl/src/unistd/getsid.c (100%) rename {libc => lib/libc}/musl/src/unistd/getuid.c (100%) rename {libc => lib/libc}/musl/src/unistd/isatty.c (100%) rename {libc => lib/libc}/musl/src/unistd/lchown.c (100%) rename {libc => lib/libc}/musl/src/unistd/link.c (100%) rename {libc => lib/libc}/musl/src/unistd/linkat.c (100%) rename {libc => lib/libc}/musl/src/unistd/lseek.c (100%) rename {libc => lib/libc}/musl/src/unistd/mips/pipe.s (100%) rename {libc => lib/libc}/musl/src/unistd/mips64/pipe.s (100%) rename {libc => lib/libc}/musl/src/unistd/mipsn32/pipe.s (100%) rename {libc => lib/libc}/musl/src/unistd/nice.c (100%) rename {libc => lib/libc}/musl/src/unistd/pause.c (100%) rename {libc => lib/libc}/musl/src/unistd/pipe.c (100%) rename {libc => lib/libc}/musl/src/unistd/pipe2.c (100%) rename {libc => lib/libc}/musl/src/unistd/posix_close.c (100%) rename {libc => lib/libc}/musl/src/unistd/pread.c (100%) rename {libc => lib/libc}/musl/src/unistd/preadv.c (100%) rename {libc => lib/libc}/musl/src/unistd/pwrite.c (100%) rename {libc => lib/libc}/musl/src/unistd/pwritev.c (100%) rename {libc => lib/libc}/musl/src/unistd/read.c (100%) rename {libc => lib/libc}/musl/src/unistd/readlink.c (100%) rename {libc => lib/libc}/musl/src/unistd/readlinkat.c (100%) rename {libc => lib/libc}/musl/src/unistd/readv.c (100%) rename {libc => lib/libc}/musl/src/unistd/renameat.c (100%) rename {libc => lib/libc}/musl/src/unistd/rmdir.c (100%) rename {libc => lib/libc}/musl/src/unistd/setegid.c (100%) rename {libc => lib/libc}/musl/src/unistd/seteuid.c (100%) rename {libc => lib/libc}/musl/src/unistd/setgid.c (100%) rename {libc => lib/libc}/musl/src/unistd/setpgid.c (100%) rename {libc => lib/libc}/musl/src/unistd/setpgrp.c (100%) rename {libc => lib/libc}/musl/src/unistd/setregid.c (100%) rename {libc => lib/libc}/musl/src/unistd/setresgid.c (100%) rename {libc => lib/libc}/musl/src/unistd/setresuid.c (100%) rename {libc => lib/libc}/musl/src/unistd/setreuid.c (100%) rename {libc => lib/libc}/musl/src/unistd/setsid.c (100%) rename {libc => lib/libc}/musl/src/unistd/setuid.c (100%) rename {libc => lib/libc}/musl/src/unistd/setxid.c (100%) rename {libc => lib/libc}/musl/src/unistd/sh/pipe.s (100%) rename {libc => lib/libc}/musl/src/unistd/sleep.c (100%) rename {libc => lib/libc}/musl/src/unistd/symlink.c (100%) rename {libc => lib/libc}/musl/src/unistd/symlinkat.c (100%) rename {libc => lib/libc}/musl/src/unistd/sync.c (100%) rename {libc => lib/libc}/musl/src/unistd/tcgetpgrp.c (100%) rename {libc => lib/libc}/musl/src/unistd/tcsetpgrp.c (100%) rename {libc => lib/libc}/musl/src/unistd/truncate.c (100%) rename {libc => lib/libc}/musl/src/unistd/ttyname.c (100%) rename {libc => lib/libc}/musl/src/unistd/ttyname_r.c (100%) rename {libc => lib/libc}/musl/src/unistd/ualarm.c (100%) rename {libc => lib/libc}/musl/src/unistd/unlink.c (100%) rename {libc => lib/libc}/musl/src/unistd/unlinkat.c (100%) rename {libc => lib/libc}/musl/src/unistd/usleep.c (100%) rename {libc => lib/libc}/musl/src/unistd/write.c (100%) rename {libc => lib/libc}/musl/src/unistd/writev.c (100%) rename {libcxx => lib/libcxx}/include/CMakeLists.txt (100%) rename {libcxx => lib/libcxx}/include/__bit_reference (100%) rename {libcxx => lib/libcxx}/include/__bsd_locale_defaults.h (100%) rename {libcxx => lib/libcxx}/include/__bsd_locale_fallbacks.h (100%) rename {libcxx => lib/libcxx}/include/__config (100%) rename {libcxx => lib/libcxx}/include/__config_site.in (100%) rename {libcxx => lib/libcxx}/include/__debug (100%) rename {libcxx => lib/libcxx}/include/__errc (100%) rename {libcxx => lib/libcxx}/include/__functional_03 (100%) rename {libcxx => lib/libcxx}/include/__functional_base (100%) rename {libcxx => lib/libcxx}/include/__functional_base_03 (100%) rename {libcxx => lib/libcxx}/include/__hash_table (100%) rename {libcxx => lib/libcxx}/include/__libcpp_version (100%) rename {libcxx => lib/libcxx}/include/__locale (100%) rename {libcxx => lib/libcxx}/include/__mutex_base (100%) rename {libcxx => lib/libcxx}/include/__node_handle (100%) rename {libcxx => lib/libcxx}/include/__nullptr (100%) rename {libcxx => lib/libcxx}/include/__split_buffer (100%) rename {libcxx => lib/libcxx}/include/__sso_allocator (100%) rename {libcxx => lib/libcxx}/include/__std_stream (100%) rename {libcxx => lib/libcxx}/include/__string (100%) rename {libcxx => lib/libcxx}/include/__threading_support (100%) rename {libcxx => lib/libcxx}/include/__tree (100%) rename {libcxx => lib/libcxx}/include/__tuple (100%) rename {libcxx => lib/libcxx}/include/__undef_macros (100%) rename {libcxx => lib/libcxx}/include/algorithm (100%) rename {libcxx => lib/libcxx}/include/any (100%) rename {libcxx => lib/libcxx}/include/array (100%) rename {libcxx => lib/libcxx}/include/atomic (100%) rename {libcxx => lib/libcxx}/include/bit (100%) rename {libcxx => lib/libcxx}/include/bitset (100%) rename {libcxx => lib/libcxx}/include/cassert (100%) rename {libcxx => lib/libcxx}/include/ccomplex (100%) rename {libcxx => lib/libcxx}/include/cctype (100%) rename {libcxx => lib/libcxx}/include/cerrno (100%) rename {libcxx => lib/libcxx}/include/cfenv (100%) rename {libcxx => lib/libcxx}/include/cfloat (100%) rename {libcxx => lib/libcxx}/include/charconv (100%) rename {libcxx => lib/libcxx}/include/chrono (100%) rename {libcxx => lib/libcxx}/include/cinttypes (100%) rename {libcxx => lib/libcxx}/include/ciso646 (100%) rename {libcxx => lib/libcxx}/include/climits (100%) rename {libcxx => lib/libcxx}/include/clocale (100%) rename {libcxx => lib/libcxx}/include/cmath (100%) rename {libcxx => lib/libcxx}/include/codecvt (100%) rename {libcxx => lib/libcxx}/include/compare (100%) rename {libcxx => lib/libcxx}/include/complex (100%) rename {libcxx => lib/libcxx}/include/complex.h (100%) rename {libcxx => lib/libcxx}/include/condition_variable (100%) rename {libcxx => lib/libcxx}/include/csetjmp (100%) rename {libcxx => lib/libcxx}/include/csignal (100%) rename {libcxx => lib/libcxx}/include/cstdarg (100%) rename {libcxx => lib/libcxx}/include/cstdbool (100%) rename {libcxx => lib/libcxx}/include/cstddef (100%) rename {libcxx => lib/libcxx}/include/cstdint (100%) rename {libcxx => lib/libcxx}/include/cstdio (100%) rename {libcxx => lib/libcxx}/include/cstdlib (100%) rename {libcxx => lib/libcxx}/include/cstring (100%) rename {libcxx => lib/libcxx}/include/ctgmath (100%) rename {libcxx => lib/libcxx}/include/ctime (100%) rename {libcxx => lib/libcxx}/include/ctype.h (100%) rename {libcxx => lib/libcxx}/include/cwchar (100%) rename {libcxx => lib/libcxx}/include/cwctype (100%) rename {libcxx => lib/libcxx}/include/deque (100%) rename {libcxx => lib/libcxx}/include/errno.h (100%) rename {libcxx => lib/libcxx}/include/exception (100%) rename {libcxx => lib/libcxx}/include/experimental/__config (100%) rename {libcxx => lib/libcxx}/include/experimental/__memory (100%) rename {libcxx => lib/libcxx}/include/experimental/algorithm (100%) rename {libcxx => lib/libcxx}/include/experimental/any (100%) rename {libcxx => lib/libcxx}/include/experimental/chrono (100%) rename {libcxx => lib/libcxx}/include/experimental/coroutine (100%) rename {libcxx => lib/libcxx}/include/experimental/deque (100%) rename {libcxx => lib/libcxx}/include/experimental/filesystem (100%) rename {libcxx => lib/libcxx}/include/experimental/forward_list (100%) rename {libcxx => lib/libcxx}/include/experimental/functional (100%) rename {libcxx => lib/libcxx}/include/experimental/iterator (100%) rename {libcxx => lib/libcxx}/include/experimental/list (100%) rename {libcxx => lib/libcxx}/include/experimental/map (100%) rename {libcxx => lib/libcxx}/include/experimental/memory_resource (100%) rename {libcxx => lib/libcxx}/include/experimental/numeric (100%) rename {libcxx => lib/libcxx}/include/experimental/optional (100%) rename {libcxx => lib/libcxx}/include/experimental/propagate_const (100%) rename {libcxx => lib/libcxx}/include/experimental/ratio (100%) rename {libcxx => lib/libcxx}/include/experimental/regex (100%) rename {libcxx => lib/libcxx}/include/experimental/set (100%) rename {libcxx => lib/libcxx}/include/experimental/simd (100%) rename {libcxx => lib/libcxx}/include/experimental/string (100%) rename {libcxx => lib/libcxx}/include/experimental/string_view (100%) rename {libcxx => lib/libcxx}/include/experimental/system_error (100%) rename {libcxx => lib/libcxx}/include/experimental/tuple (100%) rename {libcxx => lib/libcxx}/include/experimental/type_traits (100%) rename {libcxx => lib/libcxx}/include/experimental/unordered_map (100%) rename {libcxx => lib/libcxx}/include/experimental/unordered_set (100%) rename {libcxx => lib/libcxx}/include/experimental/utility (100%) rename {libcxx => lib/libcxx}/include/experimental/vector (100%) rename {libcxx => lib/libcxx}/include/ext/__hash (100%) rename {libcxx => lib/libcxx}/include/ext/hash_map (100%) rename {libcxx => lib/libcxx}/include/ext/hash_set (100%) rename {libcxx => lib/libcxx}/include/filesystem (100%) rename {libcxx => lib/libcxx}/include/float.h (100%) rename {libcxx => lib/libcxx}/include/forward_list (100%) rename {libcxx => lib/libcxx}/include/fstream (100%) rename {libcxx => lib/libcxx}/include/functional (100%) rename {libcxx => lib/libcxx}/include/future (100%) rename {libcxx => lib/libcxx}/include/initializer_list (100%) rename {libcxx => lib/libcxx}/include/inttypes.h (100%) rename {libcxx => lib/libcxx}/include/iomanip (100%) rename {libcxx => lib/libcxx}/include/ios (100%) rename {libcxx => lib/libcxx}/include/iosfwd (100%) rename {libcxx => lib/libcxx}/include/iostream (100%) rename {libcxx => lib/libcxx}/include/istream (100%) rename {libcxx => lib/libcxx}/include/iterator (100%) rename {libcxx => lib/libcxx}/include/limits (100%) rename {libcxx => lib/libcxx}/include/limits.h (100%) rename {libcxx => lib/libcxx}/include/list (100%) rename {libcxx => lib/libcxx}/include/locale (100%) rename {libcxx => lib/libcxx}/include/locale.h (100%) rename {libcxx => lib/libcxx}/include/map (100%) rename {libcxx => lib/libcxx}/include/math.h (100%) rename {libcxx => lib/libcxx}/include/memory (100%) rename {libcxx => lib/libcxx}/include/module.modulemap (100%) rename {libcxx => lib/libcxx}/include/mutex (100%) rename {libcxx => lib/libcxx}/include/new (100%) rename {libcxx => lib/libcxx}/include/numeric (100%) rename {libcxx => lib/libcxx}/include/optional (100%) rename {libcxx => lib/libcxx}/include/ostream (100%) rename {libcxx => lib/libcxx}/include/queue (100%) rename {libcxx => lib/libcxx}/include/random (100%) rename {libcxx => lib/libcxx}/include/ratio (100%) rename {libcxx => lib/libcxx}/include/regex (100%) rename {libcxx => lib/libcxx}/include/scoped_allocator (100%) rename {libcxx => lib/libcxx}/include/set (100%) rename {libcxx => lib/libcxx}/include/setjmp.h (100%) rename {libcxx => lib/libcxx}/include/shared_mutex (100%) rename {libcxx => lib/libcxx}/include/span (100%) rename {libcxx => lib/libcxx}/include/sstream (100%) rename {libcxx => lib/libcxx}/include/stack (100%) rename {libcxx => lib/libcxx}/include/stdbool.h (100%) rename {libcxx => lib/libcxx}/include/stddef.h (100%) rename {libcxx => lib/libcxx}/include/stdexcept (100%) rename {libcxx => lib/libcxx}/include/stdint.h (100%) rename {libcxx => lib/libcxx}/include/stdio.h (100%) rename {libcxx => lib/libcxx}/include/stdlib.h (100%) rename {libcxx => lib/libcxx}/include/streambuf (100%) rename {libcxx => lib/libcxx}/include/string (100%) rename {libcxx => lib/libcxx}/include/string.h (100%) rename {libcxx => lib/libcxx}/include/string_view (100%) rename {libcxx => lib/libcxx}/include/strstream (100%) rename {libcxx => lib/libcxx}/include/support/android/locale_bionic.h (100%) rename {libcxx => lib/libcxx}/include/support/fuchsia/xlocale.h (100%) rename {libcxx => lib/libcxx}/include/support/ibm/limits.h (100%) rename {libcxx => lib/libcxx}/include/support/ibm/locale_mgmt_aix.h (100%) rename {libcxx => lib/libcxx}/include/support/ibm/support.h (100%) rename {libcxx => lib/libcxx}/include/support/ibm/xlocale.h (100%) rename {libcxx => lib/libcxx}/include/support/musl/xlocale.h (100%) rename {libcxx => lib/libcxx}/include/support/newlib/xlocale.h (100%) rename {libcxx => lib/libcxx}/include/support/solaris/floatingpoint.h (100%) rename {libcxx => lib/libcxx}/include/support/solaris/wchar.h (100%) rename {libcxx => lib/libcxx}/include/support/solaris/xlocale.h (100%) rename {libcxx => lib/libcxx}/include/support/win32/limits_msvc_win32.h (100%) rename {libcxx => lib/libcxx}/include/support/win32/locale_win32.h (100%) rename {libcxx => lib/libcxx}/include/support/xlocale/__nop_locale_mgmt.h (100%) rename {libcxx => lib/libcxx}/include/support/xlocale/__posix_l_fallback.h (100%) rename {libcxx => lib/libcxx}/include/support/xlocale/__strtonum_fallback.h (100%) rename {libcxx => lib/libcxx}/include/support/xlocale/xlocale.h (100%) rename {libcxx => lib/libcxx}/include/system_error (100%) rename {libcxx => lib/libcxx}/include/tgmath.h (100%) rename {libcxx => lib/libcxx}/include/thread (100%) rename {libcxx => lib/libcxx}/include/tuple (100%) rename {libcxx => lib/libcxx}/include/type_traits (100%) rename {libcxx => lib/libcxx}/include/typeindex (100%) rename {libcxx => lib/libcxx}/include/typeinfo (100%) rename {libcxx => lib/libcxx}/include/unordered_map (100%) rename {libcxx => lib/libcxx}/include/unordered_set (100%) rename {libcxx => lib/libcxx}/include/utility (100%) rename {libcxx => lib/libcxx}/include/valarray (100%) rename {libcxx => lib/libcxx}/include/variant (100%) rename {libcxx => lib/libcxx}/include/vector (100%) rename {libcxx => lib/libcxx}/include/version (100%) rename {libcxx => lib/libcxx}/include/wchar.h (100%) rename {libcxx => lib/libcxx}/include/wctype.h (100%) rename {libunwind => lib/libunwind}/include/__libunwind_config.h (100%) rename {libunwind => lib/libunwind}/include/libunwind.h (100%) rename {libunwind => lib/libunwind}/include/mach-o/compact_unwind_encoding.h (100%) rename {libunwind => lib/libunwind}/include/unwind.h (100%) rename {libunwind => lib/libunwind}/src/AddressSpace.hpp (100%) rename {libunwind => lib/libunwind}/src/CompactUnwinder.hpp (100%) rename {libunwind => lib/libunwind}/src/DwarfInstructions.hpp (100%) rename {libunwind => lib/libunwind}/src/DwarfParser.hpp (100%) rename {libunwind => lib/libunwind}/src/EHHeaderParser.hpp (100%) rename {libunwind => lib/libunwind}/src/RWMutex.hpp (100%) rename {libunwind => lib/libunwind}/src/Registers.hpp (100%) rename {libunwind => lib/libunwind}/src/Unwind-EHABI.cpp (100%) rename {libunwind => lib/libunwind}/src/Unwind-EHABI.h (100%) rename {libunwind => lib/libunwind}/src/Unwind-seh.cpp (100%) rename {libunwind => lib/libunwind}/src/Unwind-sjlj.c (100%) rename {libunwind => lib/libunwind}/src/UnwindCursor.hpp (100%) rename {libunwind => lib/libunwind}/src/UnwindLevel1-gcc-ext.c (100%) rename {libunwind => lib/libunwind}/src/UnwindLevel1.c (100%) rename {libunwind => lib/libunwind}/src/UnwindRegistersRestore.S (100%) rename {libunwind => lib/libunwind}/src/UnwindRegistersSave.S (100%) rename {libunwind => lib/libunwind}/src/Unwind_AppleExtras.cpp (100%) rename {libunwind => lib/libunwind}/src/assembly.h (100%) rename {libunwind => lib/libunwind}/src/config.h (100%) rename {libunwind => lib/libunwind}/src/dwarf2.h (100%) rename {libunwind => lib/libunwind}/src/libunwind.cpp (100%) rename {libunwind => lib/libunwind}/src/libunwind_ext.h (100%) create mode 100644 std/os/windows/status.zig diff --git a/build.zig b/build.zig index 929f21c8df..ed9856a437 100644 --- a/build.zig +++ b/build.zig @@ -83,24 +83,9 @@ pub fn build(b: *Builder) !void { } b.installDirectory(InstallDirectoryOptions{ - .source_dir = "c_headers", + .source_dir = "lib", .install_dir = .Lib, - .install_subdir = "zig" ++ fs.path.sep_str ++ "include", - }); - b.installDirectory(InstallDirectoryOptions{ - .source_dir = "libc", - .install_dir = .Lib, - .install_subdir = "zig" ++ fs.path.sep_str ++ "libc", - }); - b.installDirectory(InstallDirectoryOptions{ - .source_dir = "libcxx", - .install_dir = .Lib, - .install_subdir = "zig" ++ fs.path.sep_str ++ "libcxx", - }); - b.installDirectory(InstallDirectoryOptions{ - .source_dir = "libunwind", - .install_dir = .Lib, - .install_subdir = "zig" ++ fs.path.sep_str ++ "libunwind", + .install_subdir = "zig", }); b.installDirectory(InstallDirectoryOptions{ .source_dir = "std", diff --git a/c_headers/__clang_cuda_builtin_vars.h b/lib/include/__clang_cuda_builtin_vars.h similarity index 100% rename from c_headers/__clang_cuda_builtin_vars.h rename to lib/include/__clang_cuda_builtin_vars.h diff --git a/c_headers/__clang_cuda_cmath.h b/lib/include/__clang_cuda_cmath.h similarity index 100% rename from c_headers/__clang_cuda_cmath.h rename to lib/include/__clang_cuda_cmath.h diff --git a/c_headers/__clang_cuda_complex_builtins.h b/lib/include/__clang_cuda_complex_builtins.h similarity index 100% rename from c_headers/__clang_cuda_complex_builtins.h rename to lib/include/__clang_cuda_complex_builtins.h diff --git a/c_headers/__clang_cuda_device_functions.h b/lib/include/__clang_cuda_device_functions.h similarity index 100% rename from c_headers/__clang_cuda_device_functions.h rename to lib/include/__clang_cuda_device_functions.h diff --git a/c_headers/__clang_cuda_intrinsics.h b/lib/include/__clang_cuda_intrinsics.h similarity index 100% rename from c_headers/__clang_cuda_intrinsics.h rename to lib/include/__clang_cuda_intrinsics.h diff --git a/c_headers/__clang_cuda_libdevice_declares.h b/lib/include/__clang_cuda_libdevice_declares.h similarity index 100% rename from c_headers/__clang_cuda_libdevice_declares.h rename to lib/include/__clang_cuda_libdevice_declares.h diff --git a/c_headers/__clang_cuda_math_forward_declares.h b/lib/include/__clang_cuda_math_forward_declares.h similarity index 100% rename from c_headers/__clang_cuda_math_forward_declares.h rename to lib/include/__clang_cuda_math_forward_declares.h diff --git a/c_headers/__clang_cuda_runtime_wrapper.h b/lib/include/__clang_cuda_runtime_wrapper.h similarity index 100% rename from c_headers/__clang_cuda_runtime_wrapper.h rename to lib/include/__clang_cuda_runtime_wrapper.h diff --git a/c_headers/__stddef_max_align_t.h b/lib/include/__stddef_max_align_t.h similarity index 100% rename from c_headers/__stddef_max_align_t.h rename to lib/include/__stddef_max_align_t.h diff --git a/c_headers/__wmmintrin_aes.h b/lib/include/__wmmintrin_aes.h similarity index 100% rename from c_headers/__wmmintrin_aes.h rename to lib/include/__wmmintrin_aes.h diff --git a/c_headers/__wmmintrin_pclmul.h b/lib/include/__wmmintrin_pclmul.h similarity index 100% rename from c_headers/__wmmintrin_pclmul.h rename to lib/include/__wmmintrin_pclmul.h diff --git a/c_headers/adxintrin.h b/lib/include/adxintrin.h similarity index 100% rename from c_headers/adxintrin.h rename to lib/include/adxintrin.h diff --git a/c_headers/altivec.h b/lib/include/altivec.h similarity index 100% rename from c_headers/altivec.h rename to lib/include/altivec.h diff --git a/c_headers/ammintrin.h b/lib/include/ammintrin.h similarity index 100% rename from c_headers/ammintrin.h rename to lib/include/ammintrin.h diff --git a/c_headers/arm64intr.h b/lib/include/arm64intr.h similarity index 100% rename from c_headers/arm64intr.h rename to lib/include/arm64intr.h diff --git a/c_headers/arm_acle.h b/lib/include/arm_acle.h similarity index 100% rename from c_headers/arm_acle.h rename to lib/include/arm_acle.h diff --git a/c_headers/arm_fp16.h b/lib/include/arm_fp16.h similarity index 100% rename from c_headers/arm_fp16.h rename to lib/include/arm_fp16.h diff --git a/c_headers/arm_neon.h b/lib/include/arm_neon.h similarity index 100% rename from c_headers/arm_neon.h rename to lib/include/arm_neon.h diff --git a/c_headers/armintr.h b/lib/include/armintr.h similarity index 100% rename from c_headers/armintr.h rename to lib/include/armintr.h diff --git a/c_headers/avx2intrin.h b/lib/include/avx2intrin.h similarity index 100% rename from c_headers/avx2intrin.h rename to lib/include/avx2intrin.h diff --git a/c_headers/avx512bitalgintrin.h b/lib/include/avx512bitalgintrin.h similarity index 100% rename from c_headers/avx512bitalgintrin.h rename to lib/include/avx512bitalgintrin.h diff --git a/c_headers/avx512bwintrin.h b/lib/include/avx512bwintrin.h similarity index 100% rename from c_headers/avx512bwintrin.h rename to lib/include/avx512bwintrin.h diff --git a/c_headers/avx512cdintrin.h b/lib/include/avx512cdintrin.h similarity index 100% rename from c_headers/avx512cdintrin.h rename to lib/include/avx512cdintrin.h diff --git a/c_headers/avx512dqintrin.h b/lib/include/avx512dqintrin.h similarity index 100% rename from c_headers/avx512dqintrin.h rename to lib/include/avx512dqintrin.h diff --git a/c_headers/avx512erintrin.h b/lib/include/avx512erintrin.h similarity index 100% rename from c_headers/avx512erintrin.h rename to lib/include/avx512erintrin.h diff --git a/c_headers/avx512fintrin.h b/lib/include/avx512fintrin.h similarity index 100% rename from c_headers/avx512fintrin.h rename to lib/include/avx512fintrin.h diff --git a/c_headers/avx512ifmaintrin.h b/lib/include/avx512ifmaintrin.h similarity index 100% rename from c_headers/avx512ifmaintrin.h rename to lib/include/avx512ifmaintrin.h diff --git a/c_headers/avx512ifmavlintrin.h b/lib/include/avx512ifmavlintrin.h similarity index 100% rename from c_headers/avx512ifmavlintrin.h rename to lib/include/avx512ifmavlintrin.h diff --git a/c_headers/avx512pfintrin.h b/lib/include/avx512pfintrin.h similarity index 100% rename from c_headers/avx512pfintrin.h rename to lib/include/avx512pfintrin.h diff --git a/c_headers/avx512vbmi2intrin.h b/lib/include/avx512vbmi2intrin.h similarity index 100% rename from c_headers/avx512vbmi2intrin.h rename to lib/include/avx512vbmi2intrin.h diff --git a/c_headers/avx512vbmiintrin.h b/lib/include/avx512vbmiintrin.h similarity index 100% rename from c_headers/avx512vbmiintrin.h rename to lib/include/avx512vbmiintrin.h diff --git a/c_headers/avx512vbmivlintrin.h b/lib/include/avx512vbmivlintrin.h similarity index 100% rename from c_headers/avx512vbmivlintrin.h rename to lib/include/avx512vbmivlintrin.h diff --git a/c_headers/avx512vlbitalgintrin.h b/lib/include/avx512vlbitalgintrin.h similarity index 100% rename from c_headers/avx512vlbitalgintrin.h rename to lib/include/avx512vlbitalgintrin.h diff --git a/c_headers/avx512vlbwintrin.h b/lib/include/avx512vlbwintrin.h similarity index 100% rename from c_headers/avx512vlbwintrin.h rename to lib/include/avx512vlbwintrin.h diff --git a/c_headers/avx512vlcdintrin.h b/lib/include/avx512vlcdintrin.h similarity index 100% rename from c_headers/avx512vlcdintrin.h rename to lib/include/avx512vlcdintrin.h diff --git a/c_headers/avx512vldqintrin.h b/lib/include/avx512vldqintrin.h similarity index 100% rename from c_headers/avx512vldqintrin.h rename to lib/include/avx512vldqintrin.h diff --git a/c_headers/avx512vlintrin.h b/lib/include/avx512vlintrin.h similarity index 100% rename from c_headers/avx512vlintrin.h rename to lib/include/avx512vlintrin.h diff --git a/c_headers/avx512vlvbmi2intrin.h b/lib/include/avx512vlvbmi2intrin.h similarity index 100% rename from c_headers/avx512vlvbmi2intrin.h rename to lib/include/avx512vlvbmi2intrin.h diff --git a/c_headers/avx512vlvnniintrin.h b/lib/include/avx512vlvnniintrin.h similarity index 100% rename from c_headers/avx512vlvnniintrin.h rename to lib/include/avx512vlvnniintrin.h diff --git a/c_headers/avx512vnniintrin.h b/lib/include/avx512vnniintrin.h similarity index 100% rename from c_headers/avx512vnniintrin.h rename to lib/include/avx512vnniintrin.h diff --git a/c_headers/avx512vpopcntdqintrin.h b/lib/include/avx512vpopcntdqintrin.h similarity index 100% rename from c_headers/avx512vpopcntdqintrin.h rename to lib/include/avx512vpopcntdqintrin.h diff --git a/c_headers/avx512vpopcntdqvlintrin.h b/lib/include/avx512vpopcntdqvlintrin.h similarity index 100% rename from c_headers/avx512vpopcntdqvlintrin.h rename to lib/include/avx512vpopcntdqvlintrin.h diff --git a/c_headers/avxintrin.h b/lib/include/avxintrin.h similarity index 100% rename from c_headers/avxintrin.h rename to lib/include/avxintrin.h diff --git a/c_headers/bmi2intrin.h b/lib/include/bmi2intrin.h similarity index 100% rename from c_headers/bmi2intrin.h rename to lib/include/bmi2intrin.h diff --git a/c_headers/bmiintrin.h b/lib/include/bmiintrin.h similarity index 100% rename from c_headers/bmiintrin.h rename to lib/include/bmiintrin.h diff --git a/c_headers/cetintrin.h b/lib/include/cetintrin.h similarity index 100% rename from c_headers/cetintrin.h rename to lib/include/cetintrin.h diff --git a/c_headers/cldemoteintrin.h b/lib/include/cldemoteintrin.h similarity index 100% rename from c_headers/cldemoteintrin.h rename to lib/include/cldemoteintrin.h diff --git a/c_headers/clflushoptintrin.h b/lib/include/clflushoptintrin.h similarity index 100% rename from c_headers/clflushoptintrin.h rename to lib/include/clflushoptintrin.h diff --git a/c_headers/clwbintrin.h b/lib/include/clwbintrin.h similarity index 100% rename from c_headers/clwbintrin.h rename to lib/include/clwbintrin.h diff --git a/c_headers/clzerointrin.h b/lib/include/clzerointrin.h similarity index 100% rename from c_headers/clzerointrin.h rename to lib/include/clzerointrin.h diff --git a/c_headers/cpuid.h b/lib/include/cpuid.h similarity index 100% rename from c_headers/cpuid.h rename to lib/include/cpuid.h diff --git a/c_headers/cuda_wrappers/algorithm b/lib/include/cuda_wrappers/algorithm similarity index 100% rename from c_headers/cuda_wrappers/algorithm rename to lib/include/cuda_wrappers/algorithm diff --git a/c_headers/cuda_wrappers/complex b/lib/include/cuda_wrappers/complex similarity index 100% rename from c_headers/cuda_wrappers/complex rename to lib/include/cuda_wrappers/complex diff --git a/c_headers/cuda_wrappers/new b/lib/include/cuda_wrappers/new similarity index 100% rename from c_headers/cuda_wrappers/new rename to lib/include/cuda_wrappers/new diff --git a/c_headers/emmintrin.h b/lib/include/emmintrin.h similarity index 100% rename from c_headers/emmintrin.h rename to lib/include/emmintrin.h diff --git a/c_headers/f16cintrin.h b/lib/include/f16cintrin.h similarity index 100% rename from c_headers/f16cintrin.h rename to lib/include/f16cintrin.h diff --git a/c_headers/float.h b/lib/include/float.h similarity index 100% rename from c_headers/float.h rename to lib/include/float.h diff --git a/c_headers/fma4intrin.h b/lib/include/fma4intrin.h similarity index 100% rename from c_headers/fma4intrin.h rename to lib/include/fma4intrin.h diff --git a/c_headers/fmaintrin.h b/lib/include/fmaintrin.h similarity index 100% rename from c_headers/fmaintrin.h rename to lib/include/fmaintrin.h diff --git a/c_headers/fxsrintrin.h b/lib/include/fxsrintrin.h similarity index 100% rename from c_headers/fxsrintrin.h rename to lib/include/fxsrintrin.h diff --git a/c_headers/gfniintrin.h b/lib/include/gfniintrin.h similarity index 100% rename from c_headers/gfniintrin.h rename to lib/include/gfniintrin.h diff --git a/c_headers/htmintrin.h b/lib/include/htmintrin.h similarity index 100% rename from c_headers/htmintrin.h rename to lib/include/htmintrin.h diff --git a/c_headers/htmxlintrin.h b/lib/include/htmxlintrin.h similarity index 100% rename from c_headers/htmxlintrin.h rename to lib/include/htmxlintrin.h diff --git a/c_headers/ia32intrin.h b/lib/include/ia32intrin.h similarity index 100% rename from c_headers/ia32intrin.h rename to lib/include/ia32intrin.h diff --git a/c_headers/immintrin.h b/lib/include/immintrin.h similarity index 100% rename from c_headers/immintrin.h rename to lib/include/immintrin.h diff --git a/c_headers/intrin.h b/lib/include/intrin.h similarity index 100% rename from c_headers/intrin.h rename to lib/include/intrin.h diff --git a/c_headers/inttypes.h b/lib/include/inttypes.h similarity index 100% rename from c_headers/inttypes.h rename to lib/include/inttypes.h diff --git a/c_headers/invpcidintrin.h b/lib/include/invpcidintrin.h similarity index 100% rename from c_headers/invpcidintrin.h rename to lib/include/invpcidintrin.h diff --git a/c_headers/iso646.h b/lib/include/iso646.h similarity index 100% rename from c_headers/iso646.h rename to lib/include/iso646.h diff --git a/c_headers/limits.h b/lib/include/limits.h similarity index 100% rename from c_headers/limits.h rename to lib/include/limits.h diff --git a/c_headers/lwpintrin.h b/lib/include/lwpintrin.h similarity index 100% rename from c_headers/lwpintrin.h rename to lib/include/lwpintrin.h diff --git a/c_headers/lzcntintrin.h b/lib/include/lzcntintrin.h similarity index 100% rename from c_headers/lzcntintrin.h rename to lib/include/lzcntintrin.h diff --git a/c_headers/mm3dnow.h b/lib/include/mm3dnow.h similarity index 100% rename from c_headers/mm3dnow.h rename to lib/include/mm3dnow.h diff --git a/c_headers/mm_malloc.h b/lib/include/mm_malloc.h similarity index 100% rename from c_headers/mm_malloc.h rename to lib/include/mm_malloc.h diff --git a/c_headers/mmintrin.h b/lib/include/mmintrin.h similarity index 100% rename from c_headers/mmintrin.h rename to lib/include/mmintrin.h diff --git a/c_headers/module.modulemap b/lib/include/module.modulemap similarity index 100% rename from c_headers/module.modulemap rename to lib/include/module.modulemap diff --git a/c_headers/movdirintrin.h b/lib/include/movdirintrin.h similarity index 100% rename from c_headers/movdirintrin.h rename to lib/include/movdirintrin.h diff --git a/c_headers/msa.h b/lib/include/msa.h similarity index 100% rename from c_headers/msa.h rename to lib/include/msa.h diff --git a/c_headers/mwaitxintrin.h b/lib/include/mwaitxintrin.h similarity index 100% rename from c_headers/mwaitxintrin.h rename to lib/include/mwaitxintrin.h diff --git a/c_headers/nmmintrin.h b/lib/include/nmmintrin.h similarity index 100% rename from c_headers/nmmintrin.h rename to lib/include/nmmintrin.h diff --git a/c_headers/opencl-c.h b/lib/include/opencl-c.h similarity index 100% rename from c_headers/opencl-c.h rename to lib/include/opencl-c.h diff --git a/c_headers/pconfigintrin.h b/lib/include/pconfigintrin.h similarity index 100% rename from c_headers/pconfigintrin.h rename to lib/include/pconfigintrin.h diff --git a/c_headers/pkuintrin.h b/lib/include/pkuintrin.h similarity index 100% rename from c_headers/pkuintrin.h rename to lib/include/pkuintrin.h diff --git a/c_headers/pmmintrin.h b/lib/include/pmmintrin.h similarity index 100% rename from c_headers/pmmintrin.h rename to lib/include/pmmintrin.h diff --git a/c_headers/popcntintrin.h b/lib/include/popcntintrin.h similarity index 100% rename from c_headers/popcntintrin.h rename to lib/include/popcntintrin.h diff --git a/c_headers/prfchwintrin.h b/lib/include/prfchwintrin.h similarity index 100% rename from c_headers/prfchwintrin.h rename to lib/include/prfchwintrin.h diff --git a/c_headers/ptwriteintrin.h b/lib/include/ptwriteintrin.h similarity index 100% rename from c_headers/ptwriteintrin.h rename to lib/include/ptwriteintrin.h diff --git a/c_headers/rdseedintrin.h b/lib/include/rdseedintrin.h similarity index 100% rename from c_headers/rdseedintrin.h rename to lib/include/rdseedintrin.h diff --git a/c_headers/rtmintrin.h b/lib/include/rtmintrin.h similarity index 100% rename from c_headers/rtmintrin.h rename to lib/include/rtmintrin.h diff --git a/c_headers/s390intrin.h b/lib/include/s390intrin.h similarity index 100% rename from c_headers/s390intrin.h rename to lib/include/s390intrin.h diff --git a/c_headers/sgxintrin.h b/lib/include/sgxintrin.h similarity index 100% rename from c_headers/sgxintrin.h rename to lib/include/sgxintrin.h diff --git a/c_headers/shaintrin.h b/lib/include/shaintrin.h similarity index 100% rename from c_headers/shaintrin.h rename to lib/include/shaintrin.h diff --git a/c_headers/smmintrin.h b/lib/include/smmintrin.h similarity index 100% rename from c_headers/smmintrin.h rename to lib/include/smmintrin.h diff --git a/c_headers/stdalign.h b/lib/include/stdalign.h similarity index 100% rename from c_headers/stdalign.h rename to lib/include/stdalign.h diff --git a/c_headers/stdarg.h b/lib/include/stdarg.h similarity index 100% rename from c_headers/stdarg.h rename to lib/include/stdarg.h diff --git a/c_headers/stdatomic.h b/lib/include/stdatomic.h similarity index 100% rename from c_headers/stdatomic.h rename to lib/include/stdatomic.h diff --git a/c_headers/stdbool.h b/lib/include/stdbool.h similarity index 100% rename from c_headers/stdbool.h rename to lib/include/stdbool.h diff --git a/c_headers/stddef.h b/lib/include/stddef.h similarity index 100% rename from c_headers/stddef.h rename to lib/include/stddef.h diff --git a/c_headers/stdint.h b/lib/include/stdint.h similarity index 100% rename from c_headers/stdint.h rename to lib/include/stdint.h diff --git a/c_headers/stdnoreturn.h b/lib/include/stdnoreturn.h similarity index 100% rename from c_headers/stdnoreturn.h rename to lib/include/stdnoreturn.h diff --git a/c_headers/tbmintrin.h b/lib/include/tbmintrin.h similarity index 100% rename from c_headers/tbmintrin.h rename to lib/include/tbmintrin.h diff --git a/c_headers/tgmath.h b/lib/include/tgmath.h similarity index 100% rename from c_headers/tgmath.h rename to lib/include/tgmath.h diff --git a/c_headers/tmmintrin.h b/lib/include/tmmintrin.h similarity index 100% rename from c_headers/tmmintrin.h rename to lib/include/tmmintrin.h diff --git a/c_headers/unwind.h b/lib/include/unwind.h similarity index 100% rename from c_headers/unwind.h rename to lib/include/unwind.h diff --git a/c_headers/vadefs.h b/lib/include/vadefs.h similarity index 100% rename from c_headers/vadefs.h rename to lib/include/vadefs.h diff --git a/c_headers/vaesintrin.h b/lib/include/vaesintrin.h similarity index 100% rename from c_headers/vaesintrin.h rename to lib/include/vaesintrin.h diff --git a/c_headers/varargs.h b/lib/include/varargs.h similarity index 100% rename from c_headers/varargs.h rename to lib/include/varargs.h diff --git a/c_headers/vecintrin.h b/lib/include/vecintrin.h similarity index 100% rename from c_headers/vecintrin.h rename to lib/include/vecintrin.h diff --git a/c_headers/vpclmulqdqintrin.h b/lib/include/vpclmulqdqintrin.h similarity index 100% rename from c_headers/vpclmulqdqintrin.h rename to lib/include/vpclmulqdqintrin.h diff --git a/c_headers/waitpkgintrin.h b/lib/include/waitpkgintrin.h similarity index 100% rename from c_headers/waitpkgintrin.h rename to lib/include/waitpkgintrin.h diff --git a/c_headers/wbnoinvdintrin.h b/lib/include/wbnoinvdintrin.h similarity index 100% rename from c_headers/wbnoinvdintrin.h rename to lib/include/wbnoinvdintrin.h diff --git a/c_headers/wmmintrin.h b/lib/include/wmmintrin.h similarity index 100% rename from c_headers/wmmintrin.h rename to lib/include/wmmintrin.h diff --git a/c_headers/x86intrin.h b/lib/include/x86intrin.h similarity index 100% rename from c_headers/x86intrin.h rename to lib/include/x86intrin.h diff --git a/c_headers/xmmintrin.h b/lib/include/xmmintrin.h similarity index 100% rename from c_headers/xmmintrin.h rename to lib/include/xmmintrin.h diff --git a/c_headers/xopintrin.h b/lib/include/xopintrin.h similarity index 100% rename from c_headers/xopintrin.h rename to lib/include/xopintrin.h diff --git a/c_headers/xsavecintrin.h b/lib/include/xsavecintrin.h similarity index 100% rename from c_headers/xsavecintrin.h rename to lib/include/xsavecintrin.h diff --git a/c_headers/xsaveintrin.h b/lib/include/xsaveintrin.h similarity index 100% rename from c_headers/xsaveintrin.h rename to lib/include/xsaveintrin.h diff --git a/c_headers/xsaveoptintrin.h b/lib/include/xsaveoptintrin.h similarity index 100% rename from c_headers/xsaveoptintrin.h rename to lib/include/xsaveoptintrin.h diff --git a/c_headers/xsavesintrin.h b/lib/include/xsavesintrin.h similarity index 100% rename from c_headers/xsavesintrin.h rename to lib/include/xsavesintrin.h diff --git a/c_headers/xtestintrin.h b/lib/include/xtestintrin.h similarity index 100% rename from c_headers/xtestintrin.h rename to lib/include/xtestintrin.h diff --git a/libc/glibc/abi.txt b/lib/libc/glibc/abi.txt similarity index 100% rename from libc/glibc/abi.txt rename to lib/libc/glibc/abi.txt diff --git a/libc/glibc/bits/byteswap.h b/lib/libc/glibc/bits/byteswap.h similarity index 100% rename from libc/glibc/bits/byteswap.h rename to lib/libc/glibc/bits/byteswap.h diff --git a/libc/glibc/bits/endian.h b/lib/libc/glibc/bits/endian.h similarity index 100% rename from libc/glibc/bits/endian.h rename to lib/libc/glibc/bits/endian.h diff --git a/libc/glibc/bits/floatn-common.h b/lib/libc/glibc/bits/floatn-common.h similarity index 100% rename from libc/glibc/bits/floatn-common.h rename to lib/libc/glibc/bits/floatn-common.h diff --git a/libc/glibc/bits/libc-header-start.h b/lib/libc/glibc/bits/libc-header-start.h similarity index 100% rename from libc/glibc/bits/libc-header-start.h rename to lib/libc/glibc/bits/libc-header-start.h diff --git a/libc/glibc/bits/long-double.h b/lib/libc/glibc/bits/long-double.h similarity index 100% rename from libc/glibc/bits/long-double.h rename to lib/libc/glibc/bits/long-double.h diff --git a/libc/glibc/bits/pthreadtypes.h b/lib/libc/glibc/bits/pthreadtypes.h similarity index 100% rename from libc/glibc/bits/pthreadtypes.h rename to lib/libc/glibc/bits/pthreadtypes.h diff --git a/libc/glibc/bits/select.h b/lib/libc/glibc/bits/select.h similarity index 100% rename from libc/glibc/bits/select.h rename to lib/libc/glibc/bits/select.h diff --git a/libc/glibc/bits/signum-generic.h b/lib/libc/glibc/bits/signum-generic.h similarity index 100% rename from libc/glibc/bits/signum-generic.h rename to lib/libc/glibc/bits/signum-generic.h diff --git a/libc/glibc/bits/stat.h b/lib/libc/glibc/bits/stat.h similarity index 100% rename from libc/glibc/bits/stat.h rename to lib/libc/glibc/bits/stat.h diff --git a/libc/glibc/bits/stdint-intn.h b/lib/libc/glibc/bits/stdint-intn.h similarity index 100% rename from libc/glibc/bits/stdint-intn.h rename to lib/libc/glibc/bits/stdint-intn.h diff --git a/libc/glibc/bits/stdlib-bsearch.h b/lib/libc/glibc/bits/stdlib-bsearch.h similarity index 100% rename from libc/glibc/bits/stdlib-bsearch.h rename to lib/libc/glibc/bits/stdlib-bsearch.h diff --git a/libc/glibc/bits/time64.h b/lib/libc/glibc/bits/time64.h similarity index 100% rename from libc/glibc/bits/time64.h rename to lib/libc/glibc/bits/time64.h diff --git a/libc/glibc/bits/timesize.h b/lib/libc/glibc/bits/timesize.h similarity index 100% rename from libc/glibc/bits/timesize.h rename to lib/libc/glibc/bits/timesize.h diff --git a/libc/glibc/bits/types/__sigset_t.h b/lib/libc/glibc/bits/types/__sigset_t.h similarity index 100% rename from libc/glibc/bits/types/__sigset_t.h rename to lib/libc/glibc/bits/types/__sigset_t.h diff --git a/libc/glibc/bits/types/struct_sched_param.h b/lib/libc/glibc/bits/types/struct_sched_param.h similarity index 100% rename from libc/glibc/bits/types/struct_sched_param.h rename to lib/libc/glibc/bits/types/struct_sched_param.h diff --git a/libc/glibc/bits/typesizes.h b/lib/libc/glibc/bits/typesizes.h similarity index 100% rename from libc/glibc/bits/typesizes.h rename to lib/libc/glibc/bits/typesizes.h diff --git a/libc/glibc/bits/uintn-identity.h b/lib/libc/glibc/bits/uintn-identity.h similarity index 100% rename from libc/glibc/bits/uintn-identity.h rename to lib/libc/glibc/bits/uintn-identity.h diff --git a/libc/glibc/bits/waitflags.h b/lib/libc/glibc/bits/waitflags.h similarity index 100% rename from libc/glibc/bits/waitflags.h rename to lib/libc/glibc/bits/waitflags.h diff --git a/libc/glibc/bits/waitstatus.h b/lib/libc/glibc/bits/waitstatus.h similarity index 100% rename from libc/glibc/bits/waitstatus.h rename to lib/libc/glibc/bits/waitstatus.h diff --git a/libc/glibc/csu/abi-note.S b/lib/libc/glibc/csu/abi-note.S similarity index 100% rename from libc/glibc/csu/abi-note.S rename to lib/libc/glibc/csu/abi-note.S diff --git a/libc/glibc/csu/abi-tag.h b/lib/libc/glibc/csu/abi-tag.h similarity index 100% rename from libc/glibc/csu/abi-tag.h rename to lib/libc/glibc/csu/abi-tag.h diff --git a/libc/glibc/csu/elf-init.c b/lib/libc/glibc/csu/elf-init.c similarity index 100% rename from libc/glibc/csu/elf-init.c rename to lib/libc/glibc/csu/elf-init.c diff --git a/libc/glibc/debug/stack_chk_fail_local.c b/lib/libc/glibc/debug/stack_chk_fail_local.c similarity index 100% rename from libc/glibc/debug/stack_chk_fail_local.c rename to lib/libc/glibc/debug/stack_chk_fail_local.c diff --git a/libc/glibc/elf/elf.h b/lib/libc/glibc/elf/elf.h similarity index 100% rename from libc/glibc/elf/elf.h rename to lib/libc/glibc/elf/elf.h diff --git a/libc/glibc/fns.txt b/lib/libc/glibc/fns.txt similarity index 100% rename from libc/glibc/fns.txt rename to lib/libc/glibc/fns.txt diff --git a/libc/glibc/include/alloca.h b/lib/libc/glibc/include/alloca.h similarity index 100% rename from libc/glibc/include/alloca.h rename to lib/libc/glibc/include/alloca.h diff --git a/libc/glibc/include/bits/cpu-set.h b/lib/libc/glibc/include/bits/cpu-set.h similarity index 100% rename from libc/glibc/include/bits/cpu-set.h rename to lib/libc/glibc/include/bits/cpu-set.h diff --git a/libc/glibc/include/bits/statx.h b/lib/libc/glibc/include/bits/statx.h similarity index 100% rename from libc/glibc/include/bits/statx.h rename to lib/libc/glibc/include/bits/statx.h diff --git a/libc/glibc/include/bits/stdlib-float.h b/lib/libc/glibc/include/bits/stdlib-float.h similarity index 100% rename from libc/glibc/include/bits/stdlib-float.h rename to lib/libc/glibc/include/bits/stdlib-float.h diff --git a/libc/glibc/include/bits/types.h b/lib/libc/glibc/include/bits/types.h similarity index 100% rename from libc/glibc/include/bits/types.h rename to lib/libc/glibc/include/bits/types.h diff --git a/libc/glibc/include/bits/types/__locale_t.h b/lib/libc/glibc/include/bits/types/__locale_t.h similarity index 100% rename from libc/glibc/include/bits/types/__locale_t.h rename to lib/libc/glibc/include/bits/types/__locale_t.h diff --git a/libc/glibc/include/bits/types/clock_t.h b/lib/libc/glibc/include/bits/types/clock_t.h similarity index 100% rename from libc/glibc/include/bits/types/clock_t.h rename to lib/libc/glibc/include/bits/types/clock_t.h diff --git a/libc/glibc/include/bits/types/clockid_t.h b/lib/libc/glibc/include/bits/types/clockid_t.h similarity index 100% rename from libc/glibc/include/bits/types/clockid_t.h rename to lib/libc/glibc/include/bits/types/clockid_t.h diff --git a/libc/glibc/include/bits/types/locale_t.h b/lib/libc/glibc/include/bits/types/locale_t.h similarity index 100% rename from libc/glibc/include/bits/types/locale_t.h rename to lib/libc/glibc/include/bits/types/locale_t.h diff --git a/libc/glibc/include/bits/types/sig_atomic_t.h b/lib/libc/glibc/include/bits/types/sig_atomic_t.h similarity index 100% rename from libc/glibc/include/bits/types/sig_atomic_t.h rename to lib/libc/glibc/include/bits/types/sig_atomic_t.h diff --git a/libc/glibc/include/bits/types/sigset_t.h b/lib/libc/glibc/include/bits/types/sigset_t.h similarity index 100% rename from libc/glibc/include/bits/types/sigset_t.h rename to lib/libc/glibc/include/bits/types/sigset_t.h diff --git a/libc/glibc/include/bits/types/struct_itimerspec.h b/lib/libc/glibc/include/bits/types/struct_itimerspec.h similarity index 100% rename from libc/glibc/include/bits/types/struct_itimerspec.h rename to lib/libc/glibc/include/bits/types/struct_itimerspec.h diff --git a/libc/glibc/include/bits/types/struct_timespec.h b/lib/libc/glibc/include/bits/types/struct_timespec.h similarity index 100% rename from libc/glibc/include/bits/types/struct_timespec.h rename to lib/libc/glibc/include/bits/types/struct_timespec.h diff --git a/libc/glibc/include/bits/types/struct_timeval.h b/lib/libc/glibc/include/bits/types/struct_timeval.h similarity index 100% rename from libc/glibc/include/bits/types/struct_timeval.h rename to lib/libc/glibc/include/bits/types/struct_timeval.h diff --git a/libc/glibc/include/bits/types/struct_tm.h b/lib/libc/glibc/include/bits/types/struct_tm.h similarity index 100% rename from libc/glibc/include/bits/types/struct_tm.h rename to lib/libc/glibc/include/bits/types/struct_tm.h diff --git a/libc/glibc/include/bits/types/time_t.h b/lib/libc/glibc/include/bits/types/time_t.h similarity index 100% rename from libc/glibc/include/bits/types/time_t.h rename to lib/libc/glibc/include/bits/types/time_t.h diff --git a/libc/glibc/include/bits/types/timer_t.h b/lib/libc/glibc/include/bits/types/timer_t.h similarity index 100% rename from libc/glibc/include/bits/types/timer_t.h rename to lib/libc/glibc/include/bits/types/timer_t.h diff --git a/libc/glibc/include/config.h b/lib/libc/glibc/include/config.h similarity index 100% rename from libc/glibc/include/config.h rename to lib/libc/glibc/include/config.h diff --git a/libc/glibc/include/dso_handle.h b/lib/libc/glibc/include/dso_handle.h similarity index 100% rename from libc/glibc/include/dso_handle.h rename to lib/libc/glibc/include/dso_handle.h diff --git a/libc/glibc/include/elf.h b/lib/libc/glibc/include/elf.h similarity index 100% rename from libc/glibc/include/elf.h rename to lib/libc/glibc/include/elf.h diff --git a/libc/glibc/include/endian.h b/lib/libc/glibc/include/endian.h similarity index 100% rename from libc/glibc/include/endian.h rename to lib/libc/glibc/include/endian.h diff --git a/libc/glibc/include/features.h b/lib/libc/glibc/include/features.h similarity index 100% rename from libc/glibc/include/features.h rename to lib/libc/glibc/include/features.h diff --git a/libc/glibc/include/gnu/stubs.h b/lib/libc/glibc/include/gnu/stubs.h similarity index 100% rename from libc/glibc/include/gnu/stubs.h rename to lib/libc/glibc/include/gnu/stubs.h diff --git a/libc/glibc/include/libc-modules.h b/lib/libc/glibc/include/libc-modules.h similarity index 100% rename from libc/glibc/include/libc-modules.h rename to lib/libc/glibc/include/libc-modules.h diff --git a/libc/glibc/include/libc-pointer-arith.h b/lib/libc/glibc/include/libc-pointer-arith.h similarity index 100% rename from libc/glibc/include/libc-pointer-arith.h rename to lib/libc/glibc/include/libc-pointer-arith.h diff --git a/libc/glibc/include/libc-symbols.h b/lib/libc/glibc/include/libc-symbols.h similarity index 100% rename from libc/glibc/include/libc-symbols.h rename to lib/libc/glibc/include/libc-symbols.h diff --git a/libc/glibc/include/pthread.h b/lib/libc/glibc/include/pthread.h similarity index 100% rename from libc/glibc/include/pthread.h rename to lib/libc/glibc/include/pthread.h diff --git a/libc/glibc/include/signal.h b/lib/libc/glibc/include/signal.h similarity index 100% rename from libc/glibc/include/signal.h rename to lib/libc/glibc/include/signal.h diff --git a/libc/glibc/include/stap-probe.h b/lib/libc/glibc/include/stap-probe.h similarity index 100% rename from libc/glibc/include/stap-probe.h rename to lib/libc/glibc/include/stap-probe.h diff --git a/libc/glibc/include/stdc-predef.h b/lib/libc/glibc/include/stdc-predef.h similarity index 100% rename from libc/glibc/include/stdc-predef.h rename to lib/libc/glibc/include/stdc-predef.h diff --git a/libc/glibc/include/stdlib.h b/lib/libc/glibc/include/stdlib.h similarity index 100% rename from libc/glibc/include/stdlib.h rename to lib/libc/glibc/include/stdlib.h diff --git a/libc/glibc/include/sys/cdefs.h b/lib/libc/glibc/include/sys/cdefs.h similarity index 100% rename from libc/glibc/include/sys/cdefs.h rename to lib/libc/glibc/include/sys/cdefs.h diff --git a/libc/glibc/include/sys/select.h b/lib/libc/glibc/include/sys/select.h similarity index 100% rename from libc/glibc/include/sys/select.h rename to lib/libc/glibc/include/sys/select.h diff --git a/libc/glibc/include/sys/signal.h b/lib/libc/glibc/include/sys/signal.h similarity index 100% rename from libc/glibc/include/sys/signal.h rename to lib/libc/glibc/include/sys/signal.h diff --git a/libc/glibc/include/sys/stat.h b/lib/libc/glibc/include/sys/stat.h similarity index 100% rename from libc/glibc/include/sys/stat.h rename to lib/libc/glibc/include/sys/stat.h diff --git a/libc/glibc/include/sys/types.h b/lib/libc/glibc/include/sys/types.h similarity index 100% rename from libc/glibc/include/sys/types.h rename to lib/libc/glibc/include/sys/types.h diff --git a/libc/glibc/include/syscall.h b/lib/libc/glibc/include/syscall.h similarity index 100% rename from libc/glibc/include/syscall.h rename to lib/libc/glibc/include/syscall.h diff --git a/libc/glibc/io/bits/statx.h b/lib/libc/glibc/io/bits/statx.h similarity index 100% rename from libc/glibc/io/bits/statx.h rename to lib/libc/glibc/io/bits/statx.h diff --git a/libc/glibc/io/fstat.c b/lib/libc/glibc/io/fstat.c similarity index 100% rename from libc/glibc/io/fstat.c rename to lib/libc/glibc/io/fstat.c diff --git a/libc/glibc/io/fstat64.c b/lib/libc/glibc/io/fstat64.c similarity index 100% rename from libc/glibc/io/fstat64.c rename to lib/libc/glibc/io/fstat64.c diff --git a/libc/glibc/io/fstatat.c b/lib/libc/glibc/io/fstatat.c similarity index 100% rename from libc/glibc/io/fstatat.c rename to lib/libc/glibc/io/fstatat.c diff --git a/libc/glibc/io/fstatat64.c b/lib/libc/glibc/io/fstatat64.c similarity index 100% rename from libc/glibc/io/fstatat64.c rename to lib/libc/glibc/io/fstatat64.c diff --git a/libc/glibc/io/lstat.c b/lib/libc/glibc/io/lstat.c similarity index 100% rename from libc/glibc/io/lstat.c rename to lib/libc/glibc/io/lstat.c diff --git a/libc/glibc/io/lstat64.c b/lib/libc/glibc/io/lstat64.c similarity index 100% rename from libc/glibc/io/lstat64.c rename to lib/libc/glibc/io/lstat64.c diff --git a/libc/glibc/io/mknod.c b/lib/libc/glibc/io/mknod.c similarity index 100% rename from libc/glibc/io/mknod.c rename to lib/libc/glibc/io/mknod.c diff --git a/libc/glibc/io/mknodat.c b/lib/libc/glibc/io/mknodat.c similarity index 100% rename from libc/glibc/io/mknodat.c rename to lib/libc/glibc/io/mknodat.c diff --git a/libc/glibc/io/stat.c b/lib/libc/glibc/io/stat.c similarity index 100% rename from libc/glibc/io/stat.c rename to lib/libc/glibc/io/stat.c diff --git a/libc/glibc/io/stat64.c b/lib/libc/glibc/io/stat64.c similarity index 100% rename from libc/glibc/io/stat64.c rename to lib/libc/glibc/io/stat64.c diff --git a/libc/glibc/io/sys/stat.h b/lib/libc/glibc/io/sys/stat.h similarity index 100% rename from libc/glibc/io/sys/stat.h rename to lib/libc/glibc/io/sys/stat.h diff --git a/libc/glibc/locale/bits/types/__locale_t.h b/lib/libc/glibc/locale/bits/types/__locale_t.h similarity index 100% rename from libc/glibc/locale/bits/types/__locale_t.h rename to lib/libc/glibc/locale/bits/types/__locale_t.h diff --git a/libc/glibc/locale/bits/types/locale_t.h b/lib/libc/glibc/locale/bits/types/locale_t.h similarity index 100% rename from libc/glibc/locale/bits/types/locale_t.h rename to lib/libc/glibc/locale/bits/types/locale_t.h diff --git a/libc/glibc/misc/sys/cdefs.h b/lib/libc/glibc/misc/sys/cdefs.h similarity index 100% rename from libc/glibc/misc/sys/cdefs.h rename to lib/libc/glibc/misc/sys/cdefs.h diff --git a/libc/glibc/misc/sys/select.h b/lib/libc/glibc/misc/sys/select.h similarity index 100% rename from libc/glibc/misc/sys/select.h rename to lib/libc/glibc/misc/sys/select.h diff --git a/libc/glibc/misc/syscall.h b/lib/libc/glibc/misc/syscall.h similarity index 100% rename from libc/glibc/misc/syscall.h rename to lib/libc/glibc/misc/syscall.h diff --git a/libc/glibc/nptl/pthread_atfork.c b/lib/libc/glibc/nptl/pthread_atfork.c similarity index 100% rename from libc/glibc/nptl/pthread_atfork.c rename to lib/libc/glibc/nptl/pthread_atfork.c diff --git a/libc/glibc/posix/bits/cpu-set.h b/lib/libc/glibc/posix/bits/cpu-set.h similarity index 100% rename from libc/glibc/posix/bits/cpu-set.h rename to lib/libc/glibc/posix/bits/cpu-set.h diff --git a/libc/glibc/posix/bits/types.h b/lib/libc/glibc/posix/bits/types.h similarity index 100% rename from libc/glibc/posix/bits/types.h rename to lib/libc/glibc/posix/bits/types.h diff --git a/libc/glibc/posix/sys/types.h b/lib/libc/glibc/posix/sys/types.h similarity index 100% rename from libc/glibc/posix/sys/types.h rename to lib/libc/glibc/posix/sys/types.h diff --git a/libc/glibc/signal/bits/types/sig_atomic_t.h b/lib/libc/glibc/signal/bits/types/sig_atomic_t.h similarity index 100% rename from libc/glibc/signal/bits/types/sig_atomic_t.h rename to lib/libc/glibc/signal/bits/types/sig_atomic_t.h diff --git a/libc/glibc/signal/bits/types/sigset_t.h b/lib/libc/glibc/signal/bits/types/sigset_t.h similarity index 100% rename from libc/glibc/signal/bits/types/sigset_t.h rename to lib/libc/glibc/signal/bits/types/sigset_t.h diff --git a/libc/glibc/signal/signal.h b/lib/libc/glibc/signal/signal.h similarity index 100% rename from libc/glibc/signal/signal.h rename to lib/libc/glibc/signal/signal.h diff --git a/libc/glibc/signal/sys/signal.h b/lib/libc/glibc/signal/sys/signal.h similarity index 100% rename from libc/glibc/signal/sys/signal.h rename to lib/libc/glibc/signal/sys/signal.h diff --git a/libc/glibc/stdlib/alloca.h b/lib/libc/glibc/stdlib/alloca.h similarity index 100% rename from libc/glibc/stdlib/alloca.h rename to lib/libc/glibc/stdlib/alloca.h diff --git a/libc/glibc/stdlib/at_quick_exit.c b/lib/libc/glibc/stdlib/at_quick_exit.c similarity index 100% rename from libc/glibc/stdlib/at_quick_exit.c rename to lib/libc/glibc/stdlib/at_quick_exit.c diff --git a/libc/glibc/stdlib/atexit.c b/lib/libc/glibc/stdlib/atexit.c similarity index 100% rename from libc/glibc/stdlib/atexit.c rename to lib/libc/glibc/stdlib/atexit.c diff --git a/libc/glibc/stdlib/bits/stdlib-float.h b/lib/libc/glibc/stdlib/bits/stdlib-float.h similarity index 100% rename from libc/glibc/stdlib/bits/stdlib-float.h rename to lib/libc/glibc/stdlib/bits/stdlib-float.h diff --git a/libc/glibc/stdlib/exit.h b/lib/libc/glibc/stdlib/exit.h similarity index 100% rename from libc/glibc/stdlib/exit.h rename to lib/libc/glibc/stdlib/exit.h diff --git a/libc/glibc/stdlib/stdlib.h b/lib/libc/glibc/stdlib/stdlib.h similarity index 100% rename from libc/glibc/stdlib/stdlib.h rename to lib/libc/glibc/stdlib/stdlib.h diff --git a/libc/glibc/string/endian.h b/lib/libc/glibc/string/endian.h similarity index 100% rename from libc/glibc/string/endian.h rename to lib/libc/glibc/string/endian.h diff --git a/libc/glibc/sysdeps/aarch64/bits/endian.h b/lib/libc/glibc/sysdeps/aarch64/bits/endian.h similarity index 100% rename from libc/glibc/sysdeps/aarch64/bits/endian.h rename to lib/libc/glibc/sysdeps/aarch64/bits/endian.h diff --git a/libc/glibc/sysdeps/aarch64/crti.S b/lib/libc/glibc/sysdeps/aarch64/crti.S similarity index 100% rename from libc/glibc/sysdeps/aarch64/crti.S rename to lib/libc/glibc/sysdeps/aarch64/crti.S diff --git a/libc/glibc/sysdeps/aarch64/crtn.S b/lib/libc/glibc/sysdeps/aarch64/crtn.S similarity index 100% rename from libc/glibc/sysdeps/aarch64/crtn.S rename to lib/libc/glibc/sysdeps/aarch64/crtn.S diff --git a/libc/glibc/sysdeps/aarch64/dl-sysdep.h b/lib/libc/glibc/sysdeps/aarch64/dl-sysdep.h similarity index 100% rename from libc/glibc/sysdeps/aarch64/dl-sysdep.h rename to lib/libc/glibc/sysdeps/aarch64/dl-sysdep.h diff --git a/libc/glibc/sysdeps/aarch64/nptl/bits/pthreadtypes-arch.h b/lib/libc/glibc/sysdeps/aarch64/nptl/bits/pthreadtypes-arch.h similarity index 100% rename from libc/glibc/sysdeps/aarch64/nptl/bits/pthreadtypes-arch.h rename to lib/libc/glibc/sysdeps/aarch64/nptl/bits/pthreadtypes-arch.h diff --git a/libc/glibc/sysdeps/aarch64/start.S b/lib/libc/glibc/sysdeps/aarch64/start.S similarity index 100% rename from libc/glibc/sysdeps/aarch64/start.S rename to lib/libc/glibc/sysdeps/aarch64/start.S diff --git a/libc/glibc/sysdeps/aarch64/sysdep.h b/lib/libc/glibc/sysdeps/aarch64/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/aarch64/sysdep.h rename to lib/libc/glibc/sysdeps/aarch64/sysdep.h diff --git a/libc/glibc/sysdeps/alpha/bits/endian.h b/lib/libc/glibc/sysdeps/alpha/bits/endian.h similarity index 100% rename from libc/glibc/sysdeps/alpha/bits/endian.h rename to lib/libc/glibc/sysdeps/alpha/bits/endian.h diff --git a/libc/glibc/sysdeps/alpha/crti.S b/lib/libc/glibc/sysdeps/alpha/crti.S similarity index 100% rename from libc/glibc/sysdeps/alpha/crti.S rename to lib/libc/glibc/sysdeps/alpha/crti.S diff --git a/libc/glibc/sysdeps/alpha/crtn.S b/lib/libc/glibc/sysdeps/alpha/crtn.S similarity index 100% rename from libc/glibc/sysdeps/alpha/crtn.S rename to lib/libc/glibc/sysdeps/alpha/crtn.S diff --git a/libc/glibc/sysdeps/alpha/dl-dtprocnum.h b/lib/libc/glibc/sysdeps/alpha/dl-dtprocnum.h similarity index 100% rename from libc/glibc/sysdeps/alpha/dl-dtprocnum.h rename to lib/libc/glibc/sysdeps/alpha/dl-dtprocnum.h diff --git a/libc/glibc/sysdeps/alpha/dl-sysdep.h b/lib/libc/glibc/sysdeps/alpha/dl-sysdep.h similarity index 100% rename from libc/glibc/sysdeps/alpha/dl-sysdep.h rename to lib/libc/glibc/sysdeps/alpha/dl-sysdep.h diff --git a/libc/glibc/sysdeps/alpha/nptl/bits/pthreadtypes-arch.h b/lib/libc/glibc/sysdeps/alpha/nptl/bits/pthreadtypes-arch.h similarity index 100% rename from libc/glibc/sysdeps/alpha/nptl/bits/pthreadtypes-arch.h rename to lib/libc/glibc/sysdeps/alpha/nptl/bits/pthreadtypes-arch.h diff --git a/libc/glibc/sysdeps/alpha/start.S b/lib/libc/glibc/sysdeps/alpha/start.S similarity index 100% rename from libc/glibc/sysdeps/alpha/start.S rename to lib/libc/glibc/sysdeps/alpha/start.S diff --git a/libc/glibc/sysdeps/arm/bits/endian.h b/lib/libc/glibc/sysdeps/arm/bits/endian.h similarity index 100% rename from libc/glibc/sysdeps/arm/bits/endian.h rename to lib/libc/glibc/sysdeps/arm/bits/endian.h diff --git a/libc/glibc/sysdeps/arm/crti.S b/lib/libc/glibc/sysdeps/arm/crti.S similarity index 100% rename from libc/glibc/sysdeps/arm/crti.S rename to lib/libc/glibc/sysdeps/arm/crti.S diff --git a/libc/glibc/sysdeps/arm/crtn.S b/lib/libc/glibc/sysdeps/arm/crtn.S similarity index 100% rename from libc/glibc/sysdeps/arm/crtn.S rename to lib/libc/glibc/sysdeps/arm/crtn.S diff --git a/libc/glibc/sysdeps/arm/dl-sysdep.h b/lib/libc/glibc/sysdeps/arm/dl-sysdep.h similarity index 100% rename from libc/glibc/sysdeps/arm/dl-sysdep.h rename to lib/libc/glibc/sysdeps/arm/dl-sysdep.h diff --git a/libc/glibc/sysdeps/arm/nptl/bits/pthreadtypes-arch.h b/lib/libc/glibc/sysdeps/arm/nptl/bits/pthreadtypes-arch.h similarity index 100% rename from libc/glibc/sysdeps/arm/nptl/bits/pthreadtypes-arch.h rename to lib/libc/glibc/sysdeps/arm/nptl/bits/pthreadtypes-arch.h diff --git a/libc/glibc/sysdeps/arm/start.S b/lib/libc/glibc/sysdeps/arm/start.S similarity index 100% rename from libc/glibc/sysdeps/arm/start.S rename to lib/libc/glibc/sysdeps/arm/start.S diff --git a/libc/glibc/sysdeps/arm/sysdep.h b/lib/libc/glibc/sysdeps/arm/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/arm/sysdep.h rename to lib/libc/glibc/sysdeps/arm/sysdep.h diff --git a/libc/glibc/sysdeps/generic/dl-dtprocnum.h b/lib/libc/glibc/sysdeps/generic/dl-dtprocnum.h similarity index 100% rename from libc/glibc/sysdeps/generic/dl-dtprocnum.h rename to lib/libc/glibc/sysdeps/generic/dl-dtprocnum.h diff --git a/libc/glibc/sysdeps/generic/dl-sysdep.h b/lib/libc/glibc/sysdeps/generic/dl-sysdep.h similarity index 100% rename from libc/glibc/sysdeps/generic/dl-sysdep.h rename to lib/libc/glibc/sysdeps/generic/dl-sysdep.h diff --git a/libc/glibc/sysdeps/generic/dwarf2.h b/lib/libc/glibc/sysdeps/generic/dwarf2.h similarity index 100% rename from libc/glibc/sysdeps/generic/dwarf2.h rename to lib/libc/glibc/sysdeps/generic/dwarf2.h diff --git a/libc/glibc/sysdeps/generic/libc-lock.h b/lib/libc/glibc/sysdeps/generic/libc-lock.h similarity index 100% rename from libc/glibc/sysdeps/generic/libc-lock.h rename to lib/libc/glibc/sysdeps/generic/libc-lock.h diff --git a/libc/glibc/sysdeps/generic/symbol-hacks.h b/lib/libc/glibc/sysdeps/generic/symbol-hacks.h similarity index 100% rename from libc/glibc/sysdeps/generic/symbol-hacks.h rename to lib/libc/glibc/sysdeps/generic/symbol-hacks.h diff --git a/libc/glibc/sysdeps/generic/sys/syscall.h b/lib/libc/glibc/sysdeps/generic/sys/syscall.h similarity index 100% rename from libc/glibc/sysdeps/generic/sys/syscall.h rename to lib/libc/glibc/sysdeps/generic/sys/syscall.h diff --git a/libc/glibc/sysdeps/generic/sysdep.h b/lib/libc/glibc/sysdeps/generic/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/generic/sysdep.h rename to lib/libc/glibc/sysdeps/generic/sysdep.h diff --git a/libc/glibc/sysdeps/generic/tls.h b/lib/libc/glibc/sysdeps/generic/tls.h similarity index 100% rename from libc/glibc/sysdeps/generic/tls.h rename to lib/libc/glibc/sysdeps/generic/tls.h diff --git a/libc/glibc/sysdeps/hppa/bits/endian.h b/lib/libc/glibc/sysdeps/hppa/bits/endian.h similarity index 100% rename from libc/glibc/sysdeps/hppa/bits/endian.h rename to lib/libc/glibc/sysdeps/hppa/bits/endian.h diff --git a/libc/glibc/sysdeps/hppa/crti.S b/lib/libc/glibc/sysdeps/hppa/crti.S similarity index 100% rename from libc/glibc/sysdeps/hppa/crti.S rename to lib/libc/glibc/sysdeps/hppa/crti.S diff --git a/libc/glibc/sysdeps/hppa/crtn.S b/lib/libc/glibc/sysdeps/hppa/crtn.S similarity index 100% rename from libc/glibc/sysdeps/hppa/crtn.S rename to lib/libc/glibc/sysdeps/hppa/crtn.S diff --git a/libc/glibc/sysdeps/hppa/nptl/bits/pthreadtypes-arch.h b/lib/libc/glibc/sysdeps/hppa/nptl/bits/pthreadtypes-arch.h similarity index 100% rename from libc/glibc/sysdeps/hppa/nptl/bits/pthreadtypes-arch.h rename to lib/libc/glibc/sysdeps/hppa/nptl/bits/pthreadtypes-arch.h diff --git a/libc/glibc/sysdeps/hppa/start.S b/lib/libc/glibc/sysdeps/hppa/start.S similarity index 100% rename from libc/glibc/sysdeps/hppa/start.S rename to lib/libc/glibc/sysdeps/hppa/start.S diff --git a/libc/glibc/sysdeps/hppa/sysdep.h b/lib/libc/glibc/sysdeps/hppa/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/hppa/sysdep.h rename to lib/libc/glibc/sysdeps/hppa/sysdep.h diff --git a/libc/glibc/sysdeps/htl/bits/pthread.h b/lib/libc/glibc/sysdeps/htl/bits/pthread.h similarity index 100% rename from libc/glibc/sysdeps/htl/bits/pthread.h rename to lib/libc/glibc/sysdeps/htl/bits/pthread.h diff --git a/libc/glibc/sysdeps/htl/bits/thread-shared-types.h b/lib/libc/glibc/sysdeps/htl/bits/thread-shared-types.h similarity index 100% rename from libc/glibc/sysdeps/htl/bits/thread-shared-types.h rename to lib/libc/glibc/sysdeps/htl/bits/thread-shared-types.h diff --git a/libc/glibc/sysdeps/htl/libc-lockP.h b/lib/libc/glibc/sysdeps/htl/libc-lockP.h similarity index 100% rename from libc/glibc/sysdeps/htl/libc-lockP.h rename to lib/libc/glibc/sysdeps/htl/libc-lockP.h diff --git a/libc/glibc/sysdeps/htl/pthread.h b/lib/libc/glibc/sysdeps/htl/pthread.h similarity index 100% rename from libc/glibc/sysdeps/htl/pthread.h rename to lib/libc/glibc/sysdeps/htl/pthread.h diff --git a/libc/glibc/sysdeps/i386/crti.S b/lib/libc/glibc/sysdeps/i386/crti.S similarity index 100% rename from libc/glibc/sysdeps/i386/crti.S rename to lib/libc/glibc/sysdeps/i386/crti.S diff --git a/libc/glibc/sysdeps/i386/crtn.S b/lib/libc/glibc/sysdeps/i386/crtn.S similarity index 100% rename from libc/glibc/sysdeps/i386/crtn.S rename to lib/libc/glibc/sysdeps/i386/crtn.S diff --git a/libc/glibc/sysdeps/i386/htl/bits/pthreadtypes-arch.h b/lib/libc/glibc/sysdeps/i386/htl/bits/pthreadtypes-arch.h similarity index 100% rename from libc/glibc/sysdeps/i386/htl/bits/pthreadtypes-arch.h rename to lib/libc/glibc/sysdeps/i386/htl/bits/pthreadtypes-arch.h diff --git a/libc/glibc/sysdeps/i386/start.S b/lib/libc/glibc/sysdeps/i386/start.S similarity index 100% rename from libc/glibc/sysdeps/i386/start.S rename to lib/libc/glibc/sysdeps/i386/start.S diff --git a/libc/glibc/sysdeps/i386/symbol-hacks.h b/lib/libc/glibc/sysdeps/i386/symbol-hacks.h similarity index 100% rename from libc/glibc/sysdeps/i386/symbol-hacks.h rename to lib/libc/glibc/sysdeps/i386/symbol-hacks.h diff --git a/libc/glibc/sysdeps/i386/sysdep.h b/lib/libc/glibc/sysdeps/i386/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/i386/sysdep.h rename to lib/libc/glibc/sysdeps/i386/sysdep.h diff --git a/libc/glibc/sysdeps/ia64/crti.S b/lib/libc/glibc/sysdeps/ia64/crti.S similarity index 100% rename from libc/glibc/sysdeps/ia64/crti.S rename to lib/libc/glibc/sysdeps/ia64/crti.S diff --git a/libc/glibc/sysdeps/ia64/crtn.S b/lib/libc/glibc/sysdeps/ia64/crtn.S similarity index 100% rename from libc/glibc/sysdeps/ia64/crtn.S rename to lib/libc/glibc/sysdeps/ia64/crtn.S diff --git a/libc/glibc/sysdeps/ia64/dl-dtprocnum.h b/lib/libc/glibc/sysdeps/ia64/dl-dtprocnum.h similarity index 100% rename from libc/glibc/sysdeps/ia64/dl-dtprocnum.h rename to lib/libc/glibc/sysdeps/ia64/dl-dtprocnum.h diff --git a/libc/glibc/sysdeps/ia64/dl-sysdep.h b/lib/libc/glibc/sysdeps/ia64/dl-sysdep.h similarity index 100% rename from libc/glibc/sysdeps/ia64/dl-sysdep.h rename to lib/libc/glibc/sysdeps/ia64/dl-sysdep.h diff --git a/libc/glibc/sysdeps/ia64/nptl/bits/pthreadtypes-arch.h b/lib/libc/glibc/sysdeps/ia64/nptl/bits/pthreadtypes-arch.h similarity index 100% rename from libc/glibc/sysdeps/ia64/nptl/bits/pthreadtypes-arch.h rename to lib/libc/glibc/sysdeps/ia64/nptl/bits/pthreadtypes-arch.h diff --git a/libc/glibc/sysdeps/ia64/start.S b/lib/libc/glibc/sysdeps/ia64/start.S similarity index 100% rename from libc/glibc/sysdeps/ia64/start.S rename to lib/libc/glibc/sysdeps/ia64/start.S diff --git a/libc/glibc/sysdeps/ia64/sysdep.h b/lib/libc/glibc/sysdeps/ia64/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/ia64/sysdep.h rename to lib/libc/glibc/sysdeps/ia64/sysdep.h diff --git a/libc/glibc/sysdeps/init_array/crti.S b/lib/libc/glibc/sysdeps/init_array/crti.S similarity index 100% rename from libc/glibc/sysdeps/init_array/crti.S rename to lib/libc/glibc/sysdeps/init_array/crti.S diff --git a/libc/glibc/sysdeps/init_array/crtn.S b/lib/libc/glibc/sysdeps/init_array/crtn.S similarity index 100% rename from libc/glibc/sysdeps/init_array/crtn.S rename to lib/libc/glibc/sysdeps/init_array/crtn.S diff --git a/libc/glibc/sysdeps/m68k/bits/endian.h b/lib/libc/glibc/sysdeps/m68k/bits/endian.h similarity index 100% rename from libc/glibc/sysdeps/m68k/bits/endian.h rename to lib/libc/glibc/sysdeps/m68k/bits/endian.h diff --git a/libc/glibc/sysdeps/m68k/coldfire/sysdep.h b/lib/libc/glibc/sysdeps/m68k/coldfire/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/m68k/coldfire/sysdep.h rename to lib/libc/glibc/sysdeps/m68k/coldfire/sysdep.h diff --git a/libc/glibc/sysdeps/m68k/crti.S b/lib/libc/glibc/sysdeps/m68k/crti.S similarity index 100% rename from libc/glibc/sysdeps/m68k/crti.S rename to lib/libc/glibc/sysdeps/m68k/crti.S diff --git a/libc/glibc/sysdeps/m68k/crtn.S b/lib/libc/glibc/sysdeps/m68k/crtn.S similarity index 100% rename from libc/glibc/sysdeps/m68k/crtn.S rename to lib/libc/glibc/sysdeps/m68k/crtn.S diff --git a/libc/glibc/sysdeps/m68k/m680x0/sysdep.h b/lib/libc/glibc/sysdeps/m68k/m680x0/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/m68k/m680x0/sysdep.h rename to lib/libc/glibc/sysdeps/m68k/m680x0/sysdep.h diff --git a/libc/glibc/sysdeps/m68k/nptl/bits/pthreadtypes-arch.h b/lib/libc/glibc/sysdeps/m68k/nptl/bits/pthreadtypes-arch.h similarity index 100% rename from libc/glibc/sysdeps/m68k/nptl/bits/pthreadtypes-arch.h rename to lib/libc/glibc/sysdeps/m68k/nptl/bits/pthreadtypes-arch.h diff --git a/libc/glibc/sysdeps/m68k/start.S b/lib/libc/glibc/sysdeps/m68k/start.S similarity index 100% rename from libc/glibc/sysdeps/m68k/start.S rename to lib/libc/glibc/sysdeps/m68k/start.S diff --git a/libc/glibc/sysdeps/m68k/symbol-hacks.h b/lib/libc/glibc/sysdeps/m68k/symbol-hacks.h similarity index 100% rename from libc/glibc/sysdeps/m68k/symbol-hacks.h rename to lib/libc/glibc/sysdeps/m68k/symbol-hacks.h diff --git a/libc/glibc/sysdeps/m68k/sysdep.h b/lib/libc/glibc/sysdeps/m68k/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/m68k/sysdep.h rename to lib/libc/glibc/sysdeps/m68k/sysdep.h diff --git a/libc/glibc/sysdeps/mach/hurd/bits/stat.h b/lib/libc/glibc/sysdeps/mach/hurd/bits/stat.h similarity index 100% rename from libc/glibc/sysdeps/mach/hurd/bits/stat.h rename to lib/libc/glibc/sysdeps/mach/hurd/bits/stat.h diff --git a/libc/glibc/sysdeps/mach/hurd/bits/typesizes.h b/lib/libc/glibc/sysdeps/mach/hurd/bits/typesizes.h similarity index 100% rename from libc/glibc/sysdeps/mach/hurd/bits/typesizes.h rename to lib/libc/glibc/sysdeps/mach/hurd/bits/typesizes.h diff --git a/libc/glibc/sysdeps/mach/hurd/dl-sysdep.h b/lib/libc/glibc/sysdeps/mach/hurd/dl-sysdep.h similarity index 100% rename from libc/glibc/sysdeps/mach/hurd/dl-sysdep.h rename to lib/libc/glibc/sysdeps/mach/hurd/dl-sysdep.h diff --git a/libc/glibc/sysdeps/mach/hurd/kernel-features.h b/lib/libc/glibc/sysdeps/mach/hurd/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/mach/hurd/kernel-features.h rename to lib/libc/glibc/sysdeps/mach/hurd/kernel-features.h diff --git a/libc/glibc/sysdeps/mach/i386/sysdep.h b/lib/libc/glibc/sysdeps/mach/i386/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/mach/i386/sysdep.h rename to lib/libc/glibc/sysdeps/mach/i386/sysdep.h diff --git a/libc/glibc/sysdeps/mach/libc-lock.h b/lib/libc/glibc/sysdeps/mach/libc-lock.h similarity index 100% rename from libc/glibc/sysdeps/mach/libc-lock.h rename to lib/libc/glibc/sysdeps/mach/libc-lock.h diff --git a/libc/glibc/sysdeps/mach/sys/syscall.h b/lib/libc/glibc/sysdeps/mach/sys/syscall.h similarity index 100% rename from libc/glibc/sysdeps/mach/sys/syscall.h rename to lib/libc/glibc/sysdeps/mach/sys/syscall.h diff --git a/libc/glibc/sysdeps/mach/sysdep.h b/lib/libc/glibc/sysdeps/mach/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/mach/sysdep.h rename to lib/libc/glibc/sysdeps/mach/sysdep.h diff --git a/libc/glibc/sysdeps/microblaze/bits/endian.h b/lib/libc/glibc/sysdeps/microblaze/bits/endian.h similarity index 100% rename from libc/glibc/sysdeps/microblaze/bits/endian.h rename to lib/libc/glibc/sysdeps/microblaze/bits/endian.h diff --git a/libc/glibc/sysdeps/microblaze/crti.S b/lib/libc/glibc/sysdeps/microblaze/crti.S similarity index 100% rename from libc/glibc/sysdeps/microblaze/crti.S rename to lib/libc/glibc/sysdeps/microblaze/crti.S diff --git a/libc/glibc/sysdeps/microblaze/crtn.S b/lib/libc/glibc/sysdeps/microblaze/crtn.S similarity index 100% rename from libc/glibc/sysdeps/microblaze/crtn.S rename to lib/libc/glibc/sysdeps/microblaze/crtn.S diff --git a/libc/glibc/sysdeps/microblaze/nptl/bits/pthreadtypes-arch.h b/lib/libc/glibc/sysdeps/microblaze/nptl/bits/pthreadtypes-arch.h similarity index 100% rename from libc/glibc/sysdeps/microblaze/nptl/bits/pthreadtypes-arch.h rename to lib/libc/glibc/sysdeps/microblaze/nptl/bits/pthreadtypes-arch.h diff --git a/libc/glibc/sysdeps/microblaze/start.S b/lib/libc/glibc/sysdeps/microblaze/start.S similarity index 100% rename from libc/glibc/sysdeps/microblaze/start.S rename to lib/libc/glibc/sysdeps/microblaze/start.S diff --git a/libc/glibc/sysdeps/microblaze/sysdep.h b/lib/libc/glibc/sysdeps/microblaze/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/microblaze/sysdep.h rename to lib/libc/glibc/sysdeps/microblaze/sysdep.h diff --git a/libc/glibc/sysdeps/mips/bits/endian.h b/lib/libc/glibc/sysdeps/mips/bits/endian.h similarity index 100% rename from libc/glibc/sysdeps/mips/bits/endian.h rename to lib/libc/glibc/sysdeps/mips/bits/endian.h diff --git a/libc/glibc/sysdeps/mips/dl-dtprocnum.h b/lib/libc/glibc/sysdeps/mips/dl-dtprocnum.h similarity index 100% rename from libc/glibc/sysdeps/mips/dl-dtprocnum.h rename to lib/libc/glibc/sysdeps/mips/dl-dtprocnum.h diff --git a/libc/glibc/sysdeps/mips/mips32/crti.S b/lib/libc/glibc/sysdeps/mips/mips32/crti.S similarity index 100% rename from libc/glibc/sysdeps/mips/mips32/crti.S rename to lib/libc/glibc/sysdeps/mips/mips32/crti.S diff --git a/libc/glibc/sysdeps/mips/mips32/crtn.S b/lib/libc/glibc/sysdeps/mips/mips32/crtn.S similarity index 100% rename from libc/glibc/sysdeps/mips/mips32/crtn.S rename to lib/libc/glibc/sysdeps/mips/mips32/crtn.S diff --git a/libc/glibc/sysdeps/mips/mips64/n32/crti.S b/lib/libc/glibc/sysdeps/mips/mips64/n32/crti.S similarity index 100% rename from libc/glibc/sysdeps/mips/mips64/n32/crti.S rename to lib/libc/glibc/sysdeps/mips/mips64/n32/crti.S diff --git a/libc/glibc/sysdeps/mips/mips64/n32/crtn.S b/lib/libc/glibc/sysdeps/mips/mips64/n32/crtn.S similarity index 100% rename from libc/glibc/sysdeps/mips/mips64/n32/crtn.S rename to lib/libc/glibc/sysdeps/mips/mips64/n32/crtn.S diff --git a/libc/glibc/sysdeps/mips/mips64/n64/crti.S b/lib/libc/glibc/sysdeps/mips/mips64/n64/crti.S similarity index 100% rename from libc/glibc/sysdeps/mips/mips64/n64/crti.S rename to lib/libc/glibc/sysdeps/mips/mips64/n64/crti.S diff --git a/libc/glibc/sysdeps/mips/mips64/n64/crtn.S b/lib/libc/glibc/sysdeps/mips/mips64/n64/crtn.S similarity index 100% rename from libc/glibc/sysdeps/mips/mips64/n64/crtn.S rename to lib/libc/glibc/sysdeps/mips/mips64/n64/crtn.S diff --git a/libc/glibc/sysdeps/mips/nptl/bits/pthreadtypes-arch.h b/lib/libc/glibc/sysdeps/mips/nptl/bits/pthreadtypes-arch.h similarity index 100% rename from libc/glibc/sysdeps/mips/nptl/bits/pthreadtypes-arch.h rename to lib/libc/glibc/sysdeps/mips/nptl/bits/pthreadtypes-arch.h diff --git a/libc/glibc/sysdeps/mips/start.S b/lib/libc/glibc/sysdeps/mips/start.S similarity index 100% rename from libc/glibc/sysdeps/mips/start.S rename to lib/libc/glibc/sysdeps/mips/start.S diff --git a/libc/glibc/sysdeps/nptl/bits/pthreadtypes.h b/lib/libc/glibc/sysdeps/nptl/bits/pthreadtypes.h similarity index 100% rename from libc/glibc/sysdeps/nptl/bits/pthreadtypes.h rename to lib/libc/glibc/sysdeps/nptl/bits/pthreadtypes.h diff --git a/libc/glibc/sysdeps/nptl/bits/thread-shared-types.h b/lib/libc/glibc/sysdeps/nptl/bits/thread-shared-types.h similarity index 100% rename from libc/glibc/sysdeps/nptl/bits/thread-shared-types.h rename to lib/libc/glibc/sysdeps/nptl/bits/thread-shared-types.h diff --git a/libc/glibc/sysdeps/nptl/libc-lock.h b/lib/libc/glibc/sysdeps/nptl/libc-lock.h similarity index 100% rename from libc/glibc/sysdeps/nptl/libc-lock.h rename to lib/libc/glibc/sysdeps/nptl/libc-lock.h diff --git a/libc/glibc/sysdeps/nptl/libc-lockP.h b/lib/libc/glibc/sysdeps/nptl/libc-lockP.h similarity index 100% rename from libc/glibc/sysdeps/nptl/libc-lockP.h rename to lib/libc/glibc/sysdeps/nptl/libc-lockP.h diff --git a/libc/glibc/sysdeps/nptl/pthread.h b/lib/libc/glibc/sysdeps/nptl/pthread.h similarity index 100% rename from libc/glibc/sysdeps/nptl/pthread.h rename to lib/libc/glibc/sysdeps/nptl/pthread.h diff --git a/libc/glibc/sysdeps/powerpc/bits/endian.h b/lib/libc/glibc/sysdeps/powerpc/bits/endian.h similarity index 100% rename from libc/glibc/sysdeps/powerpc/bits/endian.h rename to lib/libc/glibc/sysdeps/powerpc/bits/endian.h diff --git a/libc/glibc/sysdeps/powerpc/nptl/bits/pthreadtypes-arch.h b/lib/libc/glibc/sysdeps/powerpc/nptl/bits/pthreadtypes-arch.h similarity index 100% rename from libc/glibc/sysdeps/powerpc/nptl/bits/pthreadtypes-arch.h rename to lib/libc/glibc/sysdeps/powerpc/nptl/bits/pthreadtypes-arch.h diff --git a/libc/glibc/sysdeps/powerpc/powerpc32/crti.S b/lib/libc/glibc/sysdeps/powerpc/powerpc32/crti.S similarity index 100% rename from libc/glibc/sysdeps/powerpc/powerpc32/crti.S rename to lib/libc/glibc/sysdeps/powerpc/powerpc32/crti.S diff --git a/libc/glibc/sysdeps/powerpc/powerpc32/crtn.S b/lib/libc/glibc/sysdeps/powerpc/powerpc32/crtn.S similarity index 100% rename from libc/glibc/sysdeps/powerpc/powerpc32/crtn.S rename to lib/libc/glibc/sysdeps/powerpc/powerpc32/crtn.S diff --git a/libc/glibc/sysdeps/powerpc/powerpc32/dl-dtprocnum.h b/lib/libc/glibc/sysdeps/powerpc/powerpc32/dl-dtprocnum.h similarity index 100% rename from libc/glibc/sysdeps/powerpc/powerpc32/dl-dtprocnum.h rename to lib/libc/glibc/sysdeps/powerpc/powerpc32/dl-dtprocnum.h diff --git a/libc/glibc/sysdeps/powerpc/powerpc32/start.S b/lib/libc/glibc/sysdeps/powerpc/powerpc32/start.S similarity index 100% rename from libc/glibc/sysdeps/powerpc/powerpc32/start.S rename to lib/libc/glibc/sysdeps/powerpc/powerpc32/start.S diff --git a/libc/glibc/sysdeps/powerpc/powerpc32/symbol-hacks.h b/lib/libc/glibc/sysdeps/powerpc/powerpc32/symbol-hacks.h similarity index 100% rename from libc/glibc/sysdeps/powerpc/powerpc32/symbol-hacks.h rename to lib/libc/glibc/sysdeps/powerpc/powerpc32/symbol-hacks.h diff --git a/libc/glibc/sysdeps/powerpc/powerpc32/sysdep.h b/lib/libc/glibc/sysdeps/powerpc/powerpc32/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/powerpc/powerpc32/sysdep.h rename to lib/libc/glibc/sysdeps/powerpc/powerpc32/sysdep.h diff --git a/libc/glibc/sysdeps/powerpc/powerpc64/crti.S b/lib/libc/glibc/sysdeps/powerpc/powerpc64/crti.S similarity index 100% rename from libc/glibc/sysdeps/powerpc/powerpc64/crti.S rename to lib/libc/glibc/sysdeps/powerpc/powerpc64/crti.S diff --git a/libc/glibc/sysdeps/powerpc/powerpc64/crtn.S b/lib/libc/glibc/sysdeps/powerpc/powerpc64/crtn.S similarity index 100% rename from libc/glibc/sysdeps/powerpc/powerpc64/crtn.S rename to lib/libc/glibc/sysdeps/powerpc/powerpc64/crtn.S diff --git a/libc/glibc/sysdeps/powerpc/powerpc64/dl-dtprocnum.h b/lib/libc/glibc/sysdeps/powerpc/powerpc64/dl-dtprocnum.h similarity index 100% rename from libc/glibc/sysdeps/powerpc/powerpc64/dl-dtprocnum.h rename to lib/libc/glibc/sysdeps/powerpc/powerpc64/dl-dtprocnum.h diff --git a/libc/glibc/sysdeps/powerpc/powerpc64/start.S b/lib/libc/glibc/sysdeps/powerpc/powerpc64/start.S similarity index 100% rename from libc/glibc/sysdeps/powerpc/powerpc64/start.S rename to lib/libc/glibc/sysdeps/powerpc/powerpc64/start.S diff --git a/libc/glibc/sysdeps/powerpc/powerpc64/sysdep.h b/lib/libc/glibc/sysdeps/powerpc/powerpc64/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/powerpc/powerpc64/sysdep.h rename to lib/libc/glibc/sysdeps/powerpc/powerpc64/sysdep.h diff --git a/libc/glibc/sysdeps/powerpc/sysdep.h b/lib/libc/glibc/sysdeps/powerpc/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/powerpc/sysdep.h rename to lib/libc/glibc/sysdeps/powerpc/sysdep.h diff --git a/libc/glibc/sysdeps/riscv/bits/endian.h b/lib/libc/glibc/sysdeps/riscv/bits/endian.h similarity index 100% rename from libc/glibc/sysdeps/riscv/bits/endian.h rename to lib/libc/glibc/sysdeps/riscv/bits/endian.h diff --git a/libc/glibc/sysdeps/riscv/nptl/bits/pthreadtypes-arch.h b/lib/libc/glibc/sysdeps/riscv/nptl/bits/pthreadtypes-arch.h similarity index 100% rename from libc/glibc/sysdeps/riscv/nptl/bits/pthreadtypes-arch.h rename to lib/libc/glibc/sysdeps/riscv/nptl/bits/pthreadtypes-arch.h diff --git a/libc/glibc/sysdeps/riscv/start.S b/lib/libc/glibc/sysdeps/riscv/start.S similarity index 100% rename from libc/glibc/sysdeps/riscv/start.S rename to lib/libc/glibc/sysdeps/riscv/start.S diff --git a/libc/glibc/sysdeps/s390/bits/endian.h b/lib/libc/glibc/sysdeps/s390/bits/endian.h similarity index 100% rename from libc/glibc/sysdeps/s390/bits/endian.h rename to lib/libc/glibc/sysdeps/s390/bits/endian.h diff --git a/libc/glibc/sysdeps/s390/nptl/bits/pthreadtypes-arch.h b/lib/libc/glibc/sysdeps/s390/nptl/bits/pthreadtypes-arch.h similarity index 100% rename from libc/glibc/sysdeps/s390/nptl/bits/pthreadtypes-arch.h rename to lib/libc/glibc/sysdeps/s390/nptl/bits/pthreadtypes-arch.h diff --git a/libc/glibc/sysdeps/s390/s390-32/crti.S b/lib/libc/glibc/sysdeps/s390/s390-32/crti.S similarity index 100% rename from libc/glibc/sysdeps/s390/s390-32/crti.S rename to lib/libc/glibc/sysdeps/s390/s390-32/crti.S diff --git a/libc/glibc/sysdeps/s390/s390-32/crtn.S b/lib/libc/glibc/sysdeps/s390/s390-32/crtn.S similarity index 100% rename from libc/glibc/sysdeps/s390/s390-32/crtn.S rename to lib/libc/glibc/sysdeps/s390/s390-32/crtn.S diff --git a/libc/glibc/sysdeps/s390/s390-32/dl-sysdep.h b/lib/libc/glibc/sysdeps/s390/s390-32/dl-sysdep.h similarity index 100% rename from libc/glibc/sysdeps/s390/s390-32/dl-sysdep.h rename to lib/libc/glibc/sysdeps/s390/s390-32/dl-sysdep.h diff --git a/libc/glibc/sysdeps/s390/s390-32/start.S b/lib/libc/glibc/sysdeps/s390/s390-32/start.S similarity index 100% rename from libc/glibc/sysdeps/s390/s390-32/start.S rename to lib/libc/glibc/sysdeps/s390/s390-32/start.S diff --git a/libc/glibc/sysdeps/s390/s390-32/symbol-hacks.h b/lib/libc/glibc/sysdeps/s390/s390-32/symbol-hacks.h similarity index 100% rename from libc/glibc/sysdeps/s390/s390-32/symbol-hacks.h rename to lib/libc/glibc/sysdeps/s390/s390-32/symbol-hacks.h diff --git a/libc/glibc/sysdeps/s390/s390-32/sysdep.h b/lib/libc/glibc/sysdeps/s390/s390-32/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/s390/s390-32/sysdep.h rename to lib/libc/glibc/sysdeps/s390/s390-32/sysdep.h diff --git a/libc/glibc/sysdeps/s390/s390-64/crti.S b/lib/libc/glibc/sysdeps/s390/s390-64/crti.S similarity index 100% rename from libc/glibc/sysdeps/s390/s390-64/crti.S rename to lib/libc/glibc/sysdeps/s390/s390-64/crti.S diff --git a/libc/glibc/sysdeps/s390/s390-64/crtn.S b/lib/libc/glibc/sysdeps/s390/s390-64/crtn.S similarity index 100% rename from libc/glibc/sysdeps/s390/s390-64/crtn.S rename to lib/libc/glibc/sysdeps/s390/s390-64/crtn.S diff --git a/libc/glibc/sysdeps/s390/s390-64/start.S b/lib/libc/glibc/sysdeps/s390/s390-64/start.S similarity index 100% rename from libc/glibc/sysdeps/s390/s390-64/start.S rename to lib/libc/glibc/sysdeps/s390/s390-64/start.S diff --git a/libc/glibc/sysdeps/s390/s390-64/sysdep.h b/lib/libc/glibc/sysdeps/s390/s390-64/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/s390/s390-64/sysdep.h rename to lib/libc/glibc/sysdeps/s390/s390-64/sysdep.h diff --git a/libc/glibc/sysdeps/sh/bits/endian.h b/lib/libc/glibc/sysdeps/sh/bits/endian.h similarity index 100% rename from libc/glibc/sysdeps/sh/bits/endian.h rename to lib/libc/glibc/sysdeps/sh/bits/endian.h diff --git a/libc/glibc/sysdeps/sh/crti.S b/lib/libc/glibc/sysdeps/sh/crti.S similarity index 100% rename from libc/glibc/sysdeps/sh/crti.S rename to lib/libc/glibc/sysdeps/sh/crti.S diff --git a/libc/glibc/sysdeps/sh/crtn.S b/lib/libc/glibc/sysdeps/sh/crtn.S similarity index 100% rename from libc/glibc/sysdeps/sh/crtn.S rename to lib/libc/glibc/sysdeps/sh/crtn.S diff --git a/libc/glibc/sysdeps/sh/nptl/bits/pthreadtypes-arch.h b/lib/libc/glibc/sysdeps/sh/nptl/bits/pthreadtypes-arch.h similarity index 100% rename from libc/glibc/sysdeps/sh/nptl/bits/pthreadtypes-arch.h rename to lib/libc/glibc/sysdeps/sh/nptl/bits/pthreadtypes-arch.h diff --git a/libc/glibc/sysdeps/sh/start.S b/lib/libc/glibc/sysdeps/sh/start.S similarity index 100% rename from libc/glibc/sysdeps/sh/start.S rename to lib/libc/glibc/sysdeps/sh/start.S diff --git a/libc/glibc/sysdeps/sh/sysdep.h b/lib/libc/glibc/sysdeps/sh/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/sh/sysdep.h rename to lib/libc/glibc/sysdeps/sh/sysdep.h diff --git a/libc/glibc/sysdeps/sparc/bits/endian.h b/lib/libc/glibc/sysdeps/sparc/bits/endian.h similarity index 100% rename from libc/glibc/sysdeps/sparc/bits/endian.h rename to lib/libc/glibc/sysdeps/sparc/bits/endian.h diff --git a/libc/glibc/sysdeps/sparc/crti.S b/lib/libc/glibc/sysdeps/sparc/crti.S similarity index 100% rename from libc/glibc/sysdeps/sparc/crti.S rename to lib/libc/glibc/sysdeps/sparc/crti.S diff --git a/libc/glibc/sysdeps/sparc/crtn.S b/lib/libc/glibc/sysdeps/sparc/crtn.S similarity index 100% rename from libc/glibc/sysdeps/sparc/crtn.S rename to lib/libc/glibc/sysdeps/sparc/crtn.S diff --git a/libc/glibc/sysdeps/sparc/dl-dtprocnum.h b/lib/libc/glibc/sysdeps/sparc/dl-dtprocnum.h similarity index 100% rename from libc/glibc/sysdeps/sparc/dl-dtprocnum.h rename to lib/libc/glibc/sysdeps/sparc/dl-dtprocnum.h diff --git a/libc/glibc/sysdeps/sparc/dl-sysdep.h b/lib/libc/glibc/sysdeps/sparc/dl-sysdep.h similarity index 100% rename from libc/glibc/sysdeps/sparc/dl-sysdep.h rename to lib/libc/glibc/sysdeps/sparc/dl-sysdep.h diff --git a/libc/glibc/sysdeps/sparc/nptl/bits/pthreadtypes-arch.h b/lib/libc/glibc/sysdeps/sparc/nptl/bits/pthreadtypes-arch.h similarity index 100% rename from libc/glibc/sysdeps/sparc/nptl/bits/pthreadtypes-arch.h rename to lib/libc/glibc/sysdeps/sparc/nptl/bits/pthreadtypes-arch.h diff --git a/libc/glibc/sysdeps/sparc/sparc32/start.S b/lib/libc/glibc/sysdeps/sparc/sparc32/start.S similarity index 100% rename from libc/glibc/sysdeps/sparc/sparc32/start.S rename to lib/libc/glibc/sysdeps/sparc/sparc32/start.S diff --git a/libc/glibc/sysdeps/sparc/sparc64/start.S b/lib/libc/glibc/sysdeps/sparc/sparc64/start.S similarity index 100% rename from libc/glibc/sysdeps/sparc/sparc64/start.S rename to lib/libc/glibc/sysdeps/sparc/sparc64/start.S diff --git a/libc/glibc/sysdeps/sparc/sysdep.h b/lib/libc/glibc/sysdeps/sparc/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/sparc/sysdep.h rename to lib/libc/glibc/sysdeps/sparc/sysdep.h diff --git a/libc/glibc/sysdeps/unix/alpha/sysdep.h b/lib/libc/glibc/sysdeps/unix/alpha/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/alpha/sysdep.h rename to lib/libc/glibc/sysdeps/unix/alpha/sysdep.h diff --git a/libc/glibc/sysdeps/unix/arm/sysdep.h b/lib/libc/glibc/sysdeps/unix/arm/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/arm/sysdep.h rename to lib/libc/glibc/sysdeps/unix/arm/sysdep.h diff --git a/libc/glibc/sysdeps/unix/i386/sysdep.h b/lib/libc/glibc/sysdeps/unix/i386/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/i386/sysdep.h rename to lib/libc/glibc/sysdeps/unix/i386/sysdep.h diff --git a/libc/glibc/sysdeps/unix/mips/mips32/sysdep.h b/lib/libc/glibc/sysdeps/unix/mips/mips32/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/mips/mips32/sysdep.h rename to lib/libc/glibc/sysdeps/unix/mips/mips32/sysdep.h diff --git a/libc/glibc/sysdeps/unix/mips/mips64/n32/sysdep.h b/lib/libc/glibc/sysdeps/unix/mips/mips64/n32/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/mips/mips64/n32/sysdep.h rename to lib/libc/glibc/sysdeps/unix/mips/mips64/n32/sysdep.h diff --git a/libc/glibc/sysdeps/unix/mips/mips64/n64/sysdep.h b/lib/libc/glibc/sysdeps/unix/mips/mips64/n64/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/mips/mips64/n64/sysdep.h rename to lib/libc/glibc/sysdeps/unix/mips/mips64/n64/sysdep.h diff --git a/libc/glibc/sysdeps/unix/mips/sysdep.h b/lib/libc/glibc/sysdeps/unix/mips/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/mips/sysdep.h rename to lib/libc/glibc/sysdeps/unix/mips/sysdep.h diff --git a/libc/glibc/sysdeps/unix/powerpc/sysdep.h b/lib/libc/glibc/sysdeps/unix/powerpc/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/powerpc/sysdep.h rename to lib/libc/glibc/sysdeps/unix/powerpc/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sh/sysdep.h b/lib/libc/glibc/sysdeps/unix/sh/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sh/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sh/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/aarch64/kernel-features.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/aarch64/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/aarch64/kernel-features.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/aarch64/kernel-features.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/aarch64/sys/elf.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/aarch64/sys/elf.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/aarch64/sys/elf.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/aarch64/sys/elf.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/aarch64/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/aarch64/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/aarch64/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/aarch64/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/alpha/bits/stat.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/alpha/bits/stat.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/alpha/bits/stat.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/alpha/bits/stat.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/alpha/bits/typesizes.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/alpha/bits/typesizes.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/alpha/bits/typesizes.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/alpha/bits/typesizes.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/alpha/kernel-features.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/alpha/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/alpha/kernel-features.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/alpha/kernel-features.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/alpha/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/alpha/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/alpha/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/alpha/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/arm/kernel-features.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/arm/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/arm/kernel-features.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/arm/kernel-features.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/arm/sys/elf.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/arm/sys/elf.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/arm/sys/elf.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/arm/sys/elf.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/arm/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/arm/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/arm/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/arm/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/bits/stat.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/bits/stat.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/bits/stat.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/bits/stat.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/bits/timex.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/bits/timex.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/bits/timex.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/bits/timex.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/dl-sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/dl-sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/dl-sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/dl-sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/generic/bits/stat.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/generic/bits/stat.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/generic/bits/stat.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/generic/bits/stat.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/generic/bits/typesizes.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/generic/bits/typesizes.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/generic/bits/typesizes.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/generic/bits/typesizes.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/generic/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/generic/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/generic/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/generic/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/hppa/kernel-features.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/hppa/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/hppa/kernel-features.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/hppa/kernel-features.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/hppa/pthread.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/hppa/pthread.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/hppa/pthread.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/hppa/pthread.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/hppa/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/hppa/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/hppa/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/hppa/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/i386/dl-sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/i386/dl-sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/i386/dl-sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/i386/dl-sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/i386/kernel-features.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/i386/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/i386/kernel-features.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/i386/kernel-features.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/i386/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/i386/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/i386/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/i386/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/ia64/bits/endian.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/ia64/bits/endian.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/ia64/bits/endian.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/ia64/bits/endian.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/ia64/bits/stat.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/ia64/bits/stat.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/ia64/bits/stat.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/ia64/bits/stat.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/ia64/dl-sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/ia64/dl-sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/ia64/dl-sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/ia64/dl-sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/ia64/kernel-features.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/ia64/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/ia64/kernel-features.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/ia64/kernel-features.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/ia64/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/ia64/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/ia64/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/ia64/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/include/bits/syscall.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/include/bits/syscall.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/include/bits/syscall.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/include/bits/syscall.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/include/sys/timex.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/include/sys/timex.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/include/sys/timex.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/include/sys/timex.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/kernel-features.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/kernel-features.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/kernel-features.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/m68k/bits/stat.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/m68k/bits/stat.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/m68k/bits/stat.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/m68k/bits/stat.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/m68k/kernel-features.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/m68k/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/m68k/kernel-features.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/m68k/kernel-features.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/m68k/m680x0/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/m68k/m680x0/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/m68k/m680x0/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/m68k/m680x0/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/m68k/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/m68k/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/m68k/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/m68k/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/microblaze/bits/stat.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/microblaze/bits/stat.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/microblaze/bits/stat.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/microblaze/bits/stat.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/microblaze/kernel-features.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/microblaze/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/microblaze/kernel-features.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/microblaze/kernel-features.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/microblaze/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/microblaze/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/microblaze/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/microblaze/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/mips/bits/stat.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/mips/bits/stat.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/mips/bits/stat.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/mips/bits/stat.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/mips/kernel-features.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/mips/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/mips/kernel-features.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/mips/kernel-features.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/mips/mips32/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/mips/mips32/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/mips/mips32/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/mips/mips32/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/powerpc/bits/stat.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/powerpc/bits/stat.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/powerpc/bits/stat.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/powerpc/bits/stat.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/powerpc/kernel-features.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/powerpc/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/powerpc/kernel-features.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/powerpc/kernel-features.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/riscv/kernel-features.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/riscv/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/riscv/kernel-features.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/riscv/kernel-features.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/riscv/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/riscv/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/riscv/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/riscv/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/s390/bits/stat.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/s390/bits/stat.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/s390/bits/stat.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/s390/bits/stat.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/s390/bits/typesizes.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/s390/bits/typesizes.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/s390/bits/typesizes.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/s390/bits/typesizes.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/s390/kernel-features.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/s390/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/s390/kernel-features.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/s390/kernel-features.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/s390/sys/elf.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/s390/sys/elf.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/s390/sys/elf.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/s390/sys/elf.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/sh/kernel-features.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/sh/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/sh/kernel-features.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/sh/kernel-features.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/sh/sh4/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/sh/sh4/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/sh/sh4/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/sh/sh4/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/sh/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/sh/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/sh/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/sh/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/sparc/bits/stat.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/sparc/bits/stat.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/sparc/bits/stat.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/sparc/bits/stat.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/sparc/bits/typesizes.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/sparc/bits/typesizes.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/sparc/bits/typesizes.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/sparc/bits/typesizes.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/sparc/kernel-features.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/sparc/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/sparc/kernel-features.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/sparc/kernel-features.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/sparc/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/sparc/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/sparc/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/sparc/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/sys/syscall.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/sys/syscall.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/sys/syscall.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/sys/syscall.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/sys/timex.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/sys/timex.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/sys/timex.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/sys/timex.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/x86/bits/stat.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/x86/bits/stat.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/x86/bits/stat.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/x86/bits/stat.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/x86/bits/typesizes.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/x86/bits/typesizes.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/x86/bits/typesizes.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/x86/bits/typesizes.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/x86/sys/elf.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/x86/sys/elf.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/x86/sys/elf.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/x86/sys/elf.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/x86_64/kernel-features.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/x86_64/kernel-features.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/x86_64/kernel-features.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/x86_64/kernel-features.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/x86_64/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/x86_64/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/x86_64/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/x86_64/sysdep.h diff --git a/libc/glibc/sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h b/lib/libc/glibc/sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h rename to lib/libc/glibc/sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h diff --git a/libc/glibc/sysdeps/unix/x86_64/sysdep.h b/lib/libc/glibc/sysdeps/unix/x86_64/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/unix/x86_64/sysdep.h rename to lib/libc/glibc/sysdeps/unix/x86_64/sysdep.h diff --git a/libc/glibc/sysdeps/wordsize-32/divdi3-symbol-hacks.h b/lib/libc/glibc/sysdeps/wordsize-32/divdi3-symbol-hacks.h similarity index 100% rename from libc/glibc/sysdeps/wordsize-32/divdi3-symbol-hacks.h rename to lib/libc/glibc/sysdeps/wordsize-32/divdi3-symbol-hacks.h diff --git a/libc/glibc/sysdeps/x86/bits/endian.h b/lib/libc/glibc/sysdeps/x86/bits/endian.h similarity index 100% rename from libc/glibc/sysdeps/x86/bits/endian.h rename to lib/libc/glibc/sysdeps/x86/bits/endian.h diff --git a/libc/glibc/sysdeps/x86/bits/select.h b/lib/libc/glibc/sysdeps/x86/bits/select.h similarity index 100% rename from libc/glibc/sysdeps/x86/bits/select.h rename to lib/libc/glibc/sysdeps/x86/bits/select.h diff --git a/libc/glibc/sysdeps/x86/bits/wordsize.h b/lib/libc/glibc/sysdeps/x86/bits/wordsize.h similarity index 100% rename from libc/glibc/sysdeps/x86/bits/wordsize.h rename to lib/libc/glibc/sysdeps/x86/bits/wordsize.h diff --git a/libc/glibc/sysdeps/x86/nptl/bits/pthreadtypes-arch.h b/lib/libc/glibc/sysdeps/x86/nptl/bits/pthreadtypes-arch.h similarity index 100% rename from libc/glibc/sysdeps/x86/nptl/bits/pthreadtypes-arch.h rename to lib/libc/glibc/sysdeps/x86/nptl/bits/pthreadtypes-arch.h diff --git a/libc/glibc/sysdeps/x86/sysdep.h b/lib/libc/glibc/sysdeps/x86/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/x86/sysdep.h rename to lib/libc/glibc/sysdeps/x86/sysdep.h diff --git a/libc/glibc/sysdeps/x86_64/crti.S b/lib/libc/glibc/sysdeps/x86_64/crti.S similarity index 100% rename from libc/glibc/sysdeps/x86_64/crti.S rename to lib/libc/glibc/sysdeps/x86_64/crti.S diff --git a/libc/glibc/sysdeps/x86_64/crtn.S b/lib/libc/glibc/sysdeps/x86_64/crtn.S similarity index 100% rename from libc/glibc/sysdeps/x86_64/crtn.S rename to lib/libc/glibc/sysdeps/x86_64/crtn.S diff --git a/libc/glibc/sysdeps/x86_64/start.S b/lib/libc/glibc/sysdeps/x86_64/start.S similarity index 100% rename from libc/glibc/sysdeps/x86_64/start.S rename to lib/libc/glibc/sysdeps/x86_64/start.S diff --git a/libc/glibc/sysdeps/x86_64/sysdep.h b/lib/libc/glibc/sysdeps/x86_64/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/x86_64/sysdep.h rename to lib/libc/glibc/sysdeps/x86_64/sysdep.h diff --git a/libc/glibc/sysdeps/x86_64/x32/symbol-hacks.h b/lib/libc/glibc/sysdeps/x86_64/x32/symbol-hacks.h similarity index 100% rename from libc/glibc/sysdeps/x86_64/x32/symbol-hacks.h rename to lib/libc/glibc/sysdeps/x86_64/x32/symbol-hacks.h diff --git a/libc/glibc/sysdeps/x86_64/x32/sysdep.h b/lib/libc/glibc/sysdeps/x86_64/x32/sysdep.h similarity index 100% rename from libc/glibc/sysdeps/x86_64/x32/sysdep.h rename to lib/libc/glibc/sysdeps/x86_64/x32/sysdep.h diff --git a/libc/glibc/time/bits/types/clock_t.h b/lib/libc/glibc/time/bits/types/clock_t.h similarity index 100% rename from libc/glibc/time/bits/types/clock_t.h rename to lib/libc/glibc/time/bits/types/clock_t.h diff --git a/libc/glibc/time/bits/types/clockid_t.h b/lib/libc/glibc/time/bits/types/clockid_t.h similarity index 100% rename from libc/glibc/time/bits/types/clockid_t.h rename to lib/libc/glibc/time/bits/types/clockid_t.h diff --git a/libc/glibc/time/bits/types/struct_itimerspec.h b/lib/libc/glibc/time/bits/types/struct_itimerspec.h similarity index 100% rename from libc/glibc/time/bits/types/struct_itimerspec.h rename to lib/libc/glibc/time/bits/types/struct_itimerspec.h diff --git a/libc/glibc/time/bits/types/struct_timespec.h b/lib/libc/glibc/time/bits/types/struct_timespec.h similarity index 100% rename from libc/glibc/time/bits/types/struct_timespec.h rename to lib/libc/glibc/time/bits/types/struct_timespec.h diff --git a/libc/glibc/time/bits/types/struct_timeval.h b/lib/libc/glibc/time/bits/types/struct_timeval.h similarity index 100% rename from libc/glibc/time/bits/types/struct_timeval.h rename to lib/libc/glibc/time/bits/types/struct_timeval.h diff --git a/libc/glibc/time/bits/types/struct_tm.h b/lib/libc/glibc/time/bits/types/struct_tm.h similarity index 100% rename from libc/glibc/time/bits/types/struct_tm.h rename to lib/libc/glibc/time/bits/types/struct_tm.h diff --git a/libc/glibc/time/bits/types/time_t.h b/lib/libc/glibc/time/bits/types/time_t.h similarity index 100% rename from libc/glibc/time/bits/types/time_t.h rename to lib/libc/glibc/time/bits/types/time_t.h diff --git a/libc/glibc/time/bits/types/timer_t.h b/lib/libc/glibc/time/bits/types/timer_t.h similarity index 100% rename from libc/glibc/time/bits/types/timer_t.h rename to lib/libc/glibc/time/bits/types/timer_t.h diff --git a/libc/glibc/vers.txt b/lib/libc/glibc/vers.txt similarity index 100% rename from libc/glibc/vers.txt rename to lib/libc/glibc/vers.txt diff --git a/libc/include/aarch64-linux-any/asm/auxvec.h b/lib/libc/include/aarch64-linux-any/asm/auxvec.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/auxvec.h rename to lib/libc/include/aarch64-linux-any/asm/auxvec.h diff --git a/libc/include/aarch64-linux-any/asm/bitsperlong.h b/lib/libc/include/aarch64-linux-any/asm/bitsperlong.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/bitsperlong.h rename to lib/libc/include/aarch64-linux-any/asm/bitsperlong.h diff --git a/libc/include/aarch64-linux-any/asm/bpf_perf_event.h b/lib/libc/include/aarch64-linux-any/asm/bpf_perf_event.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/bpf_perf_event.h rename to lib/libc/include/aarch64-linux-any/asm/bpf_perf_event.h diff --git a/libc/include/aarch64-linux-any/asm/byteorder.h b/lib/libc/include/aarch64-linux-any/asm/byteorder.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/byteorder.h rename to lib/libc/include/aarch64-linux-any/asm/byteorder.h diff --git a/libc/include/aarch64-linux-any/asm/fcntl.h b/lib/libc/include/aarch64-linux-any/asm/fcntl.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/fcntl.h rename to lib/libc/include/aarch64-linux-any/asm/fcntl.h diff --git a/libc/include/aarch64-linux-any/asm/hwcap.h b/lib/libc/include/aarch64-linux-any/asm/hwcap.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/hwcap.h rename to lib/libc/include/aarch64-linux-any/asm/hwcap.h diff --git a/libc/include/aarch64-linux-any/asm/kvm.h b/lib/libc/include/aarch64-linux-any/asm/kvm.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/kvm.h rename to lib/libc/include/aarch64-linux-any/asm/kvm.h diff --git a/libc/include/aarch64-linux-any/asm/kvm_para.h b/lib/libc/include/aarch64-linux-any/asm/kvm_para.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/kvm_para.h rename to lib/libc/include/aarch64-linux-any/asm/kvm_para.h diff --git a/libc/include/aarch64-linux-any/asm/param.h b/lib/libc/include/aarch64-linux-any/asm/param.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/param.h rename to lib/libc/include/aarch64-linux-any/asm/param.h diff --git a/libc/include/aarch64-linux-any/asm/perf_regs.h b/lib/libc/include/aarch64-linux-any/asm/perf_regs.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/perf_regs.h rename to lib/libc/include/aarch64-linux-any/asm/perf_regs.h diff --git a/libc/include/aarch64-linux-any/asm/posix_types.h b/lib/libc/include/aarch64-linux-any/asm/posix_types.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/posix_types.h rename to lib/libc/include/aarch64-linux-any/asm/posix_types.h diff --git a/libc/include/aarch64-linux-any/asm/ptrace.h b/lib/libc/include/aarch64-linux-any/asm/ptrace.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/ptrace.h rename to lib/libc/include/aarch64-linux-any/asm/ptrace.h diff --git a/libc/include/aarch64-linux-any/asm/setup.h b/lib/libc/include/aarch64-linux-any/asm/setup.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/setup.h rename to lib/libc/include/aarch64-linux-any/asm/setup.h diff --git a/libc/include/aarch64-linux-any/asm/sigcontext.h b/lib/libc/include/aarch64-linux-any/asm/sigcontext.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/sigcontext.h rename to lib/libc/include/aarch64-linux-any/asm/sigcontext.h diff --git a/libc/include/aarch64-linux-any/asm/siginfo.h b/lib/libc/include/aarch64-linux-any/asm/siginfo.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/siginfo.h rename to lib/libc/include/aarch64-linux-any/asm/siginfo.h diff --git a/libc/include/aarch64-linux-any/asm/signal.h b/lib/libc/include/aarch64-linux-any/asm/signal.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/signal.h rename to lib/libc/include/aarch64-linux-any/asm/signal.h diff --git a/libc/include/aarch64-linux-any/asm/stat.h b/lib/libc/include/aarch64-linux-any/asm/stat.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/stat.h rename to lib/libc/include/aarch64-linux-any/asm/stat.h diff --git a/libc/include/aarch64-linux-any/asm/statfs.h b/lib/libc/include/aarch64-linux-any/asm/statfs.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/statfs.h rename to lib/libc/include/aarch64-linux-any/asm/statfs.h diff --git a/libc/include/aarch64-linux-any/asm/ucontext.h b/lib/libc/include/aarch64-linux-any/asm/ucontext.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/ucontext.h rename to lib/libc/include/aarch64-linux-any/asm/ucontext.h diff --git a/libc/include/aarch64-linux-any/asm/unistd.h b/lib/libc/include/aarch64-linux-any/asm/unistd.h similarity index 100% rename from libc/include/aarch64-linux-any/asm/unistd.h rename to lib/libc/include/aarch64-linux-any/asm/unistd.h diff --git a/libc/include/aarch64-linux-gnu/bits/endian.h b/lib/libc/include/aarch64-linux-gnu/bits/endian.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/endian.h rename to lib/libc/include/aarch64-linux-gnu/bits/endian.h diff --git a/libc/include/aarch64-linux-gnu/bits/fcntl.h b/lib/libc/include/aarch64-linux-gnu/bits/fcntl.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/fcntl.h rename to lib/libc/include/aarch64-linux-gnu/bits/fcntl.h diff --git a/libc/include/aarch64-linux-gnu/bits/fenv.h b/lib/libc/include/aarch64-linux-gnu/bits/fenv.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/fenv.h rename to lib/libc/include/aarch64-linux-gnu/bits/fenv.h diff --git a/libc/include/aarch64-linux-gnu/bits/floatn.h b/lib/libc/include/aarch64-linux-gnu/bits/floatn.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/floatn.h rename to lib/libc/include/aarch64-linux-gnu/bits/floatn.h diff --git a/libc/include/aarch64-linux-gnu/bits/fp-fast.h b/lib/libc/include/aarch64-linux-gnu/bits/fp-fast.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/fp-fast.h rename to lib/libc/include/aarch64-linux-gnu/bits/fp-fast.h diff --git a/libc/include/aarch64-linux-gnu/bits/hwcap.h b/lib/libc/include/aarch64-linux-gnu/bits/hwcap.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/hwcap.h rename to lib/libc/include/aarch64-linux-gnu/bits/hwcap.h diff --git a/libc/include/aarch64-linux-gnu/bits/ipc.h b/lib/libc/include/aarch64-linux-gnu/bits/ipc.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/ipc.h rename to lib/libc/include/aarch64-linux-gnu/bits/ipc.h diff --git a/libc/include/aarch64-linux-gnu/bits/link.h b/lib/libc/include/aarch64-linux-gnu/bits/link.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/link.h rename to lib/libc/include/aarch64-linux-gnu/bits/link.h diff --git a/libc/include/aarch64-linux-gnu/bits/local_lim.h b/lib/libc/include/aarch64-linux-gnu/bits/local_lim.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/local_lim.h rename to lib/libc/include/aarch64-linux-gnu/bits/local_lim.h diff --git a/libc/include/aarch64-linux-gnu/bits/long-double.h b/lib/libc/include/aarch64-linux-gnu/bits/long-double.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/long-double.h rename to lib/libc/include/aarch64-linux-gnu/bits/long-double.h diff --git a/libc/include/aarch64-linux-gnu/bits/procfs.h b/lib/libc/include/aarch64-linux-gnu/bits/procfs.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/procfs.h rename to lib/libc/include/aarch64-linux-gnu/bits/procfs.h diff --git a/libc/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h b/lib/libc/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h rename to lib/libc/include/aarch64-linux-gnu/bits/pthreadtypes-arch.h diff --git a/libc/include/aarch64-linux-gnu/bits/semaphore.h b/lib/libc/include/aarch64-linux-gnu/bits/semaphore.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/semaphore.h rename to lib/libc/include/aarch64-linux-gnu/bits/semaphore.h diff --git a/libc/include/aarch64-linux-gnu/bits/setjmp.h b/lib/libc/include/aarch64-linux-gnu/bits/setjmp.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/setjmp.h rename to lib/libc/include/aarch64-linux-gnu/bits/setjmp.h diff --git a/libc/include/aarch64-linux-gnu/bits/sigstack.h b/lib/libc/include/aarch64-linux-gnu/bits/sigstack.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/sigstack.h rename to lib/libc/include/aarch64-linux-gnu/bits/sigstack.h diff --git a/libc/include/aarch64-linux-gnu/bits/stat.h b/lib/libc/include/aarch64-linux-gnu/bits/stat.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/stat.h rename to lib/libc/include/aarch64-linux-gnu/bits/stat.h diff --git a/libc/include/aarch64-linux-gnu/bits/statfs.h b/lib/libc/include/aarch64-linux-gnu/bits/statfs.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/statfs.h rename to lib/libc/include/aarch64-linux-gnu/bits/statfs.h diff --git a/libc/include/aarch64-linux-gnu/bits/typesizes.h b/lib/libc/include/aarch64-linux-gnu/bits/typesizes.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/typesizes.h rename to lib/libc/include/aarch64-linux-gnu/bits/typesizes.h diff --git a/libc/include/aarch64-linux-gnu/bits/wordsize.h b/lib/libc/include/aarch64-linux-gnu/bits/wordsize.h similarity index 100% rename from libc/include/aarch64-linux-gnu/bits/wordsize.h rename to lib/libc/include/aarch64-linux-gnu/bits/wordsize.h diff --git a/libc/include/aarch64-linux-gnu/fpu_control.h b/lib/libc/include/aarch64-linux-gnu/fpu_control.h similarity index 100% rename from libc/include/aarch64-linux-gnu/fpu_control.h rename to lib/libc/include/aarch64-linux-gnu/fpu_control.h diff --git a/libc/include/aarch64-linux-gnu/gnu/lib-names-lp64.h b/lib/libc/include/aarch64-linux-gnu/gnu/lib-names-lp64.h similarity index 100% rename from libc/include/aarch64-linux-gnu/gnu/lib-names-lp64.h rename to lib/libc/include/aarch64-linux-gnu/gnu/lib-names-lp64.h diff --git a/libc/include/aarch64-linux-gnu/gnu/lib-names.h b/lib/libc/include/aarch64-linux-gnu/gnu/lib-names.h similarity index 100% rename from libc/include/aarch64-linux-gnu/gnu/lib-names.h rename to lib/libc/include/aarch64-linux-gnu/gnu/lib-names.h diff --git a/libc/include/aarch64-linux-gnu/gnu/stubs-lp64.h b/lib/libc/include/aarch64-linux-gnu/gnu/stubs-lp64.h similarity index 100% rename from libc/include/aarch64-linux-gnu/gnu/stubs-lp64.h rename to lib/libc/include/aarch64-linux-gnu/gnu/stubs-lp64.h diff --git a/libc/include/aarch64-linux-gnu/gnu/stubs.h b/lib/libc/include/aarch64-linux-gnu/gnu/stubs.h similarity index 100% rename from libc/include/aarch64-linux-gnu/gnu/stubs.h rename to lib/libc/include/aarch64-linux-gnu/gnu/stubs.h diff --git a/libc/include/aarch64-linux-gnu/ieee754.h b/lib/libc/include/aarch64-linux-gnu/ieee754.h similarity index 100% rename from libc/include/aarch64-linux-gnu/ieee754.h rename to lib/libc/include/aarch64-linux-gnu/ieee754.h diff --git a/libc/include/aarch64-linux-gnu/sys/elf.h b/lib/libc/include/aarch64-linux-gnu/sys/elf.h similarity index 100% rename from libc/include/aarch64-linux-gnu/sys/elf.h rename to lib/libc/include/aarch64-linux-gnu/sys/elf.h diff --git a/libc/include/aarch64-linux-gnu/sys/ptrace.h b/lib/libc/include/aarch64-linux-gnu/sys/ptrace.h similarity index 100% rename from libc/include/aarch64-linux-gnu/sys/ptrace.h rename to lib/libc/include/aarch64-linux-gnu/sys/ptrace.h diff --git a/libc/include/aarch64-linux-gnu/sys/ucontext.h b/lib/libc/include/aarch64-linux-gnu/sys/ucontext.h similarity index 100% rename from libc/include/aarch64-linux-gnu/sys/ucontext.h rename to lib/libc/include/aarch64-linux-gnu/sys/ucontext.h diff --git a/libc/include/aarch64-linux-gnu/sys/user.h b/lib/libc/include/aarch64-linux-gnu/sys/user.h similarity index 100% rename from libc/include/aarch64-linux-gnu/sys/user.h rename to lib/libc/include/aarch64-linux-gnu/sys/user.h diff --git a/libc/include/aarch64-linux-musleabi/bfd_stdint.h b/lib/libc/include/aarch64-linux-musleabi/bfd_stdint.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bfd_stdint.h rename to lib/libc/include/aarch64-linux-musleabi/bfd_stdint.h diff --git a/libc/include/aarch64-linux-musleabi/bits/alltypes.h b/lib/libc/include/aarch64-linux-musleabi/bits/alltypes.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bits/alltypes.h rename to lib/libc/include/aarch64-linux-musleabi/bits/alltypes.h diff --git a/libc/include/aarch64-linux-musleabi/bits/endian.h b/lib/libc/include/aarch64-linux-musleabi/bits/endian.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bits/endian.h rename to lib/libc/include/aarch64-linux-musleabi/bits/endian.h diff --git a/libc/include/aarch64-linux-musleabi/bits/fenv.h b/lib/libc/include/aarch64-linux-musleabi/bits/fenv.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bits/fenv.h rename to lib/libc/include/aarch64-linux-musleabi/bits/fenv.h diff --git a/libc/include/aarch64-linux-musleabi/bits/float.h b/lib/libc/include/aarch64-linux-musleabi/bits/float.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bits/float.h rename to lib/libc/include/aarch64-linux-musleabi/bits/float.h diff --git a/libc/include/aarch64-linux-musleabi/bits/hwcap.h b/lib/libc/include/aarch64-linux-musleabi/bits/hwcap.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bits/hwcap.h rename to lib/libc/include/aarch64-linux-musleabi/bits/hwcap.h diff --git a/libc/include/aarch64-linux-musleabi/bits/ipc.h b/lib/libc/include/aarch64-linux-musleabi/bits/ipc.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bits/ipc.h rename to lib/libc/include/aarch64-linux-musleabi/bits/ipc.h diff --git a/libc/include/aarch64-linux-musleabi/bits/limits.h b/lib/libc/include/aarch64-linux-musleabi/bits/limits.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bits/limits.h rename to lib/libc/include/aarch64-linux-musleabi/bits/limits.h diff --git a/libc/include/aarch64-linux-musleabi/bits/posix.h b/lib/libc/include/aarch64-linux-musleabi/bits/posix.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bits/posix.h rename to lib/libc/include/aarch64-linux-musleabi/bits/posix.h diff --git a/libc/include/aarch64-linux-musleabi/bits/reg.h b/lib/libc/include/aarch64-linux-musleabi/bits/reg.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bits/reg.h rename to lib/libc/include/aarch64-linux-musleabi/bits/reg.h diff --git a/libc/include/aarch64-linux-musleabi/bits/sem.h b/lib/libc/include/aarch64-linux-musleabi/bits/sem.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bits/sem.h rename to lib/libc/include/aarch64-linux-musleabi/bits/sem.h diff --git a/libc/include/aarch64-linux-musleabi/bits/setjmp.h b/lib/libc/include/aarch64-linux-musleabi/bits/setjmp.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bits/setjmp.h rename to lib/libc/include/aarch64-linux-musleabi/bits/setjmp.h diff --git a/libc/include/aarch64-linux-musleabi/bits/signal.h b/lib/libc/include/aarch64-linux-musleabi/bits/signal.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bits/signal.h rename to lib/libc/include/aarch64-linux-musleabi/bits/signal.h diff --git a/libc/include/aarch64-linux-musleabi/bits/socket.h b/lib/libc/include/aarch64-linux-musleabi/bits/socket.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bits/socket.h rename to lib/libc/include/aarch64-linux-musleabi/bits/socket.h diff --git a/libc/include/aarch64-linux-musleabi/bits/stat.h b/lib/libc/include/aarch64-linux-musleabi/bits/stat.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bits/stat.h rename to lib/libc/include/aarch64-linux-musleabi/bits/stat.h diff --git a/libc/include/aarch64-linux-musleabi/bits/syscall.h b/lib/libc/include/aarch64-linux-musleabi/bits/syscall.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bits/syscall.h rename to lib/libc/include/aarch64-linux-musleabi/bits/syscall.h diff --git a/libc/include/aarch64-linux-musleabi/bits/user.h b/lib/libc/include/aarch64-linux-musleabi/bits/user.h similarity index 100% rename from libc/include/aarch64-linux-musleabi/bits/user.h rename to lib/libc/include/aarch64-linux-musleabi/bits/user.h diff --git a/libc/include/aarch64_be-linux-any/asm/auxvec.h b/lib/libc/include/aarch64_be-linux-any/asm/auxvec.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/auxvec.h rename to lib/libc/include/aarch64_be-linux-any/asm/auxvec.h diff --git a/libc/include/aarch64_be-linux-any/asm/bitsperlong.h b/lib/libc/include/aarch64_be-linux-any/asm/bitsperlong.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/bitsperlong.h rename to lib/libc/include/aarch64_be-linux-any/asm/bitsperlong.h diff --git a/libc/include/aarch64_be-linux-any/asm/bpf_perf_event.h b/lib/libc/include/aarch64_be-linux-any/asm/bpf_perf_event.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/bpf_perf_event.h rename to lib/libc/include/aarch64_be-linux-any/asm/bpf_perf_event.h diff --git a/libc/include/aarch64_be-linux-any/asm/byteorder.h b/lib/libc/include/aarch64_be-linux-any/asm/byteorder.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/byteorder.h rename to lib/libc/include/aarch64_be-linux-any/asm/byteorder.h diff --git a/libc/include/aarch64_be-linux-any/asm/fcntl.h b/lib/libc/include/aarch64_be-linux-any/asm/fcntl.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/fcntl.h rename to lib/libc/include/aarch64_be-linux-any/asm/fcntl.h diff --git a/libc/include/aarch64_be-linux-any/asm/hwcap.h b/lib/libc/include/aarch64_be-linux-any/asm/hwcap.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/hwcap.h rename to lib/libc/include/aarch64_be-linux-any/asm/hwcap.h diff --git a/libc/include/aarch64_be-linux-any/asm/kvm.h b/lib/libc/include/aarch64_be-linux-any/asm/kvm.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/kvm.h rename to lib/libc/include/aarch64_be-linux-any/asm/kvm.h diff --git a/libc/include/aarch64_be-linux-any/asm/kvm_para.h b/lib/libc/include/aarch64_be-linux-any/asm/kvm_para.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/kvm_para.h rename to lib/libc/include/aarch64_be-linux-any/asm/kvm_para.h diff --git a/libc/include/aarch64_be-linux-any/asm/param.h b/lib/libc/include/aarch64_be-linux-any/asm/param.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/param.h rename to lib/libc/include/aarch64_be-linux-any/asm/param.h diff --git a/libc/include/aarch64_be-linux-any/asm/perf_regs.h b/lib/libc/include/aarch64_be-linux-any/asm/perf_regs.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/perf_regs.h rename to lib/libc/include/aarch64_be-linux-any/asm/perf_regs.h diff --git a/libc/include/aarch64_be-linux-any/asm/posix_types.h b/lib/libc/include/aarch64_be-linux-any/asm/posix_types.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/posix_types.h rename to lib/libc/include/aarch64_be-linux-any/asm/posix_types.h diff --git a/libc/include/aarch64_be-linux-any/asm/ptrace.h b/lib/libc/include/aarch64_be-linux-any/asm/ptrace.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/ptrace.h rename to lib/libc/include/aarch64_be-linux-any/asm/ptrace.h diff --git a/libc/include/aarch64_be-linux-any/asm/setup.h b/lib/libc/include/aarch64_be-linux-any/asm/setup.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/setup.h rename to lib/libc/include/aarch64_be-linux-any/asm/setup.h diff --git a/libc/include/aarch64_be-linux-any/asm/sigcontext.h b/lib/libc/include/aarch64_be-linux-any/asm/sigcontext.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/sigcontext.h rename to lib/libc/include/aarch64_be-linux-any/asm/sigcontext.h diff --git a/libc/include/aarch64_be-linux-any/asm/siginfo.h b/lib/libc/include/aarch64_be-linux-any/asm/siginfo.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/siginfo.h rename to lib/libc/include/aarch64_be-linux-any/asm/siginfo.h diff --git a/libc/include/aarch64_be-linux-any/asm/signal.h b/lib/libc/include/aarch64_be-linux-any/asm/signal.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/signal.h rename to lib/libc/include/aarch64_be-linux-any/asm/signal.h diff --git a/libc/include/aarch64_be-linux-any/asm/stat.h b/lib/libc/include/aarch64_be-linux-any/asm/stat.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/stat.h rename to lib/libc/include/aarch64_be-linux-any/asm/stat.h diff --git a/libc/include/aarch64_be-linux-any/asm/statfs.h b/lib/libc/include/aarch64_be-linux-any/asm/statfs.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/statfs.h rename to lib/libc/include/aarch64_be-linux-any/asm/statfs.h diff --git a/libc/include/aarch64_be-linux-any/asm/ucontext.h b/lib/libc/include/aarch64_be-linux-any/asm/ucontext.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/ucontext.h rename to lib/libc/include/aarch64_be-linux-any/asm/ucontext.h diff --git a/libc/include/aarch64_be-linux-any/asm/unistd.h b/lib/libc/include/aarch64_be-linux-any/asm/unistd.h similarity index 100% rename from libc/include/aarch64_be-linux-any/asm/unistd.h rename to lib/libc/include/aarch64_be-linux-any/asm/unistd.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/endian.h b/lib/libc/include/aarch64_be-linux-gnu/bits/endian.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/endian.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/endian.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/fcntl.h b/lib/libc/include/aarch64_be-linux-gnu/bits/fcntl.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/fcntl.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/fcntl.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/fenv.h b/lib/libc/include/aarch64_be-linux-gnu/bits/fenv.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/fenv.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/fenv.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/floatn.h b/lib/libc/include/aarch64_be-linux-gnu/bits/floatn.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/floatn.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/floatn.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/fp-fast.h b/lib/libc/include/aarch64_be-linux-gnu/bits/fp-fast.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/fp-fast.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/fp-fast.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/hwcap.h b/lib/libc/include/aarch64_be-linux-gnu/bits/hwcap.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/hwcap.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/hwcap.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/ipc.h b/lib/libc/include/aarch64_be-linux-gnu/bits/ipc.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/ipc.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/ipc.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/link.h b/lib/libc/include/aarch64_be-linux-gnu/bits/link.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/link.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/link.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/local_lim.h b/lib/libc/include/aarch64_be-linux-gnu/bits/local_lim.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/local_lim.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/local_lim.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/long-double.h b/lib/libc/include/aarch64_be-linux-gnu/bits/long-double.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/long-double.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/long-double.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/procfs.h b/lib/libc/include/aarch64_be-linux-gnu/bits/procfs.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/procfs.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/procfs.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/pthreadtypes-arch.h b/lib/libc/include/aarch64_be-linux-gnu/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/pthreadtypes-arch.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/pthreadtypes-arch.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/semaphore.h b/lib/libc/include/aarch64_be-linux-gnu/bits/semaphore.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/semaphore.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/semaphore.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/setjmp.h b/lib/libc/include/aarch64_be-linux-gnu/bits/setjmp.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/setjmp.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/setjmp.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/sigstack.h b/lib/libc/include/aarch64_be-linux-gnu/bits/sigstack.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/sigstack.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/sigstack.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/stat.h b/lib/libc/include/aarch64_be-linux-gnu/bits/stat.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/stat.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/stat.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/statfs.h b/lib/libc/include/aarch64_be-linux-gnu/bits/statfs.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/statfs.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/statfs.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/typesizes.h b/lib/libc/include/aarch64_be-linux-gnu/bits/typesizes.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/typesizes.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/typesizes.h diff --git a/libc/include/aarch64_be-linux-gnu/bits/wordsize.h b/lib/libc/include/aarch64_be-linux-gnu/bits/wordsize.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/bits/wordsize.h rename to lib/libc/include/aarch64_be-linux-gnu/bits/wordsize.h diff --git a/libc/include/aarch64_be-linux-gnu/fpu_control.h b/lib/libc/include/aarch64_be-linux-gnu/fpu_control.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/fpu_control.h rename to lib/libc/include/aarch64_be-linux-gnu/fpu_control.h diff --git a/libc/include/aarch64_be-linux-gnu/gnu/lib-names-lp64_be.h b/lib/libc/include/aarch64_be-linux-gnu/gnu/lib-names-lp64_be.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/gnu/lib-names-lp64_be.h rename to lib/libc/include/aarch64_be-linux-gnu/gnu/lib-names-lp64_be.h diff --git a/libc/include/aarch64_be-linux-gnu/gnu/lib-names.h b/lib/libc/include/aarch64_be-linux-gnu/gnu/lib-names.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/gnu/lib-names.h rename to lib/libc/include/aarch64_be-linux-gnu/gnu/lib-names.h diff --git a/libc/include/aarch64_be-linux-gnu/gnu/stubs-lp64_be.h b/lib/libc/include/aarch64_be-linux-gnu/gnu/stubs-lp64_be.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/gnu/stubs-lp64_be.h rename to lib/libc/include/aarch64_be-linux-gnu/gnu/stubs-lp64_be.h diff --git a/libc/include/aarch64_be-linux-gnu/gnu/stubs.h b/lib/libc/include/aarch64_be-linux-gnu/gnu/stubs.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/gnu/stubs.h rename to lib/libc/include/aarch64_be-linux-gnu/gnu/stubs.h diff --git a/libc/include/aarch64_be-linux-gnu/ieee754.h b/lib/libc/include/aarch64_be-linux-gnu/ieee754.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/ieee754.h rename to lib/libc/include/aarch64_be-linux-gnu/ieee754.h diff --git a/libc/include/aarch64_be-linux-gnu/sys/elf.h b/lib/libc/include/aarch64_be-linux-gnu/sys/elf.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/sys/elf.h rename to lib/libc/include/aarch64_be-linux-gnu/sys/elf.h diff --git a/libc/include/aarch64_be-linux-gnu/sys/ptrace.h b/lib/libc/include/aarch64_be-linux-gnu/sys/ptrace.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/sys/ptrace.h rename to lib/libc/include/aarch64_be-linux-gnu/sys/ptrace.h diff --git a/libc/include/aarch64_be-linux-gnu/sys/ucontext.h b/lib/libc/include/aarch64_be-linux-gnu/sys/ucontext.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/sys/ucontext.h rename to lib/libc/include/aarch64_be-linux-gnu/sys/ucontext.h diff --git a/libc/include/aarch64_be-linux-gnu/sys/user.h b/lib/libc/include/aarch64_be-linux-gnu/sys/user.h similarity index 100% rename from libc/include/aarch64_be-linux-gnu/sys/user.h rename to lib/libc/include/aarch64_be-linux-gnu/sys/user.h diff --git a/libc/include/aarch64_be-linux-musl/bfd_stdint.h b/lib/libc/include/aarch64_be-linux-musl/bfd_stdint.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bfd_stdint.h rename to lib/libc/include/aarch64_be-linux-musl/bfd_stdint.h diff --git a/libc/include/aarch64_be-linux-musl/bits/alltypes.h b/lib/libc/include/aarch64_be-linux-musl/bits/alltypes.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bits/alltypes.h rename to lib/libc/include/aarch64_be-linux-musl/bits/alltypes.h diff --git a/libc/include/aarch64_be-linux-musl/bits/endian.h b/lib/libc/include/aarch64_be-linux-musl/bits/endian.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bits/endian.h rename to lib/libc/include/aarch64_be-linux-musl/bits/endian.h diff --git a/libc/include/aarch64_be-linux-musl/bits/fenv.h b/lib/libc/include/aarch64_be-linux-musl/bits/fenv.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bits/fenv.h rename to lib/libc/include/aarch64_be-linux-musl/bits/fenv.h diff --git a/libc/include/aarch64_be-linux-musl/bits/float.h b/lib/libc/include/aarch64_be-linux-musl/bits/float.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bits/float.h rename to lib/libc/include/aarch64_be-linux-musl/bits/float.h diff --git a/libc/include/aarch64_be-linux-musl/bits/hwcap.h b/lib/libc/include/aarch64_be-linux-musl/bits/hwcap.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bits/hwcap.h rename to lib/libc/include/aarch64_be-linux-musl/bits/hwcap.h diff --git a/libc/include/aarch64_be-linux-musl/bits/ipc.h b/lib/libc/include/aarch64_be-linux-musl/bits/ipc.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bits/ipc.h rename to lib/libc/include/aarch64_be-linux-musl/bits/ipc.h diff --git a/libc/include/aarch64_be-linux-musl/bits/limits.h b/lib/libc/include/aarch64_be-linux-musl/bits/limits.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bits/limits.h rename to lib/libc/include/aarch64_be-linux-musl/bits/limits.h diff --git a/libc/include/aarch64_be-linux-musl/bits/posix.h b/lib/libc/include/aarch64_be-linux-musl/bits/posix.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bits/posix.h rename to lib/libc/include/aarch64_be-linux-musl/bits/posix.h diff --git a/libc/include/aarch64_be-linux-musl/bits/reg.h b/lib/libc/include/aarch64_be-linux-musl/bits/reg.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bits/reg.h rename to lib/libc/include/aarch64_be-linux-musl/bits/reg.h diff --git a/libc/include/aarch64_be-linux-musl/bits/sem.h b/lib/libc/include/aarch64_be-linux-musl/bits/sem.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bits/sem.h rename to lib/libc/include/aarch64_be-linux-musl/bits/sem.h diff --git a/libc/include/aarch64_be-linux-musl/bits/setjmp.h b/lib/libc/include/aarch64_be-linux-musl/bits/setjmp.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bits/setjmp.h rename to lib/libc/include/aarch64_be-linux-musl/bits/setjmp.h diff --git a/libc/include/aarch64_be-linux-musl/bits/signal.h b/lib/libc/include/aarch64_be-linux-musl/bits/signal.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bits/signal.h rename to lib/libc/include/aarch64_be-linux-musl/bits/signal.h diff --git a/libc/include/aarch64_be-linux-musl/bits/socket.h b/lib/libc/include/aarch64_be-linux-musl/bits/socket.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bits/socket.h rename to lib/libc/include/aarch64_be-linux-musl/bits/socket.h diff --git a/libc/include/aarch64_be-linux-musl/bits/stat.h b/lib/libc/include/aarch64_be-linux-musl/bits/stat.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bits/stat.h rename to lib/libc/include/aarch64_be-linux-musl/bits/stat.h diff --git a/libc/include/aarch64_be-linux-musl/bits/syscall.h b/lib/libc/include/aarch64_be-linux-musl/bits/syscall.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bits/syscall.h rename to lib/libc/include/aarch64_be-linux-musl/bits/syscall.h diff --git a/libc/include/aarch64_be-linux-musl/bits/user.h b/lib/libc/include/aarch64_be-linux-musl/bits/user.h similarity index 100% rename from libc/include/aarch64_be-linux-musl/bits/user.h rename to lib/libc/include/aarch64_be-linux-musl/bits/user.h diff --git a/libc/include/any-linux-any/asm-generic/auxvec.h b/lib/libc/include/any-linux-any/asm-generic/auxvec.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/auxvec.h rename to lib/libc/include/any-linux-any/asm-generic/auxvec.h diff --git a/libc/include/any-linux-any/asm-generic/bitsperlong.h b/lib/libc/include/any-linux-any/asm-generic/bitsperlong.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/bitsperlong.h rename to lib/libc/include/any-linux-any/asm-generic/bitsperlong.h diff --git a/libc/include/any-linux-any/asm-generic/bpf_perf_event.h b/lib/libc/include/any-linux-any/asm-generic/bpf_perf_event.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/bpf_perf_event.h rename to lib/libc/include/any-linux-any/asm-generic/bpf_perf_event.h diff --git a/libc/include/any-linux-any/asm-generic/errno-base.h b/lib/libc/include/any-linux-any/asm-generic/errno-base.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/errno-base.h rename to lib/libc/include/any-linux-any/asm-generic/errno-base.h diff --git a/libc/include/any-linux-any/asm-generic/errno.h b/lib/libc/include/any-linux-any/asm-generic/errno.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/errno.h rename to lib/libc/include/any-linux-any/asm-generic/errno.h diff --git a/libc/include/any-linux-any/asm-generic/fcntl.h b/lib/libc/include/any-linux-any/asm-generic/fcntl.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/fcntl.h rename to lib/libc/include/any-linux-any/asm-generic/fcntl.h diff --git a/libc/include/any-linux-any/asm-generic/hugetlb_encode.h b/lib/libc/include/any-linux-any/asm-generic/hugetlb_encode.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/hugetlb_encode.h rename to lib/libc/include/any-linux-any/asm-generic/hugetlb_encode.h diff --git a/libc/include/any-linux-any/asm-generic/int-l64.h b/lib/libc/include/any-linux-any/asm-generic/int-l64.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/int-l64.h rename to lib/libc/include/any-linux-any/asm-generic/int-l64.h diff --git a/libc/include/any-linux-any/asm-generic/int-ll64.h b/lib/libc/include/any-linux-any/asm-generic/int-ll64.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/int-ll64.h rename to lib/libc/include/any-linux-any/asm-generic/int-ll64.h diff --git a/libc/include/any-linux-any/asm-generic/ioctl.h b/lib/libc/include/any-linux-any/asm-generic/ioctl.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/ioctl.h rename to lib/libc/include/any-linux-any/asm-generic/ioctl.h diff --git a/libc/include/any-linux-any/asm-generic/ioctls.h b/lib/libc/include/any-linux-any/asm-generic/ioctls.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/ioctls.h rename to lib/libc/include/any-linux-any/asm-generic/ioctls.h diff --git a/libc/include/any-linux-any/asm-generic/ipcbuf.h b/lib/libc/include/any-linux-any/asm-generic/ipcbuf.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/ipcbuf.h rename to lib/libc/include/any-linux-any/asm-generic/ipcbuf.h diff --git a/libc/include/any-linux-any/asm-generic/kvm_para.h b/lib/libc/include/any-linux-any/asm-generic/kvm_para.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/kvm_para.h rename to lib/libc/include/any-linux-any/asm-generic/kvm_para.h diff --git a/libc/include/any-linux-any/asm-generic/mman-common.h b/lib/libc/include/any-linux-any/asm-generic/mman-common.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/mman-common.h rename to lib/libc/include/any-linux-any/asm-generic/mman-common.h diff --git a/libc/include/any-linux-any/asm-generic/mman.h b/lib/libc/include/any-linux-any/asm-generic/mman.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/mman.h rename to lib/libc/include/any-linux-any/asm-generic/mman.h diff --git a/libc/include/any-linux-any/asm-generic/msgbuf.h b/lib/libc/include/any-linux-any/asm-generic/msgbuf.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/msgbuf.h rename to lib/libc/include/any-linux-any/asm-generic/msgbuf.h diff --git a/libc/include/any-linux-any/asm-generic/param.h b/lib/libc/include/any-linux-any/asm-generic/param.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/param.h rename to lib/libc/include/any-linux-any/asm-generic/param.h diff --git a/libc/include/any-linux-any/asm-generic/poll.h b/lib/libc/include/any-linux-any/asm-generic/poll.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/poll.h rename to lib/libc/include/any-linux-any/asm-generic/poll.h diff --git a/libc/include/any-linux-any/asm-generic/posix_types.h b/lib/libc/include/any-linux-any/asm-generic/posix_types.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/posix_types.h rename to lib/libc/include/any-linux-any/asm-generic/posix_types.h diff --git a/libc/include/any-linux-any/asm-generic/resource.h b/lib/libc/include/any-linux-any/asm-generic/resource.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/resource.h rename to lib/libc/include/any-linux-any/asm-generic/resource.h diff --git a/libc/include/any-linux-any/asm-generic/sembuf.h b/lib/libc/include/any-linux-any/asm-generic/sembuf.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/sembuf.h rename to lib/libc/include/any-linux-any/asm-generic/sembuf.h diff --git a/libc/include/any-linux-any/asm-generic/setup.h b/lib/libc/include/any-linux-any/asm-generic/setup.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/setup.h rename to lib/libc/include/any-linux-any/asm-generic/setup.h diff --git a/libc/include/any-linux-any/asm-generic/shmbuf.h b/lib/libc/include/any-linux-any/asm-generic/shmbuf.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/shmbuf.h rename to lib/libc/include/any-linux-any/asm-generic/shmbuf.h diff --git a/libc/include/any-linux-any/asm-generic/shmparam.h b/lib/libc/include/any-linux-any/asm-generic/shmparam.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/shmparam.h rename to lib/libc/include/any-linux-any/asm-generic/shmparam.h diff --git a/libc/include/any-linux-any/asm-generic/siginfo.h b/lib/libc/include/any-linux-any/asm-generic/siginfo.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/siginfo.h rename to lib/libc/include/any-linux-any/asm-generic/siginfo.h diff --git a/libc/include/any-linux-any/asm-generic/signal-defs.h b/lib/libc/include/any-linux-any/asm-generic/signal-defs.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/signal-defs.h rename to lib/libc/include/any-linux-any/asm-generic/signal-defs.h diff --git a/libc/include/any-linux-any/asm-generic/signal.h b/lib/libc/include/any-linux-any/asm-generic/signal.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/signal.h rename to lib/libc/include/any-linux-any/asm-generic/signal.h diff --git a/libc/include/any-linux-any/asm-generic/socket.h b/lib/libc/include/any-linux-any/asm-generic/socket.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/socket.h rename to lib/libc/include/any-linux-any/asm-generic/socket.h diff --git a/libc/include/any-linux-any/asm-generic/sockios.h b/lib/libc/include/any-linux-any/asm-generic/sockios.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/sockios.h rename to lib/libc/include/any-linux-any/asm-generic/sockios.h diff --git a/libc/include/any-linux-any/asm-generic/stat.h b/lib/libc/include/any-linux-any/asm-generic/stat.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/stat.h rename to lib/libc/include/any-linux-any/asm-generic/stat.h diff --git a/libc/include/any-linux-any/asm-generic/statfs.h b/lib/libc/include/any-linux-any/asm-generic/statfs.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/statfs.h rename to lib/libc/include/any-linux-any/asm-generic/statfs.h diff --git a/libc/include/any-linux-any/asm-generic/swab.h b/lib/libc/include/any-linux-any/asm-generic/swab.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/swab.h rename to lib/libc/include/any-linux-any/asm-generic/swab.h diff --git a/libc/include/any-linux-any/asm-generic/termbits.h b/lib/libc/include/any-linux-any/asm-generic/termbits.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/termbits.h rename to lib/libc/include/any-linux-any/asm-generic/termbits.h diff --git a/libc/include/any-linux-any/asm-generic/termios.h b/lib/libc/include/any-linux-any/asm-generic/termios.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/termios.h rename to lib/libc/include/any-linux-any/asm-generic/termios.h diff --git a/libc/include/any-linux-any/asm-generic/types.h b/lib/libc/include/any-linux-any/asm-generic/types.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/types.h rename to lib/libc/include/any-linux-any/asm-generic/types.h diff --git a/libc/include/any-linux-any/asm-generic/ucontext.h b/lib/libc/include/any-linux-any/asm-generic/ucontext.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/ucontext.h rename to lib/libc/include/any-linux-any/asm-generic/ucontext.h diff --git a/libc/include/any-linux-any/asm-generic/unistd.h b/lib/libc/include/any-linux-any/asm-generic/unistd.h similarity index 100% rename from libc/include/any-linux-any/asm-generic/unistd.h rename to lib/libc/include/any-linux-any/asm-generic/unistd.h diff --git a/libc/include/any-linux-any/asm/a.out.h b/lib/libc/include/any-linux-any/asm/a.out.h similarity index 100% rename from libc/include/any-linux-any/asm/a.out.h rename to lib/libc/include/any-linux-any/asm/a.out.h diff --git a/libc/include/any-linux-any/asm/auxvec.h b/lib/libc/include/any-linux-any/asm/auxvec.h similarity index 100% rename from libc/include/any-linux-any/asm/auxvec.h rename to lib/libc/include/any-linux-any/asm/auxvec.h diff --git a/libc/include/any-linux-any/asm/bitfield.h b/lib/libc/include/any-linux-any/asm/bitfield.h similarity index 100% rename from libc/include/any-linux-any/asm/bitfield.h rename to lib/libc/include/any-linux-any/asm/bitfield.h diff --git a/libc/include/any-linux-any/asm/bitsperlong.h b/lib/libc/include/any-linux-any/asm/bitsperlong.h similarity index 100% rename from libc/include/any-linux-any/asm/bitsperlong.h rename to lib/libc/include/any-linux-any/asm/bitsperlong.h diff --git a/libc/include/any-linux-any/asm/boot.h b/lib/libc/include/any-linux-any/asm/boot.h similarity index 100% rename from libc/include/any-linux-any/asm/boot.h rename to lib/libc/include/any-linux-any/asm/boot.h diff --git a/libc/include/any-linux-any/asm/bootparam.h b/lib/libc/include/any-linux-any/asm/bootparam.h similarity index 100% rename from libc/include/any-linux-any/asm/bootparam.h rename to lib/libc/include/any-linux-any/asm/bootparam.h diff --git a/libc/include/any-linux-any/asm/bootx.h b/lib/libc/include/any-linux-any/asm/bootx.h similarity index 100% rename from libc/include/any-linux-any/asm/bootx.h rename to lib/libc/include/any-linux-any/asm/bootx.h diff --git a/libc/include/any-linux-any/asm/bpf_perf_event.h b/lib/libc/include/any-linux-any/asm/bpf_perf_event.h similarity index 100% rename from libc/include/any-linux-any/asm/bpf_perf_event.h rename to lib/libc/include/any-linux-any/asm/bpf_perf_event.h diff --git a/libc/include/any-linux-any/asm/break.h b/lib/libc/include/any-linux-any/asm/break.h similarity index 100% rename from libc/include/any-linux-any/asm/break.h rename to lib/libc/include/any-linux-any/asm/break.h diff --git a/libc/include/any-linux-any/asm/byteorder.h b/lib/libc/include/any-linux-any/asm/byteorder.h similarity index 100% rename from libc/include/any-linux-any/asm/byteorder.h rename to lib/libc/include/any-linux-any/asm/byteorder.h diff --git a/libc/include/any-linux-any/asm/cachectl.h b/lib/libc/include/any-linux-any/asm/cachectl.h similarity index 100% rename from libc/include/any-linux-any/asm/cachectl.h rename to lib/libc/include/any-linux-any/asm/cachectl.h diff --git a/libc/include/any-linux-any/asm/cputable.h b/lib/libc/include/any-linux-any/asm/cputable.h similarity index 100% rename from libc/include/any-linux-any/asm/cputable.h rename to lib/libc/include/any-linux-any/asm/cputable.h diff --git a/libc/include/any-linux-any/asm/debugreg.h b/lib/libc/include/any-linux-any/asm/debugreg.h similarity index 100% rename from libc/include/any-linux-any/asm/debugreg.h rename to lib/libc/include/any-linux-any/asm/debugreg.h diff --git a/libc/include/any-linux-any/asm/e820.h b/lib/libc/include/any-linux-any/asm/e820.h similarity index 100% rename from libc/include/any-linux-any/asm/e820.h rename to lib/libc/include/any-linux-any/asm/e820.h diff --git a/libc/include/any-linux-any/asm/eeh.h b/lib/libc/include/any-linux-any/asm/eeh.h similarity index 100% rename from libc/include/any-linux-any/asm/eeh.h rename to lib/libc/include/any-linux-any/asm/eeh.h diff --git a/libc/include/any-linux-any/asm/elf.h b/lib/libc/include/any-linux-any/asm/elf.h similarity index 100% rename from libc/include/any-linux-any/asm/elf.h rename to lib/libc/include/any-linux-any/asm/elf.h diff --git a/libc/include/any-linux-any/asm/epapr_hcalls.h b/lib/libc/include/any-linux-any/asm/epapr_hcalls.h similarity index 100% rename from libc/include/any-linux-any/asm/epapr_hcalls.h rename to lib/libc/include/any-linux-any/asm/epapr_hcalls.h diff --git a/libc/include/any-linux-any/asm/errno.h b/lib/libc/include/any-linux-any/asm/errno.h similarity index 100% rename from libc/include/any-linux-any/asm/errno.h rename to lib/libc/include/any-linux-any/asm/errno.h diff --git a/libc/include/any-linux-any/asm/fcntl.h b/lib/libc/include/any-linux-any/asm/fcntl.h similarity index 100% rename from libc/include/any-linux-any/asm/fcntl.h rename to lib/libc/include/any-linux-any/asm/fcntl.h diff --git a/libc/include/any-linux-any/asm/hw_breakpoint.h b/lib/libc/include/any-linux-any/asm/hw_breakpoint.h similarity index 100% rename from libc/include/any-linux-any/asm/hw_breakpoint.h rename to lib/libc/include/any-linux-any/asm/hw_breakpoint.h diff --git a/libc/include/any-linux-any/asm/hwcap.h b/lib/libc/include/any-linux-any/asm/hwcap.h similarity index 100% rename from libc/include/any-linux-any/asm/hwcap.h rename to lib/libc/include/any-linux-any/asm/hwcap.h diff --git a/libc/include/any-linux-any/asm/hwcap2.h b/lib/libc/include/any-linux-any/asm/hwcap2.h similarity index 100% rename from libc/include/any-linux-any/asm/hwcap2.h rename to lib/libc/include/any-linux-any/asm/hwcap2.h diff --git a/libc/include/any-linux-any/asm/inst.h b/lib/libc/include/any-linux-any/asm/inst.h similarity index 100% rename from libc/include/any-linux-any/asm/inst.h rename to lib/libc/include/any-linux-any/asm/inst.h diff --git a/libc/include/any-linux-any/asm/ioctl.h b/lib/libc/include/any-linux-any/asm/ioctl.h similarity index 100% rename from libc/include/any-linux-any/asm/ioctl.h rename to lib/libc/include/any-linux-any/asm/ioctl.h diff --git a/libc/include/any-linux-any/asm/ioctls.h b/lib/libc/include/any-linux-any/asm/ioctls.h similarity index 100% rename from libc/include/any-linux-any/asm/ioctls.h rename to lib/libc/include/any-linux-any/asm/ioctls.h diff --git a/libc/include/any-linux-any/asm/ipcbuf.h b/lib/libc/include/any-linux-any/asm/ipcbuf.h similarity index 100% rename from libc/include/any-linux-any/asm/ipcbuf.h rename to lib/libc/include/any-linux-any/asm/ipcbuf.h diff --git a/libc/include/any-linux-any/asm/ist.h b/lib/libc/include/any-linux-any/asm/ist.h similarity index 100% rename from libc/include/any-linux-any/asm/ist.h rename to lib/libc/include/any-linux-any/asm/ist.h diff --git a/libc/include/any-linux-any/asm/kvm.h b/lib/libc/include/any-linux-any/asm/kvm.h similarity index 100% rename from libc/include/any-linux-any/asm/kvm.h rename to lib/libc/include/any-linux-any/asm/kvm.h diff --git a/libc/include/any-linux-any/asm/kvm_para.h b/lib/libc/include/any-linux-any/asm/kvm_para.h similarity index 100% rename from libc/include/any-linux-any/asm/kvm_para.h rename to lib/libc/include/any-linux-any/asm/kvm_para.h diff --git a/libc/include/any-linux-any/asm/kvm_perf.h b/lib/libc/include/any-linux-any/asm/kvm_perf.h similarity index 100% rename from libc/include/any-linux-any/asm/kvm_perf.h rename to lib/libc/include/any-linux-any/asm/kvm_perf.h diff --git a/libc/include/any-linux-any/asm/ldt.h b/lib/libc/include/any-linux-any/asm/ldt.h similarity index 100% rename from libc/include/any-linux-any/asm/ldt.h rename to lib/libc/include/any-linux-any/asm/ldt.h diff --git a/libc/include/any-linux-any/asm/mce.h b/lib/libc/include/any-linux-any/asm/mce.h similarity index 100% rename from libc/include/any-linux-any/asm/mce.h rename to lib/libc/include/any-linux-any/asm/mce.h diff --git a/libc/include/any-linux-any/asm/mman.h b/lib/libc/include/any-linux-any/asm/mman.h similarity index 100% rename from libc/include/any-linux-any/asm/mman.h rename to lib/libc/include/any-linux-any/asm/mman.h diff --git a/libc/include/any-linux-any/asm/msgbuf.h b/lib/libc/include/any-linux-any/asm/msgbuf.h similarity index 100% rename from libc/include/any-linux-any/asm/msgbuf.h rename to lib/libc/include/any-linux-any/asm/msgbuf.h diff --git a/libc/include/any-linux-any/asm/msr.h b/lib/libc/include/any-linux-any/asm/msr.h similarity index 100% rename from libc/include/any-linux-any/asm/msr.h rename to lib/libc/include/any-linux-any/asm/msr.h diff --git a/libc/include/any-linux-any/asm/mtrr.h b/lib/libc/include/any-linux-any/asm/mtrr.h similarity index 100% rename from libc/include/any-linux-any/asm/mtrr.h rename to lib/libc/include/any-linux-any/asm/mtrr.h diff --git a/libc/include/any-linux-any/asm/nvram.h b/lib/libc/include/any-linux-any/asm/nvram.h similarity index 100% rename from libc/include/any-linux-any/asm/nvram.h rename to lib/libc/include/any-linux-any/asm/nvram.h diff --git a/libc/include/any-linux-any/asm/opal-prd.h b/lib/libc/include/any-linux-any/asm/opal-prd.h similarity index 100% rename from libc/include/any-linux-any/asm/opal-prd.h rename to lib/libc/include/any-linux-any/asm/opal-prd.h diff --git a/libc/include/any-linux-any/asm/param.h b/lib/libc/include/any-linux-any/asm/param.h similarity index 100% rename from libc/include/any-linux-any/asm/param.h rename to lib/libc/include/any-linux-any/asm/param.h diff --git a/libc/include/any-linux-any/asm/perf_event.h b/lib/libc/include/any-linux-any/asm/perf_event.h similarity index 100% rename from libc/include/any-linux-any/asm/perf_event.h rename to lib/libc/include/any-linux-any/asm/perf_event.h diff --git a/libc/include/any-linux-any/asm/perf_regs.h b/lib/libc/include/any-linux-any/asm/perf_regs.h similarity index 100% rename from libc/include/any-linux-any/asm/perf_regs.h rename to lib/libc/include/any-linux-any/asm/perf_regs.h diff --git a/libc/include/any-linux-any/asm/poll.h b/lib/libc/include/any-linux-any/asm/poll.h similarity index 100% rename from libc/include/any-linux-any/asm/poll.h rename to lib/libc/include/any-linux-any/asm/poll.h diff --git a/libc/include/any-linux-any/asm/posix_types.h b/lib/libc/include/any-linux-any/asm/posix_types.h similarity index 100% rename from libc/include/any-linux-any/asm/posix_types.h rename to lib/libc/include/any-linux-any/asm/posix_types.h diff --git a/libc/include/any-linux-any/asm/posix_types_32.h b/lib/libc/include/any-linux-any/asm/posix_types_32.h similarity index 100% rename from libc/include/any-linux-any/asm/posix_types_32.h rename to lib/libc/include/any-linux-any/asm/posix_types_32.h diff --git a/libc/include/any-linux-any/asm/posix_types_64.h b/lib/libc/include/any-linux-any/asm/posix_types_64.h similarity index 100% rename from libc/include/any-linux-any/asm/posix_types_64.h rename to lib/libc/include/any-linux-any/asm/posix_types_64.h diff --git a/libc/include/any-linux-any/asm/posix_types_x32.h b/lib/libc/include/any-linux-any/asm/posix_types_x32.h similarity index 100% rename from libc/include/any-linux-any/asm/posix_types_x32.h rename to lib/libc/include/any-linux-any/asm/posix_types_x32.h diff --git a/libc/include/any-linux-any/asm/prctl.h b/lib/libc/include/any-linux-any/asm/prctl.h similarity index 100% rename from libc/include/any-linux-any/asm/prctl.h rename to lib/libc/include/any-linux-any/asm/prctl.h diff --git a/libc/include/any-linux-any/asm/processor-flags.h b/lib/libc/include/any-linux-any/asm/processor-flags.h similarity index 100% rename from libc/include/any-linux-any/asm/processor-flags.h rename to lib/libc/include/any-linux-any/asm/processor-flags.h diff --git a/libc/include/any-linux-any/asm/ps3fb.h b/lib/libc/include/any-linux-any/asm/ps3fb.h similarity index 100% rename from libc/include/any-linux-any/asm/ps3fb.h rename to lib/libc/include/any-linux-any/asm/ps3fb.h diff --git a/libc/include/any-linux-any/asm/ptrace-abi.h b/lib/libc/include/any-linux-any/asm/ptrace-abi.h similarity index 100% rename from libc/include/any-linux-any/asm/ptrace-abi.h rename to lib/libc/include/any-linux-any/asm/ptrace-abi.h diff --git a/libc/include/any-linux-any/asm/ptrace.h b/lib/libc/include/any-linux-any/asm/ptrace.h similarity index 100% rename from libc/include/any-linux-any/asm/ptrace.h rename to lib/libc/include/any-linux-any/asm/ptrace.h diff --git a/libc/include/any-linux-any/asm/reg.h b/lib/libc/include/any-linux-any/asm/reg.h similarity index 100% rename from libc/include/any-linux-any/asm/reg.h rename to lib/libc/include/any-linux-any/asm/reg.h diff --git a/libc/include/any-linux-any/asm/resource.h b/lib/libc/include/any-linux-any/asm/resource.h similarity index 100% rename from libc/include/any-linux-any/asm/resource.h rename to lib/libc/include/any-linux-any/asm/resource.h diff --git a/libc/include/any-linux-any/asm/sembuf.h b/lib/libc/include/any-linux-any/asm/sembuf.h similarity index 100% rename from libc/include/any-linux-any/asm/sembuf.h rename to lib/libc/include/any-linux-any/asm/sembuf.h diff --git a/libc/include/any-linux-any/asm/setup.h b/lib/libc/include/any-linux-any/asm/setup.h similarity index 100% rename from libc/include/any-linux-any/asm/setup.h rename to lib/libc/include/any-linux-any/asm/setup.h diff --git a/libc/include/any-linux-any/asm/sgidefs.h b/lib/libc/include/any-linux-any/asm/sgidefs.h similarity index 100% rename from libc/include/any-linux-any/asm/sgidefs.h rename to lib/libc/include/any-linux-any/asm/sgidefs.h diff --git a/libc/include/any-linux-any/asm/shmbuf.h b/lib/libc/include/any-linux-any/asm/shmbuf.h similarity index 100% rename from libc/include/any-linux-any/asm/shmbuf.h rename to lib/libc/include/any-linux-any/asm/shmbuf.h diff --git a/libc/include/any-linux-any/asm/sigcontext.h b/lib/libc/include/any-linux-any/asm/sigcontext.h similarity index 100% rename from libc/include/any-linux-any/asm/sigcontext.h rename to lib/libc/include/any-linux-any/asm/sigcontext.h diff --git a/libc/include/any-linux-any/asm/sigcontext32.h b/lib/libc/include/any-linux-any/asm/sigcontext32.h similarity index 100% rename from libc/include/any-linux-any/asm/sigcontext32.h rename to lib/libc/include/any-linux-any/asm/sigcontext32.h diff --git a/libc/include/any-linux-any/asm/siginfo.h b/lib/libc/include/any-linux-any/asm/siginfo.h similarity index 100% rename from libc/include/any-linux-any/asm/siginfo.h rename to lib/libc/include/any-linux-any/asm/siginfo.h diff --git a/libc/include/any-linux-any/asm/signal.h b/lib/libc/include/any-linux-any/asm/signal.h similarity index 100% rename from libc/include/any-linux-any/asm/signal.h rename to lib/libc/include/any-linux-any/asm/signal.h diff --git a/libc/include/any-linux-any/asm/socket.h b/lib/libc/include/any-linux-any/asm/socket.h similarity index 100% rename from libc/include/any-linux-any/asm/socket.h rename to lib/libc/include/any-linux-any/asm/socket.h diff --git a/libc/include/any-linux-any/asm/sockios.h b/lib/libc/include/any-linux-any/asm/sockios.h similarity index 100% rename from libc/include/any-linux-any/asm/sockios.h rename to lib/libc/include/any-linux-any/asm/sockios.h diff --git a/libc/include/any-linux-any/asm/spu_info.h b/lib/libc/include/any-linux-any/asm/spu_info.h similarity index 100% rename from libc/include/any-linux-any/asm/spu_info.h rename to lib/libc/include/any-linux-any/asm/spu_info.h diff --git a/libc/include/any-linux-any/asm/stat.h b/lib/libc/include/any-linux-any/asm/stat.h similarity index 100% rename from libc/include/any-linux-any/asm/stat.h rename to lib/libc/include/any-linux-any/asm/stat.h diff --git a/libc/include/any-linux-any/asm/statfs.h b/lib/libc/include/any-linux-any/asm/statfs.h similarity index 100% rename from libc/include/any-linux-any/asm/statfs.h rename to lib/libc/include/any-linux-any/asm/statfs.h diff --git a/libc/include/any-linux-any/asm/svm.h b/lib/libc/include/any-linux-any/asm/svm.h similarity index 100% rename from libc/include/any-linux-any/asm/svm.h rename to lib/libc/include/any-linux-any/asm/svm.h diff --git a/libc/include/any-linux-any/asm/swab.h b/lib/libc/include/any-linux-any/asm/swab.h similarity index 100% rename from libc/include/any-linux-any/asm/swab.h rename to lib/libc/include/any-linux-any/asm/swab.h diff --git a/libc/include/any-linux-any/asm/syscalls.h b/lib/libc/include/any-linux-any/asm/syscalls.h similarity index 100% rename from libc/include/any-linux-any/asm/syscalls.h rename to lib/libc/include/any-linux-any/asm/syscalls.h diff --git a/libc/include/any-linux-any/asm/sysmips.h b/lib/libc/include/any-linux-any/asm/sysmips.h similarity index 100% rename from libc/include/any-linux-any/asm/sysmips.h rename to lib/libc/include/any-linux-any/asm/sysmips.h diff --git a/libc/include/any-linux-any/asm/termbits.h b/lib/libc/include/any-linux-any/asm/termbits.h similarity index 100% rename from libc/include/any-linux-any/asm/termbits.h rename to lib/libc/include/any-linux-any/asm/termbits.h diff --git a/libc/include/any-linux-any/asm/termios.h b/lib/libc/include/any-linux-any/asm/termios.h similarity index 100% rename from libc/include/any-linux-any/asm/termios.h rename to lib/libc/include/any-linux-any/asm/termios.h diff --git a/libc/include/any-linux-any/asm/tm.h b/lib/libc/include/any-linux-any/asm/tm.h similarity index 100% rename from libc/include/any-linux-any/asm/tm.h rename to lib/libc/include/any-linux-any/asm/tm.h diff --git a/libc/include/any-linux-any/asm/types.h b/lib/libc/include/any-linux-any/asm/types.h similarity index 100% rename from libc/include/any-linux-any/asm/types.h rename to lib/libc/include/any-linux-any/asm/types.h diff --git a/libc/include/any-linux-any/asm/ucontext.h b/lib/libc/include/any-linux-any/asm/ucontext.h similarity index 100% rename from libc/include/any-linux-any/asm/ucontext.h rename to lib/libc/include/any-linux-any/asm/ucontext.h diff --git a/libc/include/any-linux-any/asm/unistd-common.h b/lib/libc/include/any-linux-any/asm/unistd-common.h similarity index 100% rename from libc/include/any-linux-any/asm/unistd-common.h rename to lib/libc/include/any-linux-any/asm/unistd-common.h diff --git a/libc/include/any-linux-any/asm/unistd-eabi.h b/lib/libc/include/any-linux-any/asm/unistd-eabi.h similarity index 100% rename from libc/include/any-linux-any/asm/unistd-eabi.h rename to lib/libc/include/any-linux-any/asm/unistd-eabi.h diff --git a/libc/include/any-linux-any/asm/unistd-oabi.h b/lib/libc/include/any-linux-any/asm/unistd-oabi.h similarity index 100% rename from libc/include/any-linux-any/asm/unistd-oabi.h rename to lib/libc/include/any-linux-any/asm/unistd-oabi.h diff --git a/libc/include/any-linux-any/asm/unistd.h b/lib/libc/include/any-linux-any/asm/unistd.h similarity index 100% rename from libc/include/any-linux-any/asm/unistd.h rename to lib/libc/include/any-linux-any/asm/unistd.h diff --git a/libc/include/any-linux-any/asm/unistd_32.h b/lib/libc/include/any-linux-any/asm/unistd_32.h similarity index 100% rename from libc/include/any-linux-any/asm/unistd_32.h rename to lib/libc/include/any-linux-any/asm/unistd_32.h diff --git a/libc/include/any-linux-any/asm/unistd_64.h b/lib/libc/include/any-linux-any/asm/unistd_64.h similarity index 100% rename from libc/include/any-linux-any/asm/unistd_64.h rename to lib/libc/include/any-linux-any/asm/unistd_64.h diff --git a/libc/include/any-linux-any/asm/unistd_x32.h b/lib/libc/include/any-linux-any/asm/unistd_x32.h similarity index 100% rename from libc/include/any-linux-any/asm/unistd_x32.h rename to lib/libc/include/any-linux-any/asm/unistd_x32.h diff --git a/libc/include/any-linux-any/asm/vm86.h b/lib/libc/include/any-linux-any/asm/vm86.h similarity index 100% rename from libc/include/any-linux-any/asm/vm86.h rename to lib/libc/include/any-linux-any/asm/vm86.h diff --git a/libc/include/any-linux-any/asm/vmx.h b/lib/libc/include/any-linux-any/asm/vmx.h similarity index 100% rename from libc/include/any-linux-any/asm/vmx.h rename to lib/libc/include/any-linux-any/asm/vmx.h diff --git a/libc/include/any-linux-any/asm/vsyscall.h b/lib/libc/include/any-linux-any/asm/vsyscall.h similarity index 100% rename from libc/include/any-linux-any/asm/vsyscall.h rename to lib/libc/include/any-linux-any/asm/vsyscall.h diff --git a/libc/include/any-linux-any/linux/a.out.h b/lib/libc/include/any-linux-any/linux/a.out.h similarity index 100% rename from libc/include/any-linux-any/linux/a.out.h rename to lib/libc/include/any-linux-any/linux/a.out.h diff --git a/libc/include/any-linux-any/linux/acct.h b/lib/libc/include/any-linux-any/linux/acct.h similarity index 100% rename from libc/include/any-linux-any/linux/acct.h rename to lib/libc/include/any-linux-any/linux/acct.h diff --git a/libc/include/any-linux-any/linux/adb.h b/lib/libc/include/any-linux-any/linux/adb.h similarity index 100% rename from libc/include/any-linux-any/linux/adb.h rename to lib/libc/include/any-linux-any/linux/adb.h diff --git a/libc/include/any-linux-any/linux/adfs_fs.h b/lib/libc/include/any-linux-any/linux/adfs_fs.h similarity index 100% rename from libc/include/any-linux-any/linux/adfs_fs.h rename to lib/libc/include/any-linux-any/linux/adfs_fs.h diff --git a/libc/include/any-linux-any/linux/affs_hardblocks.h b/lib/libc/include/any-linux-any/linux/affs_hardblocks.h similarity index 100% rename from libc/include/any-linux-any/linux/affs_hardblocks.h rename to lib/libc/include/any-linux-any/linux/affs_hardblocks.h diff --git a/libc/include/any-linux-any/linux/agpgart.h b/lib/libc/include/any-linux-any/linux/agpgart.h similarity index 100% rename from libc/include/any-linux-any/linux/agpgart.h rename to lib/libc/include/any-linux-any/linux/agpgart.h diff --git a/libc/include/any-linux-any/linux/aio_abi.h b/lib/libc/include/any-linux-any/linux/aio_abi.h similarity index 100% rename from libc/include/any-linux-any/linux/aio_abi.h rename to lib/libc/include/any-linux-any/linux/aio_abi.h diff --git a/libc/include/any-linux-any/linux/am437x-vpfe.h b/lib/libc/include/any-linux-any/linux/am437x-vpfe.h similarity index 100% rename from libc/include/any-linux-any/linux/am437x-vpfe.h rename to lib/libc/include/any-linux-any/linux/am437x-vpfe.h diff --git a/libc/include/any-linux-any/linux/android/binder.h b/lib/libc/include/any-linux-any/linux/android/binder.h similarity index 100% rename from libc/include/any-linux-any/linux/android/binder.h rename to lib/libc/include/any-linux-any/linux/android/binder.h diff --git a/libc/include/any-linux-any/linux/apm_bios.h b/lib/libc/include/any-linux-any/linux/apm_bios.h similarity index 100% rename from libc/include/any-linux-any/linux/apm_bios.h rename to lib/libc/include/any-linux-any/linux/apm_bios.h diff --git a/libc/include/any-linux-any/linux/arcfb.h b/lib/libc/include/any-linux-any/linux/arcfb.h similarity index 100% rename from libc/include/any-linux-any/linux/arcfb.h rename to lib/libc/include/any-linux-any/linux/arcfb.h diff --git a/libc/include/any-linux-any/linux/arm_sdei.h b/lib/libc/include/any-linux-any/linux/arm_sdei.h similarity index 100% rename from libc/include/any-linux-any/linux/arm_sdei.h rename to lib/libc/include/any-linux-any/linux/arm_sdei.h diff --git a/libc/include/any-linux-any/linux/aspeed-lpc-ctrl.h b/lib/libc/include/any-linux-any/linux/aspeed-lpc-ctrl.h similarity index 100% rename from libc/include/any-linux-any/linux/aspeed-lpc-ctrl.h rename to lib/libc/include/any-linux-any/linux/aspeed-lpc-ctrl.h diff --git a/libc/include/any-linux-any/linux/atalk.h b/lib/libc/include/any-linux-any/linux/atalk.h similarity index 100% rename from libc/include/any-linux-any/linux/atalk.h rename to lib/libc/include/any-linux-any/linux/atalk.h diff --git a/libc/include/any-linux-any/linux/atm.h b/lib/libc/include/any-linux-any/linux/atm.h similarity index 100% rename from libc/include/any-linux-any/linux/atm.h rename to lib/libc/include/any-linux-any/linux/atm.h diff --git a/libc/include/any-linux-any/linux/atm_eni.h b/lib/libc/include/any-linux-any/linux/atm_eni.h similarity index 100% rename from libc/include/any-linux-any/linux/atm_eni.h rename to lib/libc/include/any-linux-any/linux/atm_eni.h diff --git a/libc/include/any-linux-any/linux/atm_he.h b/lib/libc/include/any-linux-any/linux/atm_he.h similarity index 100% rename from libc/include/any-linux-any/linux/atm_he.h rename to lib/libc/include/any-linux-any/linux/atm_he.h diff --git a/libc/include/any-linux-any/linux/atm_idt77105.h b/lib/libc/include/any-linux-any/linux/atm_idt77105.h similarity index 100% rename from libc/include/any-linux-any/linux/atm_idt77105.h rename to lib/libc/include/any-linux-any/linux/atm_idt77105.h diff --git a/libc/include/any-linux-any/linux/atm_nicstar.h b/lib/libc/include/any-linux-any/linux/atm_nicstar.h similarity index 100% rename from libc/include/any-linux-any/linux/atm_nicstar.h rename to lib/libc/include/any-linux-any/linux/atm_nicstar.h diff --git a/libc/include/any-linux-any/linux/atm_tcp.h b/lib/libc/include/any-linux-any/linux/atm_tcp.h similarity index 100% rename from libc/include/any-linux-any/linux/atm_tcp.h rename to lib/libc/include/any-linux-any/linux/atm_tcp.h diff --git a/libc/include/any-linux-any/linux/atm_zatm.h b/lib/libc/include/any-linux-any/linux/atm_zatm.h similarity index 100% rename from libc/include/any-linux-any/linux/atm_zatm.h rename to lib/libc/include/any-linux-any/linux/atm_zatm.h diff --git a/libc/include/any-linux-any/linux/atmapi.h b/lib/libc/include/any-linux-any/linux/atmapi.h similarity index 100% rename from libc/include/any-linux-any/linux/atmapi.h rename to lib/libc/include/any-linux-any/linux/atmapi.h diff --git a/libc/include/any-linux-any/linux/atmarp.h b/lib/libc/include/any-linux-any/linux/atmarp.h similarity index 100% rename from libc/include/any-linux-any/linux/atmarp.h rename to lib/libc/include/any-linux-any/linux/atmarp.h diff --git a/libc/include/any-linux-any/linux/atmbr2684.h b/lib/libc/include/any-linux-any/linux/atmbr2684.h similarity index 100% rename from libc/include/any-linux-any/linux/atmbr2684.h rename to lib/libc/include/any-linux-any/linux/atmbr2684.h diff --git a/libc/include/any-linux-any/linux/atmclip.h b/lib/libc/include/any-linux-any/linux/atmclip.h similarity index 100% rename from libc/include/any-linux-any/linux/atmclip.h rename to lib/libc/include/any-linux-any/linux/atmclip.h diff --git a/libc/include/any-linux-any/linux/atmdev.h b/lib/libc/include/any-linux-any/linux/atmdev.h similarity index 100% rename from libc/include/any-linux-any/linux/atmdev.h rename to lib/libc/include/any-linux-any/linux/atmdev.h diff --git a/libc/include/any-linux-any/linux/atmioc.h b/lib/libc/include/any-linux-any/linux/atmioc.h similarity index 100% rename from libc/include/any-linux-any/linux/atmioc.h rename to lib/libc/include/any-linux-any/linux/atmioc.h diff --git a/libc/include/any-linux-any/linux/atmlec.h b/lib/libc/include/any-linux-any/linux/atmlec.h similarity index 100% rename from libc/include/any-linux-any/linux/atmlec.h rename to lib/libc/include/any-linux-any/linux/atmlec.h diff --git a/libc/include/any-linux-any/linux/atmmpc.h b/lib/libc/include/any-linux-any/linux/atmmpc.h similarity index 100% rename from libc/include/any-linux-any/linux/atmmpc.h rename to lib/libc/include/any-linux-any/linux/atmmpc.h diff --git a/libc/include/any-linux-any/linux/atmppp.h b/lib/libc/include/any-linux-any/linux/atmppp.h similarity index 100% rename from libc/include/any-linux-any/linux/atmppp.h rename to lib/libc/include/any-linux-any/linux/atmppp.h diff --git a/libc/include/any-linux-any/linux/atmsap.h b/lib/libc/include/any-linux-any/linux/atmsap.h similarity index 100% rename from libc/include/any-linux-any/linux/atmsap.h rename to lib/libc/include/any-linux-any/linux/atmsap.h diff --git a/libc/include/any-linux-any/linux/atmsvc.h b/lib/libc/include/any-linux-any/linux/atmsvc.h similarity index 100% rename from libc/include/any-linux-any/linux/atmsvc.h rename to lib/libc/include/any-linux-any/linux/atmsvc.h diff --git a/libc/include/any-linux-any/linux/audit.h b/lib/libc/include/any-linux-any/linux/audit.h similarity index 100% rename from libc/include/any-linux-any/linux/audit.h rename to lib/libc/include/any-linux-any/linux/audit.h diff --git a/libc/include/any-linux-any/linux/auto_dev-ioctl.h b/lib/libc/include/any-linux-any/linux/auto_dev-ioctl.h similarity index 100% rename from libc/include/any-linux-any/linux/auto_dev-ioctl.h rename to lib/libc/include/any-linux-any/linux/auto_dev-ioctl.h diff --git a/libc/include/any-linux-any/linux/auto_fs.h b/lib/libc/include/any-linux-any/linux/auto_fs.h similarity index 100% rename from libc/include/any-linux-any/linux/auto_fs.h rename to lib/libc/include/any-linux-any/linux/auto_fs.h diff --git a/libc/include/any-linux-any/linux/auto_fs4.h b/lib/libc/include/any-linux-any/linux/auto_fs4.h similarity index 100% rename from libc/include/any-linux-any/linux/auto_fs4.h rename to lib/libc/include/any-linux-any/linux/auto_fs4.h diff --git a/libc/include/any-linux-any/linux/auxvec.h b/lib/libc/include/any-linux-any/linux/auxvec.h similarity index 100% rename from libc/include/any-linux-any/linux/auxvec.h rename to lib/libc/include/any-linux-any/linux/auxvec.h diff --git a/libc/include/any-linux-any/linux/ax25.h b/lib/libc/include/any-linux-any/linux/ax25.h similarity index 100% rename from libc/include/any-linux-any/linux/ax25.h rename to lib/libc/include/any-linux-any/linux/ax25.h diff --git a/libc/include/any-linux-any/linux/b1lli.h b/lib/libc/include/any-linux-any/linux/b1lli.h similarity index 100% rename from libc/include/any-linux-any/linux/b1lli.h rename to lib/libc/include/any-linux-any/linux/b1lli.h diff --git a/libc/include/any-linux-any/linux/batadv_packet.h b/lib/libc/include/any-linux-any/linux/batadv_packet.h similarity index 100% rename from libc/include/any-linux-any/linux/batadv_packet.h rename to lib/libc/include/any-linux-any/linux/batadv_packet.h diff --git a/libc/include/any-linux-any/linux/batman_adv.h b/lib/libc/include/any-linux-any/linux/batman_adv.h similarity index 100% rename from libc/include/any-linux-any/linux/batman_adv.h rename to lib/libc/include/any-linux-any/linux/batman_adv.h diff --git a/libc/include/any-linux-any/linux/baycom.h b/lib/libc/include/any-linux-any/linux/baycom.h similarity index 100% rename from libc/include/any-linux-any/linux/baycom.h rename to lib/libc/include/any-linux-any/linux/baycom.h diff --git a/libc/include/any-linux-any/linux/bcache.h b/lib/libc/include/any-linux-any/linux/bcache.h similarity index 100% rename from libc/include/any-linux-any/linux/bcache.h rename to lib/libc/include/any-linux-any/linux/bcache.h diff --git a/libc/include/any-linux-any/linux/bcm933xx_hcs.h b/lib/libc/include/any-linux-any/linux/bcm933xx_hcs.h similarity index 100% rename from libc/include/any-linux-any/linux/bcm933xx_hcs.h rename to lib/libc/include/any-linux-any/linux/bcm933xx_hcs.h diff --git a/libc/include/any-linux-any/linux/bfs_fs.h b/lib/libc/include/any-linux-any/linux/bfs_fs.h similarity index 100% rename from libc/include/any-linux-any/linux/bfs_fs.h rename to lib/libc/include/any-linux-any/linux/bfs_fs.h diff --git a/libc/include/any-linux-any/linux/binfmts.h b/lib/libc/include/any-linux-any/linux/binfmts.h similarity index 100% rename from libc/include/any-linux-any/linux/binfmts.h rename to lib/libc/include/any-linux-any/linux/binfmts.h diff --git a/libc/include/any-linux-any/linux/blkpg.h b/lib/libc/include/any-linux-any/linux/blkpg.h similarity index 100% rename from libc/include/any-linux-any/linux/blkpg.h rename to lib/libc/include/any-linux-any/linux/blkpg.h diff --git a/libc/include/any-linux-any/linux/blktrace_api.h b/lib/libc/include/any-linux-any/linux/blktrace_api.h similarity index 100% rename from libc/include/any-linux-any/linux/blktrace_api.h rename to lib/libc/include/any-linux-any/linux/blktrace_api.h diff --git a/libc/include/any-linux-any/linux/blkzoned.h b/lib/libc/include/any-linux-any/linux/blkzoned.h similarity index 100% rename from libc/include/any-linux-any/linux/blkzoned.h rename to lib/libc/include/any-linux-any/linux/blkzoned.h diff --git a/libc/include/any-linux-any/linux/bpf.h b/lib/libc/include/any-linux-any/linux/bpf.h similarity index 100% rename from libc/include/any-linux-any/linux/bpf.h rename to lib/libc/include/any-linux-any/linux/bpf.h diff --git a/libc/include/any-linux-any/linux/bpf_common.h b/lib/libc/include/any-linux-any/linux/bpf_common.h similarity index 100% rename from libc/include/any-linux-any/linux/bpf_common.h rename to lib/libc/include/any-linux-any/linux/bpf_common.h diff --git a/libc/include/any-linux-any/linux/bpf_perf_event.h b/lib/libc/include/any-linux-any/linux/bpf_perf_event.h similarity index 100% rename from libc/include/any-linux-any/linux/bpf_perf_event.h rename to lib/libc/include/any-linux-any/linux/bpf_perf_event.h diff --git a/libc/include/any-linux-any/linux/bpfilter.h b/lib/libc/include/any-linux-any/linux/bpfilter.h similarity index 100% rename from libc/include/any-linux-any/linux/bpfilter.h rename to lib/libc/include/any-linux-any/linux/bpfilter.h diff --git a/libc/include/any-linux-any/linux/bpqether.h b/lib/libc/include/any-linux-any/linux/bpqether.h similarity index 100% rename from libc/include/any-linux-any/linux/bpqether.h rename to lib/libc/include/any-linux-any/linux/bpqether.h diff --git a/libc/include/any-linux-any/linux/bsg.h b/lib/libc/include/any-linux-any/linux/bsg.h similarity index 100% rename from libc/include/any-linux-any/linux/bsg.h rename to lib/libc/include/any-linux-any/linux/bsg.h diff --git a/libc/include/any-linux-any/linux/bt-bmc.h b/lib/libc/include/any-linux-any/linux/bt-bmc.h similarity index 100% rename from libc/include/any-linux-any/linux/bt-bmc.h rename to lib/libc/include/any-linux-any/linux/bt-bmc.h diff --git a/libc/include/any-linux-any/linux/btf.h b/lib/libc/include/any-linux-any/linux/btf.h similarity index 100% rename from libc/include/any-linux-any/linux/btf.h rename to lib/libc/include/any-linux-any/linux/btf.h diff --git a/libc/include/any-linux-any/linux/btrfs.h b/lib/libc/include/any-linux-any/linux/btrfs.h similarity index 100% rename from libc/include/any-linux-any/linux/btrfs.h rename to lib/libc/include/any-linux-any/linux/btrfs.h diff --git a/libc/include/any-linux-any/linux/btrfs_tree.h b/lib/libc/include/any-linux-any/linux/btrfs_tree.h similarity index 100% rename from libc/include/any-linux-any/linux/btrfs_tree.h rename to lib/libc/include/any-linux-any/linux/btrfs_tree.h diff --git a/libc/include/any-linux-any/linux/byteorder/big_endian.h b/lib/libc/include/any-linux-any/linux/byteorder/big_endian.h similarity index 100% rename from libc/include/any-linux-any/linux/byteorder/big_endian.h rename to lib/libc/include/any-linux-any/linux/byteorder/big_endian.h diff --git a/libc/include/any-linux-any/linux/byteorder/little_endian.h b/lib/libc/include/any-linux-any/linux/byteorder/little_endian.h similarity index 100% rename from libc/include/any-linux-any/linux/byteorder/little_endian.h rename to lib/libc/include/any-linux-any/linux/byteorder/little_endian.h diff --git a/libc/include/any-linux-any/linux/caif/caif_socket.h b/lib/libc/include/any-linux-any/linux/caif/caif_socket.h similarity index 100% rename from libc/include/any-linux-any/linux/caif/caif_socket.h rename to lib/libc/include/any-linux-any/linux/caif/caif_socket.h diff --git a/libc/include/any-linux-any/linux/caif/if_caif.h b/lib/libc/include/any-linux-any/linux/caif/if_caif.h similarity index 100% rename from libc/include/any-linux-any/linux/caif/if_caif.h rename to lib/libc/include/any-linux-any/linux/caif/if_caif.h diff --git a/libc/include/any-linux-any/linux/can.h b/lib/libc/include/any-linux-any/linux/can.h similarity index 100% rename from libc/include/any-linux-any/linux/can.h rename to lib/libc/include/any-linux-any/linux/can.h diff --git a/libc/include/any-linux-any/linux/can/bcm.h b/lib/libc/include/any-linux-any/linux/can/bcm.h similarity index 100% rename from libc/include/any-linux-any/linux/can/bcm.h rename to lib/libc/include/any-linux-any/linux/can/bcm.h diff --git a/libc/include/any-linux-any/linux/can/error.h b/lib/libc/include/any-linux-any/linux/can/error.h similarity index 100% rename from libc/include/any-linux-any/linux/can/error.h rename to lib/libc/include/any-linux-any/linux/can/error.h diff --git a/libc/include/any-linux-any/linux/can/gw.h b/lib/libc/include/any-linux-any/linux/can/gw.h similarity index 100% rename from libc/include/any-linux-any/linux/can/gw.h rename to lib/libc/include/any-linux-any/linux/can/gw.h diff --git a/libc/include/any-linux-any/linux/can/netlink.h b/lib/libc/include/any-linux-any/linux/can/netlink.h similarity index 100% rename from libc/include/any-linux-any/linux/can/netlink.h rename to lib/libc/include/any-linux-any/linux/can/netlink.h diff --git a/libc/include/any-linux-any/linux/can/raw.h b/lib/libc/include/any-linux-any/linux/can/raw.h similarity index 100% rename from libc/include/any-linux-any/linux/can/raw.h rename to lib/libc/include/any-linux-any/linux/can/raw.h diff --git a/libc/include/any-linux-any/linux/can/vxcan.h b/lib/libc/include/any-linux-any/linux/can/vxcan.h similarity index 100% rename from libc/include/any-linux-any/linux/can/vxcan.h rename to lib/libc/include/any-linux-any/linux/can/vxcan.h diff --git a/libc/include/any-linux-any/linux/capability.h b/lib/libc/include/any-linux-any/linux/capability.h similarity index 100% rename from libc/include/any-linux-any/linux/capability.h rename to lib/libc/include/any-linux-any/linux/capability.h diff --git a/libc/include/any-linux-any/linux/capi.h b/lib/libc/include/any-linux-any/linux/capi.h similarity index 100% rename from libc/include/any-linux-any/linux/capi.h rename to lib/libc/include/any-linux-any/linux/capi.h diff --git a/libc/include/any-linux-any/linux/cciss_defs.h b/lib/libc/include/any-linux-any/linux/cciss_defs.h similarity index 100% rename from libc/include/any-linux-any/linux/cciss_defs.h rename to lib/libc/include/any-linux-any/linux/cciss_defs.h diff --git a/libc/include/any-linux-any/linux/cciss_ioctl.h b/lib/libc/include/any-linux-any/linux/cciss_ioctl.h similarity index 100% rename from libc/include/any-linux-any/linux/cciss_ioctl.h rename to lib/libc/include/any-linux-any/linux/cciss_ioctl.h diff --git a/libc/include/any-linux-any/linux/cdrom.h b/lib/libc/include/any-linux-any/linux/cdrom.h similarity index 100% rename from libc/include/any-linux-any/linux/cdrom.h rename to lib/libc/include/any-linux-any/linux/cdrom.h diff --git a/libc/include/any-linux-any/linux/cec-funcs.h b/lib/libc/include/any-linux-any/linux/cec-funcs.h similarity index 100% rename from libc/include/any-linux-any/linux/cec-funcs.h rename to lib/libc/include/any-linux-any/linux/cec-funcs.h diff --git a/libc/include/any-linux-any/linux/cec.h b/lib/libc/include/any-linux-any/linux/cec.h similarity index 100% rename from libc/include/any-linux-any/linux/cec.h rename to lib/libc/include/any-linux-any/linux/cec.h diff --git a/libc/include/any-linux-any/linux/cgroupstats.h b/lib/libc/include/any-linux-any/linux/cgroupstats.h similarity index 100% rename from libc/include/any-linux-any/linux/cgroupstats.h rename to lib/libc/include/any-linux-any/linux/cgroupstats.h diff --git a/libc/include/any-linux-any/linux/chio.h b/lib/libc/include/any-linux-any/linux/chio.h similarity index 100% rename from libc/include/any-linux-any/linux/chio.h rename to lib/libc/include/any-linux-any/linux/chio.h diff --git a/libc/include/any-linux-any/linux/cifs/cifs_mount.h b/lib/libc/include/any-linux-any/linux/cifs/cifs_mount.h similarity index 100% rename from libc/include/any-linux-any/linux/cifs/cifs_mount.h rename to lib/libc/include/any-linux-any/linux/cifs/cifs_mount.h diff --git a/libc/include/any-linux-any/linux/cm4000_cs.h b/lib/libc/include/any-linux-any/linux/cm4000_cs.h similarity index 100% rename from libc/include/any-linux-any/linux/cm4000_cs.h rename to lib/libc/include/any-linux-any/linux/cm4000_cs.h diff --git a/libc/include/any-linux-any/linux/cn_proc.h b/lib/libc/include/any-linux-any/linux/cn_proc.h similarity index 100% rename from libc/include/any-linux-any/linux/cn_proc.h rename to lib/libc/include/any-linux-any/linux/cn_proc.h diff --git a/libc/include/any-linux-any/linux/coda.h b/lib/libc/include/any-linux-any/linux/coda.h similarity index 100% rename from libc/include/any-linux-any/linux/coda.h rename to lib/libc/include/any-linux-any/linux/coda.h diff --git a/libc/include/any-linux-any/linux/coda_psdev.h b/lib/libc/include/any-linux-any/linux/coda_psdev.h similarity index 100% rename from libc/include/any-linux-any/linux/coda_psdev.h rename to lib/libc/include/any-linux-any/linux/coda_psdev.h diff --git a/libc/include/any-linux-any/linux/coff.h b/lib/libc/include/any-linux-any/linux/coff.h similarity index 100% rename from libc/include/any-linux-any/linux/coff.h rename to lib/libc/include/any-linux-any/linux/coff.h diff --git a/libc/include/any-linux-any/linux/connector.h b/lib/libc/include/any-linux-any/linux/connector.h similarity index 100% rename from libc/include/any-linux-any/linux/connector.h rename to lib/libc/include/any-linux-any/linux/connector.h diff --git a/libc/include/any-linux-any/linux/const.h b/lib/libc/include/any-linux-any/linux/const.h similarity index 100% rename from libc/include/any-linux-any/linux/const.h rename to lib/libc/include/any-linux-any/linux/const.h diff --git a/libc/include/any-linux-any/linux/coresight-stm.h b/lib/libc/include/any-linux-any/linux/coresight-stm.h similarity index 100% rename from libc/include/any-linux-any/linux/coresight-stm.h rename to lib/libc/include/any-linux-any/linux/coresight-stm.h diff --git a/libc/include/any-linux-any/linux/cramfs_fs.h b/lib/libc/include/any-linux-any/linux/cramfs_fs.h similarity index 100% rename from libc/include/any-linux-any/linux/cramfs_fs.h rename to lib/libc/include/any-linux-any/linux/cramfs_fs.h diff --git a/libc/include/any-linux-any/linux/cryptouser.h b/lib/libc/include/any-linux-any/linux/cryptouser.h similarity index 100% rename from libc/include/any-linux-any/linux/cryptouser.h rename to lib/libc/include/any-linux-any/linux/cryptouser.h diff --git a/libc/include/any-linux-any/linux/cuda.h b/lib/libc/include/any-linux-any/linux/cuda.h similarity index 100% rename from libc/include/any-linux-any/linux/cuda.h rename to lib/libc/include/any-linux-any/linux/cuda.h diff --git a/libc/include/any-linux-any/linux/cyclades.h b/lib/libc/include/any-linux-any/linux/cyclades.h similarity index 100% rename from libc/include/any-linux-any/linux/cyclades.h rename to lib/libc/include/any-linux-any/linux/cyclades.h diff --git a/libc/include/any-linux-any/linux/cycx_cfm.h b/lib/libc/include/any-linux-any/linux/cycx_cfm.h similarity index 100% rename from libc/include/any-linux-any/linux/cycx_cfm.h rename to lib/libc/include/any-linux-any/linux/cycx_cfm.h diff --git a/libc/include/any-linux-any/linux/dcbnl.h b/lib/libc/include/any-linux-any/linux/dcbnl.h similarity index 100% rename from libc/include/any-linux-any/linux/dcbnl.h rename to lib/libc/include/any-linux-any/linux/dcbnl.h diff --git a/libc/include/any-linux-any/linux/dccp.h b/lib/libc/include/any-linux-any/linux/dccp.h similarity index 100% rename from libc/include/any-linux-any/linux/dccp.h rename to lib/libc/include/any-linux-any/linux/dccp.h diff --git a/libc/include/any-linux-any/linux/devlink.h b/lib/libc/include/any-linux-any/linux/devlink.h similarity index 100% rename from libc/include/any-linux-any/linux/devlink.h rename to lib/libc/include/any-linux-any/linux/devlink.h diff --git a/libc/include/any-linux-any/linux/dlm.h b/lib/libc/include/any-linux-any/linux/dlm.h similarity index 100% rename from libc/include/any-linux-any/linux/dlm.h rename to lib/libc/include/any-linux-any/linux/dlm.h diff --git a/libc/include/any-linux-any/linux/dlm_device.h b/lib/libc/include/any-linux-any/linux/dlm_device.h similarity index 100% rename from libc/include/any-linux-any/linux/dlm_device.h rename to lib/libc/include/any-linux-any/linux/dlm_device.h diff --git a/libc/include/any-linux-any/linux/dlm_netlink.h b/lib/libc/include/any-linux-any/linux/dlm_netlink.h similarity index 100% rename from libc/include/any-linux-any/linux/dlm_netlink.h rename to lib/libc/include/any-linux-any/linux/dlm_netlink.h diff --git a/libc/include/any-linux-any/linux/dlm_plock.h b/lib/libc/include/any-linux-any/linux/dlm_plock.h similarity index 100% rename from libc/include/any-linux-any/linux/dlm_plock.h rename to lib/libc/include/any-linux-any/linux/dlm_plock.h diff --git a/libc/include/any-linux-any/linux/dlmconstants.h b/lib/libc/include/any-linux-any/linux/dlmconstants.h similarity index 100% rename from libc/include/any-linux-any/linux/dlmconstants.h rename to lib/libc/include/any-linux-any/linux/dlmconstants.h diff --git a/libc/include/any-linux-any/linux/dm-ioctl.h b/lib/libc/include/any-linux-any/linux/dm-ioctl.h similarity index 100% rename from libc/include/any-linux-any/linux/dm-ioctl.h rename to lib/libc/include/any-linux-any/linux/dm-ioctl.h diff --git a/libc/include/any-linux-any/linux/dm-log-userspace.h b/lib/libc/include/any-linux-any/linux/dm-log-userspace.h similarity index 100% rename from libc/include/any-linux-any/linux/dm-log-userspace.h rename to lib/libc/include/any-linux-any/linux/dm-log-userspace.h diff --git a/libc/include/any-linux-any/linux/dma-buf.h b/lib/libc/include/any-linux-any/linux/dma-buf.h similarity index 100% rename from libc/include/any-linux-any/linux/dma-buf.h rename to lib/libc/include/any-linux-any/linux/dma-buf.h diff --git a/libc/include/any-linux-any/linux/dn.h b/lib/libc/include/any-linux-any/linux/dn.h similarity index 100% rename from libc/include/any-linux-any/linux/dn.h rename to lib/libc/include/any-linux-any/linux/dn.h diff --git a/libc/include/any-linux-any/linux/dqblk_xfs.h b/lib/libc/include/any-linux-any/linux/dqblk_xfs.h similarity index 100% rename from libc/include/any-linux-any/linux/dqblk_xfs.h rename to lib/libc/include/any-linux-any/linux/dqblk_xfs.h diff --git a/libc/include/any-linux-any/linux/dvb/audio.h b/lib/libc/include/any-linux-any/linux/dvb/audio.h similarity index 100% rename from libc/include/any-linux-any/linux/dvb/audio.h rename to lib/libc/include/any-linux-any/linux/dvb/audio.h diff --git a/libc/include/any-linux-any/linux/dvb/ca.h b/lib/libc/include/any-linux-any/linux/dvb/ca.h similarity index 100% rename from libc/include/any-linux-any/linux/dvb/ca.h rename to lib/libc/include/any-linux-any/linux/dvb/ca.h diff --git a/libc/include/any-linux-any/linux/dvb/dmx.h b/lib/libc/include/any-linux-any/linux/dvb/dmx.h similarity index 100% rename from libc/include/any-linux-any/linux/dvb/dmx.h rename to lib/libc/include/any-linux-any/linux/dvb/dmx.h diff --git a/libc/include/any-linux-any/linux/dvb/frontend.h b/lib/libc/include/any-linux-any/linux/dvb/frontend.h similarity index 100% rename from libc/include/any-linux-any/linux/dvb/frontend.h rename to lib/libc/include/any-linux-any/linux/dvb/frontend.h diff --git a/libc/include/any-linux-any/linux/dvb/net.h b/lib/libc/include/any-linux-any/linux/dvb/net.h similarity index 100% rename from libc/include/any-linux-any/linux/dvb/net.h rename to lib/libc/include/any-linux-any/linux/dvb/net.h diff --git a/libc/include/any-linux-any/linux/dvb/osd.h b/lib/libc/include/any-linux-any/linux/dvb/osd.h similarity index 100% rename from libc/include/any-linux-any/linux/dvb/osd.h rename to lib/libc/include/any-linux-any/linux/dvb/osd.h diff --git a/libc/include/any-linux-any/linux/dvb/version.h b/lib/libc/include/any-linux-any/linux/dvb/version.h similarity index 100% rename from libc/include/any-linux-any/linux/dvb/version.h rename to lib/libc/include/any-linux-any/linux/dvb/version.h diff --git a/libc/include/any-linux-any/linux/dvb/video.h b/lib/libc/include/any-linux-any/linux/dvb/video.h similarity index 100% rename from libc/include/any-linux-any/linux/dvb/video.h rename to lib/libc/include/any-linux-any/linux/dvb/video.h diff --git a/libc/include/any-linux-any/linux/edd.h b/lib/libc/include/any-linux-any/linux/edd.h similarity index 100% rename from libc/include/any-linux-any/linux/edd.h rename to lib/libc/include/any-linux-any/linux/edd.h diff --git a/libc/include/any-linux-any/linux/efs_fs_sb.h b/lib/libc/include/any-linux-any/linux/efs_fs_sb.h similarity index 100% rename from libc/include/any-linux-any/linux/efs_fs_sb.h rename to lib/libc/include/any-linux-any/linux/efs_fs_sb.h diff --git a/libc/include/any-linux-any/linux/elf-em.h b/lib/libc/include/any-linux-any/linux/elf-em.h similarity index 100% rename from libc/include/any-linux-any/linux/elf-em.h rename to lib/libc/include/any-linux-any/linux/elf-em.h diff --git a/libc/include/any-linux-any/linux/elf-fdpic.h b/lib/libc/include/any-linux-any/linux/elf-fdpic.h similarity index 100% rename from libc/include/any-linux-any/linux/elf-fdpic.h rename to lib/libc/include/any-linux-any/linux/elf-fdpic.h diff --git a/libc/include/any-linux-any/linux/elf.h b/lib/libc/include/any-linux-any/linux/elf.h similarity index 100% rename from libc/include/any-linux-any/linux/elf.h rename to lib/libc/include/any-linux-any/linux/elf.h diff --git a/libc/include/any-linux-any/linux/elfcore.h b/lib/libc/include/any-linux-any/linux/elfcore.h similarity index 100% rename from libc/include/any-linux-any/linux/elfcore.h rename to lib/libc/include/any-linux-any/linux/elfcore.h diff --git a/libc/include/any-linux-any/linux/errno.h b/lib/libc/include/any-linux-any/linux/errno.h similarity index 100% rename from libc/include/any-linux-any/linux/errno.h rename to lib/libc/include/any-linux-any/linux/errno.h diff --git a/libc/include/any-linux-any/linux/errqueue.h b/lib/libc/include/any-linux-any/linux/errqueue.h similarity index 100% rename from libc/include/any-linux-any/linux/errqueue.h rename to lib/libc/include/any-linux-any/linux/errqueue.h diff --git a/libc/include/any-linux-any/linux/erspan.h b/lib/libc/include/any-linux-any/linux/erspan.h similarity index 100% rename from libc/include/any-linux-any/linux/erspan.h rename to lib/libc/include/any-linux-any/linux/erspan.h diff --git a/libc/include/any-linux-any/linux/ethtool.h b/lib/libc/include/any-linux-any/linux/ethtool.h similarity index 100% rename from libc/include/any-linux-any/linux/ethtool.h rename to lib/libc/include/any-linux-any/linux/ethtool.h diff --git a/libc/include/any-linux-any/linux/eventpoll.h b/lib/libc/include/any-linux-any/linux/eventpoll.h similarity index 100% rename from libc/include/any-linux-any/linux/eventpoll.h rename to lib/libc/include/any-linux-any/linux/eventpoll.h diff --git a/libc/include/any-linux-any/linux/fadvise.h b/lib/libc/include/any-linux-any/linux/fadvise.h similarity index 100% rename from libc/include/any-linux-any/linux/fadvise.h rename to lib/libc/include/any-linux-any/linux/fadvise.h diff --git a/libc/include/any-linux-any/linux/falloc.h b/lib/libc/include/any-linux-any/linux/falloc.h similarity index 100% rename from libc/include/any-linux-any/linux/falloc.h rename to lib/libc/include/any-linux-any/linux/falloc.h diff --git a/libc/include/any-linux-any/linux/fanotify.h b/lib/libc/include/any-linux-any/linux/fanotify.h similarity index 100% rename from libc/include/any-linux-any/linux/fanotify.h rename to lib/libc/include/any-linux-any/linux/fanotify.h diff --git a/libc/include/any-linux-any/linux/fb.h b/lib/libc/include/any-linux-any/linux/fb.h similarity index 100% rename from libc/include/any-linux-any/linux/fb.h rename to lib/libc/include/any-linux-any/linux/fb.h diff --git a/libc/include/any-linux-any/linux/fcntl.h b/lib/libc/include/any-linux-any/linux/fcntl.h similarity index 100% rename from libc/include/any-linux-any/linux/fcntl.h rename to lib/libc/include/any-linux-any/linux/fcntl.h diff --git a/libc/include/any-linux-any/linux/fd.h b/lib/libc/include/any-linux-any/linux/fd.h similarity index 100% rename from libc/include/any-linux-any/linux/fd.h rename to lib/libc/include/any-linux-any/linux/fd.h diff --git a/libc/include/any-linux-any/linux/fdreg.h b/lib/libc/include/any-linux-any/linux/fdreg.h similarity index 100% rename from libc/include/any-linux-any/linux/fdreg.h rename to lib/libc/include/any-linux-any/linux/fdreg.h diff --git a/libc/include/any-linux-any/linux/fib_rules.h b/lib/libc/include/any-linux-any/linux/fib_rules.h similarity index 100% rename from libc/include/any-linux-any/linux/fib_rules.h rename to lib/libc/include/any-linux-any/linux/fib_rules.h diff --git a/libc/include/any-linux-any/linux/fiemap.h b/lib/libc/include/any-linux-any/linux/fiemap.h similarity index 100% rename from libc/include/any-linux-any/linux/fiemap.h rename to lib/libc/include/any-linux-any/linux/fiemap.h diff --git a/libc/include/any-linux-any/linux/filter.h b/lib/libc/include/any-linux-any/linux/filter.h similarity index 100% rename from libc/include/any-linux-any/linux/filter.h rename to lib/libc/include/any-linux-any/linux/filter.h diff --git a/libc/include/any-linux-any/linux/firewire-cdev.h b/lib/libc/include/any-linux-any/linux/firewire-cdev.h similarity index 100% rename from libc/include/any-linux-any/linux/firewire-cdev.h rename to lib/libc/include/any-linux-any/linux/firewire-cdev.h diff --git a/libc/include/any-linux-any/linux/firewire-constants.h b/lib/libc/include/any-linux-any/linux/firewire-constants.h similarity index 100% rename from libc/include/any-linux-any/linux/firewire-constants.h rename to lib/libc/include/any-linux-any/linux/firewire-constants.h diff --git a/libc/include/any-linux-any/linux/flat.h b/lib/libc/include/any-linux-any/linux/flat.h similarity index 100% rename from libc/include/any-linux-any/linux/flat.h rename to lib/libc/include/any-linux-any/linux/flat.h diff --git a/libc/include/any-linux-any/linux/fou.h b/lib/libc/include/any-linux-any/linux/fou.h similarity index 100% rename from libc/include/any-linux-any/linux/fou.h rename to lib/libc/include/any-linux-any/linux/fou.h diff --git a/libc/include/any-linux-any/linux/fpga-dfl.h b/lib/libc/include/any-linux-any/linux/fpga-dfl.h similarity index 100% rename from libc/include/any-linux-any/linux/fpga-dfl.h rename to lib/libc/include/any-linux-any/linux/fpga-dfl.h diff --git a/libc/include/any-linux-any/linux/fs.h b/lib/libc/include/any-linux-any/linux/fs.h similarity index 100% rename from libc/include/any-linux-any/linux/fs.h rename to lib/libc/include/any-linux-any/linux/fs.h diff --git a/libc/include/any-linux-any/linux/fsi.h b/lib/libc/include/any-linux-any/linux/fsi.h similarity index 100% rename from libc/include/any-linux-any/linux/fsi.h rename to lib/libc/include/any-linux-any/linux/fsi.h diff --git a/libc/include/any-linux-any/linux/fsl_hypervisor.h b/lib/libc/include/any-linux-any/linux/fsl_hypervisor.h similarity index 100% rename from libc/include/any-linux-any/linux/fsl_hypervisor.h rename to lib/libc/include/any-linux-any/linux/fsl_hypervisor.h diff --git a/libc/include/any-linux-any/linux/fsmap.h b/lib/libc/include/any-linux-any/linux/fsmap.h similarity index 100% rename from libc/include/any-linux-any/linux/fsmap.h rename to lib/libc/include/any-linux-any/linux/fsmap.h diff --git a/libc/include/any-linux-any/linux/fuse.h b/lib/libc/include/any-linux-any/linux/fuse.h similarity index 100% rename from libc/include/any-linux-any/linux/fuse.h rename to lib/libc/include/any-linux-any/linux/fuse.h diff --git a/libc/include/any-linux-any/linux/futex.h b/lib/libc/include/any-linux-any/linux/futex.h similarity index 100% rename from libc/include/any-linux-any/linux/futex.h rename to lib/libc/include/any-linux-any/linux/futex.h diff --git a/libc/include/any-linux-any/linux/gameport.h b/lib/libc/include/any-linux-any/linux/gameport.h similarity index 100% rename from libc/include/any-linux-any/linux/gameport.h rename to lib/libc/include/any-linux-any/linux/gameport.h diff --git a/libc/include/any-linux-any/linux/gen_stats.h b/lib/libc/include/any-linux-any/linux/gen_stats.h similarity index 100% rename from libc/include/any-linux-any/linux/gen_stats.h rename to lib/libc/include/any-linux-any/linux/gen_stats.h diff --git a/libc/include/any-linux-any/linux/genetlink.h b/lib/libc/include/any-linux-any/linux/genetlink.h similarity index 100% rename from libc/include/any-linux-any/linux/genetlink.h rename to lib/libc/include/any-linux-any/linux/genetlink.h diff --git a/libc/include/any-linux-any/linux/genwqe/genwqe_card.h b/lib/libc/include/any-linux-any/linux/genwqe/genwqe_card.h similarity index 100% rename from libc/include/any-linux-any/linux/genwqe/genwqe_card.h rename to lib/libc/include/any-linux-any/linux/genwqe/genwqe_card.h diff --git a/libc/include/any-linux-any/linux/gfs2_ondisk.h b/lib/libc/include/any-linux-any/linux/gfs2_ondisk.h similarity index 100% rename from libc/include/any-linux-any/linux/gfs2_ondisk.h rename to lib/libc/include/any-linux-any/linux/gfs2_ondisk.h diff --git a/libc/include/any-linux-any/linux/gigaset_dev.h b/lib/libc/include/any-linux-any/linux/gigaset_dev.h similarity index 100% rename from libc/include/any-linux-any/linux/gigaset_dev.h rename to lib/libc/include/any-linux-any/linux/gigaset_dev.h diff --git a/libc/include/any-linux-any/linux/gpio.h b/lib/libc/include/any-linux-any/linux/gpio.h similarity index 100% rename from libc/include/any-linux-any/linux/gpio.h rename to lib/libc/include/any-linux-any/linux/gpio.h diff --git a/libc/include/any-linux-any/linux/gsmmux.h b/lib/libc/include/any-linux-any/linux/gsmmux.h similarity index 100% rename from libc/include/any-linux-any/linux/gsmmux.h rename to lib/libc/include/any-linux-any/linux/gsmmux.h diff --git a/libc/include/any-linux-any/linux/gtp.h b/lib/libc/include/any-linux-any/linux/gtp.h similarity index 100% rename from libc/include/any-linux-any/linux/gtp.h rename to lib/libc/include/any-linux-any/linux/gtp.h diff --git a/libc/include/any-linux-any/linux/hash_info.h b/lib/libc/include/any-linux-any/linux/hash_info.h similarity index 100% rename from libc/include/any-linux-any/linux/hash_info.h rename to lib/libc/include/any-linux-any/linux/hash_info.h diff --git a/libc/include/any-linux-any/linux/hdlc.h b/lib/libc/include/any-linux-any/linux/hdlc.h similarity index 100% rename from libc/include/any-linux-any/linux/hdlc.h rename to lib/libc/include/any-linux-any/linux/hdlc.h diff --git a/libc/include/any-linux-any/linux/hdlc/ioctl.h b/lib/libc/include/any-linux-any/linux/hdlc/ioctl.h similarity index 100% rename from libc/include/any-linux-any/linux/hdlc/ioctl.h rename to lib/libc/include/any-linux-any/linux/hdlc/ioctl.h diff --git a/libc/include/any-linux-any/linux/hdlcdrv.h b/lib/libc/include/any-linux-any/linux/hdlcdrv.h similarity index 100% rename from libc/include/any-linux-any/linux/hdlcdrv.h rename to lib/libc/include/any-linux-any/linux/hdlcdrv.h diff --git a/libc/include/any-linux-any/linux/hdreg.h b/lib/libc/include/any-linux-any/linux/hdreg.h similarity index 100% rename from libc/include/any-linux-any/linux/hdreg.h rename to lib/libc/include/any-linux-any/linux/hdreg.h diff --git a/libc/include/any-linux-any/linux/hid.h b/lib/libc/include/any-linux-any/linux/hid.h similarity index 100% rename from libc/include/any-linux-any/linux/hid.h rename to lib/libc/include/any-linux-any/linux/hid.h diff --git a/libc/include/any-linux-any/linux/hiddev.h b/lib/libc/include/any-linux-any/linux/hiddev.h similarity index 100% rename from libc/include/any-linux-any/linux/hiddev.h rename to lib/libc/include/any-linux-any/linux/hiddev.h diff --git a/libc/include/any-linux-any/linux/hidraw.h b/lib/libc/include/any-linux-any/linux/hidraw.h similarity index 100% rename from libc/include/any-linux-any/linux/hidraw.h rename to lib/libc/include/any-linux-any/linux/hidraw.h diff --git a/libc/include/any-linux-any/linux/hpet.h b/lib/libc/include/any-linux-any/linux/hpet.h similarity index 100% rename from libc/include/any-linux-any/linux/hpet.h rename to lib/libc/include/any-linux-any/linux/hpet.h diff --git a/libc/include/any-linux-any/linux/hsi/cs-protocol.h b/lib/libc/include/any-linux-any/linux/hsi/cs-protocol.h similarity index 100% rename from libc/include/any-linux-any/linux/hsi/cs-protocol.h rename to lib/libc/include/any-linux-any/linux/hsi/cs-protocol.h diff --git a/libc/include/any-linux-any/linux/hsi/hsi_char.h b/lib/libc/include/any-linux-any/linux/hsi/hsi_char.h similarity index 100% rename from libc/include/any-linux-any/linux/hsi/hsi_char.h rename to lib/libc/include/any-linux-any/linux/hsi/hsi_char.h diff --git a/libc/include/any-linux-any/linux/hsr_netlink.h b/lib/libc/include/any-linux-any/linux/hsr_netlink.h similarity index 100% rename from libc/include/any-linux-any/linux/hsr_netlink.h rename to lib/libc/include/any-linux-any/linux/hsr_netlink.h diff --git a/libc/include/any-linux-any/linux/hw_breakpoint.h b/lib/libc/include/any-linux-any/linux/hw_breakpoint.h similarity index 100% rename from libc/include/any-linux-any/linux/hw_breakpoint.h rename to lib/libc/include/any-linux-any/linux/hw_breakpoint.h diff --git a/libc/include/any-linux-any/linux/hyperv.h b/lib/libc/include/any-linux-any/linux/hyperv.h similarity index 100% rename from libc/include/any-linux-any/linux/hyperv.h rename to lib/libc/include/any-linux-any/linux/hyperv.h diff --git a/libc/include/any-linux-any/linux/hysdn_if.h b/lib/libc/include/any-linux-any/linux/hysdn_if.h similarity index 100% rename from libc/include/any-linux-any/linux/hysdn_if.h rename to lib/libc/include/any-linux-any/linux/hysdn_if.h diff --git a/libc/include/any-linux-any/linux/i2c-dev.h b/lib/libc/include/any-linux-any/linux/i2c-dev.h similarity index 100% rename from libc/include/any-linux-any/linux/i2c-dev.h rename to lib/libc/include/any-linux-any/linux/i2c-dev.h diff --git a/libc/include/any-linux-any/linux/i2c.h b/lib/libc/include/any-linux-any/linux/i2c.h similarity index 100% rename from libc/include/any-linux-any/linux/i2c.h rename to lib/libc/include/any-linux-any/linux/i2c.h diff --git a/libc/include/any-linux-any/linux/i2o-dev.h b/lib/libc/include/any-linux-any/linux/i2o-dev.h similarity index 100% rename from libc/include/any-linux-any/linux/i2o-dev.h rename to lib/libc/include/any-linux-any/linux/i2o-dev.h diff --git a/libc/include/any-linux-any/linux/i8k.h b/lib/libc/include/any-linux-any/linux/i8k.h similarity index 100% rename from libc/include/any-linux-any/linux/i8k.h rename to lib/libc/include/any-linux-any/linux/i8k.h diff --git a/libc/include/any-linux-any/linux/icmp.h b/lib/libc/include/any-linux-any/linux/icmp.h similarity index 100% rename from libc/include/any-linux-any/linux/icmp.h rename to lib/libc/include/any-linux-any/linux/icmp.h diff --git a/libc/include/any-linux-any/linux/icmpv6.h b/lib/libc/include/any-linux-any/linux/icmpv6.h similarity index 100% rename from libc/include/any-linux-any/linux/icmpv6.h rename to lib/libc/include/any-linux-any/linux/icmpv6.h diff --git a/libc/include/any-linux-any/linux/if.h b/lib/libc/include/any-linux-any/linux/if.h similarity index 100% rename from libc/include/any-linux-any/linux/if.h rename to lib/libc/include/any-linux-any/linux/if.h diff --git a/libc/include/any-linux-any/linux/if_addr.h b/lib/libc/include/any-linux-any/linux/if_addr.h similarity index 100% rename from libc/include/any-linux-any/linux/if_addr.h rename to lib/libc/include/any-linux-any/linux/if_addr.h diff --git a/libc/include/any-linux-any/linux/if_addrlabel.h b/lib/libc/include/any-linux-any/linux/if_addrlabel.h similarity index 100% rename from libc/include/any-linux-any/linux/if_addrlabel.h rename to lib/libc/include/any-linux-any/linux/if_addrlabel.h diff --git a/libc/include/any-linux-any/linux/if_alg.h b/lib/libc/include/any-linux-any/linux/if_alg.h similarity index 100% rename from libc/include/any-linux-any/linux/if_alg.h rename to lib/libc/include/any-linux-any/linux/if_alg.h diff --git a/libc/include/any-linux-any/linux/if_arcnet.h b/lib/libc/include/any-linux-any/linux/if_arcnet.h similarity index 100% rename from libc/include/any-linux-any/linux/if_arcnet.h rename to lib/libc/include/any-linux-any/linux/if_arcnet.h diff --git a/libc/include/any-linux-any/linux/if_arp.h b/lib/libc/include/any-linux-any/linux/if_arp.h similarity index 100% rename from libc/include/any-linux-any/linux/if_arp.h rename to lib/libc/include/any-linux-any/linux/if_arp.h diff --git a/libc/include/any-linux-any/linux/if_bonding.h b/lib/libc/include/any-linux-any/linux/if_bonding.h similarity index 100% rename from libc/include/any-linux-any/linux/if_bonding.h rename to lib/libc/include/any-linux-any/linux/if_bonding.h diff --git a/libc/include/any-linux-any/linux/if_bridge.h b/lib/libc/include/any-linux-any/linux/if_bridge.h similarity index 100% rename from libc/include/any-linux-any/linux/if_bridge.h rename to lib/libc/include/any-linux-any/linux/if_bridge.h diff --git a/libc/include/any-linux-any/linux/if_cablemodem.h b/lib/libc/include/any-linux-any/linux/if_cablemodem.h similarity index 100% rename from libc/include/any-linux-any/linux/if_cablemodem.h rename to lib/libc/include/any-linux-any/linux/if_cablemodem.h diff --git a/libc/include/any-linux-any/linux/if_eql.h b/lib/libc/include/any-linux-any/linux/if_eql.h similarity index 100% rename from libc/include/any-linux-any/linux/if_eql.h rename to lib/libc/include/any-linux-any/linux/if_eql.h diff --git a/libc/include/any-linux-any/linux/if_ether.h b/lib/libc/include/any-linux-any/linux/if_ether.h similarity index 100% rename from libc/include/any-linux-any/linux/if_ether.h rename to lib/libc/include/any-linux-any/linux/if_ether.h diff --git a/libc/include/any-linux-any/linux/if_fc.h b/lib/libc/include/any-linux-any/linux/if_fc.h similarity index 100% rename from libc/include/any-linux-any/linux/if_fc.h rename to lib/libc/include/any-linux-any/linux/if_fc.h diff --git a/libc/include/any-linux-any/linux/if_fddi.h b/lib/libc/include/any-linux-any/linux/if_fddi.h similarity index 100% rename from libc/include/any-linux-any/linux/if_fddi.h rename to lib/libc/include/any-linux-any/linux/if_fddi.h diff --git a/libc/include/any-linux-any/linux/if_frad.h b/lib/libc/include/any-linux-any/linux/if_frad.h similarity index 100% rename from libc/include/any-linux-any/linux/if_frad.h rename to lib/libc/include/any-linux-any/linux/if_frad.h diff --git a/libc/include/any-linux-any/linux/if_hippi.h b/lib/libc/include/any-linux-any/linux/if_hippi.h similarity index 100% rename from libc/include/any-linux-any/linux/if_hippi.h rename to lib/libc/include/any-linux-any/linux/if_hippi.h diff --git a/libc/include/any-linux-any/linux/if_infiniband.h b/lib/libc/include/any-linux-any/linux/if_infiniband.h similarity index 100% rename from libc/include/any-linux-any/linux/if_infiniband.h rename to lib/libc/include/any-linux-any/linux/if_infiniband.h diff --git a/libc/include/any-linux-any/linux/if_link.h b/lib/libc/include/any-linux-any/linux/if_link.h similarity index 100% rename from libc/include/any-linux-any/linux/if_link.h rename to lib/libc/include/any-linux-any/linux/if_link.h diff --git a/libc/include/any-linux-any/linux/if_ltalk.h b/lib/libc/include/any-linux-any/linux/if_ltalk.h similarity index 100% rename from libc/include/any-linux-any/linux/if_ltalk.h rename to lib/libc/include/any-linux-any/linux/if_ltalk.h diff --git a/libc/include/any-linux-any/linux/if_macsec.h b/lib/libc/include/any-linux-any/linux/if_macsec.h similarity index 100% rename from libc/include/any-linux-any/linux/if_macsec.h rename to lib/libc/include/any-linux-any/linux/if_macsec.h diff --git a/libc/include/any-linux-any/linux/if_packet.h b/lib/libc/include/any-linux-any/linux/if_packet.h similarity index 100% rename from libc/include/any-linux-any/linux/if_packet.h rename to lib/libc/include/any-linux-any/linux/if_packet.h diff --git a/libc/include/any-linux-any/linux/if_phonet.h b/lib/libc/include/any-linux-any/linux/if_phonet.h similarity index 100% rename from libc/include/any-linux-any/linux/if_phonet.h rename to lib/libc/include/any-linux-any/linux/if_phonet.h diff --git a/libc/include/any-linux-any/linux/if_plip.h b/lib/libc/include/any-linux-any/linux/if_plip.h similarity index 100% rename from libc/include/any-linux-any/linux/if_plip.h rename to lib/libc/include/any-linux-any/linux/if_plip.h diff --git a/libc/include/any-linux-any/linux/if_ppp.h b/lib/libc/include/any-linux-any/linux/if_ppp.h similarity index 100% rename from libc/include/any-linux-any/linux/if_ppp.h rename to lib/libc/include/any-linux-any/linux/if_ppp.h diff --git a/libc/include/any-linux-any/linux/if_pppol2tp.h b/lib/libc/include/any-linux-any/linux/if_pppol2tp.h similarity index 100% rename from libc/include/any-linux-any/linux/if_pppol2tp.h rename to lib/libc/include/any-linux-any/linux/if_pppol2tp.h diff --git a/libc/include/any-linux-any/linux/if_pppox.h b/lib/libc/include/any-linux-any/linux/if_pppox.h similarity index 100% rename from libc/include/any-linux-any/linux/if_pppox.h rename to lib/libc/include/any-linux-any/linux/if_pppox.h diff --git a/libc/include/any-linux-any/linux/if_slip.h b/lib/libc/include/any-linux-any/linux/if_slip.h similarity index 100% rename from libc/include/any-linux-any/linux/if_slip.h rename to lib/libc/include/any-linux-any/linux/if_slip.h diff --git a/libc/include/any-linux-any/linux/if_team.h b/lib/libc/include/any-linux-any/linux/if_team.h similarity index 100% rename from libc/include/any-linux-any/linux/if_team.h rename to lib/libc/include/any-linux-any/linux/if_team.h diff --git a/libc/include/any-linux-any/linux/if_tun.h b/lib/libc/include/any-linux-any/linux/if_tun.h similarity index 100% rename from libc/include/any-linux-any/linux/if_tun.h rename to lib/libc/include/any-linux-any/linux/if_tun.h diff --git a/libc/include/any-linux-any/linux/if_tunnel.h b/lib/libc/include/any-linux-any/linux/if_tunnel.h similarity index 100% rename from libc/include/any-linux-any/linux/if_tunnel.h rename to lib/libc/include/any-linux-any/linux/if_tunnel.h diff --git a/libc/include/any-linux-any/linux/if_vlan.h b/lib/libc/include/any-linux-any/linux/if_vlan.h similarity index 100% rename from libc/include/any-linux-any/linux/if_vlan.h rename to lib/libc/include/any-linux-any/linux/if_vlan.h diff --git a/libc/include/any-linux-any/linux/if_x25.h b/lib/libc/include/any-linux-any/linux/if_x25.h similarity index 100% rename from libc/include/any-linux-any/linux/if_x25.h rename to lib/libc/include/any-linux-any/linux/if_x25.h diff --git a/libc/include/any-linux-any/linux/if_xdp.h b/lib/libc/include/any-linux-any/linux/if_xdp.h similarity index 100% rename from libc/include/any-linux-any/linux/if_xdp.h rename to lib/libc/include/any-linux-any/linux/if_xdp.h diff --git a/libc/include/any-linux-any/linux/ife.h b/lib/libc/include/any-linux-any/linux/ife.h similarity index 100% rename from libc/include/any-linux-any/linux/ife.h rename to lib/libc/include/any-linux-any/linux/ife.h diff --git a/libc/include/any-linux-any/linux/igmp.h b/lib/libc/include/any-linux-any/linux/igmp.h similarity index 100% rename from libc/include/any-linux-any/linux/igmp.h rename to lib/libc/include/any-linux-any/linux/igmp.h diff --git a/libc/include/any-linux-any/linux/iio/events.h b/lib/libc/include/any-linux-any/linux/iio/events.h similarity index 100% rename from libc/include/any-linux-any/linux/iio/events.h rename to lib/libc/include/any-linux-any/linux/iio/events.h diff --git a/libc/include/any-linux-any/linux/iio/types.h b/lib/libc/include/any-linux-any/linux/iio/types.h similarity index 100% rename from libc/include/any-linux-any/linux/iio/types.h rename to lib/libc/include/any-linux-any/linux/iio/types.h diff --git a/libc/include/any-linux-any/linux/ila.h b/lib/libc/include/any-linux-any/linux/ila.h similarity index 100% rename from libc/include/any-linux-any/linux/ila.h rename to lib/libc/include/any-linux-any/linux/ila.h diff --git a/libc/include/any-linux-any/linux/in.h b/lib/libc/include/any-linux-any/linux/in.h similarity index 100% rename from libc/include/any-linux-any/linux/in.h rename to lib/libc/include/any-linux-any/linux/in.h diff --git a/libc/include/any-linux-any/linux/in6.h b/lib/libc/include/any-linux-any/linux/in6.h similarity index 100% rename from libc/include/any-linux-any/linux/in6.h rename to lib/libc/include/any-linux-any/linux/in6.h diff --git a/libc/include/any-linux-any/linux/in_route.h b/lib/libc/include/any-linux-any/linux/in_route.h similarity index 100% rename from libc/include/any-linux-any/linux/in_route.h rename to lib/libc/include/any-linux-any/linux/in_route.h diff --git a/libc/include/any-linux-any/linux/inet_diag.h b/lib/libc/include/any-linux-any/linux/inet_diag.h similarity index 100% rename from libc/include/any-linux-any/linux/inet_diag.h rename to lib/libc/include/any-linux-any/linux/inet_diag.h diff --git a/libc/include/any-linux-any/linux/inotify.h b/lib/libc/include/any-linux-any/linux/inotify.h similarity index 100% rename from libc/include/any-linux-any/linux/inotify.h rename to lib/libc/include/any-linux-any/linux/inotify.h diff --git a/libc/include/any-linux-any/linux/input-event-codes.h b/lib/libc/include/any-linux-any/linux/input-event-codes.h similarity index 100% rename from libc/include/any-linux-any/linux/input-event-codes.h rename to lib/libc/include/any-linux-any/linux/input-event-codes.h diff --git a/libc/include/any-linux-any/linux/input.h b/lib/libc/include/any-linux-any/linux/input.h similarity index 100% rename from libc/include/any-linux-any/linux/input.h rename to lib/libc/include/any-linux-any/linux/input.h diff --git a/libc/include/any-linux-any/linux/ioctl.h b/lib/libc/include/any-linux-any/linux/ioctl.h similarity index 100% rename from libc/include/any-linux-any/linux/ioctl.h rename to lib/libc/include/any-linux-any/linux/ioctl.h diff --git a/libc/include/any-linux-any/linux/ip.h b/lib/libc/include/any-linux-any/linux/ip.h similarity index 100% rename from libc/include/any-linux-any/linux/ip.h rename to lib/libc/include/any-linux-any/linux/ip.h diff --git a/libc/include/any-linux-any/linux/ip6_tunnel.h b/lib/libc/include/any-linux-any/linux/ip6_tunnel.h similarity index 100% rename from libc/include/any-linux-any/linux/ip6_tunnel.h rename to lib/libc/include/any-linux-any/linux/ip6_tunnel.h diff --git a/libc/include/any-linux-any/linux/ip_vs.h b/lib/libc/include/any-linux-any/linux/ip_vs.h similarity index 100% rename from libc/include/any-linux-any/linux/ip_vs.h rename to lib/libc/include/any-linux-any/linux/ip_vs.h diff --git a/libc/include/any-linux-any/linux/ipc.h b/lib/libc/include/any-linux-any/linux/ipc.h similarity index 100% rename from libc/include/any-linux-any/linux/ipc.h rename to lib/libc/include/any-linux-any/linux/ipc.h diff --git a/libc/include/any-linux-any/linux/ipmi.h b/lib/libc/include/any-linux-any/linux/ipmi.h similarity index 100% rename from libc/include/any-linux-any/linux/ipmi.h rename to lib/libc/include/any-linux-any/linux/ipmi.h diff --git a/libc/include/any-linux-any/linux/ipmi_bmc.h b/lib/libc/include/any-linux-any/linux/ipmi_bmc.h similarity index 100% rename from libc/include/any-linux-any/linux/ipmi_bmc.h rename to lib/libc/include/any-linux-any/linux/ipmi_bmc.h diff --git a/libc/include/any-linux-any/linux/ipmi_msgdefs.h b/lib/libc/include/any-linux-any/linux/ipmi_msgdefs.h similarity index 100% rename from libc/include/any-linux-any/linux/ipmi_msgdefs.h rename to lib/libc/include/any-linux-any/linux/ipmi_msgdefs.h diff --git a/libc/include/any-linux-any/linux/ipsec.h b/lib/libc/include/any-linux-any/linux/ipsec.h similarity index 100% rename from libc/include/any-linux-any/linux/ipsec.h rename to lib/libc/include/any-linux-any/linux/ipsec.h diff --git a/libc/include/any-linux-any/linux/ipv6.h b/lib/libc/include/any-linux-any/linux/ipv6.h similarity index 100% rename from libc/include/any-linux-any/linux/ipv6.h rename to lib/libc/include/any-linux-any/linux/ipv6.h diff --git a/libc/include/any-linux-any/linux/ipv6_route.h b/lib/libc/include/any-linux-any/linux/ipv6_route.h similarity index 100% rename from libc/include/any-linux-any/linux/ipv6_route.h rename to lib/libc/include/any-linux-any/linux/ipv6_route.h diff --git a/libc/include/any-linux-any/linux/ipx.h b/lib/libc/include/any-linux-any/linux/ipx.h similarity index 100% rename from libc/include/any-linux-any/linux/ipx.h rename to lib/libc/include/any-linux-any/linux/ipx.h diff --git a/libc/include/any-linux-any/linux/irqnr.h b/lib/libc/include/any-linux-any/linux/irqnr.h similarity index 100% rename from libc/include/any-linux-any/linux/irqnr.h rename to lib/libc/include/any-linux-any/linux/irqnr.h diff --git a/libc/include/any-linux-any/linux/isdn.h b/lib/libc/include/any-linux-any/linux/isdn.h similarity index 100% rename from libc/include/any-linux-any/linux/isdn.h rename to lib/libc/include/any-linux-any/linux/isdn.h diff --git a/libc/include/any-linux-any/linux/isdn/capicmd.h b/lib/libc/include/any-linux-any/linux/isdn/capicmd.h similarity index 100% rename from libc/include/any-linux-any/linux/isdn/capicmd.h rename to lib/libc/include/any-linux-any/linux/isdn/capicmd.h diff --git a/libc/include/any-linux-any/linux/isdn_divertif.h b/lib/libc/include/any-linux-any/linux/isdn_divertif.h similarity index 100% rename from libc/include/any-linux-any/linux/isdn_divertif.h rename to lib/libc/include/any-linux-any/linux/isdn_divertif.h diff --git a/libc/include/any-linux-any/linux/isdn_ppp.h b/lib/libc/include/any-linux-any/linux/isdn_ppp.h similarity index 100% rename from libc/include/any-linux-any/linux/isdn_ppp.h rename to lib/libc/include/any-linux-any/linux/isdn_ppp.h diff --git a/libc/include/any-linux-any/linux/isdnif.h b/lib/libc/include/any-linux-any/linux/isdnif.h similarity index 100% rename from libc/include/any-linux-any/linux/isdnif.h rename to lib/libc/include/any-linux-any/linux/isdnif.h diff --git a/libc/include/any-linux-any/linux/iso_fs.h b/lib/libc/include/any-linux-any/linux/iso_fs.h similarity index 100% rename from libc/include/any-linux-any/linux/iso_fs.h rename to lib/libc/include/any-linux-any/linux/iso_fs.h diff --git a/libc/include/any-linux-any/linux/ivtv.h b/lib/libc/include/any-linux-any/linux/ivtv.h similarity index 100% rename from libc/include/any-linux-any/linux/ivtv.h rename to lib/libc/include/any-linux-any/linux/ivtv.h diff --git a/libc/include/any-linux-any/linux/ivtvfb.h b/lib/libc/include/any-linux-any/linux/ivtvfb.h similarity index 100% rename from libc/include/any-linux-any/linux/ivtvfb.h rename to lib/libc/include/any-linux-any/linux/ivtvfb.h diff --git a/libc/include/any-linux-any/linux/jffs2.h b/lib/libc/include/any-linux-any/linux/jffs2.h similarity index 100% rename from libc/include/any-linux-any/linux/jffs2.h rename to lib/libc/include/any-linux-any/linux/jffs2.h diff --git a/libc/include/any-linux-any/linux/joystick.h b/lib/libc/include/any-linux-any/linux/joystick.h similarity index 100% rename from libc/include/any-linux-any/linux/joystick.h rename to lib/libc/include/any-linux-any/linux/joystick.h diff --git a/libc/include/any-linux-any/linux/kcm.h b/lib/libc/include/any-linux-any/linux/kcm.h similarity index 100% rename from libc/include/any-linux-any/linux/kcm.h rename to lib/libc/include/any-linux-any/linux/kcm.h diff --git a/libc/include/any-linux-any/linux/kcmp.h b/lib/libc/include/any-linux-any/linux/kcmp.h similarity index 100% rename from libc/include/any-linux-any/linux/kcmp.h rename to lib/libc/include/any-linux-any/linux/kcmp.h diff --git a/libc/include/any-linux-any/linux/kcov.h b/lib/libc/include/any-linux-any/linux/kcov.h similarity index 100% rename from libc/include/any-linux-any/linux/kcov.h rename to lib/libc/include/any-linux-any/linux/kcov.h diff --git a/libc/include/any-linux-any/linux/kd.h b/lib/libc/include/any-linux-any/linux/kd.h similarity index 100% rename from libc/include/any-linux-any/linux/kd.h rename to lib/libc/include/any-linux-any/linux/kd.h diff --git a/libc/include/any-linux-any/linux/kdev_t.h b/lib/libc/include/any-linux-any/linux/kdev_t.h similarity index 100% rename from libc/include/any-linux-any/linux/kdev_t.h rename to lib/libc/include/any-linux-any/linux/kdev_t.h diff --git a/libc/include/any-linux-any/linux/kernel-page-flags.h b/lib/libc/include/any-linux-any/linux/kernel-page-flags.h similarity index 100% rename from libc/include/any-linux-any/linux/kernel-page-flags.h rename to lib/libc/include/any-linux-any/linux/kernel-page-flags.h diff --git a/libc/include/any-linux-any/linux/kernel.h b/lib/libc/include/any-linux-any/linux/kernel.h similarity index 100% rename from libc/include/any-linux-any/linux/kernel.h rename to lib/libc/include/any-linux-any/linux/kernel.h diff --git a/libc/include/any-linux-any/linux/kernelcapi.h b/lib/libc/include/any-linux-any/linux/kernelcapi.h similarity index 100% rename from libc/include/any-linux-any/linux/kernelcapi.h rename to lib/libc/include/any-linux-any/linux/kernelcapi.h diff --git a/libc/include/any-linux-any/linux/kexec.h b/lib/libc/include/any-linux-any/linux/kexec.h similarity index 100% rename from libc/include/any-linux-any/linux/kexec.h rename to lib/libc/include/any-linux-any/linux/kexec.h diff --git a/libc/include/any-linux-any/linux/keyboard.h b/lib/libc/include/any-linux-any/linux/keyboard.h similarity index 100% rename from libc/include/any-linux-any/linux/keyboard.h rename to lib/libc/include/any-linux-any/linux/keyboard.h diff --git a/libc/include/any-linux-any/linux/keyctl.h b/lib/libc/include/any-linux-any/linux/keyctl.h similarity index 100% rename from libc/include/any-linux-any/linux/keyctl.h rename to lib/libc/include/any-linux-any/linux/keyctl.h diff --git a/libc/include/any-linux-any/linux/kfd_ioctl.h b/lib/libc/include/any-linux-any/linux/kfd_ioctl.h similarity index 100% rename from libc/include/any-linux-any/linux/kfd_ioctl.h rename to lib/libc/include/any-linux-any/linux/kfd_ioctl.h diff --git a/libc/include/any-linux-any/linux/kvm.h b/lib/libc/include/any-linux-any/linux/kvm.h similarity index 100% rename from libc/include/any-linux-any/linux/kvm.h rename to lib/libc/include/any-linux-any/linux/kvm.h diff --git a/libc/include/any-linux-any/linux/kvm_para.h b/lib/libc/include/any-linux-any/linux/kvm_para.h similarity index 100% rename from libc/include/any-linux-any/linux/kvm_para.h rename to lib/libc/include/any-linux-any/linux/kvm_para.h diff --git a/libc/include/any-linux-any/linux/l2tp.h b/lib/libc/include/any-linux-any/linux/l2tp.h similarity index 100% rename from libc/include/any-linux-any/linux/l2tp.h rename to lib/libc/include/any-linux-any/linux/l2tp.h diff --git a/libc/include/any-linux-any/linux/libc-compat.h b/lib/libc/include/any-linux-any/linux/libc-compat.h similarity index 100% rename from libc/include/any-linux-any/linux/libc-compat.h rename to lib/libc/include/any-linux-any/linux/libc-compat.h diff --git a/libc/include/any-linux-any/linux/lightnvm.h b/lib/libc/include/any-linux-any/linux/lightnvm.h similarity index 100% rename from libc/include/any-linux-any/linux/lightnvm.h rename to lib/libc/include/any-linux-any/linux/lightnvm.h diff --git a/libc/include/any-linux-any/linux/limits.h b/lib/libc/include/any-linux-any/linux/limits.h similarity index 100% rename from libc/include/any-linux-any/linux/limits.h rename to lib/libc/include/any-linux-any/linux/limits.h diff --git a/libc/include/any-linux-any/linux/lirc.h b/lib/libc/include/any-linux-any/linux/lirc.h similarity index 100% rename from libc/include/any-linux-any/linux/lirc.h rename to lib/libc/include/any-linux-any/linux/lirc.h diff --git a/libc/include/any-linux-any/linux/llc.h b/lib/libc/include/any-linux-any/linux/llc.h similarity index 100% rename from libc/include/any-linux-any/linux/llc.h rename to lib/libc/include/any-linux-any/linux/llc.h diff --git a/libc/include/any-linux-any/linux/loop.h b/lib/libc/include/any-linux-any/linux/loop.h similarity index 100% rename from libc/include/any-linux-any/linux/loop.h rename to lib/libc/include/any-linux-any/linux/loop.h diff --git a/libc/include/any-linux-any/linux/lp.h b/lib/libc/include/any-linux-any/linux/lp.h similarity index 100% rename from libc/include/any-linux-any/linux/lp.h rename to lib/libc/include/any-linux-any/linux/lp.h diff --git a/libc/include/any-linux-any/linux/lwtunnel.h b/lib/libc/include/any-linux-any/linux/lwtunnel.h similarity index 100% rename from libc/include/any-linux-any/linux/lwtunnel.h rename to lib/libc/include/any-linux-any/linux/lwtunnel.h diff --git a/libc/include/any-linux-any/linux/magic.h b/lib/libc/include/any-linux-any/linux/magic.h similarity index 100% rename from libc/include/any-linux-any/linux/magic.h rename to lib/libc/include/any-linux-any/linux/magic.h diff --git a/libc/include/any-linux-any/linux/major.h b/lib/libc/include/any-linux-any/linux/major.h similarity index 100% rename from libc/include/any-linux-any/linux/major.h rename to lib/libc/include/any-linux-any/linux/major.h diff --git a/libc/include/any-linux-any/linux/map_to_7segment.h b/lib/libc/include/any-linux-any/linux/map_to_7segment.h similarity index 100% rename from libc/include/any-linux-any/linux/map_to_7segment.h rename to lib/libc/include/any-linux-any/linux/map_to_7segment.h diff --git a/libc/include/any-linux-any/linux/matroxfb.h b/lib/libc/include/any-linux-any/linux/matroxfb.h similarity index 100% rename from libc/include/any-linux-any/linux/matroxfb.h rename to lib/libc/include/any-linux-any/linux/matroxfb.h diff --git a/libc/include/any-linux-any/linux/max2175.h b/lib/libc/include/any-linux-any/linux/max2175.h similarity index 100% rename from libc/include/any-linux-any/linux/max2175.h rename to lib/libc/include/any-linux-any/linux/max2175.h diff --git a/libc/include/any-linux-any/linux/mdio.h b/lib/libc/include/any-linux-any/linux/mdio.h similarity index 100% rename from libc/include/any-linux-any/linux/mdio.h rename to lib/libc/include/any-linux-any/linux/mdio.h diff --git a/libc/include/any-linux-any/linux/media-bus-format.h b/lib/libc/include/any-linux-any/linux/media-bus-format.h similarity index 100% rename from libc/include/any-linux-any/linux/media-bus-format.h rename to lib/libc/include/any-linux-any/linux/media-bus-format.h diff --git a/libc/include/any-linux-any/linux/media.h b/lib/libc/include/any-linux-any/linux/media.h similarity index 100% rename from libc/include/any-linux-any/linux/media.h rename to lib/libc/include/any-linux-any/linux/media.h diff --git a/libc/include/any-linux-any/linux/mei.h b/lib/libc/include/any-linux-any/linux/mei.h similarity index 100% rename from libc/include/any-linux-any/linux/mei.h rename to lib/libc/include/any-linux-any/linux/mei.h diff --git a/libc/include/any-linux-any/linux/membarrier.h b/lib/libc/include/any-linux-any/linux/membarrier.h similarity index 100% rename from libc/include/any-linux-any/linux/membarrier.h rename to lib/libc/include/any-linux-any/linux/membarrier.h diff --git a/libc/include/any-linux-any/linux/memfd.h b/lib/libc/include/any-linux-any/linux/memfd.h similarity index 100% rename from libc/include/any-linux-any/linux/memfd.h rename to lib/libc/include/any-linux-any/linux/memfd.h diff --git a/libc/include/any-linux-any/linux/mempolicy.h b/lib/libc/include/any-linux-any/linux/mempolicy.h similarity index 100% rename from libc/include/any-linux-any/linux/mempolicy.h rename to lib/libc/include/any-linux-any/linux/mempolicy.h diff --git a/libc/include/any-linux-any/linux/meye.h b/lib/libc/include/any-linux-any/linux/meye.h similarity index 100% rename from libc/include/any-linux-any/linux/meye.h rename to lib/libc/include/any-linux-any/linux/meye.h diff --git a/libc/include/any-linux-any/linux/mic_common.h b/lib/libc/include/any-linux-any/linux/mic_common.h similarity index 100% rename from libc/include/any-linux-any/linux/mic_common.h rename to lib/libc/include/any-linux-any/linux/mic_common.h diff --git a/libc/include/any-linux-any/linux/mic_ioctl.h b/lib/libc/include/any-linux-any/linux/mic_ioctl.h similarity index 100% rename from libc/include/any-linux-any/linux/mic_ioctl.h rename to lib/libc/include/any-linux-any/linux/mic_ioctl.h diff --git a/libc/include/any-linux-any/linux/mii.h b/lib/libc/include/any-linux-any/linux/mii.h similarity index 100% rename from libc/include/any-linux-any/linux/mii.h rename to lib/libc/include/any-linux-any/linux/mii.h diff --git a/libc/include/any-linux-any/linux/minix_fs.h b/lib/libc/include/any-linux-any/linux/minix_fs.h similarity index 100% rename from libc/include/any-linux-any/linux/minix_fs.h rename to lib/libc/include/any-linux-any/linux/minix_fs.h diff --git a/libc/include/any-linux-any/linux/mman.h b/lib/libc/include/any-linux-any/linux/mman.h similarity index 100% rename from libc/include/any-linux-any/linux/mman.h rename to lib/libc/include/any-linux-any/linux/mman.h diff --git a/libc/include/any-linux-any/linux/mmc/ioctl.h b/lib/libc/include/any-linux-any/linux/mmc/ioctl.h similarity index 100% rename from libc/include/any-linux-any/linux/mmc/ioctl.h rename to lib/libc/include/any-linux-any/linux/mmc/ioctl.h diff --git a/libc/include/any-linux-any/linux/mmtimer.h b/lib/libc/include/any-linux-any/linux/mmtimer.h similarity index 100% rename from libc/include/any-linux-any/linux/mmtimer.h rename to lib/libc/include/any-linux-any/linux/mmtimer.h diff --git a/libc/include/any-linux-any/linux/module.h b/lib/libc/include/any-linux-any/linux/module.h similarity index 100% rename from libc/include/any-linux-any/linux/module.h rename to lib/libc/include/any-linux-any/linux/module.h diff --git a/libc/include/any-linux-any/linux/mpls.h b/lib/libc/include/any-linux-any/linux/mpls.h similarity index 100% rename from libc/include/any-linux-any/linux/mpls.h rename to lib/libc/include/any-linux-any/linux/mpls.h diff --git a/libc/include/any-linux-any/linux/mpls_iptunnel.h b/lib/libc/include/any-linux-any/linux/mpls_iptunnel.h similarity index 100% rename from libc/include/any-linux-any/linux/mpls_iptunnel.h rename to lib/libc/include/any-linux-any/linux/mpls_iptunnel.h diff --git a/libc/include/any-linux-any/linux/mqueue.h b/lib/libc/include/any-linux-any/linux/mqueue.h similarity index 100% rename from libc/include/any-linux-any/linux/mqueue.h rename to lib/libc/include/any-linux-any/linux/mqueue.h diff --git a/libc/include/any-linux-any/linux/mroute.h b/lib/libc/include/any-linux-any/linux/mroute.h similarity index 100% rename from libc/include/any-linux-any/linux/mroute.h rename to lib/libc/include/any-linux-any/linux/mroute.h diff --git a/libc/include/any-linux-any/linux/mroute6.h b/lib/libc/include/any-linux-any/linux/mroute6.h similarity index 100% rename from libc/include/any-linux-any/linux/mroute6.h rename to lib/libc/include/any-linux-any/linux/mroute6.h diff --git a/libc/include/any-linux-any/linux/msdos_fs.h b/lib/libc/include/any-linux-any/linux/msdos_fs.h similarity index 100% rename from libc/include/any-linux-any/linux/msdos_fs.h rename to lib/libc/include/any-linux-any/linux/msdos_fs.h diff --git a/libc/include/any-linux-any/linux/msg.h b/lib/libc/include/any-linux-any/linux/msg.h similarity index 100% rename from libc/include/any-linux-any/linux/msg.h rename to lib/libc/include/any-linux-any/linux/msg.h diff --git a/libc/include/any-linux-any/linux/mtio.h b/lib/libc/include/any-linux-any/linux/mtio.h similarity index 100% rename from libc/include/any-linux-any/linux/mtio.h rename to lib/libc/include/any-linux-any/linux/mtio.h diff --git a/libc/include/any-linux-any/linux/n_r3964.h b/lib/libc/include/any-linux-any/linux/n_r3964.h similarity index 100% rename from libc/include/any-linux-any/linux/n_r3964.h rename to lib/libc/include/any-linux-any/linux/n_r3964.h diff --git a/libc/include/any-linux-any/linux/nbd-netlink.h b/lib/libc/include/any-linux-any/linux/nbd-netlink.h similarity index 100% rename from libc/include/any-linux-any/linux/nbd-netlink.h rename to lib/libc/include/any-linux-any/linux/nbd-netlink.h diff --git a/libc/include/any-linux-any/linux/nbd.h b/lib/libc/include/any-linux-any/linux/nbd.h similarity index 100% rename from libc/include/any-linux-any/linux/nbd.h rename to lib/libc/include/any-linux-any/linux/nbd.h diff --git a/libc/include/any-linux-any/linux/ncsi.h b/lib/libc/include/any-linux-any/linux/ncsi.h similarity index 100% rename from libc/include/any-linux-any/linux/ncsi.h rename to lib/libc/include/any-linux-any/linux/ncsi.h diff --git a/libc/include/any-linux-any/linux/ndctl.h b/lib/libc/include/any-linux-any/linux/ndctl.h similarity index 100% rename from libc/include/any-linux-any/linux/ndctl.h rename to lib/libc/include/any-linux-any/linux/ndctl.h diff --git a/libc/include/any-linux-any/linux/neighbour.h b/lib/libc/include/any-linux-any/linux/neighbour.h similarity index 100% rename from libc/include/any-linux-any/linux/neighbour.h rename to lib/libc/include/any-linux-any/linux/neighbour.h diff --git a/libc/include/any-linux-any/linux/net.h b/lib/libc/include/any-linux-any/linux/net.h similarity index 100% rename from libc/include/any-linux-any/linux/net.h rename to lib/libc/include/any-linux-any/linux/net.h diff --git a/libc/include/any-linux-any/linux/net_dropmon.h b/lib/libc/include/any-linux-any/linux/net_dropmon.h similarity index 100% rename from libc/include/any-linux-any/linux/net_dropmon.h rename to lib/libc/include/any-linux-any/linux/net_dropmon.h diff --git a/libc/include/any-linux-any/linux/net_namespace.h b/lib/libc/include/any-linux-any/linux/net_namespace.h similarity index 100% rename from libc/include/any-linux-any/linux/net_namespace.h rename to lib/libc/include/any-linux-any/linux/net_namespace.h diff --git a/libc/include/any-linux-any/linux/net_tstamp.h b/lib/libc/include/any-linux-any/linux/net_tstamp.h similarity index 100% rename from libc/include/any-linux-any/linux/net_tstamp.h rename to lib/libc/include/any-linux-any/linux/net_tstamp.h diff --git a/libc/include/any-linux-any/linux/netconf.h b/lib/libc/include/any-linux-any/linux/netconf.h similarity index 100% rename from libc/include/any-linux-any/linux/netconf.h rename to lib/libc/include/any-linux-any/linux/netconf.h diff --git a/libc/include/any-linux-any/linux/netdevice.h b/lib/libc/include/any-linux-any/linux/netdevice.h similarity index 100% rename from libc/include/any-linux-any/linux/netdevice.h rename to lib/libc/include/any-linux-any/linux/netdevice.h diff --git a/libc/include/any-linux-any/linux/netfilter.h b/lib/libc/include/any-linux-any/linux/netfilter.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter.h rename to lib/libc/include/any-linux-any/linux/netfilter.h diff --git a/libc/include/any-linux-any/linux/netfilter/ipset/ip_set.h b/lib/libc/include/any-linux-any/linux/netfilter/ipset/ip_set.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/ipset/ip_set.h rename to lib/libc/include/any-linux-any/linux/netfilter/ipset/ip_set.h diff --git a/libc/include/any-linux-any/linux/netfilter/ipset/ip_set_bitmap.h b/lib/libc/include/any-linux-any/linux/netfilter/ipset/ip_set_bitmap.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/ipset/ip_set_bitmap.h rename to lib/libc/include/any-linux-any/linux/netfilter/ipset/ip_set_bitmap.h diff --git a/libc/include/any-linux-any/linux/netfilter/ipset/ip_set_hash.h b/lib/libc/include/any-linux-any/linux/netfilter/ipset/ip_set_hash.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/ipset/ip_set_hash.h rename to lib/libc/include/any-linux-any/linux/netfilter/ipset/ip_set_hash.h diff --git a/libc/include/any-linux-any/linux/netfilter/ipset/ip_set_list.h b/lib/libc/include/any-linux-any/linux/netfilter/ipset/ip_set_list.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/ipset/ip_set_list.h rename to lib/libc/include/any-linux-any/linux/netfilter/ipset/ip_set_list.h diff --git a/libc/include/any-linux-any/linux/netfilter/nf_conntrack_common.h b/lib/libc/include/any-linux-any/linux/netfilter/nf_conntrack_common.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nf_conntrack_common.h rename to lib/libc/include/any-linux-any/linux/netfilter/nf_conntrack_common.h diff --git a/libc/include/any-linux-any/linux/netfilter/nf_conntrack_ftp.h b/lib/libc/include/any-linux-any/linux/netfilter/nf_conntrack_ftp.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nf_conntrack_ftp.h rename to lib/libc/include/any-linux-any/linux/netfilter/nf_conntrack_ftp.h diff --git a/libc/include/any-linux-any/linux/netfilter/nf_conntrack_sctp.h b/lib/libc/include/any-linux-any/linux/netfilter/nf_conntrack_sctp.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nf_conntrack_sctp.h rename to lib/libc/include/any-linux-any/linux/netfilter/nf_conntrack_sctp.h diff --git a/libc/include/any-linux-any/linux/netfilter/nf_conntrack_tcp.h b/lib/libc/include/any-linux-any/linux/netfilter/nf_conntrack_tcp.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nf_conntrack_tcp.h rename to lib/libc/include/any-linux-any/linux/netfilter/nf_conntrack_tcp.h diff --git a/libc/include/any-linux-any/linux/netfilter/nf_conntrack_tuple_common.h b/lib/libc/include/any-linux-any/linux/netfilter/nf_conntrack_tuple_common.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nf_conntrack_tuple_common.h rename to lib/libc/include/any-linux-any/linux/netfilter/nf_conntrack_tuple_common.h diff --git a/libc/include/any-linux-any/linux/netfilter/nf_log.h b/lib/libc/include/any-linux-any/linux/netfilter/nf_log.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nf_log.h rename to lib/libc/include/any-linux-any/linux/netfilter/nf_log.h diff --git a/libc/include/any-linux-any/linux/netfilter/nf_nat.h b/lib/libc/include/any-linux-any/linux/netfilter/nf_nat.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nf_nat.h rename to lib/libc/include/any-linux-any/linux/netfilter/nf_nat.h diff --git a/libc/include/any-linux-any/linux/netfilter/nf_tables.h b/lib/libc/include/any-linux-any/linux/netfilter/nf_tables.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nf_tables.h rename to lib/libc/include/any-linux-any/linux/netfilter/nf_tables.h diff --git a/libc/include/any-linux-any/linux/netfilter/nf_tables_compat.h b/lib/libc/include/any-linux-any/linux/netfilter/nf_tables_compat.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nf_tables_compat.h rename to lib/libc/include/any-linux-any/linux/netfilter/nf_tables_compat.h diff --git a/libc/include/any-linux-any/linux/netfilter/nfnetlink.h b/lib/libc/include/any-linux-any/linux/netfilter/nfnetlink.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nfnetlink.h rename to lib/libc/include/any-linux-any/linux/netfilter/nfnetlink.h diff --git a/libc/include/any-linux-any/linux/netfilter/nfnetlink_acct.h b/lib/libc/include/any-linux-any/linux/netfilter/nfnetlink_acct.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nfnetlink_acct.h rename to lib/libc/include/any-linux-any/linux/netfilter/nfnetlink_acct.h diff --git a/libc/include/any-linux-any/linux/netfilter/nfnetlink_compat.h b/lib/libc/include/any-linux-any/linux/netfilter/nfnetlink_compat.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nfnetlink_compat.h rename to lib/libc/include/any-linux-any/linux/netfilter/nfnetlink_compat.h diff --git a/libc/include/any-linux-any/linux/netfilter/nfnetlink_conntrack.h b/lib/libc/include/any-linux-any/linux/netfilter/nfnetlink_conntrack.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nfnetlink_conntrack.h rename to lib/libc/include/any-linux-any/linux/netfilter/nfnetlink_conntrack.h diff --git a/libc/include/any-linux-any/linux/netfilter/nfnetlink_cthelper.h b/lib/libc/include/any-linux-any/linux/netfilter/nfnetlink_cthelper.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nfnetlink_cthelper.h rename to lib/libc/include/any-linux-any/linux/netfilter/nfnetlink_cthelper.h diff --git a/libc/include/any-linux-any/linux/netfilter/nfnetlink_cttimeout.h b/lib/libc/include/any-linux-any/linux/netfilter/nfnetlink_cttimeout.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nfnetlink_cttimeout.h rename to lib/libc/include/any-linux-any/linux/netfilter/nfnetlink_cttimeout.h diff --git a/libc/include/any-linux-any/linux/netfilter/nfnetlink_log.h b/lib/libc/include/any-linux-any/linux/netfilter/nfnetlink_log.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nfnetlink_log.h rename to lib/libc/include/any-linux-any/linux/netfilter/nfnetlink_log.h diff --git a/libc/include/any-linux-any/linux/netfilter/nfnetlink_osf.h b/lib/libc/include/any-linux-any/linux/netfilter/nfnetlink_osf.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nfnetlink_osf.h rename to lib/libc/include/any-linux-any/linux/netfilter/nfnetlink_osf.h diff --git a/libc/include/any-linux-any/linux/netfilter/nfnetlink_queue.h b/lib/libc/include/any-linux-any/linux/netfilter/nfnetlink_queue.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/nfnetlink_queue.h rename to lib/libc/include/any-linux-any/linux/netfilter/nfnetlink_queue.h diff --git a/libc/include/any-linux-any/linux/netfilter/x_tables.h b/lib/libc/include/any-linux-any/linux/netfilter/x_tables.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/x_tables.h rename to lib/libc/include/any-linux-any/linux/netfilter/x_tables.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_AUDIT.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_AUDIT.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_AUDIT.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_AUDIT.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_CHECKSUM.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_CHECKSUM.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_CHECKSUM.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_CHECKSUM.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_CLASSIFY.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_CLASSIFY.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_CLASSIFY.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_CLASSIFY.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_CONNSECMARK.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_CONNSECMARK.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_CONNSECMARK.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_CONNSECMARK.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_CT.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_CT.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_CT.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_CT.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_HMARK.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_HMARK.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_HMARK.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_HMARK.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_IDLETIMER.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_IDLETIMER.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_IDLETIMER.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_IDLETIMER.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_LED.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_LED.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_LED.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_LED.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_LOG.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_LOG.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_LOG.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_LOG.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_NFLOG.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_NFLOG.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_NFLOG.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_NFLOG.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_NFQUEUE.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_NFQUEUE.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_NFQUEUE.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_NFQUEUE.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_SECMARK.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_SECMARK.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_SECMARK.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_SECMARK.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_SYNPROXY.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_SYNPROXY.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_SYNPROXY.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_SYNPROXY.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_TCPOPTSTRIP.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_TCPOPTSTRIP.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_TCPOPTSTRIP.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_TCPOPTSTRIP.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_TEE.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_TEE.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_TEE.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_TEE.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_TPROXY.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_TPROXY.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_TPROXY.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_TPROXY.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_addrtype.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_addrtype.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_addrtype.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_addrtype.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_bpf.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_bpf.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_bpf.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_bpf.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_cgroup.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_cgroup.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_cgroup.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_cgroup.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_cluster.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_cluster.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_cluster.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_cluster.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_comment.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_comment.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_comment.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_comment.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_connbytes.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_connbytes.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_connbytes.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_connbytes.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_connlabel.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_connlabel.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_connlabel.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_connlabel.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_connlimit.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_connlimit.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_connlimit.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_connlimit.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_connmark.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_connmark.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_connmark.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_connmark.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_conntrack.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_conntrack.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_conntrack.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_conntrack.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_cpu.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_cpu.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_cpu.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_cpu.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_dccp.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_dccp.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_dccp.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_dccp.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_devgroup.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_devgroup.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_devgroup.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_devgroup.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_dscp.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_dscp.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_dscp.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_dscp.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_ecn.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_ecn.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_ecn.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_ecn.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_esp.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_esp.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_esp.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_esp.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_hashlimit.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_hashlimit.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_hashlimit.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_hashlimit.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_helper.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_helper.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_helper.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_helper.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_ipcomp.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_ipcomp.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_ipcomp.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_ipcomp.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_iprange.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_iprange.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_iprange.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_iprange.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_ipvs.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_ipvs.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_ipvs.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_ipvs.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_l2tp.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_l2tp.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_l2tp.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_l2tp.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_length.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_length.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_length.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_length.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_limit.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_limit.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_limit.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_limit.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_mac.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_mac.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_mac.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_mac.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_mark.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_mark.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_mark.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_mark.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_multiport.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_multiport.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_multiport.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_multiport.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_nfacct.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_nfacct.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_nfacct.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_nfacct.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_osf.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_osf.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_osf.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_osf.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_owner.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_owner.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_owner.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_owner.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_physdev.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_physdev.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_physdev.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_physdev.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_pkttype.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_pkttype.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_pkttype.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_pkttype.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_policy.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_policy.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_policy.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_policy.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_quota.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_quota.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_quota.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_quota.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_rateest.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_rateest.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_rateest.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_rateest.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_realm.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_realm.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_realm.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_realm.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_recent.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_recent.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_recent.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_recent.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_rpfilter.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_rpfilter.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_rpfilter.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_rpfilter.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_sctp.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_sctp.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_sctp.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_sctp.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_set.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_set.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_set.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_set.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_socket.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_socket.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_socket.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_socket.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_state.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_state.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_state.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_state.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_statistic.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_statistic.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_statistic.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_statistic.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_string.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_string.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_string.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_string.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_tcpmss.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_tcpmss.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_tcpmss.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_tcpmss.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_tcpudp.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_tcpudp.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_tcpudp.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_tcpudp.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_time.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_time.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_time.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_time.h diff --git a/libc/include/any-linux-any/linux/netfilter/xt_u32.h b/lib/libc/include/any-linux-any/linux/netfilter/xt_u32.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter/xt_u32.h rename to lib/libc/include/any-linux-any/linux/netfilter/xt_u32.h diff --git a/libc/include/any-linux-any/linux/netfilter_arp.h b/lib/libc/include/any-linux-any/linux/netfilter_arp.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_arp.h rename to lib/libc/include/any-linux-any/linux/netfilter_arp.h diff --git a/libc/include/any-linux-any/linux/netfilter_arp/arp_tables.h b/lib/libc/include/any-linux-any/linux/netfilter_arp/arp_tables.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_arp/arp_tables.h rename to lib/libc/include/any-linux-any/linux/netfilter_arp/arp_tables.h diff --git a/libc/include/any-linux-any/linux/netfilter_arp/arpt_mangle.h b/lib/libc/include/any-linux-any/linux/netfilter_arp/arpt_mangle.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_arp/arpt_mangle.h rename to lib/libc/include/any-linux-any/linux/netfilter_arp/arpt_mangle.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebt_802_3.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_802_3.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebt_802_3.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_802_3.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebt_among.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_among.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebt_among.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_among.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebt_arp.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_arp.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebt_arp.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_arp.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebt_arpreply.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_arpreply.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebt_arpreply.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_arpreply.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebt_ip.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_ip.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebt_ip.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_ip.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebt_ip6.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_ip6.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebt_ip6.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_ip6.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebt_limit.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_limit.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebt_limit.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_limit.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebt_log.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_log.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebt_log.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_log.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebt_mark_m.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_mark_m.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebt_mark_m.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_mark_m.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebt_mark_t.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_mark_t.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebt_mark_t.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_mark_t.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebt_nat.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_nat.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebt_nat.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_nat.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebt_nflog.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_nflog.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebt_nflog.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_nflog.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebt_pkttype.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_pkttype.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebt_pkttype.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_pkttype.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebt_redirect.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_redirect.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebt_redirect.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_redirect.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebt_stp.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_stp.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebt_stp.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_stp.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebt_vlan.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_vlan.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebt_vlan.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebt_vlan.h diff --git a/libc/include/any-linux-any/linux/netfilter_bridge/ebtables.h b/lib/libc/include/any-linux-any/linux/netfilter_bridge/ebtables.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_bridge/ebtables.h rename to lib/libc/include/any-linux-any/linux/netfilter_bridge/ebtables.h diff --git a/libc/include/any-linux-any/linux/netfilter_decnet.h b/lib/libc/include/any-linux-any/linux/netfilter_decnet.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_decnet.h rename to lib/libc/include/any-linux-any/linux/netfilter_decnet.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv4.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv4.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv4.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv4.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv4/ip_tables.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv4/ip_tables.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv4/ip_tables.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv4/ip_tables.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_CLUSTERIP.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_CLUSTERIP.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv4/ipt_CLUSTERIP.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_CLUSTERIP.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_LOG.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_LOG.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv4/ipt_LOG.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_LOG.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_REJECT.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_REJECT.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv4/ipt_REJECT.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_REJECT.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_ah.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_ah.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv4/ipt_ah.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_ah.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_ecn.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_ecn.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv4/ipt_ecn.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_ecn.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_ttl.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_ttl.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv4/ipt_ttl.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv4/ipt_ttl.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv6.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv6.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv6.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv6.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv6/ip6_tables.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6_tables.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv6/ip6_tables.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6_tables.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_LOG.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_LOG.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_LOG.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_LOG.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_NPT.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_NPT.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_NPT.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_NPT.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_REJECT.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_REJECT.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_REJECT.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_REJECT.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_ah.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_ah.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_ah.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_ah.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_frag.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_frag.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_frag.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_frag.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_hl.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_hl.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_hl.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_hl.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_ipv6header.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_ipv6header.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_ipv6header.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_ipv6header.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_mh.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_mh.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_mh.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_mh.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_opts.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_opts.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_opts.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_opts.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_rt.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_rt.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_rt.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_rt.h diff --git a/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_srh.h b/lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_srh.h similarity index 100% rename from libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_srh.h rename to lib/libc/include/any-linux-any/linux/netfilter_ipv6/ip6t_srh.h diff --git a/libc/include/any-linux-any/linux/netlink.h b/lib/libc/include/any-linux-any/linux/netlink.h similarity index 100% rename from libc/include/any-linux-any/linux/netlink.h rename to lib/libc/include/any-linux-any/linux/netlink.h diff --git a/libc/include/any-linux-any/linux/netlink_diag.h b/lib/libc/include/any-linux-any/linux/netlink_diag.h similarity index 100% rename from libc/include/any-linux-any/linux/netlink_diag.h rename to lib/libc/include/any-linux-any/linux/netlink_diag.h diff --git a/libc/include/any-linux-any/linux/netrom.h b/lib/libc/include/any-linux-any/linux/netrom.h similarity index 100% rename from libc/include/any-linux-any/linux/netrom.h rename to lib/libc/include/any-linux-any/linux/netrom.h diff --git a/libc/include/any-linux-any/linux/nfc.h b/lib/libc/include/any-linux-any/linux/nfc.h similarity index 100% rename from libc/include/any-linux-any/linux/nfc.h rename to lib/libc/include/any-linux-any/linux/nfc.h diff --git a/libc/include/any-linux-any/linux/nfs.h b/lib/libc/include/any-linux-any/linux/nfs.h similarity index 100% rename from libc/include/any-linux-any/linux/nfs.h rename to lib/libc/include/any-linux-any/linux/nfs.h diff --git a/libc/include/any-linux-any/linux/nfs2.h b/lib/libc/include/any-linux-any/linux/nfs2.h similarity index 100% rename from libc/include/any-linux-any/linux/nfs2.h rename to lib/libc/include/any-linux-any/linux/nfs2.h diff --git a/libc/include/any-linux-any/linux/nfs3.h b/lib/libc/include/any-linux-any/linux/nfs3.h similarity index 100% rename from libc/include/any-linux-any/linux/nfs3.h rename to lib/libc/include/any-linux-any/linux/nfs3.h diff --git a/libc/include/any-linux-any/linux/nfs4.h b/lib/libc/include/any-linux-any/linux/nfs4.h similarity index 100% rename from libc/include/any-linux-any/linux/nfs4.h rename to lib/libc/include/any-linux-any/linux/nfs4.h diff --git a/libc/include/any-linux-any/linux/nfs4_mount.h b/lib/libc/include/any-linux-any/linux/nfs4_mount.h similarity index 100% rename from libc/include/any-linux-any/linux/nfs4_mount.h rename to lib/libc/include/any-linux-any/linux/nfs4_mount.h diff --git a/libc/include/any-linux-any/linux/nfs_fs.h b/lib/libc/include/any-linux-any/linux/nfs_fs.h similarity index 100% rename from libc/include/any-linux-any/linux/nfs_fs.h rename to lib/libc/include/any-linux-any/linux/nfs_fs.h diff --git a/libc/include/any-linux-any/linux/nfs_idmap.h b/lib/libc/include/any-linux-any/linux/nfs_idmap.h similarity index 100% rename from libc/include/any-linux-any/linux/nfs_idmap.h rename to lib/libc/include/any-linux-any/linux/nfs_idmap.h diff --git a/libc/include/any-linux-any/linux/nfs_mount.h b/lib/libc/include/any-linux-any/linux/nfs_mount.h similarity index 100% rename from libc/include/any-linux-any/linux/nfs_mount.h rename to lib/libc/include/any-linux-any/linux/nfs_mount.h diff --git a/libc/include/any-linux-any/linux/nfsacl.h b/lib/libc/include/any-linux-any/linux/nfsacl.h similarity index 100% rename from libc/include/any-linux-any/linux/nfsacl.h rename to lib/libc/include/any-linux-any/linux/nfsacl.h diff --git a/libc/include/any-linux-any/linux/nfsd/cld.h b/lib/libc/include/any-linux-any/linux/nfsd/cld.h similarity index 100% rename from libc/include/any-linux-any/linux/nfsd/cld.h rename to lib/libc/include/any-linux-any/linux/nfsd/cld.h diff --git a/libc/include/any-linux-any/linux/nfsd/debug.h b/lib/libc/include/any-linux-any/linux/nfsd/debug.h similarity index 100% rename from libc/include/any-linux-any/linux/nfsd/debug.h rename to lib/libc/include/any-linux-any/linux/nfsd/debug.h diff --git a/libc/include/any-linux-any/linux/nfsd/export.h b/lib/libc/include/any-linux-any/linux/nfsd/export.h similarity index 100% rename from libc/include/any-linux-any/linux/nfsd/export.h rename to lib/libc/include/any-linux-any/linux/nfsd/export.h diff --git a/libc/include/any-linux-any/linux/nfsd/nfsfh.h b/lib/libc/include/any-linux-any/linux/nfsd/nfsfh.h similarity index 100% rename from libc/include/any-linux-any/linux/nfsd/nfsfh.h rename to lib/libc/include/any-linux-any/linux/nfsd/nfsfh.h diff --git a/libc/include/any-linux-any/linux/nfsd/stats.h b/lib/libc/include/any-linux-any/linux/nfsd/stats.h similarity index 100% rename from libc/include/any-linux-any/linux/nfsd/stats.h rename to lib/libc/include/any-linux-any/linux/nfsd/stats.h diff --git a/libc/include/any-linux-any/linux/nilfs2_api.h b/lib/libc/include/any-linux-any/linux/nilfs2_api.h similarity index 100% rename from libc/include/any-linux-any/linux/nilfs2_api.h rename to lib/libc/include/any-linux-any/linux/nilfs2_api.h diff --git a/libc/include/any-linux-any/linux/nilfs2_ondisk.h b/lib/libc/include/any-linux-any/linux/nilfs2_ondisk.h similarity index 100% rename from libc/include/any-linux-any/linux/nilfs2_ondisk.h rename to lib/libc/include/any-linux-any/linux/nilfs2_ondisk.h diff --git a/libc/include/any-linux-any/linux/nl80211.h b/lib/libc/include/any-linux-any/linux/nl80211.h similarity index 100% rename from libc/include/any-linux-any/linux/nl80211.h rename to lib/libc/include/any-linux-any/linux/nl80211.h diff --git a/libc/include/any-linux-any/linux/nsfs.h b/lib/libc/include/any-linux-any/linux/nsfs.h similarity index 100% rename from libc/include/any-linux-any/linux/nsfs.h rename to lib/libc/include/any-linux-any/linux/nsfs.h diff --git a/libc/include/any-linux-any/linux/nubus.h b/lib/libc/include/any-linux-any/linux/nubus.h similarity index 100% rename from libc/include/any-linux-any/linux/nubus.h rename to lib/libc/include/any-linux-any/linux/nubus.h diff --git a/libc/include/any-linux-any/linux/nvme_ioctl.h b/lib/libc/include/any-linux-any/linux/nvme_ioctl.h similarity index 100% rename from libc/include/any-linux-any/linux/nvme_ioctl.h rename to lib/libc/include/any-linux-any/linux/nvme_ioctl.h diff --git a/libc/include/any-linux-any/linux/nvram.h b/lib/libc/include/any-linux-any/linux/nvram.h similarity index 100% rename from libc/include/any-linux-any/linux/nvram.h rename to lib/libc/include/any-linux-any/linux/nvram.h diff --git a/libc/include/any-linux-any/linux/omap3isp.h b/lib/libc/include/any-linux-any/linux/omap3isp.h similarity index 100% rename from libc/include/any-linux-any/linux/omap3isp.h rename to lib/libc/include/any-linux-any/linux/omap3isp.h diff --git a/libc/include/any-linux-any/linux/omapfb.h b/lib/libc/include/any-linux-any/linux/omapfb.h similarity index 100% rename from libc/include/any-linux-any/linux/omapfb.h rename to lib/libc/include/any-linux-any/linux/omapfb.h diff --git a/libc/include/any-linux-any/linux/oom.h b/lib/libc/include/any-linux-any/linux/oom.h similarity index 100% rename from libc/include/any-linux-any/linux/oom.h rename to lib/libc/include/any-linux-any/linux/oom.h diff --git a/libc/include/any-linux-any/linux/openvswitch.h b/lib/libc/include/any-linux-any/linux/openvswitch.h similarity index 100% rename from libc/include/any-linux-any/linux/openvswitch.h rename to lib/libc/include/any-linux-any/linux/openvswitch.h diff --git a/libc/include/any-linux-any/linux/packet_diag.h b/lib/libc/include/any-linux-any/linux/packet_diag.h similarity index 100% rename from libc/include/any-linux-any/linux/packet_diag.h rename to lib/libc/include/any-linux-any/linux/packet_diag.h diff --git a/libc/include/any-linux-any/linux/param.h b/lib/libc/include/any-linux-any/linux/param.h similarity index 100% rename from libc/include/any-linux-any/linux/param.h rename to lib/libc/include/any-linux-any/linux/param.h diff --git a/libc/include/any-linux-any/linux/parport.h b/lib/libc/include/any-linux-any/linux/parport.h similarity index 100% rename from libc/include/any-linux-any/linux/parport.h rename to lib/libc/include/any-linux-any/linux/parport.h diff --git a/libc/include/any-linux-any/linux/patchkey.h b/lib/libc/include/any-linux-any/linux/patchkey.h similarity index 100% rename from libc/include/any-linux-any/linux/patchkey.h rename to lib/libc/include/any-linux-any/linux/patchkey.h diff --git a/libc/include/any-linux-any/linux/pci.h b/lib/libc/include/any-linux-any/linux/pci.h similarity index 100% rename from libc/include/any-linux-any/linux/pci.h rename to lib/libc/include/any-linux-any/linux/pci.h diff --git a/libc/include/any-linux-any/linux/pci_regs.h b/lib/libc/include/any-linux-any/linux/pci_regs.h similarity index 100% rename from libc/include/any-linux-any/linux/pci_regs.h rename to lib/libc/include/any-linux-any/linux/pci_regs.h diff --git a/libc/include/any-linux-any/linux/pcitest.h b/lib/libc/include/any-linux-any/linux/pcitest.h similarity index 100% rename from libc/include/any-linux-any/linux/pcitest.h rename to lib/libc/include/any-linux-any/linux/pcitest.h diff --git a/libc/include/any-linux-any/linux/perf_event.h b/lib/libc/include/any-linux-any/linux/perf_event.h similarity index 100% rename from libc/include/any-linux-any/linux/perf_event.h rename to lib/libc/include/any-linux-any/linux/perf_event.h diff --git a/libc/include/any-linux-any/linux/personality.h b/lib/libc/include/any-linux-any/linux/personality.h similarity index 100% rename from libc/include/any-linux-any/linux/personality.h rename to lib/libc/include/any-linux-any/linux/personality.h diff --git a/libc/include/any-linux-any/linux/pfkeyv2.h b/lib/libc/include/any-linux-any/linux/pfkeyv2.h similarity index 100% rename from libc/include/any-linux-any/linux/pfkeyv2.h rename to lib/libc/include/any-linux-any/linux/pfkeyv2.h diff --git a/libc/include/any-linux-any/linux/pg.h b/lib/libc/include/any-linux-any/linux/pg.h similarity index 100% rename from libc/include/any-linux-any/linux/pg.h rename to lib/libc/include/any-linux-any/linux/pg.h diff --git a/libc/include/any-linux-any/linux/phantom.h b/lib/libc/include/any-linux-any/linux/phantom.h similarity index 100% rename from libc/include/any-linux-any/linux/phantom.h rename to lib/libc/include/any-linux-any/linux/phantom.h diff --git a/libc/include/any-linux-any/linux/phonet.h b/lib/libc/include/any-linux-any/linux/phonet.h similarity index 100% rename from libc/include/any-linux-any/linux/phonet.h rename to lib/libc/include/any-linux-any/linux/phonet.h diff --git a/libc/include/any-linux-any/linux/pkt_cls.h b/lib/libc/include/any-linux-any/linux/pkt_cls.h similarity index 100% rename from libc/include/any-linux-any/linux/pkt_cls.h rename to lib/libc/include/any-linux-any/linux/pkt_cls.h diff --git a/libc/include/any-linux-any/linux/pkt_sched.h b/lib/libc/include/any-linux-any/linux/pkt_sched.h similarity index 100% rename from libc/include/any-linux-any/linux/pkt_sched.h rename to lib/libc/include/any-linux-any/linux/pkt_sched.h diff --git a/libc/include/any-linux-any/linux/pktcdvd.h b/lib/libc/include/any-linux-any/linux/pktcdvd.h similarity index 100% rename from libc/include/any-linux-any/linux/pktcdvd.h rename to lib/libc/include/any-linux-any/linux/pktcdvd.h diff --git a/libc/include/any-linux-any/linux/pmu.h b/lib/libc/include/any-linux-any/linux/pmu.h similarity index 100% rename from libc/include/any-linux-any/linux/pmu.h rename to lib/libc/include/any-linux-any/linux/pmu.h diff --git a/libc/include/any-linux-any/linux/poll.h b/lib/libc/include/any-linux-any/linux/poll.h similarity index 100% rename from libc/include/any-linux-any/linux/poll.h rename to lib/libc/include/any-linux-any/linux/poll.h diff --git a/libc/include/any-linux-any/linux/posix_acl.h b/lib/libc/include/any-linux-any/linux/posix_acl.h similarity index 100% rename from libc/include/any-linux-any/linux/posix_acl.h rename to lib/libc/include/any-linux-any/linux/posix_acl.h diff --git a/libc/include/any-linux-any/linux/posix_acl_xattr.h b/lib/libc/include/any-linux-any/linux/posix_acl_xattr.h similarity index 100% rename from libc/include/any-linux-any/linux/posix_acl_xattr.h rename to lib/libc/include/any-linux-any/linux/posix_acl_xattr.h diff --git a/libc/include/any-linux-any/linux/posix_types.h b/lib/libc/include/any-linux-any/linux/posix_types.h similarity index 100% rename from libc/include/any-linux-any/linux/posix_types.h rename to lib/libc/include/any-linux-any/linux/posix_types.h diff --git a/libc/include/any-linux-any/linux/ppdev.h b/lib/libc/include/any-linux-any/linux/ppdev.h similarity index 100% rename from libc/include/any-linux-any/linux/ppdev.h rename to lib/libc/include/any-linux-any/linux/ppdev.h diff --git a/libc/include/any-linux-any/linux/ppp-comp.h b/lib/libc/include/any-linux-any/linux/ppp-comp.h similarity index 100% rename from libc/include/any-linux-any/linux/ppp-comp.h rename to lib/libc/include/any-linux-any/linux/ppp-comp.h diff --git a/libc/include/any-linux-any/linux/ppp-ioctl.h b/lib/libc/include/any-linux-any/linux/ppp-ioctl.h similarity index 100% rename from libc/include/any-linux-any/linux/ppp-ioctl.h rename to lib/libc/include/any-linux-any/linux/ppp-ioctl.h diff --git a/libc/include/any-linux-any/linux/ppp_defs.h b/lib/libc/include/any-linux-any/linux/ppp_defs.h similarity index 100% rename from libc/include/any-linux-any/linux/ppp_defs.h rename to lib/libc/include/any-linux-any/linux/ppp_defs.h diff --git a/libc/include/any-linux-any/linux/pps.h b/lib/libc/include/any-linux-any/linux/pps.h similarity index 100% rename from libc/include/any-linux-any/linux/pps.h rename to lib/libc/include/any-linux-any/linux/pps.h diff --git a/libc/include/any-linux-any/linux/pr.h b/lib/libc/include/any-linux-any/linux/pr.h similarity index 100% rename from libc/include/any-linux-any/linux/pr.h rename to lib/libc/include/any-linux-any/linux/pr.h diff --git a/libc/include/any-linux-any/linux/prctl.h b/lib/libc/include/any-linux-any/linux/prctl.h similarity index 100% rename from libc/include/any-linux-any/linux/prctl.h rename to lib/libc/include/any-linux-any/linux/prctl.h diff --git a/libc/include/any-linux-any/linux/psample.h b/lib/libc/include/any-linux-any/linux/psample.h similarity index 100% rename from libc/include/any-linux-any/linux/psample.h rename to lib/libc/include/any-linux-any/linux/psample.h diff --git a/libc/include/any-linux-any/linux/psci.h b/lib/libc/include/any-linux-any/linux/psci.h similarity index 100% rename from libc/include/any-linux-any/linux/psci.h rename to lib/libc/include/any-linux-any/linux/psci.h diff --git a/libc/include/any-linux-any/linux/psp-sev.h b/lib/libc/include/any-linux-any/linux/psp-sev.h similarity index 100% rename from libc/include/any-linux-any/linux/psp-sev.h rename to lib/libc/include/any-linux-any/linux/psp-sev.h diff --git a/libc/include/any-linux-any/linux/ptp_clock.h b/lib/libc/include/any-linux-any/linux/ptp_clock.h similarity index 100% rename from libc/include/any-linux-any/linux/ptp_clock.h rename to lib/libc/include/any-linux-any/linux/ptp_clock.h diff --git a/libc/include/any-linux-any/linux/ptrace.h b/lib/libc/include/any-linux-any/linux/ptrace.h similarity index 100% rename from libc/include/any-linux-any/linux/ptrace.h rename to lib/libc/include/any-linux-any/linux/ptrace.h diff --git a/libc/include/any-linux-any/linux/qemu_fw_cfg.h b/lib/libc/include/any-linux-any/linux/qemu_fw_cfg.h similarity index 100% rename from libc/include/any-linux-any/linux/qemu_fw_cfg.h rename to lib/libc/include/any-linux-any/linux/qemu_fw_cfg.h diff --git a/libc/include/any-linux-any/linux/qnx4_fs.h b/lib/libc/include/any-linux-any/linux/qnx4_fs.h similarity index 100% rename from libc/include/any-linux-any/linux/qnx4_fs.h rename to lib/libc/include/any-linux-any/linux/qnx4_fs.h diff --git a/libc/include/any-linux-any/linux/qnxtypes.h b/lib/libc/include/any-linux-any/linux/qnxtypes.h similarity index 100% rename from libc/include/any-linux-any/linux/qnxtypes.h rename to lib/libc/include/any-linux-any/linux/qnxtypes.h diff --git a/libc/include/any-linux-any/linux/qrtr.h b/lib/libc/include/any-linux-any/linux/qrtr.h similarity index 100% rename from libc/include/any-linux-any/linux/qrtr.h rename to lib/libc/include/any-linux-any/linux/qrtr.h diff --git a/libc/include/any-linux-any/linux/quota.h b/lib/libc/include/any-linux-any/linux/quota.h similarity index 100% rename from libc/include/any-linux-any/linux/quota.h rename to lib/libc/include/any-linux-any/linux/quota.h diff --git a/libc/include/any-linux-any/linux/radeonfb.h b/lib/libc/include/any-linux-any/linux/radeonfb.h similarity index 100% rename from libc/include/any-linux-any/linux/radeonfb.h rename to lib/libc/include/any-linux-any/linux/radeonfb.h diff --git a/libc/include/any-linux-any/linux/raid/md_p.h b/lib/libc/include/any-linux-any/linux/raid/md_p.h similarity index 100% rename from libc/include/any-linux-any/linux/raid/md_p.h rename to lib/libc/include/any-linux-any/linux/raid/md_p.h diff --git a/libc/include/any-linux-any/linux/raid/md_u.h b/lib/libc/include/any-linux-any/linux/raid/md_u.h similarity index 100% rename from libc/include/any-linux-any/linux/raid/md_u.h rename to lib/libc/include/any-linux-any/linux/raid/md_u.h diff --git a/libc/include/any-linux-any/linux/random.h b/lib/libc/include/any-linux-any/linux/random.h similarity index 100% rename from libc/include/any-linux-any/linux/random.h rename to lib/libc/include/any-linux-any/linux/random.h diff --git a/libc/include/any-linux-any/linux/raw.h b/lib/libc/include/any-linux-any/linux/raw.h similarity index 100% rename from libc/include/any-linux-any/linux/raw.h rename to lib/libc/include/any-linux-any/linux/raw.h diff --git a/libc/include/any-linux-any/linux/rds.h b/lib/libc/include/any-linux-any/linux/rds.h similarity index 100% rename from libc/include/any-linux-any/linux/rds.h rename to lib/libc/include/any-linux-any/linux/rds.h diff --git a/libc/include/any-linux-any/linux/reboot.h b/lib/libc/include/any-linux-any/linux/reboot.h similarity index 100% rename from libc/include/any-linux-any/linux/reboot.h rename to lib/libc/include/any-linux-any/linux/reboot.h diff --git a/libc/include/any-linux-any/linux/reiserfs_fs.h b/lib/libc/include/any-linux-any/linux/reiserfs_fs.h similarity index 100% rename from libc/include/any-linux-any/linux/reiserfs_fs.h rename to lib/libc/include/any-linux-any/linux/reiserfs_fs.h diff --git a/libc/include/any-linux-any/linux/reiserfs_xattr.h b/lib/libc/include/any-linux-any/linux/reiserfs_xattr.h similarity index 100% rename from libc/include/any-linux-any/linux/reiserfs_xattr.h rename to lib/libc/include/any-linux-any/linux/reiserfs_xattr.h diff --git a/libc/include/any-linux-any/linux/resource.h b/lib/libc/include/any-linux-any/linux/resource.h similarity index 100% rename from libc/include/any-linux-any/linux/resource.h rename to lib/libc/include/any-linux-any/linux/resource.h diff --git a/libc/include/any-linux-any/linux/rfkill.h b/lib/libc/include/any-linux-any/linux/rfkill.h similarity index 100% rename from libc/include/any-linux-any/linux/rfkill.h rename to lib/libc/include/any-linux-any/linux/rfkill.h diff --git a/libc/include/any-linux-any/linux/rio_cm_cdev.h b/lib/libc/include/any-linux-any/linux/rio_cm_cdev.h similarity index 100% rename from libc/include/any-linux-any/linux/rio_cm_cdev.h rename to lib/libc/include/any-linux-any/linux/rio_cm_cdev.h diff --git a/libc/include/any-linux-any/linux/rio_mport_cdev.h b/lib/libc/include/any-linux-any/linux/rio_mport_cdev.h similarity index 100% rename from libc/include/any-linux-any/linux/rio_mport_cdev.h rename to lib/libc/include/any-linux-any/linux/rio_mport_cdev.h diff --git a/libc/include/any-linux-any/linux/romfs_fs.h b/lib/libc/include/any-linux-any/linux/romfs_fs.h similarity index 100% rename from libc/include/any-linux-any/linux/romfs_fs.h rename to lib/libc/include/any-linux-any/linux/romfs_fs.h diff --git a/libc/include/any-linux-any/linux/rose.h b/lib/libc/include/any-linux-any/linux/rose.h similarity index 100% rename from libc/include/any-linux-any/linux/rose.h rename to lib/libc/include/any-linux-any/linux/rose.h diff --git a/libc/include/any-linux-any/linux/route.h b/lib/libc/include/any-linux-any/linux/route.h similarity index 100% rename from libc/include/any-linux-any/linux/route.h rename to lib/libc/include/any-linux-any/linux/route.h diff --git a/libc/include/any-linux-any/linux/rpmsg.h b/lib/libc/include/any-linux-any/linux/rpmsg.h similarity index 100% rename from libc/include/any-linux-any/linux/rpmsg.h rename to lib/libc/include/any-linux-any/linux/rpmsg.h diff --git a/libc/include/any-linux-any/linux/rseq.h b/lib/libc/include/any-linux-any/linux/rseq.h similarity index 100% rename from libc/include/any-linux-any/linux/rseq.h rename to lib/libc/include/any-linux-any/linux/rseq.h diff --git a/libc/include/any-linux-any/linux/rtc.h b/lib/libc/include/any-linux-any/linux/rtc.h similarity index 100% rename from libc/include/any-linux-any/linux/rtc.h rename to lib/libc/include/any-linux-any/linux/rtc.h diff --git a/libc/include/any-linux-any/linux/rtnetlink.h b/lib/libc/include/any-linux-any/linux/rtnetlink.h similarity index 100% rename from libc/include/any-linux-any/linux/rtnetlink.h rename to lib/libc/include/any-linux-any/linux/rtnetlink.h diff --git a/libc/include/any-linux-any/linux/rxrpc.h b/lib/libc/include/any-linux-any/linux/rxrpc.h similarity index 100% rename from libc/include/any-linux-any/linux/rxrpc.h rename to lib/libc/include/any-linux-any/linux/rxrpc.h diff --git a/libc/include/any-linux-any/linux/scc.h b/lib/libc/include/any-linux-any/linux/scc.h similarity index 100% rename from libc/include/any-linux-any/linux/scc.h rename to lib/libc/include/any-linux-any/linux/scc.h diff --git a/libc/include/any-linux-any/linux/sched.h b/lib/libc/include/any-linux-any/linux/sched.h similarity index 100% rename from libc/include/any-linux-any/linux/sched.h rename to lib/libc/include/any-linux-any/linux/sched.h diff --git a/libc/include/any-linux-any/linux/sched/types.h b/lib/libc/include/any-linux-any/linux/sched/types.h similarity index 100% rename from libc/include/any-linux-any/linux/sched/types.h rename to lib/libc/include/any-linux-any/linux/sched/types.h diff --git a/libc/include/any-linux-any/linux/scif_ioctl.h b/lib/libc/include/any-linux-any/linux/scif_ioctl.h similarity index 100% rename from libc/include/any-linux-any/linux/scif_ioctl.h rename to lib/libc/include/any-linux-any/linux/scif_ioctl.h diff --git a/libc/include/any-linux-any/linux/screen_info.h b/lib/libc/include/any-linux-any/linux/screen_info.h similarity index 100% rename from libc/include/any-linux-any/linux/screen_info.h rename to lib/libc/include/any-linux-any/linux/screen_info.h diff --git a/libc/include/any-linux-any/linux/sctp.h b/lib/libc/include/any-linux-any/linux/sctp.h similarity index 100% rename from libc/include/any-linux-any/linux/sctp.h rename to lib/libc/include/any-linux-any/linux/sctp.h diff --git a/libc/include/any-linux-any/linux/sdla.h b/lib/libc/include/any-linux-any/linux/sdla.h similarity index 100% rename from libc/include/any-linux-any/linux/sdla.h rename to lib/libc/include/any-linux-any/linux/sdla.h diff --git a/libc/include/any-linux-any/linux/seccomp.h b/lib/libc/include/any-linux-any/linux/seccomp.h similarity index 100% rename from libc/include/any-linux-any/linux/seccomp.h rename to lib/libc/include/any-linux-any/linux/seccomp.h diff --git a/libc/include/any-linux-any/linux/securebits.h b/lib/libc/include/any-linux-any/linux/securebits.h similarity index 100% rename from libc/include/any-linux-any/linux/securebits.h rename to lib/libc/include/any-linux-any/linux/securebits.h diff --git a/libc/include/any-linux-any/linux/sed-opal.h b/lib/libc/include/any-linux-any/linux/sed-opal.h similarity index 100% rename from libc/include/any-linux-any/linux/sed-opal.h rename to lib/libc/include/any-linux-any/linux/sed-opal.h diff --git a/libc/include/any-linux-any/linux/seg6.h b/lib/libc/include/any-linux-any/linux/seg6.h similarity index 100% rename from libc/include/any-linux-any/linux/seg6.h rename to lib/libc/include/any-linux-any/linux/seg6.h diff --git a/libc/include/any-linux-any/linux/seg6_genl.h b/lib/libc/include/any-linux-any/linux/seg6_genl.h similarity index 100% rename from libc/include/any-linux-any/linux/seg6_genl.h rename to lib/libc/include/any-linux-any/linux/seg6_genl.h diff --git a/libc/include/any-linux-any/linux/seg6_hmac.h b/lib/libc/include/any-linux-any/linux/seg6_hmac.h similarity index 100% rename from libc/include/any-linux-any/linux/seg6_hmac.h rename to lib/libc/include/any-linux-any/linux/seg6_hmac.h diff --git a/libc/include/any-linux-any/linux/seg6_iptunnel.h b/lib/libc/include/any-linux-any/linux/seg6_iptunnel.h similarity index 100% rename from libc/include/any-linux-any/linux/seg6_iptunnel.h rename to lib/libc/include/any-linux-any/linux/seg6_iptunnel.h diff --git a/libc/include/any-linux-any/linux/seg6_local.h b/lib/libc/include/any-linux-any/linux/seg6_local.h similarity index 100% rename from libc/include/any-linux-any/linux/seg6_local.h rename to lib/libc/include/any-linux-any/linux/seg6_local.h diff --git a/libc/include/any-linux-any/linux/selinux_netlink.h b/lib/libc/include/any-linux-any/linux/selinux_netlink.h similarity index 100% rename from libc/include/any-linux-any/linux/selinux_netlink.h rename to lib/libc/include/any-linux-any/linux/selinux_netlink.h diff --git a/libc/include/any-linux-any/linux/sem.h b/lib/libc/include/any-linux-any/linux/sem.h similarity index 100% rename from libc/include/any-linux-any/linux/sem.h rename to lib/libc/include/any-linux-any/linux/sem.h diff --git a/libc/include/any-linux-any/linux/serial.h b/lib/libc/include/any-linux-any/linux/serial.h similarity index 100% rename from libc/include/any-linux-any/linux/serial.h rename to lib/libc/include/any-linux-any/linux/serial.h diff --git a/libc/include/any-linux-any/linux/serial_core.h b/lib/libc/include/any-linux-any/linux/serial_core.h similarity index 100% rename from libc/include/any-linux-any/linux/serial_core.h rename to lib/libc/include/any-linux-any/linux/serial_core.h diff --git a/libc/include/any-linux-any/linux/serial_reg.h b/lib/libc/include/any-linux-any/linux/serial_reg.h similarity index 100% rename from libc/include/any-linux-any/linux/serial_reg.h rename to lib/libc/include/any-linux-any/linux/serial_reg.h diff --git a/libc/include/any-linux-any/linux/serio.h b/lib/libc/include/any-linux-any/linux/serio.h similarity index 100% rename from libc/include/any-linux-any/linux/serio.h rename to lib/libc/include/any-linux-any/linux/serio.h diff --git a/libc/include/any-linux-any/linux/shm.h b/lib/libc/include/any-linux-any/linux/shm.h similarity index 100% rename from libc/include/any-linux-any/linux/shm.h rename to lib/libc/include/any-linux-any/linux/shm.h diff --git a/libc/include/any-linux-any/linux/signal.h b/lib/libc/include/any-linux-any/linux/signal.h similarity index 100% rename from libc/include/any-linux-any/linux/signal.h rename to lib/libc/include/any-linux-any/linux/signal.h diff --git a/libc/include/any-linux-any/linux/signalfd.h b/lib/libc/include/any-linux-any/linux/signalfd.h similarity index 100% rename from libc/include/any-linux-any/linux/signalfd.h rename to lib/libc/include/any-linux-any/linux/signalfd.h diff --git a/libc/include/any-linux-any/linux/smc.h b/lib/libc/include/any-linux-any/linux/smc.h similarity index 100% rename from libc/include/any-linux-any/linux/smc.h rename to lib/libc/include/any-linux-any/linux/smc.h diff --git a/libc/include/any-linux-any/linux/smc_diag.h b/lib/libc/include/any-linux-any/linux/smc_diag.h similarity index 100% rename from libc/include/any-linux-any/linux/smc_diag.h rename to lib/libc/include/any-linux-any/linux/smc_diag.h diff --git a/libc/include/any-linux-any/linux/smiapp.h b/lib/libc/include/any-linux-any/linux/smiapp.h similarity index 100% rename from libc/include/any-linux-any/linux/smiapp.h rename to lib/libc/include/any-linux-any/linux/smiapp.h diff --git a/libc/include/any-linux-any/linux/snmp.h b/lib/libc/include/any-linux-any/linux/snmp.h similarity index 100% rename from libc/include/any-linux-any/linux/snmp.h rename to lib/libc/include/any-linux-any/linux/snmp.h diff --git a/libc/include/any-linux-any/linux/sock_diag.h b/lib/libc/include/any-linux-any/linux/sock_diag.h similarity index 100% rename from libc/include/any-linux-any/linux/sock_diag.h rename to lib/libc/include/any-linux-any/linux/sock_diag.h diff --git a/libc/include/any-linux-any/linux/socket.h b/lib/libc/include/any-linux-any/linux/socket.h similarity index 100% rename from libc/include/any-linux-any/linux/socket.h rename to lib/libc/include/any-linux-any/linux/socket.h diff --git a/libc/include/any-linux-any/linux/sockios.h b/lib/libc/include/any-linux-any/linux/sockios.h similarity index 100% rename from libc/include/any-linux-any/linux/sockios.h rename to lib/libc/include/any-linux-any/linux/sockios.h diff --git a/libc/include/any-linux-any/linux/sonet.h b/lib/libc/include/any-linux-any/linux/sonet.h similarity index 100% rename from libc/include/any-linux-any/linux/sonet.h rename to lib/libc/include/any-linux-any/linux/sonet.h diff --git a/libc/include/any-linux-any/linux/sonypi.h b/lib/libc/include/any-linux-any/linux/sonypi.h similarity index 100% rename from libc/include/any-linux-any/linux/sonypi.h rename to lib/libc/include/any-linux-any/linux/sonypi.h diff --git a/libc/include/any-linux-any/linux/sound.h b/lib/libc/include/any-linux-any/linux/sound.h similarity index 100% rename from libc/include/any-linux-any/linux/sound.h rename to lib/libc/include/any-linux-any/linux/sound.h diff --git a/libc/include/any-linux-any/linux/soundcard.h b/lib/libc/include/any-linux-any/linux/soundcard.h similarity index 100% rename from libc/include/any-linux-any/linux/soundcard.h rename to lib/libc/include/any-linux-any/linux/soundcard.h diff --git a/libc/include/any-linux-any/linux/spi/spidev.h b/lib/libc/include/any-linux-any/linux/spi/spidev.h similarity index 100% rename from libc/include/any-linux-any/linux/spi/spidev.h rename to lib/libc/include/any-linux-any/linux/spi/spidev.h diff --git a/libc/include/any-linux-any/linux/stat.h b/lib/libc/include/any-linux-any/linux/stat.h similarity index 100% rename from libc/include/any-linux-any/linux/stat.h rename to lib/libc/include/any-linux-any/linux/stat.h diff --git a/libc/include/any-linux-any/linux/stddef.h b/lib/libc/include/any-linux-any/linux/stddef.h similarity index 100% rename from libc/include/any-linux-any/linux/stddef.h rename to lib/libc/include/any-linux-any/linux/stddef.h diff --git a/libc/include/any-linux-any/linux/stm.h b/lib/libc/include/any-linux-any/linux/stm.h similarity index 100% rename from libc/include/any-linux-any/linux/stm.h rename to lib/libc/include/any-linux-any/linux/stm.h diff --git a/libc/include/any-linux-any/linux/string.h b/lib/libc/include/any-linux-any/linux/string.h similarity index 100% rename from libc/include/any-linux-any/linux/string.h rename to lib/libc/include/any-linux-any/linux/string.h diff --git a/libc/include/any-linux-any/linux/sunrpc/debug.h b/lib/libc/include/any-linux-any/linux/sunrpc/debug.h similarity index 100% rename from libc/include/any-linux-any/linux/sunrpc/debug.h rename to lib/libc/include/any-linux-any/linux/sunrpc/debug.h diff --git a/libc/include/any-linux-any/linux/suspend_ioctls.h b/lib/libc/include/any-linux-any/linux/suspend_ioctls.h similarity index 100% rename from libc/include/any-linux-any/linux/suspend_ioctls.h rename to lib/libc/include/any-linux-any/linux/suspend_ioctls.h diff --git a/libc/include/any-linux-any/linux/swab.h b/lib/libc/include/any-linux-any/linux/swab.h similarity index 100% rename from libc/include/any-linux-any/linux/swab.h rename to lib/libc/include/any-linux-any/linux/swab.h diff --git a/libc/include/any-linux-any/linux/switchtec_ioctl.h b/lib/libc/include/any-linux-any/linux/switchtec_ioctl.h similarity index 100% rename from libc/include/any-linux-any/linux/switchtec_ioctl.h rename to lib/libc/include/any-linux-any/linux/switchtec_ioctl.h diff --git a/libc/include/any-linux-any/linux/sync_file.h b/lib/libc/include/any-linux-any/linux/sync_file.h similarity index 100% rename from libc/include/any-linux-any/linux/sync_file.h rename to lib/libc/include/any-linux-any/linux/sync_file.h diff --git a/libc/include/any-linux-any/linux/synclink.h b/lib/libc/include/any-linux-any/linux/synclink.h similarity index 100% rename from libc/include/any-linux-any/linux/synclink.h rename to lib/libc/include/any-linux-any/linux/synclink.h diff --git a/libc/include/any-linux-any/linux/sysctl.h b/lib/libc/include/any-linux-any/linux/sysctl.h similarity index 100% rename from libc/include/any-linux-any/linux/sysctl.h rename to lib/libc/include/any-linux-any/linux/sysctl.h diff --git a/libc/include/any-linux-any/linux/sysinfo.h b/lib/libc/include/any-linux-any/linux/sysinfo.h similarity index 100% rename from libc/include/any-linux-any/linux/sysinfo.h rename to lib/libc/include/any-linux-any/linux/sysinfo.h diff --git a/libc/include/any-linux-any/linux/target_core_user.h b/lib/libc/include/any-linux-any/linux/target_core_user.h similarity index 100% rename from libc/include/any-linux-any/linux/target_core_user.h rename to lib/libc/include/any-linux-any/linux/target_core_user.h diff --git a/libc/include/any-linux-any/linux/taskstats.h b/lib/libc/include/any-linux-any/linux/taskstats.h similarity index 100% rename from libc/include/any-linux-any/linux/taskstats.h rename to lib/libc/include/any-linux-any/linux/taskstats.h diff --git a/libc/include/any-linux-any/linux/tc_act/tc_bpf.h b/lib/libc/include/any-linux-any/linux/tc_act/tc_bpf.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_act/tc_bpf.h rename to lib/libc/include/any-linux-any/linux/tc_act/tc_bpf.h diff --git a/libc/include/any-linux-any/linux/tc_act/tc_connmark.h b/lib/libc/include/any-linux-any/linux/tc_act/tc_connmark.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_act/tc_connmark.h rename to lib/libc/include/any-linux-any/linux/tc_act/tc_connmark.h diff --git a/libc/include/any-linux-any/linux/tc_act/tc_csum.h b/lib/libc/include/any-linux-any/linux/tc_act/tc_csum.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_act/tc_csum.h rename to lib/libc/include/any-linux-any/linux/tc_act/tc_csum.h diff --git a/libc/include/any-linux-any/linux/tc_act/tc_defact.h b/lib/libc/include/any-linux-any/linux/tc_act/tc_defact.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_act/tc_defact.h rename to lib/libc/include/any-linux-any/linux/tc_act/tc_defact.h diff --git a/libc/include/any-linux-any/linux/tc_act/tc_gact.h b/lib/libc/include/any-linux-any/linux/tc_act/tc_gact.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_act/tc_gact.h rename to lib/libc/include/any-linux-any/linux/tc_act/tc_gact.h diff --git a/libc/include/any-linux-any/linux/tc_act/tc_ife.h b/lib/libc/include/any-linux-any/linux/tc_act/tc_ife.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_act/tc_ife.h rename to lib/libc/include/any-linux-any/linux/tc_act/tc_ife.h diff --git a/libc/include/any-linux-any/linux/tc_act/tc_ipt.h b/lib/libc/include/any-linux-any/linux/tc_act/tc_ipt.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_act/tc_ipt.h rename to lib/libc/include/any-linux-any/linux/tc_act/tc_ipt.h diff --git a/libc/include/any-linux-any/linux/tc_act/tc_mirred.h b/lib/libc/include/any-linux-any/linux/tc_act/tc_mirred.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_act/tc_mirred.h rename to lib/libc/include/any-linux-any/linux/tc_act/tc_mirred.h diff --git a/libc/include/any-linux-any/linux/tc_act/tc_nat.h b/lib/libc/include/any-linux-any/linux/tc_act/tc_nat.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_act/tc_nat.h rename to lib/libc/include/any-linux-any/linux/tc_act/tc_nat.h diff --git a/libc/include/any-linux-any/linux/tc_act/tc_pedit.h b/lib/libc/include/any-linux-any/linux/tc_act/tc_pedit.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_act/tc_pedit.h rename to lib/libc/include/any-linux-any/linux/tc_act/tc_pedit.h diff --git a/libc/include/any-linux-any/linux/tc_act/tc_sample.h b/lib/libc/include/any-linux-any/linux/tc_act/tc_sample.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_act/tc_sample.h rename to lib/libc/include/any-linux-any/linux/tc_act/tc_sample.h diff --git a/libc/include/any-linux-any/linux/tc_act/tc_skbedit.h b/lib/libc/include/any-linux-any/linux/tc_act/tc_skbedit.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_act/tc_skbedit.h rename to lib/libc/include/any-linux-any/linux/tc_act/tc_skbedit.h diff --git a/libc/include/any-linux-any/linux/tc_act/tc_skbmod.h b/lib/libc/include/any-linux-any/linux/tc_act/tc_skbmod.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_act/tc_skbmod.h rename to lib/libc/include/any-linux-any/linux/tc_act/tc_skbmod.h diff --git a/libc/include/any-linux-any/linux/tc_act/tc_tunnel_key.h b/lib/libc/include/any-linux-any/linux/tc_act/tc_tunnel_key.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_act/tc_tunnel_key.h rename to lib/libc/include/any-linux-any/linux/tc_act/tc_tunnel_key.h diff --git a/libc/include/any-linux-any/linux/tc_act/tc_vlan.h b/lib/libc/include/any-linux-any/linux/tc_act/tc_vlan.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_act/tc_vlan.h rename to lib/libc/include/any-linux-any/linux/tc_act/tc_vlan.h diff --git a/libc/include/any-linux-any/linux/tc_ematch/tc_em_cmp.h b/lib/libc/include/any-linux-any/linux/tc_ematch/tc_em_cmp.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_ematch/tc_em_cmp.h rename to lib/libc/include/any-linux-any/linux/tc_ematch/tc_em_cmp.h diff --git a/libc/include/any-linux-any/linux/tc_ematch/tc_em_ipt.h b/lib/libc/include/any-linux-any/linux/tc_ematch/tc_em_ipt.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_ematch/tc_em_ipt.h rename to lib/libc/include/any-linux-any/linux/tc_ematch/tc_em_ipt.h diff --git a/libc/include/any-linux-any/linux/tc_ematch/tc_em_meta.h b/lib/libc/include/any-linux-any/linux/tc_ematch/tc_em_meta.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_ematch/tc_em_meta.h rename to lib/libc/include/any-linux-any/linux/tc_ematch/tc_em_meta.h diff --git a/libc/include/any-linux-any/linux/tc_ematch/tc_em_nbyte.h b/lib/libc/include/any-linux-any/linux/tc_ematch/tc_em_nbyte.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_ematch/tc_em_nbyte.h rename to lib/libc/include/any-linux-any/linux/tc_ematch/tc_em_nbyte.h diff --git a/libc/include/any-linux-any/linux/tc_ematch/tc_em_text.h b/lib/libc/include/any-linux-any/linux/tc_ematch/tc_em_text.h similarity index 100% rename from libc/include/any-linux-any/linux/tc_ematch/tc_em_text.h rename to lib/libc/include/any-linux-any/linux/tc_ematch/tc_em_text.h diff --git a/libc/include/any-linux-any/linux/tcp.h b/lib/libc/include/any-linux-any/linux/tcp.h similarity index 100% rename from libc/include/any-linux-any/linux/tcp.h rename to lib/libc/include/any-linux-any/linux/tcp.h diff --git a/libc/include/any-linux-any/linux/tcp_metrics.h b/lib/libc/include/any-linux-any/linux/tcp_metrics.h similarity index 100% rename from libc/include/any-linux-any/linux/tcp_metrics.h rename to lib/libc/include/any-linux-any/linux/tcp_metrics.h diff --git a/libc/include/any-linux-any/linux/tee.h b/lib/libc/include/any-linux-any/linux/tee.h similarity index 100% rename from libc/include/any-linux-any/linux/tee.h rename to lib/libc/include/any-linux-any/linux/tee.h diff --git a/libc/include/any-linux-any/linux/termios.h b/lib/libc/include/any-linux-any/linux/termios.h similarity index 100% rename from libc/include/any-linux-any/linux/termios.h rename to lib/libc/include/any-linux-any/linux/termios.h diff --git a/libc/include/any-linux-any/linux/thermal.h b/lib/libc/include/any-linux-any/linux/thermal.h similarity index 100% rename from libc/include/any-linux-any/linux/thermal.h rename to lib/libc/include/any-linux-any/linux/thermal.h diff --git a/libc/include/any-linux-any/linux/time.h b/lib/libc/include/any-linux-any/linux/time.h similarity index 100% rename from libc/include/any-linux-any/linux/time.h rename to lib/libc/include/any-linux-any/linux/time.h diff --git a/libc/include/any-linux-any/linux/timerfd.h b/lib/libc/include/any-linux-any/linux/timerfd.h similarity index 100% rename from libc/include/any-linux-any/linux/timerfd.h rename to lib/libc/include/any-linux-any/linux/timerfd.h diff --git a/libc/include/any-linux-any/linux/times.h b/lib/libc/include/any-linux-any/linux/times.h similarity index 100% rename from libc/include/any-linux-any/linux/times.h rename to lib/libc/include/any-linux-any/linux/times.h diff --git a/libc/include/any-linux-any/linux/timex.h b/lib/libc/include/any-linux-any/linux/timex.h similarity index 100% rename from libc/include/any-linux-any/linux/timex.h rename to lib/libc/include/any-linux-any/linux/timex.h diff --git a/libc/include/any-linux-any/linux/tiocl.h b/lib/libc/include/any-linux-any/linux/tiocl.h similarity index 100% rename from libc/include/any-linux-any/linux/tiocl.h rename to lib/libc/include/any-linux-any/linux/tiocl.h diff --git a/libc/include/any-linux-any/linux/tipc.h b/lib/libc/include/any-linux-any/linux/tipc.h similarity index 100% rename from libc/include/any-linux-any/linux/tipc.h rename to lib/libc/include/any-linux-any/linux/tipc.h diff --git a/libc/include/any-linux-any/linux/tipc_config.h b/lib/libc/include/any-linux-any/linux/tipc_config.h similarity index 100% rename from libc/include/any-linux-any/linux/tipc_config.h rename to lib/libc/include/any-linux-any/linux/tipc_config.h diff --git a/libc/include/any-linux-any/linux/tipc_netlink.h b/lib/libc/include/any-linux-any/linux/tipc_netlink.h similarity index 100% rename from libc/include/any-linux-any/linux/tipc_netlink.h rename to lib/libc/include/any-linux-any/linux/tipc_netlink.h diff --git a/libc/include/any-linux-any/linux/tipc_sockets_diag.h b/lib/libc/include/any-linux-any/linux/tipc_sockets_diag.h similarity index 100% rename from libc/include/any-linux-any/linux/tipc_sockets_diag.h rename to lib/libc/include/any-linux-any/linux/tipc_sockets_diag.h diff --git a/libc/include/any-linux-any/linux/tls.h b/lib/libc/include/any-linux-any/linux/tls.h similarity index 100% rename from libc/include/any-linux-any/linux/tls.h rename to lib/libc/include/any-linux-any/linux/tls.h diff --git a/libc/include/any-linux-any/linux/toshiba.h b/lib/libc/include/any-linux-any/linux/toshiba.h similarity index 100% rename from libc/include/any-linux-any/linux/toshiba.h rename to lib/libc/include/any-linux-any/linux/toshiba.h diff --git a/libc/include/any-linux-any/linux/tty.h b/lib/libc/include/any-linux-any/linux/tty.h similarity index 100% rename from libc/include/any-linux-any/linux/tty.h rename to lib/libc/include/any-linux-any/linux/tty.h diff --git a/libc/include/any-linux-any/linux/tty_flags.h b/lib/libc/include/any-linux-any/linux/tty_flags.h similarity index 100% rename from libc/include/any-linux-any/linux/tty_flags.h rename to lib/libc/include/any-linux-any/linux/tty_flags.h diff --git a/libc/include/any-linux-any/linux/types.h b/lib/libc/include/any-linux-any/linux/types.h similarity index 100% rename from libc/include/any-linux-any/linux/types.h rename to lib/libc/include/any-linux-any/linux/types.h diff --git a/libc/include/any-linux-any/linux/udf_fs_i.h b/lib/libc/include/any-linux-any/linux/udf_fs_i.h similarity index 100% rename from libc/include/any-linux-any/linux/udf_fs_i.h rename to lib/libc/include/any-linux-any/linux/udf_fs_i.h diff --git a/libc/include/any-linux-any/linux/udp.h b/lib/libc/include/any-linux-any/linux/udp.h similarity index 100% rename from libc/include/any-linux-any/linux/udp.h rename to lib/libc/include/any-linux-any/linux/udp.h diff --git a/libc/include/any-linux-any/linux/uhid.h b/lib/libc/include/any-linux-any/linux/uhid.h similarity index 100% rename from libc/include/any-linux-any/linux/uhid.h rename to lib/libc/include/any-linux-any/linux/uhid.h diff --git a/libc/include/any-linux-any/linux/uinput.h b/lib/libc/include/any-linux-any/linux/uinput.h similarity index 100% rename from libc/include/any-linux-any/linux/uinput.h rename to lib/libc/include/any-linux-any/linux/uinput.h diff --git a/libc/include/any-linux-any/linux/uio.h b/lib/libc/include/any-linux-any/linux/uio.h similarity index 100% rename from libc/include/any-linux-any/linux/uio.h rename to lib/libc/include/any-linux-any/linux/uio.h diff --git a/libc/include/any-linux-any/linux/uleds.h b/lib/libc/include/any-linux-any/linux/uleds.h similarity index 100% rename from libc/include/any-linux-any/linux/uleds.h rename to lib/libc/include/any-linux-any/linux/uleds.h diff --git a/libc/include/any-linux-any/linux/ultrasound.h b/lib/libc/include/any-linux-any/linux/ultrasound.h similarity index 100% rename from libc/include/any-linux-any/linux/ultrasound.h rename to lib/libc/include/any-linux-any/linux/ultrasound.h diff --git a/libc/include/any-linux-any/linux/un.h b/lib/libc/include/any-linux-any/linux/un.h similarity index 100% rename from libc/include/any-linux-any/linux/un.h rename to lib/libc/include/any-linux-any/linux/un.h diff --git a/libc/include/any-linux-any/linux/unistd.h b/lib/libc/include/any-linux-any/linux/unistd.h similarity index 100% rename from libc/include/any-linux-any/linux/unistd.h rename to lib/libc/include/any-linux-any/linux/unistd.h diff --git a/libc/include/any-linux-any/linux/unix_diag.h b/lib/libc/include/any-linux-any/linux/unix_diag.h similarity index 100% rename from libc/include/any-linux-any/linux/unix_diag.h rename to lib/libc/include/any-linux-any/linux/unix_diag.h diff --git a/libc/include/any-linux-any/linux/usb/audio.h b/lib/libc/include/any-linux-any/linux/usb/audio.h similarity index 100% rename from libc/include/any-linux-any/linux/usb/audio.h rename to lib/libc/include/any-linux-any/linux/usb/audio.h diff --git a/libc/include/any-linux-any/linux/usb/cdc-wdm.h b/lib/libc/include/any-linux-any/linux/usb/cdc-wdm.h similarity index 100% rename from libc/include/any-linux-any/linux/usb/cdc-wdm.h rename to lib/libc/include/any-linux-any/linux/usb/cdc-wdm.h diff --git a/libc/include/any-linux-any/linux/usb/cdc.h b/lib/libc/include/any-linux-any/linux/usb/cdc.h similarity index 100% rename from libc/include/any-linux-any/linux/usb/cdc.h rename to lib/libc/include/any-linux-any/linux/usb/cdc.h diff --git a/libc/include/any-linux-any/linux/usb/ch11.h b/lib/libc/include/any-linux-any/linux/usb/ch11.h similarity index 100% rename from libc/include/any-linux-any/linux/usb/ch11.h rename to lib/libc/include/any-linux-any/linux/usb/ch11.h diff --git a/libc/include/any-linux-any/linux/usb/ch9.h b/lib/libc/include/any-linux-any/linux/usb/ch9.h similarity index 100% rename from libc/include/any-linux-any/linux/usb/ch9.h rename to lib/libc/include/any-linux-any/linux/usb/ch9.h diff --git a/libc/include/any-linux-any/linux/usb/charger.h b/lib/libc/include/any-linux-any/linux/usb/charger.h similarity index 100% rename from libc/include/any-linux-any/linux/usb/charger.h rename to lib/libc/include/any-linux-any/linux/usb/charger.h diff --git a/libc/include/any-linux-any/linux/usb/functionfs.h b/lib/libc/include/any-linux-any/linux/usb/functionfs.h similarity index 100% rename from libc/include/any-linux-any/linux/usb/functionfs.h rename to lib/libc/include/any-linux-any/linux/usb/functionfs.h diff --git a/libc/include/any-linux-any/linux/usb/g_printer.h b/lib/libc/include/any-linux-any/linux/usb/g_printer.h similarity index 100% rename from libc/include/any-linux-any/linux/usb/g_printer.h rename to lib/libc/include/any-linux-any/linux/usb/g_printer.h diff --git a/libc/include/any-linux-any/linux/usb/g_uvc.h b/lib/libc/include/any-linux-any/linux/usb/g_uvc.h similarity index 100% rename from libc/include/any-linux-any/linux/usb/g_uvc.h rename to lib/libc/include/any-linux-any/linux/usb/g_uvc.h diff --git a/libc/include/any-linux-any/linux/usb/gadgetfs.h b/lib/libc/include/any-linux-any/linux/usb/gadgetfs.h similarity index 100% rename from libc/include/any-linux-any/linux/usb/gadgetfs.h rename to lib/libc/include/any-linux-any/linux/usb/gadgetfs.h diff --git a/libc/include/any-linux-any/linux/usb/midi.h b/lib/libc/include/any-linux-any/linux/usb/midi.h similarity index 100% rename from libc/include/any-linux-any/linux/usb/midi.h rename to lib/libc/include/any-linux-any/linux/usb/midi.h diff --git a/libc/include/any-linux-any/linux/usb/tmc.h b/lib/libc/include/any-linux-any/linux/usb/tmc.h similarity index 100% rename from libc/include/any-linux-any/linux/usb/tmc.h rename to lib/libc/include/any-linux-any/linux/usb/tmc.h diff --git a/libc/include/any-linux-any/linux/usb/video.h b/lib/libc/include/any-linux-any/linux/usb/video.h similarity index 100% rename from libc/include/any-linux-any/linux/usb/video.h rename to lib/libc/include/any-linux-any/linux/usb/video.h diff --git a/libc/include/any-linux-any/linux/usbdevice_fs.h b/lib/libc/include/any-linux-any/linux/usbdevice_fs.h similarity index 100% rename from libc/include/any-linux-any/linux/usbdevice_fs.h rename to lib/libc/include/any-linux-any/linux/usbdevice_fs.h diff --git a/libc/include/any-linux-any/linux/usbip.h b/lib/libc/include/any-linux-any/linux/usbip.h similarity index 100% rename from libc/include/any-linux-any/linux/usbip.h rename to lib/libc/include/any-linux-any/linux/usbip.h diff --git a/libc/include/any-linux-any/linux/userfaultfd.h b/lib/libc/include/any-linux-any/linux/userfaultfd.h similarity index 100% rename from libc/include/any-linux-any/linux/userfaultfd.h rename to lib/libc/include/any-linux-any/linux/userfaultfd.h diff --git a/libc/include/any-linux-any/linux/userio.h b/lib/libc/include/any-linux-any/linux/userio.h similarity index 100% rename from libc/include/any-linux-any/linux/userio.h rename to lib/libc/include/any-linux-any/linux/userio.h diff --git a/libc/include/any-linux-any/linux/utime.h b/lib/libc/include/any-linux-any/linux/utime.h similarity index 100% rename from libc/include/any-linux-any/linux/utime.h rename to lib/libc/include/any-linux-any/linux/utime.h diff --git a/libc/include/any-linux-any/linux/utsname.h b/lib/libc/include/any-linux-any/linux/utsname.h similarity index 100% rename from libc/include/any-linux-any/linux/utsname.h rename to lib/libc/include/any-linux-any/linux/utsname.h diff --git a/libc/include/any-linux-any/linux/uuid.h b/lib/libc/include/any-linux-any/linux/uuid.h similarity index 100% rename from libc/include/any-linux-any/linux/uuid.h rename to lib/libc/include/any-linux-any/linux/uuid.h diff --git a/libc/include/any-linux-any/linux/uvcvideo.h b/lib/libc/include/any-linux-any/linux/uvcvideo.h similarity index 100% rename from libc/include/any-linux-any/linux/uvcvideo.h rename to lib/libc/include/any-linux-any/linux/uvcvideo.h diff --git a/libc/include/any-linux-any/linux/v4l2-common.h b/lib/libc/include/any-linux-any/linux/v4l2-common.h similarity index 100% rename from libc/include/any-linux-any/linux/v4l2-common.h rename to lib/libc/include/any-linux-any/linux/v4l2-common.h diff --git a/libc/include/any-linux-any/linux/v4l2-controls.h b/lib/libc/include/any-linux-any/linux/v4l2-controls.h similarity index 100% rename from libc/include/any-linux-any/linux/v4l2-controls.h rename to lib/libc/include/any-linux-any/linux/v4l2-controls.h diff --git a/libc/include/any-linux-any/linux/v4l2-dv-timings.h b/lib/libc/include/any-linux-any/linux/v4l2-dv-timings.h similarity index 100% rename from libc/include/any-linux-any/linux/v4l2-dv-timings.h rename to lib/libc/include/any-linux-any/linux/v4l2-dv-timings.h diff --git a/libc/include/any-linux-any/linux/v4l2-mediabus.h b/lib/libc/include/any-linux-any/linux/v4l2-mediabus.h similarity index 100% rename from libc/include/any-linux-any/linux/v4l2-mediabus.h rename to lib/libc/include/any-linux-any/linux/v4l2-mediabus.h diff --git a/libc/include/any-linux-any/linux/v4l2-subdev.h b/lib/libc/include/any-linux-any/linux/v4l2-subdev.h similarity index 100% rename from libc/include/any-linux-any/linux/v4l2-subdev.h rename to lib/libc/include/any-linux-any/linux/v4l2-subdev.h diff --git a/libc/include/any-linux-any/linux/vbox_err.h b/lib/libc/include/any-linux-any/linux/vbox_err.h similarity index 100% rename from libc/include/any-linux-any/linux/vbox_err.h rename to lib/libc/include/any-linux-any/linux/vbox_err.h diff --git a/libc/include/any-linux-any/linux/vbox_vmmdev_types.h b/lib/libc/include/any-linux-any/linux/vbox_vmmdev_types.h similarity index 100% rename from libc/include/any-linux-any/linux/vbox_vmmdev_types.h rename to lib/libc/include/any-linux-any/linux/vbox_vmmdev_types.h diff --git a/libc/include/any-linux-any/linux/vboxguest.h b/lib/libc/include/any-linux-any/linux/vboxguest.h similarity index 100% rename from libc/include/any-linux-any/linux/vboxguest.h rename to lib/libc/include/any-linux-any/linux/vboxguest.h diff --git a/libc/include/any-linux-any/linux/version.h b/lib/libc/include/any-linux-any/linux/version.h similarity index 100% rename from libc/include/any-linux-any/linux/version.h rename to lib/libc/include/any-linux-any/linux/version.h diff --git a/libc/include/any-linux-any/linux/veth.h b/lib/libc/include/any-linux-any/linux/veth.h similarity index 100% rename from libc/include/any-linux-any/linux/veth.h rename to lib/libc/include/any-linux-any/linux/veth.h diff --git a/libc/include/any-linux-any/linux/vfio.h b/lib/libc/include/any-linux-any/linux/vfio.h similarity index 100% rename from libc/include/any-linux-any/linux/vfio.h rename to lib/libc/include/any-linux-any/linux/vfio.h diff --git a/libc/include/any-linux-any/linux/vfio_ccw.h b/lib/libc/include/any-linux-any/linux/vfio_ccw.h similarity index 100% rename from libc/include/any-linux-any/linux/vfio_ccw.h rename to lib/libc/include/any-linux-any/linux/vfio_ccw.h diff --git a/libc/include/any-linux-any/linux/vhost.h b/lib/libc/include/any-linux-any/linux/vhost.h similarity index 100% rename from libc/include/any-linux-any/linux/vhost.h rename to lib/libc/include/any-linux-any/linux/vhost.h diff --git a/libc/include/any-linux-any/linux/videodev2.h b/lib/libc/include/any-linux-any/linux/videodev2.h similarity index 100% rename from libc/include/any-linux-any/linux/videodev2.h rename to lib/libc/include/any-linux-any/linux/videodev2.h diff --git a/libc/include/any-linux-any/linux/virtio_9p.h b/lib/libc/include/any-linux-any/linux/virtio_9p.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_9p.h rename to lib/libc/include/any-linux-any/linux/virtio_9p.h diff --git a/libc/include/any-linux-any/linux/virtio_balloon.h b/lib/libc/include/any-linux-any/linux/virtio_balloon.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_balloon.h rename to lib/libc/include/any-linux-any/linux/virtio_balloon.h diff --git a/libc/include/any-linux-any/linux/virtio_blk.h b/lib/libc/include/any-linux-any/linux/virtio_blk.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_blk.h rename to lib/libc/include/any-linux-any/linux/virtio_blk.h diff --git a/libc/include/any-linux-any/linux/virtio_config.h b/lib/libc/include/any-linux-any/linux/virtio_config.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_config.h rename to lib/libc/include/any-linux-any/linux/virtio_config.h diff --git a/libc/include/any-linux-any/linux/virtio_console.h b/lib/libc/include/any-linux-any/linux/virtio_console.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_console.h rename to lib/libc/include/any-linux-any/linux/virtio_console.h diff --git a/libc/include/any-linux-any/linux/virtio_crypto.h b/lib/libc/include/any-linux-any/linux/virtio_crypto.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_crypto.h rename to lib/libc/include/any-linux-any/linux/virtio_crypto.h diff --git a/libc/include/any-linux-any/linux/virtio_gpu.h b/lib/libc/include/any-linux-any/linux/virtio_gpu.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_gpu.h rename to lib/libc/include/any-linux-any/linux/virtio_gpu.h diff --git a/libc/include/any-linux-any/linux/virtio_ids.h b/lib/libc/include/any-linux-any/linux/virtio_ids.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_ids.h rename to lib/libc/include/any-linux-any/linux/virtio_ids.h diff --git a/libc/include/any-linux-any/linux/virtio_input.h b/lib/libc/include/any-linux-any/linux/virtio_input.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_input.h rename to lib/libc/include/any-linux-any/linux/virtio_input.h diff --git a/libc/include/any-linux-any/linux/virtio_mmio.h b/lib/libc/include/any-linux-any/linux/virtio_mmio.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_mmio.h rename to lib/libc/include/any-linux-any/linux/virtio_mmio.h diff --git a/libc/include/any-linux-any/linux/virtio_net.h b/lib/libc/include/any-linux-any/linux/virtio_net.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_net.h rename to lib/libc/include/any-linux-any/linux/virtio_net.h diff --git a/libc/include/any-linux-any/linux/virtio_pci.h b/lib/libc/include/any-linux-any/linux/virtio_pci.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_pci.h rename to lib/libc/include/any-linux-any/linux/virtio_pci.h diff --git a/libc/include/any-linux-any/linux/virtio_ring.h b/lib/libc/include/any-linux-any/linux/virtio_ring.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_ring.h rename to lib/libc/include/any-linux-any/linux/virtio_ring.h diff --git a/libc/include/any-linux-any/linux/virtio_rng.h b/lib/libc/include/any-linux-any/linux/virtio_rng.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_rng.h rename to lib/libc/include/any-linux-any/linux/virtio_rng.h diff --git a/libc/include/any-linux-any/linux/virtio_scsi.h b/lib/libc/include/any-linux-any/linux/virtio_scsi.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_scsi.h rename to lib/libc/include/any-linux-any/linux/virtio_scsi.h diff --git a/libc/include/any-linux-any/linux/virtio_types.h b/lib/libc/include/any-linux-any/linux/virtio_types.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_types.h rename to lib/libc/include/any-linux-any/linux/virtio_types.h diff --git a/libc/include/any-linux-any/linux/virtio_vsock.h b/lib/libc/include/any-linux-any/linux/virtio_vsock.h similarity index 100% rename from libc/include/any-linux-any/linux/virtio_vsock.h rename to lib/libc/include/any-linux-any/linux/virtio_vsock.h diff --git a/libc/include/any-linux-any/linux/vm_sockets.h b/lib/libc/include/any-linux-any/linux/vm_sockets.h similarity index 100% rename from libc/include/any-linux-any/linux/vm_sockets.h rename to lib/libc/include/any-linux-any/linux/vm_sockets.h diff --git a/libc/include/any-linux-any/linux/vm_sockets_diag.h b/lib/libc/include/any-linux-any/linux/vm_sockets_diag.h similarity index 100% rename from libc/include/any-linux-any/linux/vm_sockets_diag.h rename to lib/libc/include/any-linux-any/linux/vm_sockets_diag.h diff --git a/libc/include/any-linux-any/linux/vmcore.h b/lib/libc/include/any-linux-any/linux/vmcore.h similarity index 100% rename from libc/include/any-linux-any/linux/vmcore.h rename to lib/libc/include/any-linux-any/linux/vmcore.h diff --git a/libc/include/any-linux-any/linux/vsockmon.h b/lib/libc/include/any-linux-any/linux/vsockmon.h similarity index 100% rename from libc/include/any-linux-any/linux/vsockmon.h rename to lib/libc/include/any-linux-any/linux/vsockmon.h diff --git a/libc/include/any-linux-any/linux/vt.h b/lib/libc/include/any-linux-any/linux/vt.h similarity index 100% rename from libc/include/any-linux-any/linux/vt.h rename to lib/libc/include/any-linux-any/linux/vt.h diff --git a/libc/include/any-linux-any/linux/vtpm_proxy.h b/lib/libc/include/any-linux-any/linux/vtpm_proxy.h similarity index 100% rename from libc/include/any-linux-any/linux/vtpm_proxy.h rename to lib/libc/include/any-linux-any/linux/vtpm_proxy.h diff --git a/libc/include/any-linux-any/linux/wait.h b/lib/libc/include/any-linux-any/linux/wait.h similarity index 100% rename from libc/include/any-linux-any/linux/wait.h rename to lib/libc/include/any-linux-any/linux/wait.h diff --git a/libc/include/any-linux-any/linux/wanrouter.h b/lib/libc/include/any-linux-any/linux/wanrouter.h similarity index 100% rename from libc/include/any-linux-any/linux/wanrouter.h rename to lib/libc/include/any-linux-any/linux/wanrouter.h diff --git a/libc/include/any-linux-any/linux/watchdog.h b/lib/libc/include/any-linux-any/linux/watchdog.h similarity index 100% rename from libc/include/any-linux-any/linux/watchdog.h rename to lib/libc/include/any-linux-any/linux/watchdog.h diff --git a/libc/include/any-linux-any/linux/wimax.h b/lib/libc/include/any-linux-any/linux/wimax.h similarity index 100% rename from libc/include/any-linux-any/linux/wimax.h rename to lib/libc/include/any-linux-any/linux/wimax.h diff --git a/libc/include/any-linux-any/linux/wimax/i2400m.h b/lib/libc/include/any-linux-any/linux/wimax/i2400m.h similarity index 100% rename from libc/include/any-linux-any/linux/wimax/i2400m.h rename to lib/libc/include/any-linux-any/linux/wimax/i2400m.h diff --git a/libc/include/any-linux-any/linux/wireless.h b/lib/libc/include/any-linux-any/linux/wireless.h similarity index 100% rename from libc/include/any-linux-any/linux/wireless.h rename to lib/libc/include/any-linux-any/linux/wireless.h diff --git a/libc/include/any-linux-any/linux/wmi.h b/lib/libc/include/any-linux-any/linux/wmi.h similarity index 100% rename from libc/include/any-linux-any/linux/wmi.h rename to lib/libc/include/any-linux-any/linux/wmi.h diff --git a/libc/include/any-linux-any/linux/x25.h b/lib/libc/include/any-linux-any/linux/x25.h similarity index 100% rename from libc/include/any-linux-any/linux/x25.h rename to lib/libc/include/any-linux-any/linux/x25.h diff --git a/libc/include/any-linux-any/linux/xattr.h b/lib/libc/include/any-linux-any/linux/xattr.h similarity index 100% rename from libc/include/any-linux-any/linux/xattr.h rename to lib/libc/include/any-linux-any/linux/xattr.h diff --git a/libc/include/any-linux-any/linux/xfrm.h b/lib/libc/include/any-linux-any/linux/xfrm.h similarity index 100% rename from libc/include/any-linux-any/linux/xfrm.h rename to lib/libc/include/any-linux-any/linux/xfrm.h diff --git a/libc/include/any-linux-any/linux/xilinx-v4l2-controls.h b/lib/libc/include/any-linux-any/linux/xilinx-v4l2-controls.h similarity index 100% rename from libc/include/any-linux-any/linux/xilinx-v4l2-controls.h rename to lib/libc/include/any-linux-any/linux/xilinx-v4l2-controls.h diff --git a/libc/include/any-linux-any/linux/zorro.h b/lib/libc/include/any-linux-any/linux/zorro.h similarity index 100% rename from libc/include/any-linux-any/linux/zorro.h rename to lib/libc/include/any-linux-any/linux/zorro.h diff --git a/libc/include/any-linux-any/linux/zorro_ids.h b/lib/libc/include/any-linux-any/linux/zorro_ids.h similarity index 100% rename from libc/include/any-linux-any/linux/zorro_ids.h rename to lib/libc/include/any-linux-any/linux/zorro_ids.h diff --git a/libc/include/any-windows-any/GL/gl.h b/lib/libc/include/any-windows-any/GL/gl.h similarity index 100% rename from libc/include/any-windows-any/GL/gl.h rename to lib/libc/include/any-windows-any/GL/gl.h diff --git a/libc/include/any-windows-any/GL/glaux.h b/lib/libc/include/any-windows-any/GL/glaux.h similarity index 100% rename from libc/include/any-windows-any/GL/glaux.h rename to lib/libc/include/any-windows-any/GL/glaux.h diff --git a/libc/include/any-windows-any/GL/glcorearb.h b/lib/libc/include/any-windows-any/GL/glcorearb.h similarity index 100% rename from libc/include/any-windows-any/GL/glcorearb.h rename to lib/libc/include/any-windows-any/GL/glcorearb.h diff --git a/libc/include/any-windows-any/GL/glext.h b/lib/libc/include/any-windows-any/GL/glext.h similarity index 100% rename from libc/include/any-windows-any/GL/glext.h rename to lib/libc/include/any-windows-any/GL/glext.h diff --git a/libc/include/any-windows-any/GL/glu.h b/lib/libc/include/any-windows-any/GL/glu.h similarity index 100% rename from libc/include/any-windows-any/GL/glu.h rename to lib/libc/include/any-windows-any/GL/glu.h diff --git a/libc/include/any-windows-any/GL/glxext.h b/lib/libc/include/any-windows-any/GL/glxext.h similarity index 100% rename from libc/include/any-windows-any/GL/glxext.h rename to lib/libc/include/any-windows-any/GL/glxext.h diff --git a/libc/include/any-windows-any/GL/wglext.h b/lib/libc/include/any-windows-any/GL/wglext.h similarity index 100% rename from libc/include/any-windows-any/GL/wglext.h rename to lib/libc/include/any-windows-any/GL/wglext.h diff --git a/libc/include/any-windows-any/_bsd_types.h b/lib/libc/include/any-windows-any/_bsd_types.h similarity index 100% rename from libc/include/any-windows-any/_bsd_types.h rename to lib/libc/include/any-windows-any/_bsd_types.h diff --git a/libc/include/any-windows-any/_cygwin.h b/lib/libc/include/any-windows-any/_cygwin.h similarity index 100% rename from libc/include/any-windows-any/_cygwin.h rename to lib/libc/include/any-windows-any/_cygwin.h diff --git a/libc/include/any-windows-any/_dbdao.h b/lib/libc/include/any-windows-any/_dbdao.h similarity index 100% rename from libc/include/any-windows-any/_dbdao.h rename to lib/libc/include/any-windows-any/_dbdao.h diff --git a/libc/include/any-windows-any/_mingw.h b/lib/libc/include/any-windows-any/_mingw.h similarity index 100% rename from libc/include/any-windows-any/_mingw.h rename to lib/libc/include/any-windows-any/_mingw.h diff --git a/libc/include/any-windows-any/_mingw_dxhelper.h b/lib/libc/include/any-windows-any/_mingw_dxhelper.h similarity index 100% rename from libc/include/any-windows-any/_mingw_dxhelper.h rename to lib/libc/include/any-windows-any/_mingw_dxhelper.h diff --git a/libc/include/any-windows-any/_mingw_mac.h b/lib/libc/include/any-windows-any/_mingw_mac.h similarity index 100% rename from libc/include/any-windows-any/_mingw_mac.h rename to lib/libc/include/any-windows-any/_mingw_mac.h diff --git a/libc/include/any-windows-any/_mingw_off_t.h b/lib/libc/include/any-windows-any/_mingw_off_t.h similarity index 100% rename from libc/include/any-windows-any/_mingw_off_t.h rename to lib/libc/include/any-windows-any/_mingw_off_t.h diff --git a/libc/include/any-windows-any/_mingw_print_pop.h b/lib/libc/include/any-windows-any/_mingw_print_pop.h similarity index 100% rename from libc/include/any-windows-any/_mingw_print_pop.h rename to lib/libc/include/any-windows-any/_mingw_print_pop.h diff --git a/libc/include/any-windows-any/_mingw_print_push.h b/lib/libc/include/any-windows-any/_mingw_print_push.h similarity index 100% rename from libc/include/any-windows-any/_mingw_print_push.h rename to lib/libc/include/any-windows-any/_mingw_print_push.h diff --git a/libc/include/any-windows-any/_mingw_secapi.h b/lib/libc/include/any-windows-any/_mingw_secapi.h similarity index 100% rename from libc/include/any-windows-any/_mingw_secapi.h rename to lib/libc/include/any-windows-any/_mingw_secapi.h diff --git a/libc/include/any-windows-any/_mingw_stat64.h b/lib/libc/include/any-windows-any/_mingw_stat64.h similarity index 100% rename from libc/include/any-windows-any/_mingw_stat64.h rename to lib/libc/include/any-windows-any/_mingw_stat64.h diff --git a/libc/include/any-windows-any/_mingw_stdarg.h b/lib/libc/include/any-windows-any/_mingw_stdarg.h similarity index 100% rename from libc/include/any-windows-any/_mingw_stdarg.h rename to lib/libc/include/any-windows-any/_mingw_stdarg.h diff --git a/libc/include/any-windows-any/_mingw_unicode.h b/lib/libc/include/any-windows-any/_mingw_unicode.h similarity index 100% rename from libc/include/any-windows-any/_mingw_unicode.h rename to lib/libc/include/any-windows-any/_mingw_unicode.h diff --git a/libc/include/any-windows-any/_timeval.h b/lib/libc/include/any-windows-any/_timeval.h similarity index 100% rename from libc/include/any-windows-any/_timeval.h rename to lib/libc/include/any-windows-any/_timeval.h diff --git a/libc/include/any-windows-any/accctrl.h b/lib/libc/include/any-windows-any/accctrl.h similarity index 100% rename from libc/include/any-windows-any/accctrl.h rename to lib/libc/include/any-windows-any/accctrl.h diff --git a/libc/include/any-windows-any/aclapi.h b/lib/libc/include/any-windows-any/aclapi.h similarity index 100% rename from libc/include/any-windows-any/aclapi.h rename to lib/libc/include/any-windows-any/aclapi.h diff --git a/libc/include/any-windows-any/aclui.h b/lib/libc/include/any-windows-any/aclui.h similarity index 100% rename from libc/include/any-windows-any/aclui.h rename to lib/libc/include/any-windows-any/aclui.h diff --git a/libc/include/any-windows-any/activation.h b/lib/libc/include/any-windows-any/activation.h similarity index 100% rename from libc/include/any-windows-any/activation.h rename to lib/libc/include/any-windows-any/activation.h diff --git a/libc/include/any-windows-any/activaut.h b/lib/libc/include/any-windows-any/activaut.h similarity index 100% rename from libc/include/any-windows-any/activaut.h rename to lib/libc/include/any-windows-any/activaut.h diff --git a/libc/include/any-windows-any/activdbg.h b/lib/libc/include/any-windows-any/activdbg.h similarity index 100% rename from libc/include/any-windows-any/activdbg.h rename to lib/libc/include/any-windows-any/activdbg.h diff --git a/libc/include/any-windows-any/activdbg100.h b/lib/libc/include/any-windows-any/activdbg100.h similarity index 100% rename from libc/include/any-windows-any/activdbg100.h rename to lib/libc/include/any-windows-any/activdbg100.h diff --git a/libc/include/any-windows-any/activecf.h b/lib/libc/include/any-windows-any/activecf.h similarity index 100% rename from libc/include/any-windows-any/activecf.h rename to lib/libc/include/any-windows-any/activecf.h diff --git a/libc/include/any-windows-any/activeds.h b/lib/libc/include/any-windows-any/activeds.h similarity index 100% rename from libc/include/any-windows-any/activeds.h rename to lib/libc/include/any-windows-any/activeds.h diff --git a/libc/include/any-windows-any/activprof.h b/lib/libc/include/any-windows-any/activprof.h similarity index 100% rename from libc/include/any-windows-any/activprof.h rename to lib/libc/include/any-windows-any/activprof.h diff --git a/libc/include/any-windows-any/activscp.h b/lib/libc/include/any-windows-any/activscp.h similarity index 100% rename from libc/include/any-windows-any/activscp.h rename to lib/libc/include/any-windows-any/activscp.h diff --git a/libc/include/any-windows-any/adc.h b/lib/libc/include/any-windows-any/adc.h similarity index 100% rename from libc/include/any-windows-any/adc.h rename to lib/libc/include/any-windows-any/adc.h diff --git a/libc/include/any-windows-any/adhoc.h b/lib/libc/include/any-windows-any/adhoc.h similarity index 100% rename from libc/include/any-windows-any/adhoc.h rename to lib/libc/include/any-windows-any/adhoc.h diff --git a/libc/include/any-windows-any/admex.h b/lib/libc/include/any-windows-any/admex.h similarity index 100% rename from libc/include/any-windows-any/admex.h rename to lib/libc/include/any-windows-any/admex.h diff --git a/libc/include/any-windows-any/adoctint.h b/lib/libc/include/any-windows-any/adoctint.h similarity index 100% rename from libc/include/any-windows-any/adoctint.h rename to lib/libc/include/any-windows-any/adoctint.h diff --git a/libc/include/any-windows-any/adodef.h b/lib/libc/include/any-windows-any/adodef.h similarity index 100% rename from libc/include/any-windows-any/adodef.h rename to lib/libc/include/any-windows-any/adodef.h diff --git a/libc/include/any-windows-any/adogpool.h b/lib/libc/include/any-windows-any/adogpool.h similarity index 100% rename from libc/include/any-windows-any/adogpool.h rename to lib/libc/include/any-windows-any/adogpool.h diff --git a/libc/include/any-windows-any/adogpool_backcompat.h b/lib/libc/include/any-windows-any/adogpool_backcompat.h similarity index 100% rename from libc/include/any-windows-any/adogpool_backcompat.h rename to lib/libc/include/any-windows-any/adogpool_backcompat.h diff --git a/libc/include/any-windows-any/adoguids.h b/lib/libc/include/any-windows-any/adoguids.h similarity index 100% rename from libc/include/any-windows-any/adoguids.h rename to lib/libc/include/any-windows-any/adoguids.h diff --git a/libc/include/any-windows-any/adoid.h b/lib/libc/include/any-windows-any/adoid.h similarity index 100% rename from libc/include/any-windows-any/adoid.h rename to lib/libc/include/any-windows-any/adoid.h diff --git a/libc/include/any-windows-any/adoint.h b/lib/libc/include/any-windows-any/adoint.h similarity index 100% rename from libc/include/any-windows-any/adoint.h rename to lib/libc/include/any-windows-any/adoint.h diff --git a/libc/include/any-windows-any/adoint_backcompat.h b/lib/libc/include/any-windows-any/adoint_backcompat.h similarity index 100% rename from libc/include/any-windows-any/adoint_backcompat.h rename to lib/libc/include/any-windows-any/adoint_backcompat.h diff --git a/libc/include/any-windows-any/adojet.h b/lib/libc/include/any-windows-any/adojet.h similarity index 100% rename from libc/include/any-windows-any/adojet.h rename to lib/libc/include/any-windows-any/adojet.h diff --git a/libc/include/any-windows-any/adomd.h b/lib/libc/include/any-windows-any/adomd.h similarity index 100% rename from libc/include/any-windows-any/adomd.h rename to lib/libc/include/any-windows-any/adomd.h diff --git a/libc/include/any-windows-any/adptif.h b/lib/libc/include/any-windows-any/adptif.h similarity index 100% rename from libc/include/any-windows-any/adptif.h rename to lib/libc/include/any-windows-any/adptif.h diff --git a/libc/include/any-windows-any/adsdb.h b/lib/libc/include/any-windows-any/adsdb.h similarity index 100% rename from libc/include/any-windows-any/adsdb.h rename to lib/libc/include/any-windows-any/adsdb.h diff --git a/libc/include/any-windows-any/adserr.h b/lib/libc/include/any-windows-any/adserr.h similarity index 100% rename from libc/include/any-windows-any/adserr.h rename to lib/libc/include/any-windows-any/adserr.h diff --git a/libc/include/any-windows-any/adshlp.h b/lib/libc/include/any-windows-any/adshlp.h similarity index 100% rename from libc/include/any-windows-any/adshlp.h rename to lib/libc/include/any-windows-any/adshlp.h diff --git a/libc/include/any-windows-any/adsiid.h b/lib/libc/include/any-windows-any/adsiid.h similarity index 100% rename from libc/include/any-windows-any/adsiid.h rename to lib/libc/include/any-windows-any/adsiid.h diff --git a/libc/include/any-windows-any/adsnms.h b/lib/libc/include/any-windows-any/adsnms.h similarity index 100% rename from libc/include/any-windows-any/adsnms.h rename to lib/libc/include/any-windows-any/adsnms.h diff --git a/libc/include/any-windows-any/adsprop.h b/lib/libc/include/any-windows-any/adsprop.h similarity index 100% rename from libc/include/any-windows-any/adsprop.h rename to lib/libc/include/any-windows-any/adsprop.h diff --git a/libc/include/any-windows-any/adssts.h b/lib/libc/include/any-windows-any/adssts.h similarity index 100% rename from libc/include/any-windows-any/adssts.h rename to lib/libc/include/any-windows-any/adssts.h diff --git a/libc/include/any-windows-any/adtgen.h b/lib/libc/include/any-windows-any/adtgen.h similarity index 100% rename from libc/include/any-windows-any/adtgen.h rename to lib/libc/include/any-windows-any/adtgen.h diff --git a/libc/include/any-windows-any/advpub.h b/lib/libc/include/any-windows-any/advpub.h similarity index 100% rename from libc/include/any-windows-any/advpub.h rename to lib/libc/include/any-windows-any/advpub.h diff --git a/libc/include/any-windows-any/af_irda.h b/lib/libc/include/any-windows-any/af_irda.h similarity index 100% rename from libc/include/any-windows-any/af_irda.h rename to lib/libc/include/any-windows-any/af_irda.h diff --git a/libc/include/any-windows-any/afxres.h b/lib/libc/include/any-windows-any/afxres.h similarity index 100% rename from libc/include/any-windows-any/afxres.h rename to lib/libc/include/any-windows-any/afxres.h diff --git a/libc/include/any-windows-any/agtctl.h b/lib/libc/include/any-windows-any/agtctl.h similarity index 100% rename from libc/include/any-windows-any/agtctl.h rename to lib/libc/include/any-windows-any/agtctl.h diff --git a/libc/include/any-windows-any/agterr.h b/lib/libc/include/any-windows-any/agterr.h similarity index 100% rename from libc/include/any-windows-any/agterr.h rename to lib/libc/include/any-windows-any/agterr.h diff --git a/libc/include/any-windows-any/agtsvr.h b/lib/libc/include/any-windows-any/agtsvr.h similarity index 100% rename from libc/include/any-windows-any/agtsvr.h rename to lib/libc/include/any-windows-any/agtsvr.h diff --git a/libc/include/any-windows-any/alg.h b/lib/libc/include/any-windows-any/alg.h similarity index 100% rename from libc/include/any-windows-any/alg.h rename to lib/libc/include/any-windows-any/alg.h diff --git a/libc/include/any-windows-any/alink.h b/lib/libc/include/any-windows-any/alink.h similarity index 100% rename from libc/include/any-windows-any/alink.h rename to lib/libc/include/any-windows-any/alink.h diff --git a/libc/include/any-windows-any/amaudio.h b/lib/libc/include/any-windows-any/amaudio.h similarity index 100% rename from libc/include/any-windows-any/amaudio.h rename to lib/libc/include/any-windows-any/amaudio.h diff --git a/libc/include/any-windows-any/amstream.h b/lib/libc/include/any-windows-any/amstream.h similarity index 100% rename from libc/include/any-windows-any/amstream.h rename to lib/libc/include/any-windows-any/amstream.h diff --git a/libc/include/any-windows-any/amstream.idl b/lib/libc/include/any-windows-any/amstream.idl similarity index 100% rename from libc/include/any-windows-any/amstream.idl rename to lib/libc/include/any-windows-any/amstream.idl diff --git a/libc/include/any-windows-any/amvideo.h b/lib/libc/include/any-windows-any/amvideo.h similarity index 100% rename from libc/include/any-windows-any/amvideo.h rename to lib/libc/include/any-windows-any/amvideo.h diff --git a/libc/include/any-windows-any/amvideo.idl b/lib/libc/include/any-windows-any/amvideo.idl similarity index 100% rename from libc/include/any-windows-any/amvideo.idl rename to lib/libc/include/any-windows-any/amvideo.idl diff --git a/libc/include/any-windows-any/apdevpkey.h b/lib/libc/include/any-windows-any/apdevpkey.h similarity index 100% rename from libc/include/any-windows-any/apdevpkey.h rename to lib/libc/include/any-windows-any/apdevpkey.h diff --git a/libc/include/any-windows-any/apiset.h b/lib/libc/include/any-windows-any/apiset.h similarity index 100% rename from libc/include/any-windows-any/apiset.h rename to lib/libc/include/any-windows-any/apiset.h diff --git a/libc/include/any-windows-any/apisetcconv.h b/lib/libc/include/any-windows-any/apisetcconv.h similarity index 100% rename from libc/include/any-windows-any/apisetcconv.h rename to lib/libc/include/any-windows-any/apisetcconv.h diff --git a/libc/include/any-windows-any/appmgmt.h b/lib/libc/include/any-windows-any/appmgmt.h similarity index 100% rename from libc/include/any-windows-any/appmgmt.h rename to lib/libc/include/any-windows-any/appmgmt.h diff --git a/libc/include/any-windows-any/aqadmtyp.h b/lib/libc/include/any-windows-any/aqadmtyp.h similarity index 100% rename from libc/include/any-windows-any/aqadmtyp.h rename to lib/libc/include/any-windows-any/aqadmtyp.h diff --git a/libc/include/any-windows-any/asptlb.h b/lib/libc/include/any-windows-any/asptlb.h similarity index 100% rename from libc/include/any-windows-any/asptlb.h rename to lib/libc/include/any-windows-any/asptlb.h diff --git a/libc/include/any-windows-any/assert.h b/lib/libc/include/any-windows-any/assert.h similarity index 100% rename from libc/include/any-windows-any/assert.h rename to lib/libc/include/any-windows-any/assert.h diff --git a/libc/include/any-windows-any/atacct.h b/lib/libc/include/any-windows-any/atacct.h similarity index 100% rename from libc/include/any-windows-any/atacct.h rename to lib/libc/include/any-windows-any/atacct.h diff --git a/libc/include/any-windows-any/atalkwsh.h b/lib/libc/include/any-windows-any/atalkwsh.h similarity index 100% rename from libc/include/any-windows-any/atalkwsh.h rename to lib/libc/include/any-windows-any/atalkwsh.h diff --git a/libc/include/any-windows-any/atsmedia.h b/lib/libc/include/any-windows-any/atsmedia.h similarity index 100% rename from libc/include/any-windows-any/atsmedia.h rename to lib/libc/include/any-windows-any/atsmedia.h diff --git a/libc/include/any-windows-any/audevcod.h b/lib/libc/include/any-windows-any/audevcod.h similarity index 100% rename from libc/include/any-windows-any/audevcod.h rename to lib/libc/include/any-windows-any/audevcod.h diff --git a/libc/include/any-windows-any/audioapotypes.h b/lib/libc/include/any-windows-any/audioapotypes.h similarity index 100% rename from libc/include/any-windows-any/audioapotypes.h rename to lib/libc/include/any-windows-any/audioapotypes.h diff --git a/libc/include/any-windows-any/audioclient.h b/lib/libc/include/any-windows-any/audioclient.h similarity index 100% rename from libc/include/any-windows-any/audioclient.h rename to lib/libc/include/any-windows-any/audioclient.h diff --git a/libc/include/any-windows-any/audioendpoints.h b/lib/libc/include/any-windows-any/audioendpoints.h similarity index 100% rename from libc/include/any-windows-any/audioendpoints.h rename to lib/libc/include/any-windows-any/audioendpoints.h diff --git a/libc/include/any-windows-any/audioengineendpoint.h b/lib/libc/include/any-windows-any/audioengineendpoint.h similarity index 100% rename from libc/include/any-windows-any/audioengineendpoint.h rename to lib/libc/include/any-windows-any/audioengineendpoint.h diff --git a/libc/include/any-windows-any/audiopolicy.h b/lib/libc/include/any-windows-any/audiopolicy.h similarity index 100% rename from libc/include/any-windows-any/audiopolicy.h rename to lib/libc/include/any-windows-any/audiopolicy.h diff --git a/libc/include/any-windows-any/audiosessiontypes.h b/lib/libc/include/any-windows-any/audiosessiontypes.h similarity index 100% rename from libc/include/any-windows-any/audiosessiontypes.h rename to lib/libc/include/any-windows-any/audiosessiontypes.h diff --git a/libc/include/any-windows-any/austream.h b/lib/libc/include/any-windows-any/austream.h similarity index 100% rename from libc/include/any-windows-any/austream.h rename to lib/libc/include/any-windows-any/austream.h diff --git a/libc/include/any-windows-any/austream.idl b/lib/libc/include/any-windows-any/austream.idl similarity index 100% rename from libc/include/any-windows-any/austream.idl rename to lib/libc/include/any-windows-any/austream.idl diff --git a/libc/include/any-windows-any/authif.h b/lib/libc/include/any-windows-any/authif.h similarity index 100% rename from libc/include/any-windows-any/authif.h rename to lib/libc/include/any-windows-any/authif.h diff --git a/libc/include/any-windows-any/authz.h b/lib/libc/include/any-windows-any/authz.h similarity index 100% rename from libc/include/any-windows-any/authz.h rename to lib/libc/include/any-windows-any/authz.h diff --git a/libc/include/any-windows-any/aux_ulib.h b/lib/libc/include/any-windows-any/aux_ulib.h similarity index 100% rename from libc/include/any-windows-any/aux_ulib.h rename to lib/libc/include/any-windows-any/aux_ulib.h diff --git a/libc/include/any-windows-any/avifmt.h b/lib/libc/include/any-windows-any/avifmt.h similarity index 100% rename from libc/include/any-windows-any/avifmt.h rename to lib/libc/include/any-windows-any/avifmt.h diff --git a/libc/include/any-windows-any/aviriff.h b/lib/libc/include/any-windows-any/aviriff.h similarity index 100% rename from libc/include/any-windows-any/aviriff.h rename to lib/libc/include/any-windows-any/aviriff.h diff --git a/libc/include/any-windows-any/avrfsdk.h b/lib/libc/include/any-windows-any/avrfsdk.h similarity index 100% rename from libc/include/any-windows-any/avrfsdk.h rename to lib/libc/include/any-windows-any/avrfsdk.h diff --git a/libc/include/any-windows-any/avrt.h b/lib/libc/include/any-windows-any/avrt.h similarity index 100% rename from libc/include/any-windows-any/avrt.h rename to lib/libc/include/any-windows-any/avrt.h diff --git a/libc/include/any-windows-any/axextendenums.h b/lib/libc/include/any-windows-any/axextendenums.h similarity index 100% rename from libc/include/any-windows-any/axextendenums.h rename to lib/libc/include/any-windows-any/axextendenums.h diff --git a/libc/include/any-windows-any/azroles.h b/lib/libc/include/any-windows-any/azroles.h similarity index 100% rename from libc/include/any-windows-any/azroles.h rename to lib/libc/include/any-windows-any/azroles.h diff --git a/libc/include/any-windows-any/basetsd.h b/lib/libc/include/any-windows-any/basetsd.h similarity index 100% rename from libc/include/any-windows-any/basetsd.h rename to lib/libc/include/any-windows-any/basetsd.h diff --git a/libc/include/any-windows-any/basetyps.h b/lib/libc/include/any-windows-any/basetyps.h similarity index 100% rename from libc/include/any-windows-any/basetyps.h rename to lib/libc/include/any-windows-any/basetyps.h diff --git a/libc/include/any-windows-any/batclass.h b/lib/libc/include/any-windows-any/batclass.h similarity index 100% rename from libc/include/any-windows-any/batclass.h rename to lib/libc/include/any-windows-any/batclass.h diff --git a/libc/include/any-windows-any/bcrypt.h b/lib/libc/include/any-windows-any/bcrypt.h similarity index 100% rename from libc/include/any-windows-any/bcrypt.h rename to lib/libc/include/any-windows-any/bcrypt.h diff --git a/libc/include/any-windows-any/bdaiface.h b/lib/libc/include/any-windows-any/bdaiface.h similarity index 100% rename from libc/include/any-windows-any/bdaiface.h rename to lib/libc/include/any-windows-any/bdaiface.h diff --git a/libc/include/any-windows-any/bdaiface_enums.h b/lib/libc/include/any-windows-any/bdaiface_enums.h similarity index 100% rename from libc/include/any-windows-any/bdaiface_enums.h rename to lib/libc/include/any-windows-any/bdaiface_enums.h diff --git a/libc/include/any-windows-any/bdamedia.h b/lib/libc/include/any-windows-any/bdamedia.h similarity index 100% rename from libc/include/any-windows-any/bdamedia.h rename to lib/libc/include/any-windows-any/bdamedia.h diff --git a/libc/include/any-windows-any/bdatypes.h b/lib/libc/include/any-windows-any/bdatypes.h similarity index 100% rename from libc/include/any-windows-any/bdatypes.h rename to lib/libc/include/any-windows-any/bdatypes.h diff --git a/libc/include/any-windows-any/bemapiset.h b/lib/libc/include/any-windows-any/bemapiset.h similarity index 100% rename from libc/include/any-windows-any/bemapiset.h rename to lib/libc/include/any-windows-any/bemapiset.h diff --git a/libc/include/any-windows-any/bh.h b/lib/libc/include/any-windows-any/bh.h similarity index 100% rename from libc/include/any-windows-any/bh.h rename to lib/libc/include/any-windows-any/bh.h diff --git a/libc/include/any-windows-any/bidispl.h b/lib/libc/include/any-windows-any/bidispl.h similarity index 100% rename from libc/include/any-windows-any/bidispl.h rename to lib/libc/include/any-windows-any/bidispl.h diff --git a/libc/include/any-windows-any/bits.h b/lib/libc/include/any-windows-any/bits.h similarity index 100% rename from libc/include/any-windows-any/bits.h rename to lib/libc/include/any-windows-any/bits.h diff --git a/libc/include/any-windows-any/bits1_5.h b/lib/libc/include/any-windows-any/bits1_5.h similarity index 100% rename from libc/include/any-windows-any/bits1_5.h rename to lib/libc/include/any-windows-any/bits1_5.h diff --git a/libc/include/any-windows-any/bits2_0.h b/lib/libc/include/any-windows-any/bits2_0.h similarity index 100% rename from libc/include/any-windows-any/bits2_0.h rename to lib/libc/include/any-windows-any/bits2_0.h diff --git a/libc/include/any-windows-any/bitscfg.h b/lib/libc/include/any-windows-any/bitscfg.h similarity index 100% rename from libc/include/any-windows-any/bitscfg.h rename to lib/libc/include/any-windows-any/bitscfg.h diff --git a/libc/include/any-windows-any/bitsmsg.h b/lib/libc/include/any-windows-any/bitsmsg.h similarity index 100% rename from libc/include/any-windows-any/bitsmsg.h rename to lib/libc/include/any-windows-any/bitsmsg.h diff --git a/libc/include/any-windows-any/blberr.h b/lib/libc/include/any-windows-any/blberr.h similarity index 100% rename from libc/include/any-windows-any/blberr.h rename to lib/libc/include/any-windows-any/blberr.h diff --git a/libc/include/any-windows-any/bluetoothapis.h b/lib/libc/include/any-windows-any/bluetoothapis.h similarity index 100% rename from libc/include/any-windows-any/bluetoothapis.h rename to lib/libc/include/any-windows-any/bluetoothapis.h diff --git a/libc/include/any-windows-any/bthdef.h b/lib/libc/include/any-windows-any/bthdef.h similarity index 100% rename from libc/include/any-windows-any/bthdef.h rename to lib/libc/include/any-windows-any/bthdef.h diff --git a/libc/include/any-windows-any/bthsdpdef.h b/lib/libc/include/any-windows-any/bthsdpdef.h similarity index 100% rename from libc/include/any-windows-any/bthsdpdef.h rename to lib/libc/include/any-windows-any/bthsdpdef.h diff --git a/libc/include/any-windows-any/bugcodes.h b/lib/libc/include/any-windows-any/bugcodes.h similarity index 100% rename from libc/include/any-windows-any/bugcodes.h rename to lib/libc/include/any-windows-any/bugcodes.h diff --git a/libc/include/any-windows-any/callobj.h b/lib/libc/include/any-windows-any/callobj.h similarity index 100% rename from libc/include/any-windows-any/callobj.h rename to lib/libc/include/any-windows-any/callobj.h diff --git a/libc/include/any-windows-any/cardmod.h b/lib/libc/include/any-windows-any/cardmod.h similarity index 100% rename from libc/include/any-windows-any/cardmod.h rename to lib/libc/include/any-windows-any/cardmod.h diff --git a/libc/include/any-windows-any/casetup.h b/lib/libc/include/any-windows-any/casetup.h similarity index 100% rename from libc/include/any-windows-any/casetup.h rename to lib/libc/include/any-windows-any/casetup.h diff --git a/libc/include/any-windows-any/cchannel.h b/lib/libc/include/any-windows-any/cchannel.h similarity index 100% rename from libc/include/any-windows-any/cchannel.h rename to lib/libc/include/any-windows-any/cchannel.h diff --git a/libc/include/any-windows-any/cderr.h b/lib/libc/include/any-windows-any/cderr.h similarity index 100% rename from libc/include/any-windows-any/cderr.h rename to lib/libc/include/any-windows-any/cderr.h diff --git a/libc/include/any-windows-any/cdoex.h b/lib/libc/include/any-windows-any/cdoex.h similarity index 100% rename from libc/include/any-windows-any/cdoex.h rename to lib/libc/include/any-windows-any/cdoex.h diff --git a/libc/include/any-windows-any/cdoexerr.h b/lib/libc/include/any-windows-any/cdoexerr.h similarity index 100% rename from libc/include/any-windows-any/cdoexerr.h rename to lib/libc/include/any-windows-any/cdoexerr.h diff --git a/libc/include/any-windows-any/cdoexm.h b/lib/libc/include/any-windows-any/cdoexm.h similarity index 100% rename from libc/include/any-windows-any/cdoexm.h rename to lib/libc/include/any-windows-any/cdoexm.h diff --git a/libc/include/any-windows-any/cdoexstr.h b/lib/libc/include/any-windows-any/cdoexstr.h similarity index 100% rename from libc/include/any-windows-any/cdoexstr.h rename to lib/libc/include/any-windows-any/cdoexstr.h diff --git a/libc/include/any-windows-any/cdonts.h b/lib/libc/include/any-windows-any/cdonts.h similarity index 100% rename from libc/include/any-windows-any/cdonts.h rename to lib/libc/include/any-windows-any/cdonts.h diff --git a/libc/include/any-windows-any/cdosys.h b/lib/libc/include/any-windows-any/cdosys.h similarity index 100% rename from libc/include/any-windows-any/cdosys.h rename to lib/libc/include/any-windows-any/cdosys.h diff --git a/libc/include/any-windows-any/cdosyserr.h b/lib/libc/include/any-windows-any/cdosyserr.h similarity index 100% rename from libc/include/any-windows-any/cdosyserr.h rename to lib/libc/include/any-windows-any/cdosyserr.h diff --git a/libc/include/any-windows-any/cdosysstr.h b/lib/libc/include/any-windows-any/cdosysstr.h similarity index 100% rename from libc/include/any-windows-any/cdosysstr.h rename to lib/libc/include/any-windows-any/cdosysstr.h diff --git a/libc/include/any-windows-any/celib.h b/lib/libc/include/any-windows-any/celib.h similarity index 100% rename from libc/include/any-windows-any/celib.h rename to lib/libc/include/any-windows-any/celib.h diff --git a/libc/include/any-windows-any/certadm.h b/lib/libc/include/any-windows-any/certadm.h similarity index 100% rename from libc/include/any-windows-any/certadm.h rename to lib/libc/include/any-windows-any/certadm.h diff --git a/libc/include/any-windows-any/certbase.h b/lib/libc/include/any-windows-any/certbase.h similarity index 100% rename from libc/include/any-windows-any/certbase.h rename to lib/libc/include/any-windows-any/certbase.h diff --git a/libc/include/any-windows-any/certbcli.h b/lib/libc/include/any-windows-any/certbcli.h similarity index 100% rename from libc/include/any-windows-any/certbcli.h rename to lib/libc/include/any-windows-any/certbcli.h diff --git a/libc/include/any-windows-any/certcli.h b/lib/libc/include/any-windows-any/certcli.h similarity index 100% rename from libc/include/any-windows-any/certcli.h rename to lib/libc/include/any-windows-any/certcli.h diff --git a/libc/include/any-windows-any/certenc.h b/lib/libc/include/any-windows-any/certenc.h similarity index 100% rename from libc/include/any-windows-any/certenc.h rename to lib/libc/include/any-windows-any/certenc.h diff --git a/libc/include/any-windows-any/certenroll.h b/lib/libc/include/any-windows-any/certenroll.h similarity index 100% rename from libc/include/any-windows-any/certenroll.h rename to lib/libc/include/any-windows-any/certenroll.h diff --git a/libc/include/any-windows-any/certexit.h b/lib/libc/include/any-windows-any/certexit.h similarity index 100% rename from libc/include/any-windows-any/certexit.h rename to lib/libc/include/any-windows-any/certexit.h diff --git a/libc/include/any-windows-any/certif.h b/lib/libc/include/any-windows-any/certif.h similarity index 100% rename from libc/include/any-windows-any/certif.h rename to lib/libc/include/any-windows-any/certif.h diff --git a/libc/include/any-windows-any/certmod.h b/lib/libc/include/any-windows-any/certmod.h similarity index 100% rename from libc/include/any-windows-any/certmod.h rename to lib/libc/include/any-windows-any/certmod.h diff --git a/libc/include/any-windows-any/certpol.h b/lib/libc/include/any-windows-any/certpol.h similarity index 100% rename from libc/include/any-windows-any/certpol.h rename to lib/libc/include/any-windows-any/certpol.h diff --git a/libc/include/any-windows-any/certreqd.h b/lib/libc/include/any-windows-any/certreqd.h similarity index 100% rename from libc/include/any-windows-any/certreqd.h rename to lib/libc/include/any-windows-any/certreqd.h diff --git a/libc/include/any-windows-any/certsrv.h b/lib/libc/include/any-windows-any/certsrv.h similarity index 100% rename from libc/include/any-windows-any/certsrv.h rename to lib/libc/include/any-windows-any/certsrv.h diff --git a/libc/include/any-windows-any/certview.h b/lib/libc/include/any-windows-any/certview.h similarity index 100% rename from libc/include/any-windows-any/certview.h rename to lib/libc/include/any-windows-any/certview.h diff --git a/libc/include/any-windows-any/cfg.h b/lib/libc/include/any-windows-any/cfg.h similarity index 100% rename from libc/include/any-windows-any/cfg.h rename to lib/libc/include/any-windows-any/cfg.h diff --git a/libc/include/any-windows-any/cfgmgr32.h b/lib/libc/include/any-windows-any/cfgmgr32.h similarity index 100% rename from libc/include/any-windows-any/cfgmgr32.h rename to lib/libc/include/any-windows-any/cfgmgr32.h diff --git a/libc/include/any-windows-any/cguid.h b/lib/libc/include/any-windows-any/cguid.h similarity index 100% rename from libc/include/any-windows-any/cguid.h rename to lib/libc/include/any-windows-any/cguid.h diff --git a/libc/include/any-windows-any/chanmgr.h b/lib/libc/include/any-windows-any/chanmgr.h similarity index 100% rename from libc/include/any-windows-any/chanmgr.h rename to lib/libc/include/any-windows-any/chanmgr.h diff --git a/libc/include/any-windows-any/cierror.h b/lib/libc/include/any-windows-any/cierror.h similarity index 100% rename from libc/include/any-windows-any/cierror.h rename to lib/libc/include/any-windows-any/cierror.h diff --git a/libc/include/any-windows-any/clfs.h b/lib/libc/include/any-windows-any/clfs.h similarity index 100% rename from libc/include/any-windows-any/clfs.h rename to lib/libc/include/any-windows-any/clfs.h diff --git a/libc/include/any-windows-any/clfsmgmt.h b/lib/libc/include/any-windows-any/clfsmgmt.h similarity index 100% rename from libc/include/any-windows-any/clfsmgmt.h rename to lib/libc/include/any-windows-any/clfsmgmt.h diff --git a/libc/include/any-windows-any/clfsmgmtw32.h b/lib/libc/include/any-windows-any/clfsmgmtw32.h similarity index 100% rename from libc/include/any-windows-any/clfsmgmtw32.h rename to lib/libc/include/any-windows-any/clfsmgmtw32.h diff --git a/libc/include/any-windows-any/clfsw32.h b/lib/libc/include/any-windows-any/clfsw32.h similarity index 100% rename from libc/include/any-windows-any/clfsw32.h rename to lib/libc/include/any-windows-any/clfsw32.h diff --git a/libc/include/any-windows-any/cluadmex.h b/lib/libc/include/any-windows-any/cluadmex.h similarity index 100% rename from libc/include/any-windows-any/cluadmex.h rename to lib/libc/include/any-windows-any/cluadmex.h diff --git a/libc/include/any-windows-any/clusapi.h b/lib/libc/include/any-windows-any/clusapi.h similarity index 100% rename from libc/include/any-windows-any/clusapi.h rename to lib/libc/include/any-windows-any/clusapi.h diff --git a/libc/include/any-windows-any/cluscfgguids.h b/lib/libc/include/any-windows-any/cluscfgguids.h similarity index 100% rename from libc/include/any-windows-any/cluscfgguids.h rename to lib/libc/include/any-windows-any/cluscfgguids.h diff --git a/libc/include/any-windows-any/cluscfgserver.h b/lib/libc/include/any-windows-any/cluscfgserver.h similarity index 100% rename from libc/include/any-windows-any/cluscfgserver.h rename to lib/libc/include/any-windows-any/cluscfgserver.h diff --git a/libc/include/any-windows-any/cluscfgwizard.h b/lib/libc/include/any-windows-any/cluscfgwizard.h similarity index 100% rename from libc/include/any-windows-any/cluscfgwizard.h rename to lib/libc/include/any-windows-any/cluscfgwizard.h diff --git a/libc/include/any-windows-any/cmdtree.h b/lib/libc/include/any-windows-any/cmdtree.h similarity index 100% rename from libc/include/any-windows-any/cmdtree.h rename to lib/libc/include/any-windows-any/cmdtree.h diff --git a/libc/include/any-windows-any/cmnquery.h b/lib/libc/include/any-windows-any/cmnquery.h similarity index 100% rename from libc/include/any-windows-any/cmnquery.h rename to lib/libc/include/any-windows-any/cmnquery.h diff --git a/libc/include/any-windows-any/codecapi.h b/lib/libc/include/any-windows-any/codecapi.h similarity index 100% rename from libc/include/any-windows-any/codecapi.h rename to lib/libc/include/any-windows-any/codecapi.h diff --git a/libc/include/any-windows-any/color.dlg b/lib/libc/include/any-windows-any/color.dlg similarity index 100% rename from libc/include/any-windows-any/color.dlg rename to lib/libc/include/any-windows-any/color.dlg diff --git a/libc/include/any-windows-any/colordlg.h b/lib/libc/include/any-windows-any/colordlg.h similarity index 100% rename from libc/include/any-windows-any/colordlg.h rename to lib/libc/include/any-windows-any/colordlg.h diff --git a/libc/include/any-windows-any/comadmin.h b/lib/libc/include/any-windows-any/comadmin.h similarity index 100% rename from libc/include/any-windows-any/comadmin.h rename to lib/libc/include/any-windows-any/comadmin.h diff --git a/libc/include/any-windows-any/combaseapi.h b/lib/libc/include/any-windows-any/combaseapi.h similarity index 100% rename from libc/include/any-windows-any/combaseapi.h rename to lib/libc/include/any-windows-any/combaseapi.h diff --git a/libc/include/any-windows-any/comcat.h b/lib/libc/include/any-windows-any/comcat.h similarity index 100% rename from libc/include/any-windows-any/comcat.h rename to lib/libc/include/any-windows-any/comcat.h diff --git a/libc/include/any-windows-any/comdef.h b/lib/libc/include/any-windows-any/comdef.h similarity index 100% rename from libc/include/any-windows-any/comdef.h rename to lib/libc/include/any-windows-any/comdef.h diff --git a/libc/include/any-windows-any/comdefsp.h b/lib/libc/include/any-windows-any/comdefsp.h similarity index 100% rename from libc/include/any-windows-any/comdefsp.h rename to lib/libc/include/any-windows-any/comdefsp.h diff --git a/libc/include/any-windows-any/comip.h b/lib/libc/include/any-windows-any/comip.h similarity index 100% rename from libc/include/any-windows-any/comip.h rename to lib/libc/include/any-windows-any/comip.h diff --git a/libc/include/any-windows-any/comlite.h b/lib/libc/include/any-windows-any/comlite.h similarity index 100% rename from libc/include/any-windows-any/comlite.h rename to lib/libc/include/any-windows-any/comlite.h diff --git a/libc/include/any-windows-any/commapi.h b/lib/libc/include/any-windows-any/commapi.h similarity index 100% rename from libc/include/any-windows-any/commapi.h rename to lib/libc/include/any-windows-any/commapi.h diff --git a/libc/include/any-windows-any/commctrl.h b/lib/libc/include/any-windows-any/commctrl.h similarity index 100% rename from libc/include/any-windows-any/commctrl.h rename to lib/libc/include/any-windows-any/commctrl.h diff --git a/libc/include/any-windows-any/commctrl.rh b/lib/libc/include/any-windows-any/commctrl.rh similarity index 100% rename from libc/include/any-windows-any/commctrl.rh rename to lib/libc/include/any-windows-any/commctrl.rh diff --git a/libc/include/any-windows-any/commdlg.h b/lib/libc/include/any-windows-any/commdlg.h similarity index 100% rename from libc/include/any-windows-any/commdlg.h rename to lib/libc/include/any-windows-any/commdlg.h diff --git a/libc/include/any-windows-any/common.ver b/lib/libc/include/any-windows-any/common.ver similarity index 100% rename from libc/include/any-windows-any/common.ver rename to lib/libc/include/any-windows-any/common.ver diff --git a/libc/include/any-windows-any/commoncontrols.h b/lib/libc/include/any-windows-any/commoncontrols.h similarity index 100% rename from libc/include/any-windows-any/commoncontrols.h rename to lib/libc/include/any-windows-any/commoncontrols.h diff --git a/libc/include/any-windows-any/complex.h b/lib/libc/include/any-windows-any/complex.h similarity index 100% rename from libc/include/any-windows-any/complex.h rename to lib/libc/include/any-windows-any/complex.h diff --git a/libc/include/any-windows-any/compobj.h b/lib/libc/include/any-windows-any/compobj.h similarity index 100% rename from libc/include/any-windows-any/compobj.h rename to lib/libc/include/any-windows-any/compobj.h diff --git a/libc/include/any-windows-any/compressapi.h b/lib/libc/include/any-windows-any/compressapi.h similarity index 100% rename from libc/include/any-windows-any/compressapi.h rename to lib/libc/include/any-windows-any/compressapi.h diff --git a/libc/include/any-windows-any/compstui.h b/lib/libc/include/any-windows-any/compstui.h similarity index 100% rename from libc/include/any-windows-any/compstui.h rename to lib/libc/include/any-windows-any/compstui.h diff --git a/libc/include/any-windows-any/comsvcs.h b/lib/libc/include/any-windows-any/comsvcs.h similarity index 100% rename from libc/include/any-windows-any/comsvcs.h rename to lib/libc/include/any-windows-any/comsvcs.h diff --git a/libc/include/any-windows-any/comutil.h b/lib/libc/include/any-windows-any/comutil.h similarity index 100% rename from libc/include/any-windows-any/comutil.h rename to lib/libc/include/any-windows-any/comutil.h diff --git a/libc/include/any-windows-any/confpriv.h b/lib/libc/include/any-windows-any/confpriv.h similarity index 100% rename from libc/include/any-windows-any/confpriv.h rename to lib/libc/include/any-windows-any/confpriv.h diff --git a/libc/include/any-windows-any/conio.h b/lib/libc/include/any-windows-any/conio.h similarity index 100% rename from libc/include/any-windows-any/conio.h rename to lib/libc/include/any-windows-any/conio.h diff --git a/libc/include/any-windows-any/control.h b/lib/libc/include/any-windows-any/control.h similarity index 100% rename from libc/include/any-windows-any/control.h rename to lib/libc/include/any-windows-any/control.h diff --git a/libc/include/any-windows-any/cor.h b/lib/libc/include/any-windows-any/cor.h similarity index 100% rename from libc/include/any-windows-any/cor.h rename to lib/libc/include/any-windows-any/cor.h diff --git a/libc/include/any-windows-any/corecrt_startup.h b/lib/libc/include/any-windows-any/corecrt_startup.h similarity index 100% rename from libc/include/any-windows-any/corecrt_startup.h rename to lib/libc/include/any-windows-any/corecrt_startup.h diff --git a/libc/include/any-windows-any/corerror.h b/lib/libc/include/any-windows-any/corerror.h similarity index 100% rename from libc/include/any-windows-any/corerror.h rename to lib/libc/include/any-windows-any/corerror.h diff --git a/libc/include/any-windows-any/corhdr.h b/lib/libc/include/any-windows-any/corhdr.h similarity index 100% rename from libc/include/any-windows-any/corhdr.h rename to lib/libc/include/any-windows-any/corhdr.h diff --git a/libc/include/any-windows-any/correg.h b/lib/libc/include/any-windows-any/correg.h similarity index 100% rename from libc/include/any-windows-any/correg.h rename to lib/libc/include/any-windows-any/correg.h diff --git a/libc/include/any-windows-any/cpl.h b/lib/libc/include/any-windows-any/cpl.h similarity index 100% rename from libc/include/any-windows-any/cpl.h rename to lib/libc/include/any-windows-any/cpl.h diff --git a/libc/include/any-windows-any/cplext.h b/lib/libc/include/any-windows-any/cplext.h similarity index 100% rename from libc/include/any-windows-any/cplext.h rename to lib/libc/include/any-windows-any/cplext.h diff --git a/libc/include/any-windows-any/credssp.h b/lib/libc/include/any-windows-any/credssp.h similarity index 100% rename from libc/include/any-windows-any/credssp.h rename to lib/libc/include/any-windows-any/credssp.h diff --git a/libc/include/any-windows-any/crtdbg.h b/lib/libc/include/any-windows-any/crtdbg.h similarity index 100% rename from libc/include/any-windows-any/crtdbg.h rename to lib/libc/include/any-windows-any/crtdbg.h diff --git a/libc/include/any-windows-any/crtdefs.h b/lib/libc/include/any-windows-any/crtdefs.h similarity index 100% rename from libc/include/any-windows-any/crtdefs.h rename to lib/libc/include/any-windows-any/crtdefs.h diff --git a/libc/include/any-windows-any/cryptuiapi.h b/lib/libc/include/any-windows-any/cryptuiapi.h similarity index 100% rename from libc/include/any-windows-any/cryptuiapi.h rename to lib/libc/include/any-windows-any/cryptuiapi.h diff --git a/libc/include/any-windows-any/cryptxml.h b/lib/libc/include/any-windows-any/cryptxml.h similarity index 100% rename from libc/include/any-windows-any/cryptxml.h rename to lib/libc/include/any-windows-any/cryptxml.h diff --git a/libc/include/any-windows-any/cscapi.h b/lib/libc/include/any-windows-any/cscapi.h similarity index 100% rename from libc/include/any-windows-any/cscapi.h rename to lib/libc/include/any-windows-any/cscapi.h diff --git a/libc/include/any-windows-any/cscobj.h b/lib/libc/include/any-windows-any/cscobj.h similarity index 100% rename from libc/include/any-windows-any/cscobj.h rename to lib/libc/include/any-windows-any/cscobj.h diff --git a/libc/include/any-windows-any/ctfutb.h b/lib/libc/include/any-windows-any/ctfutb.h similarity index 100% rename from libc/include/any-windows-any/ctfutb.h rename to lib/libc/include/any-windows-any/ctfutb.h diff --git a/libc/include/any-windows-any/ctxtcall.h b/lib/libc/include/any-windows-any/ctxtcall.h similarity index 100% rename from libc/include/any-windows-any/ctxtcall.h rename to lib/libc/include/any-windows-any/ctxtcall.h diff --git a/libc/include/any-windows-any/ctype.h b/lib/libc/include/any-windows-any/ctype.h similarity index 100% rename from libc/include/any-windows-any/ctype.h rename to lib/libc/include/any-windows-any/ctype.h diff --git a/libc/include/any-windows-any/custcntl.h b/lib/libc/include/any-windows-any/custcntl.h similarity index 100% rename from libc/include/any-windows-any/custcntl.h rename to lib/libc/include/any-windows-any/custcntl.h diff --git a/libc/include/any-windows-any/d2d1.h b/lib/libc/include/any-windows-any/d2d1.h similarity index 100% rename from libc/include/any-windows-any/d2d1.h rename to lib/libc/include/any-windows-any/d2d1.h diff --git a/libc/include/any-windows-any/d2d1_1.h b/lib/libc/include/any-windows-any/d2d1_1.h similarity index 100% rename from libc/include/any-windows-any/d2d1_1.h rename to lib/libc/include/any-windows-any/d2d1_1.h diff --git a/libc/include/any-windows-any/d2d1_1helper.h b/lib/libc/include/any-windows-any/d2d1_1helper.h similarity index 100% rename from libc/include/any-windows-any/d2d1_1helper.h rename to lib/libc/include/any-windows-any/d2d1_1helper.h diff --git a/libc/include/any-windows-any/d2d1effectauthor.h b/lib/libc/include/any-windows-any/d2d1effectauthor.h similarity index 100% rename from libc/include/any-windows-any/d2d1effectauthor.h rename to lib/libc/include/any-windows-any/d2d1effectauthor.h diff --git a/libc/include/any-windows-any/d2d1effecthelpers.h b/lib/libc/include/any-windows-any/d2d1effecthelpers.h similarity index 100% rename from libc/include/any-windows-any/d2d1effecthelpers.h rename to lib/libc/include/any-windows-any/d2d1effecthelpers.h diff --git a/libc/include/any-windows-any/d2d1effects.h b/lib/libc/include/any-windows-any/d2d1effects.h similarity index 100% rename from libc/include/any-windows-any/d2d1effects.h rename to lib/libc/include/any-windows-any/d2d1effects.h diff --git a/libc/include/any-windows-any/d2d1helper.h b/lib/libc/include/any-windows-any/d2d1helper.h similarity index 100% rename from libc/include/any-windows-any/d2d1helper.h rename to lib/libc/include/any-windows-any/d2d1helper.h diff --git a/libc/include/any-windows-any/d2dbasetypes.h b/lib/libc/include/any-windows-any/d2dbasetypes.h similarity index 100% rename from libc/include/any-windows-any/d2dbasetypes.h rename to lib/libc/include/any-windows-any/d2dbasetypes.h diff --git a/libc/include/any-windows-any/d2derr.h b/lib/libc/include/any-windows-any/d2derr.h similarity index 100% rename from libc/include/any-windows-any/d2derr.h rename to lib/libc/include/any-windows-any/d2derr.h diff --git a/libc/include/any-windows-any/d3d.h b/lib/libc/include/any-windows-any/d3d.h similarity index 100% rename from libc/include/any-windows-any/d3d.h rename to lib/libc/include/any-windows-any/d3d.h diff --git a/libc/include/any-windows-any/d3d10.h b/lib/libc/include/any-windows-any/d3d10.h similarity index 100% rename from libc/include/any-windows-any/d3d10.h rename to lib/libc/include/any-windows-any/d3d10.h diff --git a/libc/include/any-windows-any/d3d10.idl b/lib/libc/include/any-windows-any/d3d10.idl similarity index 100% rename from libc/include/any-windows-any/d3d10.idl rename to lib/libc/include/any-windows-any/d3d10.idl diff --git a/libc/include/any-windows-any/d3d10_1.h b/lib/libc/include/any-windows-any/d3d10_1.h similarity index 100% rename from libc/include/any-windows-any/d3d10_1.h rename to lib/libc/include/any-windows-any/d3d10_1.h diff --git a/libc/include/any-windows-any/d3d10_1.idl b/lib/libc/include/any-windows-any/d3d10_1.idl similarity index 100% rename from libc/include/any-windows-any/d3d10_1.idl rename to lib/libc/include/any-windows-any/d3d10_1.idl diff --git a/libc/include/any-windows-any/d3d10_1shader.h b/lib/libc/include/any-windows-any/d3d10_1shader.h similarity index 100% rename from libc/include/any-windows-any/d3d10_1shader.h rename to lib/libc/include/any-windows-any/d3d10_1shader.h diff --git a/libc/include/any-windows-any/d3d10effect.h b/lib/libc/include/any-windows-any/d3d10effect.h similarity index 100% rename from libc/include/any-windows-any/d3d10effect.h rename to lib/libc/include/any-windows-any/d3d10effect.h diff --git a/libc/include/any-windows-any/d3d10misc.h b/lib/libc/include/any-windows-any/d3d10misc.h similarity index 100% rename from libc/include/any-windows-any/d3d10misc.h rename to lib/libc/include/any-windows-any/d3d10misc.h diff --git a/libc/include/any-windows-any/d3d10sdklayers.h b/lib/libc/include/any-windows-any/d3d10sdklayers.h similarity index 100% rename from libc/include/any-windows-any/d3d10sdklayers.h rename to lib/libc/include/any-windows-any/d3d10sdklayers.h diff --git a/libc/include/any-windows-any/d3d10sdklayers.idl b/lib/libc/include/any-windows-any/d3d10sdklayers.idl similarity index 100% rename from libc/include/any-windows-any/d3d10sdklayers.idl rename to lib/libc/include/any-windows-any/d3d10sdklayers.idl diff --git a/libc/include/any-windows-any/d3d10shader.h b/lib/libc/include/any-windows-any/d3d10shader.h similarity index 100% rename from libc/include/any-windows-any/d3d10shader.h rename to lib/libc/include/any-windows-any/d3d10shader.h diff --git a/libc/include/any-windows-any/d3d11.h b/lib/libc/include/any-windows-any/d3d11.h similarity index 100% rename from libc/include/any-windows-any/d3d11.h rename to lib/libc/include/any-windows-any/d3d11.h diff --git a/libc/include/any-windows-any/d3d11.idl b/lib/libc/include/any-windows-any/d3d11.idl similarity index 100% rename from libc/include/any-windows-any/d3d11.idl rename to lib/libc/include/any-windows-any/d3d11.idl diff --git a/libc/include/any-windows-any/d3d11_1.h b/lib/libc/include/any-windows-any/d3d11_1.h similarity index 100% rename from libc/include/any-windows-any/d3d11_1.h rename to lib/libc/include/any-windows-any/d3d11_1.h diff --git a/libc/include/any-windows-any/d3d11_1.idl b/lib/libc/include/any-windows-any/d3d11_1.idl similarity index 100% rename from libc/include/any-windows-any/d3d11_1.idl rename to lib/libc/include/any-windows-any/d3d11_1.idl diff --git a/libc/include/any-windows-any/d3d11_2.h b/lib/libc/include/any-windows-any/d3d11_2.h similarity index 100% rename from libc/include/any-windows-any/d3d11_2.h rename to lib/libc/include/any-windows-any/d3d11_2.h diff --git a/libc/include/any-windows-any/d3d11_2.idl b/lib/libc/include/any-windows-any/d3d11_2.idl similarity index 100% rename from libc/include/any-windows-any/d3d11_2.idl rename to lib/libc/include/any-windows-any/d3d11_2.idl diff --git a/libc/include/any-windows-any/d3d11_3.h b/lib/libc/include/any-windows-any/d3d11_3.h similarity index 100% rename from libc/include/any-windows-any/d3d11_3.h rename to lib/libc/include/any-windows-any/d3d11_3.h diff --git a/libc/include/any-windows-any/d3d11_3.idl b/lib/libc/include/any-windows-any/d3d11_3.idl similarity index 100% rename from libc/include/any-windows-any/d3d11_3.idl rename to lib/libc/include/any-windows-any/d3d11_3.idl diff --git a/libc/include/any-windows-any/d3d11_4.h b/lib/libc/include/any-windows-any/d3d11_4.h similarity index 100% rename from libc/include/any-windows-any/d3d11_4.h rename to lib/libc/include/any-windows-any/d3d11_4.h diff --git a/libc/include/any-windows-any/d3d11_4.idl b/lib/libc/include/any-windows-any/d3d11_4.idl similarity index 100% rename from libc/include/any-windows-any/d3d11_4.idl rename to lib/libc/include/any-windows-any/d3d11_4.idl diff --git a/libc/include/any-windows-any/d3d11sdklayers.h b/lib/libc/include/any-windows-any/d3d11sdklayers.h similarity index 100% rename from libc/include/any-windows-any/d3d11sdklayers.h rename to lib/libc/include/any-windows-any/d3d11sdklayers.h diff --git a/libc/include/any-windows-any/d3d11sdklayers.idl b/lib/libc/include/any-windows-any/d3d11sdklayers.idl similarity index 100% rename from libc/include/any-windows-any/d3d11sdklayers.idl rename to lib/libc/include/any-windows-any/d3d11sdklayers.idl diff --git a/libc/include/any-windows-any/d3d11shader.h b/lib/libc/include/any-windows-any/d3d11shader.h similarity index 100% rename from libc/include/any-windows-any/d3d11shader.h rename to lib/libc/include/any-windows-any/d3d11shader.h diff --git a/libc/include/any-windows-any/d3d8.h b/lib/libc/include/any-windows-any/d3d8.h similarity index 100% rename from libc/include/any-windows-any/d3d8.h rename to lib/libc/include/any-windows-any/d3d8.h diff --git a/libc/include/any-windows-any/d3d8caps.h b/lib/libc/include/any-windows-any/d3d8caps.h similarity index 100% rename from libc/include/any-windows-any/d3d8caps.h rename to lib/libc/include/any-windows-any/d3d8caps.h diff --git a/libc/include/any-windows-any/d3d8types.h b/lib/libc/include/any-windows-any/d3d8types.h similarity index 100% rename from libc/include/any-windows-any/d3d8types.h rename to lib/libc/include/any-windows-any/d3d8types.h diff --git a/libc/include/any-windows-any/d3d9.h b/lib/libc/include/any-windows-any/d3d9.h similarity index 100% rename from libc/include/any-windows-any/d3d9.h rename to lib/libc/include/any-windows-any/d3d9.h diff --git a/libc/include/any-windows-any/d3d9caps.h b/lib/libc/include/any-windows-any/d3d9caps.h similarity index 100% rename from libc/include/any-windows-any/d3d9caps.h rename to lib/libc/include/any-windows-any/d3d9caps.h diff --git a/libc/include/any-windows-any/d3d9types.h b/lib/libc/include/any-windows-any/d3d9types.h similarity index 100% rename from libc/include/any-windows-any/d3d9types.h rename to lib/libc/include/any-windows-any/d3d9types.h diff --git a/libc/include/any-windows-any/d3dcaps.h b/lib/libc/include/any-windows-any/d3dcaps.h similarity index 100% rename from libc/include/any-windows-any/d3dcaps.h rename to lib/libc/include/any-windows-any/d3dcaps.h diff --git a/libc/include/any-windows-any/d3dcommon.h b/lib/libc/include/any-windows-any/d3dcommon.h similarity index 100% rename from libc/include/any-windows-any/d3dcommon.h rename to lib/libc/include/any-windows-any/d3dcommon.h diff --git a/libc/include/any-windows-any/d3dcommon.idl b/lib/libc/include/any-windows-any/d3dcommon.idl similarity index 100% rename from libc/include/any-windows-any/d3dcommon.idl rename to lib/libc/include/any-windows-any/d3dcommon.idl diff --git a/libc/include/any-windows-any/d3dcompiler.h b/lib/libc/include/any-windows-any/d3dcompiler.h similarity index 100% rename from libc/include/any-windows-any/d3dcompiler.h rename to lib/libc/include/any-windows-any/d3dcompiler.h diff --git a/libc/include/any-windows-any/d3dhal.h b/lib/libc/include/any-windows-any/d3dhal.h similarity index 100% rename from libc/include/any-windows-any/d3dhal.h rename to lib/libc/include/any-windows-any/d3dhal.h diff --git a/libc/include/any-windows-any/d3drm.h b/lib/libc/include/any-windows-any/d3drm.h similarity index 100% rename from libc/include/any-windows-any/d3drm.h rename to lib/libc/include/any-windows-any/d3drm.h diff --git a/libc/include/any-windows-any/d3drmdef.h b/lib/libc/include/any-windows-any/d3drmdef.h similarity index 100% rename from libc/include/any-windows-any/d3drmdef.h rename to lib/libc/include/any-windows-any/d3drmdef.h diff --git a/libc/include/any-windows-any/d3drmobj.h b/lib/libc/include/any-windows-any/d3drmobj.h similarity index 100% rename from libc/include/any-windows-any/d3drmobj.h rename to lib/libc/include/any-windows-any/d3drmobj.h diff --git a/libc/include/any-windows-any/d3dtypes.h b/lib/libc/include/any-windows-any/d3dtypes.h similarity index 100% rename from libc/include/any-windows-any/d3dtypes.h rename to lib/libc/include/any-windows-any/d3dtypes.h diff --git a/libc/include/any-windows-any/d3dvec.inl b/lib/libc/include/any-windows-any/d3dvec.inl similarity index 100% rename from libc/include/any-windows-any/d3dvec.inl rename to lib/libc/include/any-windows-any/d3dvec.inl diff --git a/libc/include/any-windows-any/d3dx9.h b/lib/libc/include/any-windows-any/d3dx9.h similarity index 100% rename from libc/include/any-windows-any/d3dx9.h rename to lib/libc/include/any-windows-any/d3dx9.h diff --git a/libc/include/any-windows-any/d3dx9anim.h b/lib/libc/include/any-windows-any/d3dx9anim.h similarity index 100% rename from libc/include/any-windows-any/d3dx9anim.h rename to lib/libc/include/any-windows-any/d3dx9anim.h diff --git a/libc/include/any-windows-any/d3dx9core.h b/lib/libc/include/any-windows-any/d3dx9core.h similarity index 100% rename from libc/include/any-windows-any/d3dx9core.h rename to lib/libc/include/any-windows-any/d3dx9core.h diff --git a/libc/include/any-windows-any/d3dx9effect.h b/lib/libc/include/any-windows-any/d3dx9effect.h similarity index 100% rename from libc/include/any-windows-any/d3dx9effect.h rename to lib/libc/include/any-windows-any/d3dx9effect.h diff --git a/libc/include/any-windows-any/d3dx9math.h b/lib/libc/include/any-windows-any/d3dx9math.h similarity index 100% rename from libc/include/any-windows-any/d3dx9math.h rename to lib/libc/include/any-windows-any/d3dx9math.h diff --git a/libc/include/any-windows-any/d3dx9math.inl b/lib/libc/include/any-windows-any/d3dx9math.inl similarity index 100% rename from libc/include/any-windows-any/d3dx9math.inl rename to lib/libc/include/any-windows-any/d3dx9math.inl diff --git a/libc/include/any-windows-any/d3dx9mesh.h b/lib/libc/include/any-windows-any/d3dx9mesh.h similarity index 100% rename from libc/include/any-windows-any/d3dx9mesh.h rename to lib/libc/include/any-windows-any/d3dx9mesh.h diff --git a/libc/include/any-windows-any/d3dx9shader.h b/lib/libc/include/any-windows-any/d3dx9shader.h similarity index 100% rename from libc/include/any-windows-any/d3dx9shader.h rename to lib/libc/include/any-windows-any/d3dx9shader.h diff --git a/libc/include/any-windows-any/d3dx9shape.h b/lib/libc/include/any-windows-any/d3dx9shape.h similarity index 100% rename from libc/include/any-windows-any/d3dx9shape.h rename to lib/libc/include/any-windows-any/d3dx9shape.h diff --git a/libc/include/any-windows-any/d3dx9tex.h b/lib/libc/include/any-windows-any/d3dx9tex.h similarity index 100% rename from libc/include/any-windows-any/d3dx9tex.h rename to lib/libc/include/any-windows-any/d3dx9tex.h diff --git a/libc/include/any-windows-any/d3dx9xof.h b/lib/libc/include/any-windows-any/d3dx9xof.h similarity index 100% rename from libc/include/any-windows-any/d3dx9xof.h rename to lib/libc/include/any-windows-any/d3dx9xof.h diff --git a/libc/include/any-windows-any/daogetrw.h b/lib/libc/include/any-windows-any/daogetrw.h similarity index 100% rename from libc/include/any-windows-any/daogetrw.h rename to lib/libc/include/any-windows-any/daogetrw.h diff --git a/libc/include/any-windows-any/datapath.h b/lib/libc/include/any-windows-any/datapath.h similarity index 100% rename from libc/include/any-windows-any/datapath.h rename to lib/libc/include/any-windows-any/datapath.h diff --git a/libc/include/any-windows-any/datetimeapi.h b/lib/libc/include/any-windows-any/datetimeapi.h similarity index 100% rename from libc/include/any-windows-any/datetimeapi.h rename to lib/libc/include/any-windows-any/datetimeapi.h diff --git a/libc/include/any-windows-any/davclnt.h b/lib/libc/include/any-windows-any/davclnt.h similarity index 100% rename from libc/include/any-windows-any/davclnt.h rename to lib/libc/include/any-windows-any/davclnt.h diff --git a/libc/include/any-windows-any/dbdaoerr.h b/lib/libc/include/any-windows-any/dbdaoerr.h similarity index 100% rename from libc/include/any-windows-any/dbdaoerr.h rename to lib/libc/include/any-windows-any/dbdaoerr.h diff --git a/libc/include/any-windows-any/dbdaoid.h b/lib/libc/include/any-windows-any/dbdaoid.h similarity index 100% rename from libc/include/any-windows-any/dbdaoid.h rename to lib/libc/include/any-windows-any/dbdaoid.h diff --git a/libc/include/any-windows-any/dbdaoint.h b/lib/libc/include/any-windows-any/dbdaoint.h similarity index 100% rename from libc/include/any-windows-any/dbdaoint.h rename to lib/libc/include/any-windows-any/dbdaoint.h diff --git a/libc/include/any-windows-any/dbgautoattach.h b/lib/libc/include/any-windows-any/dbgautoattach.h similarity index 100% rename from libc/include/any-windows-any/dbgautoattach.h rename to lib/libc/include/any-windows-any/dbgautoattach.h diff --git a/libc/include/any-windows-any/dbgeng.h b/lib/libc/include/any-windows-any/dbgeng.h similarity index 100% rename from libc/include/any-windows-any/dbgeng.h rename to lib/libc/include/any-windows-any/dbgeng.h diff --git a/libc/include/any-windows-any/dbghelp.h b/lib/libc/include/any-windows-any/dbghelp.h similarity index 100% rename from libc/include/any-windows-any/dbghelp.h rename to lib/libc/include/any-windows-any/dbghelp.h diff --git a/libc/include/any-windows-any/dbgprop.h b/lib/libc/include/any-windows-any/dbgprop.h similarity index 100% rename from libc/include/any-windows-any/dbgprop.h rename to lib/libc/include/any-windows-any/dbgprop.h diff --git a/libc/include/any-windows-any/dbt.h b/lib/libc/include/any-windows-any/dbt.h similarity index 100% rename from libc/include/any-windows-any/dbt.h rename to lib/libc/include/any-windows-any/dbt.h diff --git a/libc/include/any-windows-any/dciddi.h b/lib/libc/include/any-windows-any/dciddi.h similarity index 100% rename from libc/include/any-windows-any/dciddi.h rename to lib/libc/include/any-windows-any/dciddi.h diff --git a/libc/include/any-windows-any/dciman.h b/lib/libc/include/any-windows-any/dciman.h similarity index 100% rename from libc/include/any-windows-any/dciman.h rename to lib/libc/include/any-windows-any/dciman.h diff --git a/libc/include/any-windows-any/dcommon.h b/lib/libc/include/any-windows-any/dcommon.h similarity index 100% rename from libc/include/any-windows-any/dcommon.h rename to lib/libc/include/any-windows-any/dcommon.h diff --git a/libc/include/any-windows-any/dcomp.h b/lib/libc/include/any-windows-any/dcomp.h similarity index 100% rename from libc/include/any-windows-any/dcomp.h rename to lib/libc/include/any-windows-any/dcomp.h diff --git a/libc/include/any-windows-any/dcompanimation.h b/lib/libc/include/any-windows-any/dcompanimation.h similarity index 100% rename from libc/include/any-windows-any/dcompanimation.h rename to lib/libc/include/any-windows-any/dcompanimation.h diff --git a/libc/include/any-windows-any/dcomptypes.h b/lib/libc/include/any-windows-any/dcomptypes.h similarity index 100% rename from libc/include/any-windows-any/dcomptypes.h rename to lib/libc/include/any-windows-any/dcomptypes.h diff --git a/libc/include/any-windows-any/dde.h b/lib/libc/include/any-windows-any/dde.h similarity index 100% rename from libc/include/any-windows-any/dde.h rename to lib/libc/include/any-windows-any/dde.h diff --git a/libc/include/any-windows-any/dde.rh b/lib/libc/include/any-windows-any/dde.rh similarity index 100% rename from libc/include/any-windows-any/dde.rh rename to lib/libc/include/any-windows-any/dde.rh diff --git a/libc/include/any-windows-any/ddeml.h b/lib/libc/include/any-windows-any/ddeml.h similarity index 100% rename from libc/include/any-windows-any/ddeml.h rename to lib/libc/include/any-windows-any/ddeml.h diff --git a/libc/include/any-windows-any/ddk/acpiioct.h b/lib/libc/include/any-windows-any/ddk/acpiioct.h similarity index 100% rename from libc/include/any-windows-any/ddk/acpiioct.h rename to lib/libc/include/any-windows-any/ddk/acpiioct.h diff --git a/libc/include/any-windows-any/ddk/afilter.h b/lib/libc/include/any-windows-any/ddk/afilter.h similarity index 100% rename from libc/include/any-windows-any/ddk/afilter.h rename to lib/libc/include/any-windows-any/ddk/afilter.h diff --git a/libc/include/any-windows-any/ddk/amtvuids.h b/lib/libc/include/any-windows-any/ddk/amtvuids.h similarity index 100% rename from libc/include/any-windows-any/ddk/amtvuids.h rename to lib/libc/include/any-windows-any/ddk/amtvuids.h diff --git a/libc/include/any-windows-any/ddk/atm.h b/lib/libc/include/any-windows-any/ddk/atm.h similarity index 100% rename from libc/include/any-windows-any/ddk/atm.h rename to lib/libc/include/any-windows-any/ddk/atm.h diff --git a/libc/include/any-windows-any/ddk/bdasup.h b/lib/libc/include/any-windows-any/ddk/bdasup.h similarity index 100% rename from libc/include/any-windows-any/ddk/bdasup.h rename to lib/libc/include/any-windows-any/ddk/bdasup.h diff --git a/libc/include/any-windows-any/ddk/classpnp.h b/lib/libc/include/any-windows-any/ddk/classpnp.h similarity index 100% rename from libc/include/any-windows-any/ddk/classpnp.h rename to lib/libc/include/any-windows-any/ddk/classpnp.h diff --git a/libc/include/any-windows-any/ddk/csq.h b/lib/libc/include/any-windows-any/ddk/csq.h similarity index 100% rename from libc/include/any-windows-any/ddk/csq.h rename to lib/libc/include/any-windows-any/ddk/csq.h diff --git a/libc/include/any-windows-any/ddk/d3dhal.h b/lib/libc/include/any-windows-any/ddk/d3dhal.h similarity index 100% rename from libc/include/any-windows-any/ddk/d3dhal.h rename to lib/libc/include/any-windows-any/ddk/d3dhal.h diff --git a/libc/include/any-windows-any/ddk/d3dhalex.h b/lib/libc/include/any-windows-any/ddk/d3dhalex.h similarity index 100% rename from libc/include/any-windows-any/ddk/d3dhalex.h rename to lib/libc/include/any-windows-any/ddk/d3dhalex.h diff --git a/libc/include/any-windows-any/ddk/d4drvif.h b/lib/libc/include/any-windows-any/ddk/d4drvif.h similarity index 100% rename from libc/include/any-windows-any/ddk/d4drvif.h rename to lib/libc/include/any-windows-any/ddk/d4drvif.h diff --git a/libc/include/any-windows-any/ddk/d4iface.h b/lib/libc/include/any-windows-any/ddk/d4iface.h similarity index 100% rename from libc/include/any-windows-any/ddk/d4iface.h rename to lib/libc/include/any-windows-any/ddk/d4iface.h diff --git a/libc/include/any-windows-any/ddk/dderror.h b/lib/libc/include/any-windows-any/ddk/dderror.h similarity index 100% rename from libc/include/any-windows-any/ddk/dderror.h rename to lib/libc/include/any-windows-any/ddk/dderror.h diff --git a/libc/include/any-windows-any/ddk/dmusicks.h b/lib/libc/include/any-windows-any/ddk/dmusicks.h similarity index 100% rename from libc/include/any-windows-any/ddk/dmusicks.h rename to lib/libc/include/any-windows-any/ddk/dmusicks.h diff --git a/libc/include/any-windows-any/ddk/drivinit.h b/lib/libc/include/any-windows-any/ddk/drivinit.h similarity index 100% rename from libc/include/any-windows-any/ddk/drivinit.h rename to lib/libc/include/any-windows-any/ddk/drivinit.h diff --git a/libc/include/any-windows-any/ddk/drmk.h b/lib/libc/include/any-windows-any/ddk/drmk.h similarity index 100% rename from libc/include/any-windows-any/ddk/drmk.h rename to lib/libc/include/any-windows-any/ddk/drmk.h diff --git a/libc/include/any-windows-any/ddk/dxapi.h b/lib/libc/include/any-windows-any/ddk/dxapi.h similarity index 100% rename from libc/include/any-windows-any/ddk/dxapi.h rename to lib/libc/include/any-windows-any/ddk/dxapi.h diff --git a/libc/include/any-windows-any/ddk/fltsafe.h b/lib/libc/include/any-windows-any/ddk/fltsafe.h similarity index 100% rename from libc/include/any-windows-any/ddk/fltsafe.h rename to lib/libc/include/any-windows-any/ddk/fltsafe.h diff --git a/libc/include/any-windows-any/ddk/hidclass.h b/lib/libc/include/any-windows-any/ddk/hidclass.h similarity index 100% rename from libc/include/any-windows-any/ddk/hidclass.h rename to lib/libc/include/any-windows-any/ddk/hidclass.h diff --git a/libc/include/any-windows-any/ddk/hubbusif.h b/lib/libc/include/any-windows-any/ddk/hubbusif.h similarity index 100% rename from libc/include/any-windows-any/ddk/hubbusif.h rename to lib/libc/include/any-windows-any/ddk/hubbusif.h diff --git a/libc/include/any-windows-any/ddk/ide.h b/lib/libc/include/any-windows-any/ddk/ide.h similarity index 100% rename from libc/include/any-windows-any/ddk/ide.h rename to lib/libc/include/any-windows-any/ddk/ide.h diff --git a/libc/include/any-windows-any/ddk/ioaccess.h b/lib/libc/include/any-windows-any/ddk/ioaccess.h similarity index 100% rename from libc/include/any-windows-any/ddk/ioaccess.h rename to lib/libc/include/any-windows-any/ddk/ioaccess.h diff --git a/libc/include/any-windows-any/ddk/kbdmou.h b/lib/libc/include/any-windows-any/ddk/kbdmou.h similarity index 100% rename from libc/include/any-windows-any/ddk/kbdmou.h rename to lib/libc/include/any-windows-any/ddk/kbdmou.h diff --git a/libc/include/any-windows-any/ddk/mcd.h b/lib/libc/include/any-windows-any/ddk/mcd.h similarity index 100% rename from libc/include/any-windows-any/ddk/mcd.h rename to lib/libc/include/any-windows-any/ddk/mcd.h diff --git a/libc/include/any-windows-any/ddk/mce.h b/lib/libc/include/any-windows-any/ddk/mce.h similarity index 100% rename from libc/include/any-windows-any/ddk/mce.h rename to lib/libc/include/any-windows-any/ddk/mce.h diff --git a/libc/include/any-windows-any/ddk/miniport.h b/lib/libc/include/any-windows-any/ddk/miniport.h similarity index 100% rename from libc/include/any-windows-any/ddk/miniport.h rename to lib/libc/include/any-windows-any/ddk/miniport.h diff --git a/libc/include/any-windows-any/ddk/minitape.h b/lib/libc/include/any-windows-any/ddk/minitape.h similarity index 100% rename from libc/include/any-windows-any/ddk/minitape.h rename to lib/libc/include/any-windows-any/ddk/minitape.h diff --git a/libc/include/any-windows-any/ddk/mountdev.h b/lib/libc/include/any-windows-any/ddk/mountdev.h similarity index 100% rename from libc/include/any-windows-any/ddk/mountdev.h rename to lib/libc/include/any-windows-any/ddk/mountdev.h diff --git a/libc/include/any-windows-any/ddk/mountmgr.h b/lib/libc/include/any-windows-any/ddk/mountmgr.h similarity index 100% rename from libc/include/any-windows-any/ddk/mountmgr.h rename to lib/libc/include/any-windows-any/ddk/mountmgr.h diff --git a/libc/include/any-windows-any/ddk/msports.h b/lib/libc/include/any-windows-any/ddk/msports.h similarity index 100% rename from libc/include/any-windows-any/ddk/msports.h rename to lib/libc/include/any-windows-any/ddk/msports.h diff --git a/libc/include/any-windows-any/ddk/ndis.h b/lib/libc/include/any-windows-any/ddk/ndis.h similarity index 100% rename from libc/include/any-windows-any/ddk/ndis.h rename to lib/libc/include/any-windows-any/ddk/ndis.h diff --git a/libc/include/any-windows-any/ddk/ndisguid.h b/lib/libc/include/any-windows-any/ddk/ndisguid.h similarity index 100% rename from libc/include/any-windows-any/ddk/ndisguid.h rename to lib/libc/include/any-windows-any/ddk/ndisguid.h diff --git a/libc/include/any-windows-any/ddk/ndistapi.h b/lib/libc/include/any-windows-any/ddk/ndistapi.h similarity index 100% rename from libc/include/any-windows-any/ddk/ndistapi.h rename to lib/libc/include/any-windows-any/ddk/ndistapi.h diff --git a/libc/include/any-windows-any/ddk/ndiswan.h b/lib/libc/include/any-windows-any/ddk/ndiswan.h similarity index 100% rename from libc/include/any-windows-any/ddk/ndiswan.h rename to lib/libc/include/any-windows-any/ddk/ndiswan.h diff --git a/libc/include/any-windows-any/ddk/netpnp.h b/lib/libc/include/any-windows-any/ddk/netpnp.h similarity index 100% rename from libc/include/any-windows-any/ddk/netpnp.h rename to lib/libc/include/any-windows-any/ddk/netpnp.h diff --git a/libc/include/any-windows-any/ddk/ntagp.h b/lib/libc/include/any-windows-any/ddk/ntagp.h similarity index 100% rename from libc/include/any-windows-any/ddk/ntagp.h rename to lib/libc/include/any-windows-any/ddk/ntagp.h diff --git a/libc/include/any-windows-any/ddk/ntddk.h b/lib/libc/include/any-windows-any/ddk/ntddk.h similarity index 100% rename from libc/include/any-windows-any/ddk/ntddk.h rename to lib/libc/include/any-windows-any/ddk/ntddk.h diff --git a/libc/include/any-windows-any/ddk/ntddpcm.h b/lib/libc/include/any-windows-any/ddk/ntddpcm.h similarity index 100% rename from libc/include/any-windows-any/ddk/ntddpcm.h rename to lib/libc/include/any-windows-any/ddk/ntddpcm.h diff --git a/libc/include/any-windows-any/ddk/ntddsnd.h b/lib/libc/include/any-windows-any/ddk/ntddsnd.h similarity index 100% rename from libc/include/any-windows-any/ddk/ntddsnd.h rename to lib/libc/include/any-windows-any/ddk/ntddsnd.h diff --git a/libc/include/any-windows-any/ddk/ntifs.h b/lib/libc/include/any-windows-any/ddk/ntifs.h similarity index 100% rename from libc/include/any-windows-any/ddk/ntifs.h rename to lib/libc/include/any-windows-any/ddk/ntifs.h diff --git a/libc/include/any-windows-any/ddk/ntimage.h b/lib/libc/include/any-windows-any/ddk/ntimage.h similarity index 100% rename from libc/include/any-windows-any/ddk/ntimage.h rename to lib/libc/include/any-windows-any/ddk/ntimage.h diff --git a/libc/include/any-windows-any/ddk/ntnls.h b/lib/libc/include/any-windows-any/ddk/ntnls.h similarity index 100% rename from libc/include/any-windows-any/ddk/ntnls.h rename to lib/libc/include/any-windows-any/ddk/ntnls.h diff --git a/libc/include/any-windows-any/ddk/ntpoapi.h b/lib/libc/include/any-windows-any/ddk/ntpoapi.h similarity index 100% rename from libc/include/any-windows-any/ddk/ntpoapi.h rename to lib/libc/include/any-windows-any/ddk/ntpoapi.h diff --git a/libc/include/any-windows-any/ddk/ntstrsafe.h b/lib/libc/include/any-windows-any/ddk/ntstrsafe.h similarity index 100% rename from libc/include/any-windows-any/ddk/ntstrsafe.h rename to lib/libc/include/any-windows-any/ddk/ntstrsafe.h diff --git a/libc/include/any-windows-any/ddk/oprghdlr.h b/lib/libc/include/any-windows-any/ddk/oprghdlr.h similarity index 100% rename from libc/include/any-windows-any/ddk/oprghdlr.h rename to lib/libc/include/any-windows-any/ddk/oprghdlr.h diff --git a/libc/include/any-windows-any/ddk/parallel.h b/lib/libc/include/any-windows-any/ddk/parallel.h similarity index 100% rename from libc/include/any-windows-any/ddk/parallel.h rename to lib/libc/include/any-windows-any/ddk/parallel.h diff --git a/libc/include/any-windows-any/ddk/pfhook.h b/lib/libc/include/any-windows-any/ddk/pfhook.h similarity index 100% rename from libc/include/any-windows-any/ddk/pfhook.h rename to lib/libc/include/any-windows-any/ddk/pfhook.h diff --git a/libc/include/any-windows-any/ddk/poclass.h b/lib/libc/include/any-windows-any/ddk/poclass.h similarity index 100% rename from libc/include/any-windows-any/ddk/poclass.h rename to lib/libc/include/any-windows-any/ddk/poclass.h diff --git a/libc/include/any-windows-any/ddk/portcls.h b/lib/libc/include/any-windows-any/ddk/portcls.h similarity index 100% rename from libc/include/any-windows-any/ddk/portcls.h rename to lib/libc/include/any-windows-any/ddk/portcls.h diff --git a/libc/include/any-windows-any/ddk/punknown.h b/lib/libc/include/any-windows-any/ddk/punknown.h similarity index 100% rename from libc/include/any-windows-any/ddk/punknown.h rename to lib/libc/include/any-windows-any/ddk/punknown.h diff --git a/libc/include/any-windows-any/ddk/scsi.h b/lib/libc/include/any-windows-any/ddk/scsi.h similarity index 100% rename from libc/include/any-windows-any/ddk/scsi.h rename to lib/libc/include/any-windows-any/ddk/scsi.h diff --git a/libc/include/any-windows-any/ddk/scsiscan.h b/lib/libc/include/any-windows-any/ddk/scsiscan.h similarity index 100% rename from libc/include/any-windows-any/ddk/scsiscan.h rename to lib/libc/include/any-windows-any/ddk/scsiscan.h diff --git a/libc/include/any-windows-any/ddk/scsiwmi.h b/lib/libc/include/any-windows-any/ddk/scsiwmi.h similarity index 100% rename from libc/include/any-windows-any/ddk/scsiwmi.h rename to lib/libc/include/any-windows-any/ddk/scsiwmi.h diff --git a/libc/include/any-windows-any/ddk/smbus.h b/lib/libc/include/any-windows-any/ddk/smbus.h similarity index 100% rename from libc/include/any-windows-any/ddk/smbus.h rename to lib/libc/include/any-windows-any/ddk/smbus.h diff --git a/libc/include/any-windows-any/ddk/srb.h b/lib/libc/include/any-windows-any/ddk/srb.h similarity index 100% rename from libc/include/any-windows-any/ddk/srb.h rename to lib/libc/include/any-windows-any/ddk/srb.h diff --git a/libc/include/any-windows-any/ddk/stdunk.h b/lib/libc/include/any-windows-any/ddk/stdunk.h similarity index 100% rename from libc/include/any-windows-any/ddk/stdunk.h rename to lib/libc/include/any-windows-any/ddk/stdunk.h diff --git a/libc/include/any-windows-any/ddk/storport.h b/lib/libc/include/any-windows-any/ddk/storport.h similarity index 100% rename from libc/include/any-windows-any/ddk/storport.h rename to lib/libc/include/any-windows-any/ddk/storport.h diff --git a/libc/include/any-windows-any/ddk/strmini.h b/lib/libc/include/any-windows-any/ddk/strmini.h similarity index 100% rename from libc/include/any-windows-any/ddk/strmini.h rename to lib/libc/include/any-windows-any/ddk/strmini.h diff --git a/libc/include/any-windows-any/ddk/swenum.h b/lib/libc/include/any-windows-any/ddk/swenum.h similarity index 100% rename from libc/include/any-windows-any/ddk/swenum.h rename to lib/libc/include/any-windows-any/ddk/swenum.h diff --git a/libc/include/any-windows-any/ddk/tdikrnl.h b/lib/libc/include/any-windows-any/ddk/tdikrnl.h similarity index 100% rename from libc/include/any-windows-any/ddk/tdikrnl.h rename to lib/libc/include/any-windows-any/ddk/tdikrnl.h diff --git a/libc/include/any-windows-any/ddk/tdistat.h b/lib/libc/include/any-windows-any/ddk/tdistat.h similarity index 100% rename from libc/include/any-windows-any/ddk/tdistat.h rename to lib/libc/include/any-windows-any/ddk/tdistat.h diff --git a/libc/include/any-windows-any/ddk/upssvc.h b/lib/libc/include/any-windows-any/ddk/upssvc.h similarity index 100% rename from libc/include/any-windows-any/ddk/upssvc.h rename to lib/libc/include/any-windows-any/ddk/upssvc.h diff --git a/libc/include/any-windows-any/ddk/usbbusif.h b/lib/libc/include/any-windows-any/ddk/usbbusif.h similarity index 100% rename from libc/include/any-windows-any/ddk/usbbusif.h rename to lib/libc/include/any-windows-any/ddk/usbbusif.h diff --git a/libc/include/any-windows-any/ddk/usbdlib.h b/lib/libc/include/any-windows-any/ddk/usbdlib.h similarity index 100% rename from libc/include/any-windows-any/ddk/usbdlib.h rename to lib/libc/include/any-windows-any/ddk/usbdlib.h diff --git a/libc/include/any-windows-any/ddk/usbdrivr.h b/lib/libc/include/any-windows-any/ddk/usbdrivr.h similarity index 100% rename from libc/include/any-windows-any/ddk/usbdrivr.h rename to lib/libc/include/any-windows-any/ddk/usbdrivr.h diff --git a/libc/include/any-windows-any/ddk/usbkern.h b/lib/libc/include/any-windows-any/ddk/usbkern.h similarity index 100% rename from libc/include/any-windows-any/ddk/usbkern.h rename to lib/libc/include/any-windows-any/ddk/usbkern.h diff --git a/libc/include/any-windows-any/ddk/usbprint.h b/lib/libc/include/any-windows-any/ddk/usbprint.h similarity index 100% rename from libc/include/any-windows-any/ddk/usbprint.h rename to lib/libc/include/any-windows-any/ddk/usbprint.h diff --git a/libc/include/any-windows-any/ddk/usbprotocoldefs.h b/lib/libc/include/any-windows-any/ddk/usbprotocoldefs.h similarity index 100% rename from libc/include/any-windows-any/ddk/usbprotocoldefs.h rename to lib/libc/include/any-windows-any/ddk/usbprotocoldefs.h diff --git a/libc/include/any-windows-any/ddk/usbscan.h b/lib/libc/include/any-windows-any/ddk/usbscan.h similarity index 100% rename from libc/include/any-windows-any/ddk/usbscan.h rename to lib/libc/include/any-windows-any/ddk/usbscan.h diff --git a/libc/include/any-windows-any/ddk/usbstorioctl.h b/lib/libc/include/any-windows-any/ddk/usbstorioctl.h similarity index 100% rename from libc/include/any-windows-any/ddk/usbstorioctl.h rename to lib/libc/include/any-windows-any/ddk/usbstorioctl.h diff --git a/libc/include/any-windows-any/ddk/video.h b/lib/libc/include/any-windows-any/ddk/video.h similarity index 100% rename from libc/include/any-windows-any/ddk/video.h rename to lib/libc/include/any-windows-any/ddk/video.h diff --git a/libc/include/any-windows-any/ddk/videoagp.h b/lib/libc/include/any-windows-any/ddk/videoagp.h similarity index 100% rename from libc/include/any-windows-any/ddk/videoagp.h rename to lib/libc/include/any-windows-any/ddk/videoagp.h diff --git a/libc/include/any-windows-any/ddk/wdm.h b/lib/libc/include/any-windows-any/ddk/wdm.h similarity index 100% rename from libc/include/any-windows-any/ddk/wdm.h rename to lib/libc/include/any-windows-any/ddk/wdm.h diff --git a/libc/include/any-windows-any/ddk/wdmguid.h b/lib/libc/include/any-windows-any/ddk/wdmguid.h similarity index 100% rename from libc/include/any-windows-any/ddk/wdmguid.h rename to lib/libc/include/any-windows-any/ddk/wdmguid.h diff --git a/libc/include/any-windows-any/ddk/wmidata.h b/lib/libc/include/any-windows-any/ddk/wmidata.h similarity index 100% rename from libc/include/any-windows-any/ddk/wmidata.h rename to lib/libc/include/any-windows-any/ddk/wmidata.h diff --git a/libc/include/any-windows-any/ddk/wmilib.h b/lib/libc/include/any-windows-any/ddk/wmilib.h similarity index 100% rename from libc/include/any-windows-any/ddk/wmilib.h rename to lib/libc/include/any-windows-any/ddk/wmilib.h diff --git a/libc/include/any-windows-any/ddk/ws2san.h b/lib/libc/include/any-windows-any/ddk/ws2san.h similarity index 100% rename from libc/include/any-windows-any/ddk/ws2san.h rename to lib/libc/include/any-windows-any/ddk/ws2san.h diff --git a/libc/include/any-windows-any/ddk/xfilter.h b/lib/libc/include/any-windows-any/ddk/xfilter.h similarity index 100% rename from libc/include/any-windows-any/ddk/xfilter.h rename to lib/libc/include/any-windows-any/ddk/xfilter.h diff --git a/libc/include/any-windows-any/ddraw.h b/lib/libc/include/any-windows-any/ddraw.h similarity index 100% rename from libc/include/any-windows-any/ddraw.h rename to lib/libc/include/any-windows-any/ddraw.h diff --git a/libc/include/any-windows-any/ddrawgdi.h b/lib/libc/include/any-windows-any/ddrawgdi.h similarity index 100% rename from libc/include/any-windows-any/ddrawgdi.h rename to lib/libc/include/any-windows-any/ddrawgdi.h diff --git a/libc/include/any-windows-any/ddrawi.h b/lib/libc/include/any-windows-any/ddrawi.h similarity index 100% rename from libc/include/any-windows-any/ddrawi.h rename to lib/libc/include/any-windows-any/ddrawi.h diff --git a/libc/include/any-windows-any/ddstream.h b/lib/libc/include/any-windows-any/ddstream.h similarity index 100% rename from libc/include/any-windows-any/ddstream.h rename to lib/libc/include/any-windows-any/ddstream.h diff --git a/libc/include/any-windows-any/ddstream.idl b/lib/libc/include/any-windows-any/ddstream.idl similarity index 100% rename from libc/include/any-windows-any/ddstream.idl rename to lib/libc/include/any-windows-any/ddstream.idl diff --git a/libc/include/any-windows-any/debugapi.h b/lib/libc/include/any-windows-any/debugapi.h similarity index 100% rename from libc/include/any-windows-any/debugapi.h rename to lib/libc/include/any-windows-any/debugapi.h diff --git a/libc/include/any-windows-any/delayimp.h b/lib/libc/include/any-windows-any/delayimp.h similarity index 100% rename from libc/include/any-windows-any/delayimp.h rename to lib/libc/include/any-windows-any/delayimp.h diff --git a/libc/include/any-windows-any/devguid.h b/lib/libc/include/any-windows-any/devguid.h similarity index 100% rename from libc/include/any-windows-any/devguid.h rename to lib/libc/include/any-windows-any/devguid.h diff --git a/libc/include/any-windows-any/devicetopology.h b/lib/libc/include/any-windows-any/devicetopology.h similarity index 100% rename from libc/include/any-windows-any/devicetopology.h rename to lib/libc/include/any-windows-any/devicetopology.h diff --git a/libc/include/any-windows-any/devioctl.h b/lib/libc/include/any-windows-any/devioctl.h similarity index 100% rename from libc/include/any-windows-any/devioctl.h rename to lib/libc/include/any-windows-any/devioctl.h diff --git a/libc/include/any-windows-any/devpkey.h b/lib/libc/include/any-windows-any/devpkey.h similarity index 100% rename from libc/include/any-windows-any/devpkey.h rename to lib/libc/include/any-windows-any/devpkey.h diff --git a/libc/include/any-windows-any/devpropdef.h b/lib/libc/include/any-windows-any/devpropdef.h similarity index 100% rename from libc/include/any-windows-any/devpropdef.h rename to lib/libc/include/any-windows-any/devpropdef.h diff --git a/libc/include/any-windows-any/dhcpcsdk.h b/lib/libc/include/any-windows-any/dhcpcsdk.h similarity index 100% rename from libc/include/any-windows-any/dhcpcsdk.h rename to lib/libc/include/any-windows-any/dhcpcsdk.h diff --git a/libc/include/any-windows-any/dhcpsapi.h b/lib/libc/include/any-windows-any/dhcpsapi.h similarity index 100% rename from libc/include/any-windows-any/dhcpsapi.h rename to lib/libc/include/any-windows-any/dhcpsapi.h diff --git a/libc/include/any-windows-any/dhcpssdk.h b/lib/libc/include/any-windows-any/dhcpssdk.h similarity index 100% rename from libc/include/any-windows-any/dhcpssdk.h rename to lib/libc/include/any-windows-any/dhcpssdk.h diff --git a/libc/include/any-windows-any/dhcpv6csdk.h b/lib/libc/include/any-windows-any/dhcpv6csdk.h similarity index 100% rename from libc/include/any-windows-any/dhcpv6csdk.h rename to lib/libc/include/any-windows-any/dhcpv6csdk.h diff --git a/libc/include/any-windows-any/dhtmldid.h b/lib/libc/include/any-windows-any/dhtmldid.h similarity index 100% rename from libc/include/any-windows-any/dhtmldid.h rename to lib/libc/include/any-windows-any/dhtmldid.h diff --git a/libc/include/any-windows-any/dhtmled.h b/lib/libc/include/any-windows-any/dhtmled.h similarity index 100% rename from libc/include/any-windows-any/dhtmled.h rename to lib/libc/include/any-windows-any/dhtmled.h diff --git a/libc/include/any-windows-any/dhtmliid.h b/lib/libc/include/any-windows-any/dhtmliid.h similarity index 100% rename from libc/include/any-windows-any/dhtmliid.h rename to lib/libc/include/any-windows-any/dhtmliid.h diff --git a/libc/include/any-windows-any/digitalv.h b/lib/libc/include/any-windows-any/digitalv.h similarity index 100% rename from libc/include/any-windows-any/digitalv.h rename to lib/libc/include/any-windows-any/digitalv.h diff --git a/libc/include/any-windows-any/dimm.h b/lib/libc/include/any-windows-any/dimm.h similarity index 100% rename from libc/include/any-windows-any/dimm.h rename to lib/libc/include/any-windows-any/dimm.h diff --git a/libc/include/any-windows-any/dinput.h b/lib/libc/include/any-windows-any/dinput.h similarity index 100% rename from libc/include/any-windows-any/dinput.h rename to lib/libc/include/any-windows-any/dinput.h diff --git a/libc/include/any-windows-any/dir.h b/lib/libc/include/any-windows-any/dir.h similarity index 100% rename from libc/include/any-windows-any/dir.h rename to lib/libc/include/any-windows-any/dir.h diff --git a/libc/include/any-windows-any/direct.h b/lib/libc/include/any-windows-any/direct.h similarity index 100% rename from libc/include/any-windows-any/direct.h rename to lib/libc/include/any-windows-any/direct.h diff --git a/libc/include/any-windows-any/dirent.h b/lib/libc/include/any-windows-any/dirent.h similarity index 100% rename from libc/include/any-windows-any/dirent.h rename to lib/libc/include/any-windows-any/dirent.h diff --git a/libc/include/any-windows-any/diskguid.h b/lib/libc/include/any-windows-any/diskguid.h similarity index 100% rename from libc/include/any-windows-any/diskguid.h rename to lib/libc/include/any-windows-any/diskguid.h diff --git a/libc/include/any-windows-any/dispatch.h b/lib/libc/include/any-windows-any/dispatch.h similarity index 100% rename from libc/include/any-windows-any/dispatch.h rename to lib/libc/include/any-windows-any/dispatch.h diff --git a/libc/include/any-windows-any/dispdib.h b/lib/libc/include/any-windows-any/dispdib.h similarity index 100% rename from libc/include/any-windows-any/dispdib.h rename to lib/libc/include/any-windows-any/dispdib.h diff --git a/libc/include/any-windows-any/dispex.h b/lib/libc/include/any-windows-any/dispex.h similarity index 100% rename from libc/include/any-windows-any/dispex.h rename to lib/libc/include/any-windows-any/dispex.h diff --git a/libc/include/any-windows-any/dlcapi.h b/lib/libc/include/any-windows-any/dlcapi.h similarity index 100% rename from libc/include/any-windows-any/dlcapi.h rename to lib/libc/include/any-windows-any/dlcapi.h diff --git a/libc/include/any-windows-any/dlgs.h b/lib/libc/include/any-windows-any/dlgs.h similarity index 100% rename from libc/include/any-windows-any/dlgs.h rename to lib/libc/include/any-windows-any/dlgs.h diff --git a/libc/include/any-windows-any/dls1.h b/lib/libc/include/any-windows-any/dls1.h similarity index 100% rename from libc/include/any-windows-any/dls1.h rename to lib/libc/include/any-windows-any/dls1.h diff --git a/libc/include/any-windows-any/dls2.h b/lib/libc/include/any-windows-any/dls2.h similarity index 100% rename from libc/include/any-windows-any/dls2.h rename to lib/libc/include/any-windows-any/dls2.h diff --git a/libc/include/any-windows-any/dmdls.h b/lib/libc/include/any-windows-any/dmdls.h similarity index 100% rename from libc/include/any-windows-any/dmdls.h rename to lib/libc/include/any-windows-any/dmdls.h diff --git a/libc/include/any-windows-any/dmemmgr.h b/lib/libc/include/any-windows-any/dmemmgr.h similarity index 100% rename from libc/include/any-windows-any/dmemmgr.h rename to lib/libc/include/any-windows-any/dmemmgr.h diff --git a/libc/include/any-windows-any/dmerror.h b/lib/libc/include/any-windows-any/dmerror.h similarity index 100% rename from libc/include/any-windows-any/dmerror.h rename to lib/libc/include/any-windows-any/dmerror.h diff --git a/libc/include/any-windows-any/dmksctrl.h b/lib/libc/include/any-windows-any/dmksctrl.h similarity index 100% rename from libc/include/any-windows-any/dmksctrl.h rename to lib/libc/include/any-windows-any/dmksctrl.h diff --git a/libc/include/any-windows-any/dmo.h b/lib/libc/include/any-windows-any/dmo.h similarity index 100% rename from libc/include/any-windows-any/dmo.h rename to lib/libc/include/any-windows-any/dmo.h diff --git a/libc/include/any-windows-any/dmodshow.h b/lib/libc/include/any-windows-any/dmodshow.h similarity index 100% rename from libc/include/any-windows-any/dmodshow.h rename to lib/libc/include/any-windows-any/dmodshow.h diff --git a/libc/include/any-windows-any/dmodshow.idl b/lib/libc/include/any-windows-any/dmodshow.idl similarity index 100% rename from libc/include/any-windows-any/dmodshow.idl rename to lib/libc/include/any-windows-any/dmodshow.idl diff --git a/libc/include/any-windows-any/dmoreg.h b/lib/libc/include/any-windows-any/dmoreg.h similarity index 100% rename from libc/include/any-windows-any/dmoreg.h rename to lib/libc/include/any-windows-any/dmoreg.h diff --git a/libc/include/any-windows-any/dmort.h b/lib/libc/include/any-windows-any/dmort.h similarity index 100% rename from libc/include/any-windows-any/dmort.h rename to lib/libc/include/any-windows-any/dmort.h diff --git a/libc/include/any-windows-any/dmplugin.h b/lib/libc/include/any-windows-any/dmplugin.h similarity index 100% rename from libc/include/any-windows-any/dmplugin.h rename to lib/libc/include/any-windows-any/dmplugin.h diff --git a/libc/include/any-windows-any/dmusbuff.h b/lib/libc/include/any-windows-any/dmusbuff.h similarity index 100% rename from libc/include/any-windows-any/dmusbuff.h rename to lib/libc/include/any-windows-any/dmusbuff.h diff --git a/libc/include/any-windows-any/dmusicc.h b/lib/libc/include/any-windows-any/dmusicc.h similarity index 100% rename from libc/include/any-windows-any/dmusicc.h rename to lib/libc/include/any-windows-any/dmusicc.h diff --git a/libc/include/any-windows-any/dmusicf.h b/lib/libc/include/any-windows-any/dmusicf.h similarity index 100% rename from libc/include/any-windows-any/dmusicf.h rename to lib/libc/include/any-windows-any/dmusicf.h diff --git a/libc/include/any-windows-any/dmusici.h b/lib/libc/include/any-windows-any/dmusici.h similarity index 100% rename from libc/include/any-windows-any/dmusici.h rename to lib/libc/include/any-windows-any/dmusici.h diff --git a/libc/include/any-windows-any/dmusics.h b/lib/libc/include/any-windows-any/dmusics.h similarity index 100% rename from libc/include/any-windows-any/dmusics.h rename to lib/libc/include/any-windows-any/dmusics.h diff --git a/libc/include/any-windows-any/docobj.h b/lib/libc/include/any-windows-any/docobj.h similarity index 100% rename from libc/include/any-windows-any/docobj.h rename to lib/libc/include/any-windows-any/docobj.h diff --git a/libc/include/any-windows-any/docobjectservice.h b/lib/libc/include/any-windows-any/docobjectservice.h similarity index 100% rename from libc/include/any-windows-any/docobjectservice.h rename to lib/libc/include/any-windows-any/docobjectservice.h diff --git a/libc/include/any-windows-any/documenttarget.h b/lib/libc/include/any-windows-any/documenttarget.h similarity index 100% rename from libc/include/any-windows-any/documenttarget.h rename to lib/libc/include/any-windows-any/documenttarget.h diff --git a/libc/include/any-windows-any/domdid.h b/lib/libc/include/any-windows-any/domdid.h similarity index 100% rename from libc/include/any-windows-any/domdid.h rename to lib/libc/include/any-windows-any/domdid.h diff --git a/libc/include/any-windows-any/dos.h b/lib/libc/include/any-windows-any/dos.h similarity index 100% rename from libc/include/any-windows-any/dos.h rename to lib/libc/include/any-windows-any/dos.h diff --git a/libc/include/any-windows-any/downloadmgr.h b/lib/libc/include/any-windows-any/downloadmgr.h similarity index 100% rename from libc/include/any-windows-any/downloadmgr.h rename to lib/libc/include/any-windows-any/downloadmgr.h diff --git a/libc/include/any-windows-any/dpaddr.h b/lib/libc/include/any-windows-any/dpaddr.h similarity index 100% rename from libc/include/any-windows-any/dpaddr.h rename to lib/libc/include/any-windows-any/dpaddr.h diff --git a/libc/include/any-windows-any/dpapi.h b/lib/libc/include/any-windows-any/dpapi.h similarity index 100% rename from libc/include/any-windows-any/dpapi.h rename to lib/libc/include/any-windows-any/dpapi.h diff --git a/libc/include/any-windows-any/dpfilter.h b/lib/libc/include/any-windows-any/dpfilter.h similarity index 100% rename from libc/include/any-windows-any/dpfilter.h rename to lib/libc/include/any-windows-any/dpfilter.h diff --git a/libc/include/any-windows-any/dplay.h b/lib/libc/include/any-windows-any/dplay.h similarity index 100% rename from libc/include/any-windows-any/dplay.h rename to lib/libc/include/any-windows-any/dplay.h diff --git a/libc/include/any-windows-any/dplay8.h b/lib/libc/include/any-windows-any/dplay8.h similarity index 100% rename from libc/include/any-windows-any/dplay8.h rename to lib/libc/include/any-windows-any/dplay8.h diff --git a/libc/include/any-windows-any/dplobby.h b/lib/libc/include/any-windows-any/dplobby.h similarity index 100% rename from libc/include/any-windows-any/dplobby.h rename to lib/libc/include/any-windows-any/dplobby.h diff --git a/libc/include/any-windows-any/dplobby8.h b/lib/libc/include/any-windows-any/dplobby8.h similarity index 100% rename from libc/include/any-windows-any/dplobby8.h rename to lib/libc/include/any-windows-any/dplobby8.h diff --git a/libc/include/any-windows-any/dpnathlp.h b/lib/libc/include/any-windows-any/dpnathlp.h similarity index 100% rename from libc/include/any-windows-any/dpnathlp.h rename to lib/libc/include/any-windows-any/dpnathlp.h diff --git a/libc/include/any-windows-any/driverspecs.h b/lib/libc/include/any-windows-any/driverspecs.h similarity index 100% rename from libc/include/any-windows-any/driverspecs.h rename to lib/libc/include/any-windows-any/driverspecs.h diff --git a/libc/include/any-windows-any/drmexternals.h b/lib/libc/include/any-windows-any/drmexternals.h similarity index 100% rename from libc/include/any-windows-any/drmexternals.h rename to lib/libc/include/any-windows-any/drmexternals.h diff --git a/libc/include/any-windows-any/dsadmin.h b/lib/libc/include/any-windows-any/dsadmin.h similarity index 100% rename from libc/include/any-windows-any/dsadmin.h rename to lib/libc/include/any-windows-any/dsadmin.h diff --git a/libc/include/any-windows-any/dsclient.h b/lib/libc/include/any-windows-any/dsclient.h similarity index 100% rename from libc/include/any-windows-any/dsclient.h rename to lib/libc/include/any-windows-any/dsclient.h diff --git a/libc/include/any-windows-any/dsconf.h b/lib/libc/include/any-windows-any/dsconf.h similarity index 100% rename from libc/include/any-windows-any/dsconf.h rename to lib/libc/include/any-windows-any/dsconf.h diff --git a/libc/include/any-windows-any/dsdriver.h b/lib/libc/include/any-windows-any/dsdriver.h similarity index 100% rename from libc/include/any-windows-any/dsdriver.h rename to lib/libc/include/any-windows-any/dsdriver.h diff --git a/libc/include/any-windows-any/dsgetdc.h b/lib/libc/include/any-windows-any/dsgetdc.h similarity index 100% rename from libc/include/any-windows-any/dsgetdc.h rename to lib/libc/include/any-windows-any/dsgetdc.h diff --git a/libc/include/any-windows-any/dshow.h b/lib/libc/include/any-windows-any/dshow.h similarity index 100% rename from libc/include/any-windows-any/dshow.h rename to lib/libc/include/any-windows-any/dshow.h diff --git a/libc/include/any-windows-any/dskquota.h b/lib/libc/include/any-windows-any/dskquota.h similarity index 100% rename from libc/include/any-windows-any/dskquota.h rename to lib/libc/include/any-windows-any/dskquota.h diff --git a/libc/include/any-windows-any/dsound.h b/lib/libc/include/any-windows-any/dsound.h similarity index 100% rename from libc/include/any-windows-any/dsound.h rename to lib/libc/include/any-windows-any/dsound.h diff --git a/libc/include/any-windows-any/dsquery.h b/lib/libc/include/any-windows-any/dsquery.h similarity index 100% rename from libc/include/any-windows-any/dsquery.h rename to lib/libc/include/any-windows-any/dsquery.h diff --git a/libc/include/any-windows-any/dsrole.h b/lib/libc/include/any-windows-any/dsrole.h similarity index 100% rename from libc/include/any-windows-any/dsrole.h rename to lib/libc/include/any-windows-any/dsrole.h diff --git a/libc/include/any-windows-any/dssec.h b/lib/libc/include/any-windows-any/dssec.h similarity index 100% rename from libc/include/any-windows-any/dssec.h rename to lib/libc/include/any-windows-any/dssec.h diff --git a/libc/include/any-windows-any/dtchelp.h b/lib/libc/include/any-windows-any/dtchelp.h similarity index 100% rename from libc/include/any-windows-any/dtchelp.h rename to lib/libc/include/any-windows-any/dtchelp.h diff --git a/libc/include/any-windows-any/dvbsiparser.h b/lib/libc/include/any-windows-any/dvbsiparser.h similarity index 100% rename from libc/include/any-windows-any/dvbsiparser.h rename to lib/libc/include/any-windows-any/dvbsiparser.h diff --git a/libc/include/any-windows-any/dvdevcod.h b/lib/libc/include/any-windows-any/dvdevcod.h similarity index 100% rename from libc/include/any-windows-any/dvdevcod.h rename to lib/libc/include/any-windows-any/dvdevcod.h diff --git a/libc/include/any-windows-any/dvdmedia.h b/lib/libc/include/any-windows-any/dvdmedia.h similarity index 100% rename from libc/include/any-windows-any/dvdmedia.h rename to lib/libc/include/any-windows-any/dvdmedia.h diff --git a/libc/include/any-windows-any/dvec.h b/lib/libc/include/any-windows-any/dvec.h similarity index 100% rename from libc/include/any-windows-any/dvec.h rename to lib/libc/include/any-windows-any/dvec.h diff --git a/libc/include/any-windows-any/dvobj.h b/lib/libc/include/any-windows-any/dvobj.h similarity index 100% rename from libc/include/any-windows-any/dvobj.h rename to lib/libc/include/any-windows-any/dvobj.h diff --git a/libc/include/any-windows-any/dwmapi.h b/lib/libc/include/any-windows-any/dwmapi.h similarity index 100% rename from libc/include/any-windows-any/dwmapi.h rename to lib/libc/include/any-windows-any/dwmapi.h diff --git a/libc/include/any-windows-any/dwrite.h b/lib/libc/include/any-windows-any/dwrite.h similarity index 100% rename from libc/include/any-windows-any/dwrite.h rename to lib/libc/include/any-windows-any/dwrite.h diff --git a/libc/include/any-windows-any/dwrite_1.h b/lib/libc/include/any-windows-any/dwrite_1.h similarity index 100% rename from libc/include/any-windows-any/dwrite_1.h rename to lib/libc/include/any-windows-any/dwrite_1.h diff --git a/libc/include/any-windows-any/dwrite_2.h b/lib/libc/include/any-windows-any/dwrite_2.h similarity index 100% rename from libc/include/any-windows-any/dwrite_2.h rename to lib/libc/include/any-windows-any/dwrite_2.h diff --git a/libc/include/any-windows-any/dwrite_3.h b/lib/libc/include/any-windows-any/dwrite_3.h similarity index 100% rename from libc/include/any-windows-any/dwrite_3.h rename to lib/libc/include/any-windows-any/dwrite_3.h diff --git a/libc/include/any-windows-any/dxdiag.h b/lib/libc/include/any-windows-any/dxdiag.h similarity index 100% rename from libc/include/any-windows-any/dxdiag.h rename to lib/libc/include/any-windows-any/dxdiag.h diff --git a/libc/include/any-windows-any/dxerr8.h b/lib/libc/include/any-windows-any/dxerr8.h similarity index 100% rename from libc/include/any-windows-any/dxerr8.h rename to lib/libc/include/any-windows-any/dxerr8.h diff --git a/libc/include/any-windows-any/dxerr9.h b/lib/libc/include/any-windows-any/dxerr9.h similarity index 100% rename from libc/include/any-windows-any/dxerr9.h rename to lib/libc/include/any-windows-any/dxerr9.h diff --git a/libc/include/any-windows-any/dxfile.h b/lib/libc/include/any-windows-any/dxfile.h similarity index 100% rename from libc/include/any-windows-any/dxfile.h rename to lib/libc/include/any-windows-any/dxfile.h diff --git a/libc/include/any-windows-any/dxgi.h b/lib/libc/include/any-windows-any/dxgi.h similarity index 100% rename from libc/include/any-windows-any/dxgi.h rename to lib/libc/include/any-windows-any/dxgi.h diff --git a/libc/include/any-windows-any/dxgi.idl b/lib/libc/include/any-windows-any/dxgi.idl similarity index 100% rename from libc/include/any-windows-any/dxgi.idl rename to lib/libc/include/any-windows-any/dxgi.idl diff --git a/libc/include/any-windows-any/dxgi1_2.h b/lib/libc/include/any-windows-any/dxgi1_2.h similarity index 100% rename from libc/include/any-windows-any/dxgi1_2.h rename to lib/libc/include/any-windows-any/dxgi1_2.h diff --git a/libc/include/any-windows-any/dxgi1_2.idl b/lib/libc/include/any-windows-any/dxgi1_2.idl similarity index 100% rename from libc/include/any-windows-any/dxgi1_2.idl rename to lib/libc/include/any-windows-any/dxgi1_2.idl diff --git a/libc/include/any-windows-any/dxgi1_3.h b/lib/libc/include/any-windows-any/dxgi1_3.h similarity index 100% rename from libc/include/any-windows-any/dxgi1_3.h rename to lib/libc/include/any-windows-any/dxgi1_3.h diff --git a/libc/include/any-windows-any/dxgi1_3.idl b/lib/libc/include/any-windows-any/dxgi1_3.idl similarity index 100% rename from libc/include/any-windows-any/dxgi1_3.idl rename to lib/libc/include/any-windows-any/dxgi1_3.idl diff --git a/libc/include/any-windows-any/dxgi1_4.h b/lib/libc/include/any-windows-any/dxgi1_4.h similarity index 100% rename from libc/include/any-windows-any/dxgi1_4.h rename to lib/libc/include/any-windows-any/dxgi1_4.h diff --git a/libc/include/any-windows-any/dxgi1_4.idl b/lib/libc/include/any-windows-any/dxgi1_4.idl similarity index 100% rename from libc/include/any-windows-any/dxgi1_4.idl rename to lib/libc/include/any-windows-any/dxgi1_4.idl diff --git a/libc/include/any-windows-any/dxgi1_5.h b/lib/libc/include/any-windows-any/dxgi1_5.h similarity index 100% rename from libc/include/any-windows-any/dxgi1_5.h rename to lib/libc/include/any-windows-any/dxgi1_5.h diff --git a/libc/include/any-windows-any/dxgi1_5.idl b/lib/libc/include/any-windows-any/dxgi1_5.idl similarity index 100% rename from libc/include/any-windows-any/dxgi1_5.idl rename to lib/libc/include/any-windows-any/dxgi1_5.idl diff --git a/libc/include/any-windows-any/dxgi1_6.h b/lib/libc/include/any-windows-any/dxgi1_6.h similarity index 100% rename from libc/include/any-windows-any/dxgi1_6.h rename to lib/libc/include/any-windows-any/dxgi1_6.h diff --git a/libc/include/any-windows-any/dxgi1_6.idl b/lib/libc/include/any-windows-any/dxgi1_6.idl similarity index 100% rename from libc/include/any-windows-any/dxgi1_6.idl rename to lib/libc/include/any-windows-any/dxgi1_6.idl diff --git a/libc/include/any-windows-any/dxgicommon.h b/lib/libc/include/any-windows-any/dxgicommon.h similarity index 100% rename from libc/include/any-windows-any/dxgicommon.h rename to lib/libc/include/any-windows-any/dxgicommon.h diff --git a/libc/include/any-windows-any/dxgicommon.idl b/lib/libc/include/any-windows-any/dxgicommon.idl similarity index 100% rename from libc/include/any-windows-any/dxgicommon.idl rename to lib/libc/include/any-windows-any/dxgicommon.idl diff --git a/libc/include/any-windows-any/dxgiformat.h b/lib/libc/include/any-windows-any/dxgiformat.h similarity index 100% rename from libc/include/any-windows-any/dxgiformat.h rename to lib/libc/include/any-windows-any/dxgiformat.h diff --git a/libc/include/any-windows-any/dxgiformat.idl b/lib/libc/include/any-windows-any/dxgiformat.idl similarity index 100% rename from libc/include/any-windows-any/dxgiformat.idl rename to lib/libc/include/any-windows-any/dxgiformat.idl diff --git a/libc/include/any-windows-any/dxgitype.h b/lib/libc/include/any-windows-any/dxgitype.h similarity index 100% rename from libc/include/any-windows-any/dxgitype.h rename to lib/libc/include/any-windows-any/dxgitype.h diff --git a/libc/include/any-windows-any/dxgitype.idl b/lib/libc/include/any-windows-any/dxgitype.idl similarity index 100% rename from libc/include/any-windows-any/dxgitype.idl rename to lib/libc/include/any-windows-any/dxgitype.idl diff --git a/libc/include/any-windows-any/dxtmpl.h b/lib/libc/include/any-windows-any/dxtmpl.h similarity index 100% rename from libc/include/any-windows-any/dxtmpl.h rename to lib/libc/include/any-windows-any/dxtmpl.h diff --git a/libc/include/any-windows-any/dxva.h b/lib/libc/include/any-windows-any/dxva.h similarity index 100% rename from libc/include/any-windows-any/dxva.h rename to lib/libc/include/any-windows-any/dxva.h diff --git a/libc/include/any-windows-any/dxva2api.h b/lib/libc/include/any-windows-any/dxva2api.h similarity index 100% rename from libc/include/any-windows-any/dxva2api.h rename to lib/libc/include/any-windows-any/dxva2api.h diff --git a/libc/include/any-windows-any/dxvahd.h b/lib/libc/include/any-windows-any/dxvahd.h similarity index 100% rename from libc/include/any-windows-any/dxvahd.h rename to lib/libc/include/any-windows-any/dxvahd.h diff --git a/libc/include/any-windows-any/eapauthenticatoractiondefine.h b/lib/libc/include/any-windows-any/eapauthenticatoractiondefine.h similarity index 100% rename from libc/include/any-windows-any/eapauthenticatoractiondefine.h rename to lib/libc/include/any-windows-any/eapauthenticatoractiondefine.h diff --git a/libc/include/any-windows-any/eapauthenticatortypes.h b/lib/libc/include/any-windows-any/eapauthenticatortypes.h similarity index 100% rename from libc/include/any-windows-any/eapauthenticatortypes.h rename to lib/libc/include/any-windows-any/eapauthenticatortypes.h diff --git a/libc/include/any-windows-any/eaphosterror.h b/lib/libc/include/any-windows-any/eaphosterror.h similarity index 100% rename from libc/include/any-windows-any/eaphosterror.h rename to lib/libc/include/any-windows-any/eaphosterror.h diff --git a/libc/include/any-windows-any/eaphostpeerconfigapis.h b/lib/libc/include/any-windows-any/eaphostpeerconfigapis.h similarity index 100% rename from libc/include/any-windows-any/eaphostpeerconfigapis.h rename to lib/libc/include/any-windows-any/eaphostpeerconfigapis.h diff --git a/libc/include/any-windows-any/eaphostpeertypes.h b/lib/libc/include/any-windows-any/eaphostpeertypes.h similarity index 100% rename from libc/include/any-windows-any/eaphostpeertypes.h rename to lib/libc/include/any-windows-any/eaphostpeertypes.h diff --git a/libc/include/any-windows-any/eapmethodauthenticatorapis.h b/lib/libc/include/any-windows-any/eapmethodauthenticatorapis.h similarity index 100% rename from libc/include/any-windows-any/eapmethodauthenticatorapis.h rename to lib/libc/include/any-windows-any/eapmethodauthenticatorapis.h diff --git a/libc/include/any-windows-any/eapmethodpeerapis.h b/lib/libc/include/any-windows-any/eapmethodpeerapis.h similarity index 100% rename from libc/include/any-windows-any/eapmethodpeerapis.h rename to lib/libc/include/any-windows-any/eapmethodpeerapis.h diff --git a/libc/include/any-windows-any/eapmethodtypes.h b/lib/libc/include/any-windows-any/eapmethodtypes.h similarity index 100% rename from libc/include/any-windows-any/eapmethodtypes.h rename to lib/libc/include/any-windows-any/eapmethodtypes.h diff --git a/libc/include/any-windows-any/eappapis.h b/lib/libc/include/any-windows-any/eappapis.h similarity index 100% rename from libc/include/any-windows-any/eappapis.h rename to lib/libc/include/any-windows-any/eappapis.h diff --git a/libc/include/any-windows-any/eaptypes.h b/lib/libc/include/any-windows-any/eaptypes.h similarity index 100% rename from libc/include/any-windows-any/eaptypes.h rename to lib/libc/include/any-windows-any/eaptypes.h diff --git a/libc/include/any-windows-any/edevdefs.h b/lib/libc/include/any-windows-any/edevdefs.h similarity index 100% rename from libc/include/any-windows-any/edevdefs.h rename to lib/libc/include/any-windows-any/edevdefs.h diff --git a/libc/include/any-windows-any/eh.h b/lib/libc/include/any-windows-any/eh.h similarity index 100% rename from libc/include/any-windows-any/eh.h rename to lib/libc/include/any-windows-any/eh.h diff --git a/libc/include/any-windows-any/ehstorapi.h b/lib/libc/include/any-windows-any/ehstorapi.h similarity index 100% rename from libc/include/any-windows-any/ehstorapi.h rename to lib/libc/include/any-windows-any/ehstorapi.h diff --git a/libc/include/any-windows-any/elscore.h b/lib/libc/include/any-windows-any/elscore.h similarity index 100% rename from libc/include/any-windows-any/elscore.h rename to lib/libc/include/any-windows-any/elscore.h diff --git a/libc/include/any-windows-any/emostore.h b/lib/libc/include/any-windows-any/emostore.h similarity index 100% rename from libc/include/any-windows-any/emostore.h rename to lib/libc/include/any-windows-any/emostore.h diff --git a/libc/include/any-windows-any/emptyvc.h b/lib/libc/include/any-windows-any/emptyvc.h similarity index 100% rename from libc/include/any-windows-any/emptyvc.h rename to lib/libc/include/any-windows-any/emptyvc.h diff --git a/libc/include/any-windows-any/endpointvolume.h b/lib/libc/include/any-windows-any/endpointvolume.h similarity index 100% rename from libc/include/any-windows-any/endpointvolume.h rename to lib/libc/include/any-windows-any/endpointvolume.h diff --git a/libc/include/any-windows-any/errhandlingapi.h b/lib/libc/include/any-windows-any/errhandlingapi.h similarity index 100% rename from libc/include/any-windows-any/errhandlingapi.h rename to lib/libc/include/any-windows-any/errhandlingapi.h diff --git a/libc/include/any-windows-any/errno.h b/lib/libc/include/any-windows-any/errno.h similarity index 100% rename from libc/include/any-windows-any/errno.h rename to lib/libc/include/any-windows-any/errno.h diff --git a/libc/include/any-windows-any/error.h b/lib/libc/include/any-windows-any/error.h similarity index 100% rename from libc/include/any-windows-any/error.h rename to lib/libc/include/any-windows-any/error.h diff --git a/libc/include/any-windows-any/errorrep.h b/lib/libc/include/any-windows-any/errorrep.h similarity index 100% rename from libc/include/any-windows-any/errorrep.h rename to lib/libc/include/any-windows-any/errorrep.h diff --git a/libc/include/any-windows-any/errors.h b/lib/libc/include/any-windows-any/errors.h similarity index 100% rename from libc/include/any-windows-any/errors.h rename to lib/libc/include/any-windows-any/errors.h diff --git a/libc/include/any-windows-any/esent.h b/lib/libc/include/any-windows-any/esent.h similarity index 100% rename from libc/include/any-windows-any/esent.h rename to lib/libc/include/any-windows-any/esent.h diff --git a/libc/include/any-windows-any/evcode.h b/lib/libc/include/any-windows-any/evcode.h similarity index 100% rename from libc/include/any-windows-any/evcode.h rename to lib/libc/include/any-windows-any/evcode.h diff --git a/libc/include/any-windows-any/evcoll.h b/lib/libc/include/any-windows-any/evcoll.h similarity index 100% rename from libc/include/any-windows-any/evcoll.h rename to lib/libc/include/any-windows-any/evcoll.h diff --git a/libc/include/any-windows-any/eventsys.h b/lib/libc/include/any-windows-any/eventsys.h similarity index 100% rename from libc/include/any-windows-any/eventsys.h rename to lib/libc/include/any-windows-any/eventsys.h diff --git a/libc/include/any-windows-any/evntcons.h b/lib/libc/include/any-windows-any/evntcons.h similarity index 100% rename from libc/include/any-windows-any/evntcons.h rename to lib/libc/include/any-windows-any/evntcons.h diff --git a/libc/include/any-windows-any/evntprov.h b/lib/libc/include/any-windows-any/evntprov.h similarity index 100% rename from libc/include/any-windows-any/evntprov.h rename to lib/libc/include/any-windows-any/evntprov.h diff --git a/libc/include/any-windows-any/evntrace.h b/lib/libc/include/any-windows-any/evntrace.h similarity index 100% rename from libc/include/any-windows-any/evntrace.h rename to lib/libc/include/any-windows-any/evntrace.h diff --git a/libc/include/any-windows-any/evr.h b/lib/libc/include/any-windows-any/evr.h similarity index 100% rename from libc/include/any-windows-any/evr.h rename to lib/libc/include/any-windows-any/evr.h diff --git a/libc/include/any-windows-any/evr9.h b/lib/libc/include/any-windows-any/evr9.h similarity index 100% rename from libc/include/any-windows-any/evr9.h rename to lib/libc/include/any-windows-any/evr9.h diff --git a/libc/include/any-windows-any/exchform.h b/lib/libc/include/any-windows-any/exchform.h similarity index 100% rename from libc/include/any-windows-any/exchform.h rename to lib/libc/include/any-windows-any/exchform.h diff --git a/libc/include/any-windows-any/excpt.h b/lib/libc/include/any-windows-any/excpt.h similarity index 100% rename from libc/include/any-windows-any/excpt.h rename to lib/libc/include/any-windows-any/excpt.h diff --git a/libc/include/any-windows-any/exdisp.h b/lib/libc/include/any-windows-any/exdisp.h similarity index 100% rename from libc/include/any-windows-any/exdisp.h rename to lib/libc/include/any-windows-any/exdisp.h diff --git a/libc/include/any-windows-any/exdispid.h b/lib/libc/include/any-windows-any/exdispid.h similarity index 100% rename from libc/include/any-windows-any/exdispid.h rename to lib/libc/include/any-windows-any/exdispid.h diff --git a/libc/include/any-windows-any/fci.h b/lib/libc/include/any-windows-any/fci.h similarity index 100% rename from libc/include/any-windows-any/fci.h rename to lib/libc/include/any-windows-any/fci.h diff --git a/libc/include/any-windows-any/fcntl.h b/lib/libc/include/any-windows-any/fcntl.h similarity index 100% rename from libc/include/any-windows-any/fcntl.h rename to lib/libc/include/any-windows-any/fcntl.h diff --git a/libc/include/any-windows-any/fdi.h b/lib/libc/include/any-windows-any/fdi.h similarity index 100% rename from libc/include/any-windows-any/fdi.h rename to lib/libc/include/any-windows-any/fdi.h diff --git a/libc/include/any-windows-any/fenv.h b/lib/libc/include/any-windows-any/fenv.h similarity index 100% rename from libc/include/any-windows-any/fenv.h rename to lib/libc/include/any-windows-any/fenv.h diff --git a/libc/include/any-windows-any/fibersapi.h b/lib/libc/include/any-windows-any/fibersapi.h similarity index 100% rename from libc/include/any-windows-any/fibersapi.h rename to lib/libc/include/any-windows-any/fibersapi.h diff --git a/libc/include/any-windows-any/fileapi.h b/lib/libc/include/any-windows-any/fileapi.h similarity index 100% rename from libc/include/any-windows-any/fileapi.h rename to lib/libc/include/any-windows-any/fileapi.h diff --git a/libc/include/any-windows-any/fileextd.h b/lib/libc/include/any-windows-any/fileextd.h similarity index 100% rename from libc/include/any-windows-any/fileextd.h rename to lib/libc/include/any-windows-any/fileextd.h diff --git a/libc/include/any-windows-any/filehc.h b/lib/libc/include/any-windows-any/filehc.h similarity index 100% rename from libc/include/any-windows-any/filehc.h rename to lib/libc/include/any-windows-any/filehc.h diff --git a/libc/include/any-windows-any/fileopen.dlg b/lib/libc/include/any-windows-any/fileopen.dlg similarity index 100% rename from libc/include/any-windows-any/fileopen.dlg rename to lib/libc/include/any-windows-any/fileopen.dlg diff --git a/libc/include/any-windows-any/filter.h b/lib/libc/include/any-windows-any/filter.h similarity index 100% rename from libc/include/any-windows-any/filter.h rename to lib/libc/include/any-windows-any/filter.h diff --git a/libc/include/any-windows-any/filterr.h b/lib/libc/include/any-windows-any/filterr.h similarity index 100% rename from libc/include/any-windows-any/filterr.h rename to lib/libc/include/any-windows-any/filterr.h diff --git a/libc/include/any-windows-any/findtext.dlg b/lib/libc/include/any-windows-any/findtext.dlg similarity index 100% rename from libc/include/any-windows-any/findtext.dlg rename to lib/libc/include/any-windows-any/findtext.dlg diff --git a/libc/include/any-windows-any/float.h b/lib/libc/include/any-windows-any/float.h similarity index 100% rename from libc/include/any-windows-any/float.h rename to lib/libc/include/any-windows-any/float.h diff --git a/libc/include/any-windows-any/fltdefs.h b/lib/libc/include/any-windows-any/fltdefs.h similarity index 100% rename from libc/include/any-windows-any/fltdefs.h rename to lib/libc/include/any-windows-any/fltdefs.h diff --git a/libc/include/any-windows-any/fltuser.h b/lib/libc/include/any-windows-any/fltuser.h similarity index 100% rename from libc/include/any-windows-any/fltuser.h rename to lib/libc/include/any-windows-any/fltuser.h diff --git a/libc/include/any-windows-any/fltuserstructures.h b/lib/libc/include/any-windows-any/fltuserstructures.h similarity index 100% rename from libc/include/any-windows-any/fltuserstructures.h rename to lib/libc/include/any-windows-any/fltuserstructures.h diff --git a/libc/include/any-windows-any/fltwinerror.h b/lib/libc/include/any-windows-any/fltwinerror.h similarity index 100% rename from libc/include/any-windows-any/fltwinerror.h rename to lib/libc/include/any-windows-any/fltwinerror.h diff --git a/libc/include/any-windows-any/font.dlg b/lib/libc/include/any-windows-any/font.dlg similarity index 100% rename from libc/include/any-windows-any/font.dlg rename to lib/libc/include/any-windows-any/font.dlg diff --git a/libc/include/any-windows-any/fpieee.h b/lib/libc/include/any-windows-any/fpieee.h similarity index 100% rename from libc/include/any-windows-any/fpieee.h rename to lib/libc/include/any-windows-any/fpieee.h diff --git a/libc/include/any-windows-any/fsrm.h b/lib/libc/include/any-windows-any/fsrm.h similarity index 100% rename from libc/include/any-windows-any/fsrm.h rename to lib/libc/include/any-windows-any/fsrm.h diff --git a/libc/include/any-windows-any/fsrmenums.h b/lib/libc/include/any-windows-any/fsrmenums.h similarity index 100% rename from libc/include/any-windows-any/fsrmenums.h rename to lib/libc/include/any-windows-any/fsrmenums.h diff --git a/libc/include/any-windows-any/fsrmerr.h b/lib/libc/include/any-windows-any/fsrmerr.h similarity index 100% rename from libc/include/any-windows-any/fsrmerr.h rename to lib/libc/include/any-windows-any/fsrmerr.h diff --git a/libc/include/any-windows-any/fsrmpipeline.h b/lib/libc/include/any-windows-any/fsrmpipeline.h similarity index 100% rename from libc/include/any-windows-any/fsrmpipeline.h rename to lib/libc/include/any-windows-any/fsrmpipeline.h diff --git a/libc/include/any-windows-any/fsrmquota.h b/lib/libc/include/any-windows-any/fsrmquota.h similarity index 100% rename from libc/include/any-windows-any/fsrmquota.h rename to lib/libc/include/any-windows-any/fsrmquota.h diff --git a/libc/include/any-windows-any/fsrmreports.h b/lib/libc/include/any-windows-any/fsrmreports.h similarity index 100% rename from libc/include/any-windows-any/fsrmreports.h rename to lib/libc/include/any-windows-any/fsrmreports.h diff --git a/libc/include/any-windows-any/fsrmscreen.h b/lib/libc/include/any-windows-any/fsrmscreen.h similarity index 100% rename from libc/include/any-windows-any/fsrmscreen.h rename to lib/libc/include/any-windows-any/fsrmscreen.h diff --git a/libc/include/any-windows-any/ftsiface.h b/lib/libc/include/any-windows-any/ftsiface.h similarity index 100% rename from libc/include/any-windows-any/ftsiface.h rename to lib/libc/include/any-windows-any/ftsiface.h diff --git a/libc/include/any-windows-any/ftw.h b/lib/libc/include/any-windows-any/ftw.h similarity index 100% rename from libc/include/any-windows-any/ftw.h rename to lib/libc/include/any-windows-any/ftw.h diff --git a/libc/include/any-windows-any/functiondiscoveryapi.h b/lib/libc/include/any-windows-any/functiondiscoveryapi.h similarity index 100% rename from libc/include/any-windows-any/functiondiscoveryapi.h rename to lib/libc/include/any-windows-any/functiondiscoveryapi.h diff --git a/libc/include/any-windows-any/functiondiscoverycategories.h b/lib/libc/include/any-windows-any/functiondiscoverycategories.h similarity index 100% rename from libc/include/any-windows-any/functiondiscoverycategories.h rename to lib/libc/include/any-windows-any/functiondiscoverycategories.h diff --git a/libc/include/any-windows-any/functiondiscoveryconstraints.h b/lib/libc/include/any-windows-any/functiondiscoveryconstraints.h similarity index 100% rename from libc/include/any-windows-any/functiondiscoveryconstraints.h rename to lib/libc/include/any-windows-any/functiondiscoveryconstraints.h diff --git a/libc/include/any-windows-any/functiondiscoverykeys.h b/lib/libc/include/any-windows-any/functiondiscoverykeys.h similarity index 100% rename from libc/include/any-windows-any/functiondiscoverykeys.h rename to lib/libc/include/any-windows-any/functiondiscoverykeys.h diff --git a/libc/include/any-windows-any/functiondiscoverykeys_devpkey.h b/lib/libc/include/any-windows-any/functiondiscoverykeys_devpkey.h similarity index 100% rename from libc/include/any-windows-any/functiondiscoverykeys_devpkey.h rename to lib/libc/include/any-windows-any/functiondiscoverykeys_devpkey.h diff --git a/libc/include/any-windows-any/functiondiscoverynotification.h b/lib/libc/include/any-windows-any/functiondiscoverynotification.h similarity index 100% rename from libc/include/any-windows-any/functiondiscoverynotification.h rename to lib/libc/include/any-windows-any/functiondiscoverynotification.h diff --git a/libc/include/any-windows-any/fusion.h b/lib/libc/include/any-windows-any/fusion.h similarity index 100% rename from libc/include/any-windows-any/fusion.h rename to lib/libc/include/any-windows-any/fusion.h diff --git a/libc/include/any-windows-any/fvec.h b/lib/libc/include/any-windows-any/fvec.h similarity index 100% rename from libc/include/any-windows-any/fvec.h rename to lib/libc/include/any-windows-any/fvec.h diff --git a/libc/include/any-windows-any/fwpmtypes.h b/lib/libc/include/any-windows-any/fwpmtypes.h similarity index 100% rename from libc/include/any-windows-any/fwpmtypes.h rename to lib/libc/include/any-windows-any/fwpmtypes.h diff --git a/libc/include/any-windows-any/fwpmu.h b/lib/libc/include/any-windows-any/fwpmu.h similarity index 100% rename from libc/include/any-windows-any/fwpmu.h rename to lib/libc/include/any-windows-any/fwpmu.h diff --git a/libc/include/any-windows-any/fwptypes.h b/lib/libc/include/any-windows-any/fwptypes.h similarity index 100% rename from libc/include/any-windows-any/fwptypes.h rename to lib/libc/include/any-windows-any/fwptypes.h diff --git a/libc/include/any-windows-any/gb18030.h b/lib/libc/include/any-windows-any/gb18030.h similarity index 100% rename from libc/include/any-windows-any/gb18030.h rename to lib/libc/include/any-windows-any/gb18030.h diff --git a/libc/include/any-windows-any/gdiplus.h b/lib/libc/include/any-windows-any/gdiplus.h similarity index 100% rename from libc/include/any-windows-any/gdiplus.h rename to lib/libc/include/any-windows-any/gdiplus.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplus.h b/lib/libc/include/any-windows-any/gdiplus/gdiplus.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplus.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplus.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusbase.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusbase.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusbase.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusbase.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusbrush.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusbrush.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusbrush.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusbrush.h diff --git a/libc/include/any-windows-any/gdiplus/gdipluscolor.h b/lib/libc/include/any-windows-any/gdiplus/gdipluscolor.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdipluscolor.h rename to lib/libc/include/any-windows-any/gdiplus/gdipluscolor.h diff --git a/libc/include/any-windows-any/gdiplus/gdipluscolormatrix.h b/lib/libc/include/any-windows-any/gdiplus/gdipluscolormatrix.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdipluscolormatrix.h rename to lib/libc/include/any-windows-any/gdiplus/gdipluscolormatrix.h diff --git a/libc/include/any-windows-any/gdiplus/gdipluseffects.h b/lib/libc/include/any-windows-any/gdiplus/gdipluseffects.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdipluseffects.h rename to lib/libc/include/any-windows-any/gdiplus/gdipluseffects.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusenums.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusenums.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusenums.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusenums.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusflat.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusflat.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusflat.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusflat.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusgpstubs.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusgpstubs.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusgpstubs.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusgpstubs.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusgraphics.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusgraphics.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusgraphics.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusgraphics.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusheaders.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusheaders.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusheaders.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusheaders.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusimageattributes.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusimageattributes.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusimageattributes.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusimageattributes.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusimagecodec.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusimagecodec.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusimagecodec.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusimagecodec.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusimaging.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusimaging.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusimaging.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusimaging.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusimpl.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusimpl.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusimpl.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusimpl.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusinit.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusinit.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusinit.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusinit.h diff --git a/libc/include/any-windows-any/gdiplus/gdipluslinecaps.h b/lib/libc/include/any-windows-any/gdiplus/gdipluslinecaps.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdipluslinecaps.h rename to lib/libc/include/any-windows-any/gdiplus/gdipluslinecaps.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusmatrix.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusmatrix.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusmatrix.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusmatrix.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusmem.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusmem.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusmem.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusmem.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusmetafile.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusmetafile.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusmetafile.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusmetafile.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusmetaheader.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusmetaheader.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusmetaheader.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusmetaheader.h diff --git a/libc/include/any-windows-any/gdiplus/gdipluspath.h b/lib/libc/include/any-windows-any/gdiplus/gdipluspath.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdipluspath.h rename to lib/libc/include/any-windows-any/gdiplus/gdipluspath.h diff --git a/libc/include/any-windows-any/gdiplus/gdipluspen.h b/lib/libc/include/any-windows-any/gdiplus/gdipluspen.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdipluspen.h rename to lib/libc/include/any-windows-any/gdiplus/gdipluspen.h diff --git a/libc/include/any-windows-any/gdiplus/gdipluspixelformats.h b/lib/libc/include/any-windows-any/gdiplus/gdipluspixelformats.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdipluspixelformats.h rename to lib/libc/include/any-windows-any/gdiplus/gdipluspixelformats.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplusstringformat.h b/lib/libc/include/any-windows-any/gdiplus/gdiplusstringformat.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplusstringformat.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplusstringformat.h diff --git a/libc/include/any-windows-any/gdiplus/gdiplustypes.h b/lib/libc/include/any-windows-any/gdiplus/gdiplustypes.h similarity index 100% rename from libc/include/any-windows-any/gdiplus/gdiplustypes.h rename to lib/libc/include/any-windows-any/gdiplus/gdiplustypes.h diff --git a/libc/include/any-windows-any/getopt.h b/lib/libc/include/any-windows-any/getopt.h similarity index 100% rename from libc/include/any-windows-any/getopt.h rename to lib/libc/include/any-windows-any/getopt.h diff --git a/libc/include/any-windows-any/gpedit.h b/lib/libc/include/any-windows-any/gpedit.h similarity index 100% rename from libc/include/any-windows-any/gpedit.h rename to lib/libc/include/any-windows-any/gpedit.h diff --git a/libc/include/any-windows-any/gpio.h b/lib/libc/include/any-windows-any/gpio.h similarity index 100% rename from libc/include/any-windows-any/gpio.h rename to lib/libc/include/any-windows-any/gpio.h diff --git a/libc/include/any-windows-any/gpmgmt.h b/lib/libc/include/any-windows-any/gpmgmt.h similarity index 100% rename from libc/include/any-windows-any/gpmgmt.h rename to lib/libc/include/any-windows-any/gpmgmt.h diff --git a/libc/include/any-windows-any/guiddef.h b/lib/libc/include/any-windows-any/guiddef.h similarity index 100% rename from libc/include/any-windows-any/guiddef.h rename to lib/libc/include/any-windows-any/guiddef.h diff --git a/libc/include/any-windows-any/h323priv.h b/lib/libc/include/any-windows-any/h323priv.h similarity index 100% rename from libc/include/any-windows-any/h323priv.h rename to lib/libc/include/any-windows-any/h323priv.h diff --git a/libc/include/any-windows-any/handleapi.h b/lib/libc/include/any-windows-any/handleapi.h similarity index 100% rename from libc/include/any-windows-any/handleapi.h rename to lib/libc/include/any-windows-any/handleapi.h diff --git a/libc/include/any-windows-any/heapapi.h b/lib/libc/include/any-windows-any/heapapi.h similarity index 100% rename from libc/include/any-windows-any/heapapi.h rename to lib/libc/include/any-windows-any/heapapi.h diff --git a/libc/include/any-windows-any/hidclass.h b/lib/libc/include/any-windows-any/hidclass.h similarity index 100% rename from libc/include/any-windows-any/hidclass.h rename to lib/libc/include/any-windows-any/hidclass.h diff --git a/libc/include/any-windows-any/hidpi.h b/lib/libc/include/any-windows-any/hidpi.h similarity index 100% rename from libc/include/any-windows-any/hidpi.h rename to lib/libc/include/any-windows-any/hidpi.h diff --git a/libc/include/any-windows-any/hidsdi.h b/lib/libc/include/any-windows-any/hidsdi.h similarity index 100% rename from libc/include/any-windows-any/hidsdi.h rename to lib/libc/include/any-windows-any/hidsdi.h diff --git a/libc/include/any-windows-any/hidusage.h b/lib/libc/include/any-windows-any/hidusage.h similarity index 100% rename from libc/include/any-windows-any/hidusage.h rename to lib/libc/include/any-windows-any/hidusage.h diff --git a/libc/include/any-windows-any/highlevelmonitorconfigurationapi.h b/lib/libc/include/any-windows-any/highlevelmonitorconfigurationapi.h similarity index 100% rename from libc/include/any-windows-any/highlevelmonitorconfigurationapi.h rename to lib/libc/include/any-windows-any/highlevelmonitorconfigurationapi.h diff --git a/libc/include/any-windows-any/hlguids.h b/lib/libc/include/any-windows-any/hlguids.h similarity index 100% rename from libc/include/any-windows-any/hlguids.h rename to lib/libc/include/any-windows-any/hlguids.h diff --git a/libc/include/any-windows-any/hliface.h b/lib/libc/include/any-windows-any/hliface.h similarity index 100% rename from libc/include/any-windows-any/hliface.h rename to lib/libc/include/any-windows-any/hliface.h diff --git a/libc/include/any-windows-any/hlink.h b/lib/libc/include/any-windows-any/hlink.h similarity index 100% rename from libc/include/any-windows-any/hlink.h rename to lib/libc/include/any-windows-any/hlink.h diff --git a/libc/include/any-windows-any/hostinfo.h b/lib/libc/include/any-windows-any/hostinfo.h similarity index 100% rename from libc/include/any-windows-any/hostinfo.h rename to lib/libc/include/any-windows-any/hostinfo.h diff --git a/libc/include/any-windows-any/hstring.h b/lib/libc/include/any-windows-any/hstring.h similarity index 100% rename from libc/include/any-windows-any/hstring.h rename to lib/libc/include/any-windows-any/hstring.h diff --git a/libc/include/any-windows-any/htiface.h b/lib/libc/include/any-windows-any/htiface.h similarity index 100% rename from libc/include/any-windows-any/htiface.h rename to lib/libc/include/any-windows-any/htiface.h diff --git a/libc/include/any-windows-any/htiframe.h b/lib/libc/include/any-windows-any/htiframe.h similarity index 100% rename from libc/include/any-windows-any/htiframe.h rename to lib/libc/include/any-windows-any/htiframe.h diff --git a/libc/include/any-windows-any/htmlguid.h b/lib/libc/include/any-windows-any/htmlguid.h similarity index 100% rename from libc/include/any-windows-any/htmlguid.h rename to lib/libc/include/any-windows-any/htmlguid.h diff --git a/libc/include/any-windows-any/htmlhelp.h b/lib/libc/include/any-windows-any/htmlhelp.h similarity index 100% rename from libc/include/any-windows-any/htmlhelp.h rename to lib/libc/include/any-windows-any/htmlhelp.h diff --git a/libc/include/any-windows-any/http.h b/lib/libc/include/any-windows-any/http.h similarity index 100% rename from libc/include/any-windows-any/http.h rename to lib/libc/include/any-windows-any/http.h diff --git a/libc/include/any-windows-any/httpext.h b/lib/libc/include/any-windows-any/httpext.h similarity index 100% rename from libc/include/any-windows-any/httpext.h rename to lib/libc/include/any-windows-any/httpext.h diff --git a/libc/include/any-windows-any/httpfilt.h b/lib/libc/include/any-windows-any/httpfilt.h similarity index 100% rename from libc/include/any-windows-any/httpfilt.h rename to lib/libc/include/any-windows-any/httpfilt.h diff --git a/libc/include/any-windows-any/httprequestid.h b/lib/libc/include/any-windows-any/httprequestid.h similarity index 100% rename from libc/include/any-windows-any/httprequestid.h rename to lib/libc/include/any-windows-any/httprequestid.h diff --git a/libc/include/any-windows-any/i_cryptasn1tls.h b/lib/libc/include/any-windows-any/i_cryptasn1tls.h similarity index 100% rename from libc/include/any-windows-any/i_cryptasn1tls.h rename to lib/libc/include/any-windows-any/i_cryptasn1tls.h diff --git a/libc/include/any-windows-any/ia64reg.h b/lib/libc/include/any-windows-any/ia64reg.h similarity index 100% rename from libc/include/any-windows-any/ia64reg.h rename to lib/libc/include/any-windows-any/ia64reg.h diff --git a/libc/include/any-windows-any/iaccess.h b/lib/libc/include/any-windows-any/iaccess.h similarity index 100% rename from libc/include/any-windows-any/iaccess.h rename to lib/libc/include/any-windows-any/iaccess.h diff --git a/libc/include/any-windows-any/iadmext.h b/lib/libc/include/any-windows-any/iadmext.h similarity index 100% rename from libc/include/any-windows-any/iadmext.h rename to lib/libc/include/any-windows-any/iadmext.h diff --git a/libc/include/any-windows-any/iadmw.h b/lib/libc/include/any-windows-any/iadmw.h similarity index 100% rename from libc/include/any-windows-any/iadmw.h rename to lib/libc/include/any-windows-any/iadmw.h diff --git a/libc/include/any-windows-any/iads.h b/lib/libc/include/any-windows-any/iads.h similarity index 100% rename from libc/include/any-windows-any/iads.h rename to lib/libc/include/any-windows-any/iads.h diff --git a/libc/include/any-windows-any/icftypes.h b/lib/libc/include/any-windows-any/icftypes.h similarity index 100% rename from libc/include/any-windows-any/icftypes.h rename to lib/libc/include/any-windows-any/icftypes.h diff --git a/libc/include/any-windows-any/icm.h b/lib/libc/include/any-windows-any/icm.h similarity index 100% rename from libc/include/any-windows-any/icm.h rename to lib/libc/include/any-windows-any/icm.h diff --git a/libc/include/any-windows-any/icmpapi.h b/lib/libc/include/any-windows-any/icmpapi.h similarity index 100% rename from libc/include/any-windows-any/icmpapi.h rename to lib/libc/include/any-windows-any/icmpapi.h diff --git a/libc/include/any-windows-any/icmui.dlg b/lib/libc/include/any-windows-any/icmui.dlg similarity index 100% rename from libc/include/any-windows-any/icmui.dlg rename to lib/libc/include/any-windows-any/icmui.dlg diff --git a/libc/include/any-windows-any/icodecapi.h b/lib/libc/include/any-windows-any/icodecapi.h similarity index 100% rename from libc/include/any-windows-any/icodecapi.h rename to lib/libc/include/any-windows-any/icodecapi.h diff --git a/libc/include/any-windows-any/icrsint.h b/lib/libc/include/any-windows-any/icrsint.h similarity index 100% rename from libc/include/any-windows-any/icrsint.h rename to lib/libc/include/any-windows-any/icrsint.h diff --git a/libc/include/any-windows-any/identitycommon.h b/lib/libc/include/any-windows-any/identitycommon.h similarity index 100% rename from libc/include/any-windows-any/identitycommon.h rename to lib/libc/include/any-windows-any/identitycommon.h diff --git a/libc/include/any-windows-any/identitystore.h b/lib/libc/include/any-windows-any/identitystore.h similarity index 100% rename from libc/include/any-windows-any/identitystore.h rename to lib/libc/include/any-windows-any/identitystore.h diff --git a/libc/include/any-windows-any/idf.h b/lib/libc/include/any-windows-any/idf.h similarity index 100% rename from libc/include/any-windows-any/idf.h rename to lib/libc/include/any-windows-any/idf.h diff --git a/libc/include/any-windows-any/idispids.h b/lib/libc/include/any-windows-any/idispids.h similarity index 100% rename from libc/include/any-windows-any/idispids.h rename to lib/libc/include/any-windows-any/idispids.h diff --git a/libc/include/any-windows-any/iedial.h b/lib/libc/include/any-windows-any/iedial.h similarity index 100% rename from libc/include/any-windows-any/iedial.h rename to lib/libc/include/any-windows-any/iedial.h diff --git a/libc/include/any-windows-any/ieeefp.h b/lib/libc/include/any-windows-any/ieeefp.h similarity index 100% rename from libc/include/any-windows-any/ieeefp.h rename to lib/libc/include/any-windows-any/ieeefp.h diff --git a/libc/include/any-windows-any/ieverp.h b/lib/libc/include/any-windows-any/ieverp.h similarity index 100% rename from libc/include/any-windows-any/ieverp.h rename to lib/libc/include/any-windows-any/ieverp.h diff --git a/libc/include/any-windows-any/ifdef.h b/lib/libc/include/any-windows-any/ifdef.h similarity index 100% rename from libc/include/any-windows-any/ifdef.h rename to lib/libc/include/any-windows-any/ifdef.h diff --git a/libc/include/any-windows-any/iiis.h b/lib/libc/include/any-windows-any/iiis.h similarity index 100% rename from libc/include/any-windows-any/iiis.h rename to lib/libc/include/any-windows-any/iiis.h diff --git a/libc/include/any-windows-any/iiisext.h b/lib/libc/include/any-windows-any/iiisext.h similarity index 100% rename from libc/include/any-windows-any/iiisext.h rename to lib/libc/include/any-windows-any/iiisext.h diff --git a/libc/include/any-windows-any/iimgctx.h b/lib/libc/include/any-windows-any/iimgctx.h similarity index 100% rename from libc/include/any-windows-any/iimgctx.h rename to lib/libc/include/any-windows-any/iimgctx.h diff --git a/libc/include/any-windows-any/iiscnfg.h b/lib/libc/include/any-windows-any/iiscnfg.h similarity index 100% rename from libc/include/any-windows-any/iiscnfg.h rename to lib/libc/include/any-windows-any/iiscnfg.h diff --git a/libc/include/any-windows-any/iisrsta.h b/lib/libc/include/any-windows-any/iisrsta.h similarity index 100% rename from libc/include/any-windows-any/iisrsta.h rename to lib/libc/include/any-windows-any/iisrsta.h diff --git a/libc/include/any-windows-any/iketypes.h b/lib/libc/include/any-windows-any/iketypes.h similarity index 100% rename from libc/include/any-windows-any/iketypes.h rename to lib/libc/include/any-windows-any/iketypes.h diff --git a/libc/include/any-windows-any/ilogobj.hxx b/lib/libc/include/any-windows-any/ilogobj.hxx similarity index 100% rename from libc/include/any-windows-any/ilogobj.hxx rename to lib/libc/include/any-windows-any/ilogobj.hxx diff --git a/libc/include/any-windows-any/imagehlp.h b/lib/libc/include/any-windows-any/imagehlp.h similarity index 100% rename from libc/include/any-windows-any/imagehlp.h rename to lib/libc/include/any-windows-any/imagehlp.h diff --git a/libc/include/any-windows-any/ime.h b/lib/libc/include/any-windows-any/ime.h similarity index 100% rename from libc/include/any-windows-any/ime.h rename to lib/libc/include/any-windows-any/ime.h diff --git a/libc/include/any-windows-any/imessage.h b/lib/libc/include/any-windows-any/imessage.h similarity index 100% rename from libc/include/any-windows-any/imessage.h rename to lib/libc/include/any-windows-any/imessage.h diff --git a/libc/include/any-windows-any/imm.h b/lib/libc/include/any-windows-any/imm.h similarity index 100% rename from libc/include/any-windows-any/imm.h rename to lib/libc/include/any-windows-any/imm.h diff --git a/libc/include/any-windows-any/in6addr.h b/lib/libc/include/any-windows-any/in6addr.h similarity index 100% rename from libc/include/any-windows-any/in6addr.h rename to lib/libc/include/any-windows-any/in6addr.h diff --git a/libc/include/any-windows-any/inaddr.h b/lib/libc/include/any-windows-any/inaddr.h similarity index 100% rename from libc/include/any-windows-any/inaddr.h rename to lib/libc/include/any-windows-any/inaddr.h diff --git a/libc/include/any-windows-any/indexsrv.h b/lib/libc/include/any-windows-any/indexsrv.h similarity index 100% rename from libc/include/any-windows-any/indexsrv.h rename to lib/libc/include/any-windows-any/indexsrv.h diff --git a/libc/include/any-windows-any/inetreg.h b/lib/libc/include/any-windows-any/inetreg.h similarity index 100% rename from libc/include/any-windows-any/inetreg.h rename to lib/libc/include/any-windows-any/inetreg.h diff --git a/libc/include/any-windows-any/inetsdk.h b/lib/libc/include/any-windows-any/inetsdk.h similarity index 100% rename from libc/include/any-windows-any/inetsdk.h rename to lib/libc/include/any-windows-any/inetsdk.h diff --git a/libc/include/any-windows-any/infstr.h b/lib/libc/include/any-windows-any/infstr.h similarity index 100% rename from libc/include/any-windows-any/infstr.h rename to lib/libc/include/any-windows-any/infstr.h diff --git a/libc/include/any-windows-any/initguid.h b/lib/libc/include/any-windows-any/initguid.h similarity index 100% rename from libc/include/any-windows-any/initguid.h rename to lib/libc/include/any-windows-any/initguid.h diff --git a/libc/include/any-windows-any/initoid.h b/lib/libc/include/any-windows-any/initoid.h similarity index 100% rename from libc/include/any-windows-any/initoid.h rename to lib/libc/include/any-windows-any/initoid.h diff --git a/libc/include/any-windows-any/inputscope.h b/lib/libc/include/any-windows-any/inputscope.h similarity index 100% rename from libc/include/any-windows-any/inputscope.h rename to lib/libc/include/any-windows-any/inputscope.h diff --git a/libc/include/any-windows-any/inspectable.h b/lib/libc/include/any-windows-any/inspectable.h similarity index 100% rename from libc/include/any-windows-any/inspectable.h rename to lib/libc/include/any-windows-any/inspectable.h diff --git a/libc/include/any-windows-any/interlockedapi.h b/lib/libc/include/any-windows-any/interlockedapi.h similarity index 100% rename from libc/include/any-windows-any/interlockedapi.h rename to lib/libc/include/any-windows-any/interlockedapi.h diff --git a/libc/include/any-windows-any/intrin.h b/lib/libc/include/any-windows-any/intrin.h similarity index 100% rename from libc/include/any-windows-any/intrin.h rename to lib/libc/include/any-windows-any/intrin.h diff --git a/libc/include/any-windows-any/intsafe.h b/lib/libc/include/any-windows-any/intsafe.h similarity index 100% rename from libc/include/any-windows-any/intsafe.h rename to lib/libc/include/any-windows-any/intsafe.h diff --git a/libc/include/any-windows-any/intshcut.h b/lib/libc/include/any-windows-any/intshcut.h similarity index 100% rename from libc/include/any-windows-any/intshcut.h rename to lib/libc/include/any-windows-any/intshcut.h diff --git a/libc/include/any-windows-any/inttypes.h b/lib/libc/include/any-windows-any/inttypes.h similarity index 100% rename from libc/include/any-windows-any/inttypes.h rename to lib/libc/include/any-windows-any/inttypes.h diff --git a/libc/include/any-windows-any/invkprxy.h b/lib/libc/include/any-windows-any/invkprxy.h similarity index 100% rename from libc/include/any-windows-any/invkprxy.h rename to lib/libc/include/any-windows-any/invkprxy.h diff --git a/libc/include/any-windows-any/io.h b/lib/libc/include/any-windows-any/io.h similarity index 100% rename from libc/include/any-windows-any/io.h rename to lib/libc/include/any-windows-any/io.h diff --git a/libc/include/any-windows-any/ioapiset.h b/lib/libc/include/any-windows-any/ioapiset.h similarity index 100% rename from libc/include/any-windows-any/ioapiset.h rename to lib/libc/include/any-windows-any/ioapiset.h diff --git a/libc/include/any-windows-any/ioevent.h b/lib/libc/include/any-windows-any/ioevent.h similarity index 100% rename from libc/include/any-windows-any/ioevent.h rename to lib/libc/include/any-windows-any/ioevent.h diff --git a/libc/include/any-windows-any/ipexport.h b/lib/libc/include/any-windows-any/ipexport.h similarity index 100% rename from libc/include/any-windows-any/ipexport.h rename to lib/libc/include/any-windows-any/ipexport.h diff --git a/libc/include/any-windows-any/iphlpapi.h b/lib/libc/include/any-windows-any/iphlpapi.h similarity index 100% rename from libc/include/any-windows-any/iphlpapi.h rename to lib/libc/include/any-windows-any/iphlpapi.h diff --git a/libc/include/any-windows-any/ipifcons.h b/lib/libc/include/any-windows-any/ipifcons.h similarity index 100% rename from libc/include/any-windows-any/ipifcons.h rename to lib/libc/include/any-windows-any/ipifcons.h diff --git a/libc/include/any-windows-any/ipinfoid.h b/lib/libc/include/any-windows-any/ipinfoid.h similarity index 100% rename from libc/include/any-windows-any/ipinfoid.h rename to lib/libc/include/any-windows-any/ipinfoid.h diff --git a/libc/include/any-windows-any/ipmib.h b/lib/libc/include/any-windows-any/ipmib.h similarity index 100% rename from libc/include/any-windows-any/ipmib.h rename to lib/libc/include/any-windows-any/ipmib.h diff --git a/libc/include/any-windows-any/ipmsp.h b/lib/libc/include/any-windows-any/ipmsp.h similarity index 100% rename from libc/include/any-windows-any/ipmsp.h rename to lib/libc/include/any-windows-any/ipmsp.h diff --git a/libc/include/any-windows-any/iprtrmib.h b/lib/libc/include/any-windows-any/iprtrmib.h similarity index 100% rename from libc/include/any-windows-any/iprtrmib.h rename to lib/libc/include/any-windows-any/iprtrmib.h diff --git a/libc/include/any-windows-any/ipsectypes.h b/lib/libc/include/any-windows-any/ipsectypes.h similarity index 100% rename from libc/include/any-windows-any/ipsectypes.h rename to lib/libc/include/any-windows-any/ipsectypes.h diff --git a/libc/include/any-windows-any/iptypes.h b/lib/libc/include/any-windows-any/iptypes.h similarity index 100% rename from libc/include/any-windows-any/iptypes.h rename to lib/libc/include/any-windows-any/iptypes.h diff --git a/libc/include/any-windows-any/ipxconst.h b/lib/libc/include/any-windows-any/ipxconst.h similarity index 100% rename from libc/include/any-windows-any/ipxconst.h rename to lib/libc/include/any-windows-any/ipxconst.h diff --git a/libc/include/any-windows-any/ipxrip.h b/lib/libc/include/any-windows-any/ipxrip.h similarity index 100% rename from libc/include/any-windows-any/ipxrip.h rename to lib/libc/include/any-windows-any/ipxrip.h diff --git a/libc/include/any-windows-any/ipxrtdef.h b/lib/libc/include/any-windows-any/ipxrtdef.h similarity index 100% rename from libc/include/any-windows-any/ipxrtdef.h rename to lib/libc/include/any-windows-any/ipxrtdef.h diff --git a/libc/include/any-windows-any/ipxsap.h b/lib/libc/include/any-windows-any/ipxsap.h similarity index 100% rename from libc/include/any-windows-any/ipxsap.h rename to lib/libc/include/any-windows-any/ipxsap.h diff --git a/libc/include/any-windows-any/ipxtfflt.h b/lib/libc/include/any-windows-any/ipxtfflt.h similarity index 100% rename from libc/include/any-windows-any/ipxtfflt.h rename to lib/libc/include/any-windows-any/ipxtfflt.h diff --git a/libc/include/any-windows-any/iscsidsc.h b/lib/libc/include/any-windows-any/iscsidsc.h similarity index 100% rename from libc/include/any-windows-any/iscsidsc.h rename to lib/libc/include/any-windows-any/iscsidsc.h diff --git a/libc/include/any-windows-any/isguids.h b/lib/libc/include/any-windows-any/isguids.h similarity index 100% rename from libc/include/any-windows-any/isguids.h rename to lib/libc/include/any-windows-any/isguids.h diff --git a/libc/include/any-windows-any/issper16.h b/lib/libc/include/any-windows-any/issper16.h similarity index 100% rename from libc/include/any-windows-any/issper16.h rename to lib/libc/include/any-windows-any/issper16.h diff --git a/libc/include/any-windows-any/issperr.h b/lib/libc/include/any-windows-any/issperr.h similarity index 100% rename from libc/include/any-windows-any/issperr.h rename to lib/libc/include/any-windows-any/issperr.h diff --git a/libc/include/any-windows-any/isysmon.h b/lib/libc/include/any-windows-any/isysmon.h similarity index 100% rename from libc/include/any-windows-any/isysmon.h rename to lib/libc/include/any-windows-any/isysmon.h diff --git a/libc/include/any-windows-any/ivec.h b/lib/libc/include/any-windows-any/ivec.h similarity index 100% rename from libc/include/any-windows-any/ivec.h rename to lib/libc/include/any-windows-any/ivec.h diff --git a/libc/include/any-windows-any/iwamreg.h b/lib/libc/include/any-windows-any/iwamreg.h similarity index 100% rename from libc/include/any-windows-any/iwamreg.h rename to lib/libc/include/any-windows-any/iwamreg.h diff --git a/libc/include/any-windows-any/jobapi.h b/lib/libc/include/any-windows-any/jobapi.h similarity index 100% rename from libc/include/any-windows-any/jobapi.h rename to lib/libc/include/any-windows-any/jobapi.h diff --git a/libc/include/any-windows-any/kcom.h b/lib/libc/include/any-windows-any/kcom.h similarity index 100% rename from libc/include/any-windows-any/kcom.h rename to lib/libc/include/any-windows-any/kcom.h diff --git a/libc/include/any-windows-any/knownfolders.h b/lib/libc/include/any-windows-any/knownfolders.h similarity index 100% rename from libc/include/any-windows-any/knownfolders.h rename to lib/libc/include/any-windows-any/knownfolders.h diff --git a/libc/include/any-windows-any/ks.h b/lib/libc/include/any-windows-any/ks.h similarity index 100% rename from libc/include/any-windows-any/ks.h rename to lib/libc/include/any-windows-any/ks.h diff --git a/libc/include/any-windows-any/ksdebug.h b/lib/libc/include/any-windows-any/ksdebug.h similarity index 100% rename from libc/include/any-windows-any/ksdebug.h rename to lib/libc/include/any-windows-any/ksdebug.h diff --git a/libc/include/any-windows-any/ksguid.h b/lib/libc/include/any-windows-any/ksguid.h similarity index 100% rename from libc/include/any-windows-any/ksguid.h rename to lib/libc/include/any-windows-any/ksguid.h diff --git a/libc/include/any-windows-any/ksmedia.h b/lib/libc/include/any-windows-any/ksmedia.h similarity index 100% rename from libc/include/any-windows-any/ksmedia.h rename to lib/libc/include/any-windows-any/ksmedia.h diff --git a/libc/include/any-windows-any/ksproxy.h b/lib/libc/include/any-windows-any/ksproxy.h similarity index 100% rename from libc/include/any-windows-any/ksproxy.h rename to lib/libc/include/any-windows-any/ksproxy.h diff --git a/libc/include/any-windows-any/ksuuids.h b/lib/libc/include/any-windows-any/ksuuids.h similarity index 100% rename from libc/include/any-windows-any/ksuuids.h rename to lib/libc/include/any-windows-any/ksuuids.h diff --git a/libc/include/any-windows-any/ktmtypes.h b/lib/libc/include/any-windows-any/ktmtypes.h similarity index 100% rename from libc/include/any-windows-any/ktmtypes.h rename to lib/libc/include/any-windows-any/ktmtypes.h diff --git a/libc/include/any-windows-any/ktmw32.h b/lib/libc/include/any-windows-any/ktmw32.h similarity index 100% rename from libc/include/any-windows-any/ktmw32.h rename to lib/libc/include/any-windows-any/ktmw32.h diff --git a/libc/include/any-windows-any/kxia64.h b/lib/libc/include/any-windows-any/kxia64.h similarity index 100% rename from libc/include/any-windows-any/kxia64.h rename to lib/libc/include/any-windows-any/kxia64.h diff --git a/libc/include/any-windows-any/l2cmn.h b/lib/libc/include/any-windows-any/l2cmn.h similarity index 100% rename from libc/include/any-windows-any/l2cmn.h rename to lib/libc/include/any-windows-any/l2cmn.h diff --git a/libc/include/any-windows-any/libgen.h b/lib/libc/include/any-windows-any/libgen.h similarity index 100% rename from libc/include/any-windows-any/libgen.h rename to lib/libc/include/any-windows-any/libgen.h diff --git a/libc/include/any-windows-any/libloaderapi.h b/lib/libc/include/any-windows-any/libloaderapi.h similarity index 100% rename from libc/include/any-windows-any/libloaderapi.h rename to lib/libc/include/any-windows-any/libloaderapi.h diff --git a/libc/include/any-windows-any/limits.h b/lib/libc/include/any-windows-any/limits.h similarity index 100% rename from libc/include/any-windows-any/limits.h rename to lib/libc/include/any-windows-any/limits.h diff --git a/libc/include/any-windows-any/lm.h b/lib/libc/include/any-windows-any/lm.h similarity index 100% rename from libc/include/any-windows-any/lm.h rename to lib/libc/include/any-windows-any/lm.h diff --git a/libc/include/any-windows-any/lmaccess.h b/lib/libc/include/any-windows-any/lmaccess.h similarity index 100% rename from libc/include/any-windows-any/lmaccess.h rename to lib/libc/include/any-windows-any/lmaccess.h diff --git a/libc/include/any-windows-any/lmalert.h b/lib/libc/include/any-windows-any/lmalert.h similarity index 100% rename from libc/include/any-windows-any/lmalert.h rename to lib/libc/include/any-windows-any/lmalert.h diff --git a/libc/include/any-windows-any/lmapibuf.h b/lib/libc/include/any-windows-any/lmapibuf.h similarity index 100% rename from libc/include/any-windows-any/lmapibuf.h rename to lib/libc/include/any-windows-any/lmapibuf.h diff --git a/libc/include/any-windows-any/lmat.h b/lib/libc/include/any-windows-any/lmat.h similarity index 100% rename from libc/include/any-windows-any/lmat.h rename to lib/libc/include/any-windows-any/lmat.h diff --git a/libc/include/any-windows-any/lmaudit.h b/lib/libc/include/any-windows-any/lmaudit.h similarity index 100% rename from libc/include/any-windows-any/lmaudit.h rename to lib/libc/include/any-windows-any/lmaudit.h diff --git a/libc/include/any-windows-any/lmconfig.h b/lib/libc/include/any-windows-any/lmconfig.h similarity index 100% rename from libc/include/any-windows-any/lmconfig.h rename to lib/libc/include/any-windows-any/lmconfig.h diff --git a/libc/include/any-windows-any/lmcons.h b/lib/libc/include/any-windows-any/lmcons.h similarity index 100% rename from libc/include/any-windows-any/lmcons.h rename to lib/libc/include/any-windows-any/lmcons.h diff --git a/libc/include/any-windows-any/lmdfs.h b/lib/libc/include/any-windows-any/lmdfs.h similarity index 100% rename from libc/include/any-windows-any/lmdfs.h rename to lib/libc/include/any-windows-any/lmdfs.h diff --git a/libc/include/any-windows-any/lmerr.h b/lib/libc/include/any-windows-any/lmerr.h similarity index 100% rename from libc/include/any-windows-any/lmerr.h rename to lib/libc/include/any-windows-any/lmerr.h diff --git a/libc/include/any-windows-any/lmerrlog.h b/lib/libc/include/any-windows-any/lmerrlog.h similarity index 100% rename from libc/include/any-windows-any/lmerrlog.h rename to lib/libc/include/any-windows-any/lmerrlog.h diff --git a/libc/include/any-windows-any/lmjoin.h b/lib/libc/include/any-windows-any/lmjoin.h similarity index 100% rename from libc/include/any-windows-any/lmjoin.h rename to lib/libc/include/any-windows-any/lmjoin.h diff --git a/libc/include/any-windows-any/lmmsg.h b/lib/libc/include/any-windows-any/lmmsg.h similarity index 100% rename from libc/include/any-windows-any/lmmsg.h rename to lib/libc/include/any-windows-any/lmmsg.h diff --git a/libc/include/any-windows-any/lmon.h b/lib/libc/include/any-windows-any/lmon.h similarity index 100% rename from libc/include/any-windows-any/lmon.h rename to lib/libc/include/any-windows-any/lmon.h diff --git a/libc/include/any-windows-any/lmremutl.h b/lib/libc/include/any-windows-any/lmremutl.h similarity index 100% rename from libc/include/any-windows-any/lmremutl.h rename to lib/libc/include/any-windows-any/lmremutl.h diff --git a/libc/include/any-windows-any/lmrepl.h b/lib/libc/include/any-windows-any/lmrepl.h similarity index 100% rename from libc/include/any-windows-any/lmrepl.h rename to lib/libc/include/any-windows-any/lmrepl.h diff --git a/libc/include/any-windows-any/lmserver.h b/lib/libc/include/any-windows-any/lmserver.h similarity index 100% rename from libc/include/any-windows-any/lmserver.h rename to lib/libc/include/any-windows-any/lmserver.h diff --git a/libc/include/any-windows-any/lmshare.h b/lib/libc/include/any-windows-any/lmshare.h similarity index 100% rename from libc/include/any-windows-any/lmshare.h rename to lib/libc/include/any-windows-any/lmshare.h diff --git a/libc/include/any-windows-any/lmsname.h b/lib/libc/include/any-windows-any/lmsname.h similarity index 100% rename from libc/include/any-windows-any/lmsname.h rename to lib/libc/include/any-windows-any/lmsname.h diff --git a/libc/include/any-windows-any/lmstats.h b/lib/libc/include/any-windows-any/lmstats.h similarity index 100% rename from libc/include/any-windows-any/lmstats.h rename to lib/libc/include/any-windows-any/lmstats.h diff --git a/libc/include/any-windows-any/lmsvc.h b/lib/libc/include/any-windows-any/lmsvc.h similarity index 100% rename from libc/include/any-windows-any/lmsvc.h rename to lib/libc/include/any-windows-any/lmsvc.h diff --git a/libc/include/any-windows-any/lmuse.h b/lib/libc/include/any-windows-any/lmuse.h similarity index 100% rename from libc/include/any-windows-any/lmuse.h rename to lib/libc/include/any-windows-any/lmuse.h diff --git a/libc/include/any-windows-any/lmuseflg.h b/lib/libc/include/any-windows-any/lmuseflg.h similarity index 100% rename from libc/include/any-windows-any/lmuseflg.h rename to lib/libc/include/any-windows-any/lmuseflg.h diff --git a/libc/include/any-windows-any/lmwksta.h b/lib/libc/include/any-windows-any/lmwksta.h similarity index 100% rename from libc/include/any-windows-any/lmwksta.h rename to lib/libc/include/any-windows-any/lmwksta.h diff --git a/libc/include/any-windows-any/loadperf.h b/lib/libc/include/any-windows-any/loadperf.h similarity index 100% rename from libc/include/any-windows-any/loadperf.h rename to lib/libc/include/any-windows-any/loadperf.h diff --git a/libc/include/any-windows-any/locale.h b/lib/libc/include/any-windows-any/locale.h similarity index 100% rename from libc/include/any-windows-any/locale.h rename to lib/libc/include/any-windows-any/locale.h diff --git a/libc/include/any-windows-any/locationapi.h b/lib/libc/include/any-windows-any/locationapi.h similarity index 100% rename from libc/include/any-windows-any/locationapi.h rename to lib/libc/include/any-windows-any/locationapi.h diff --git a/libc/include/any-windows-any/lpmapi.h b/lib/libc/include/any-windows-any/lpmapi.h similarity index 100% rename from libc/include/any-windows-any/lpmapi.h rename to lib/libc/include/any-windows-any/lpmapi.h diff --git a/libc/include/any-windows-any/lzexpand.h b/lib/libc/include/any-windows-any/lzexpand.h similarity index 100% rename from libc/include/any-windows-any/lzexpand.h rename to lib/libc/include/any-windows-any/lzexpand.h diff --git a/libc/include/any-windows-any/madcapcl.h b/lib/libc/include/any-windows-any/madcapcl.h similarity index 100% rename from libc/include/any-windows-any/madcapcl.h rename to lib/libc/include/any-windows-any/madcapcl.h diff --git a/libc/include/any-windows-any/magnification.h b/lib/libc/include/any-windows-any/magnification.h similarity index 100% rename from libc/include/any-windows-any/magnification.h rename to lib/libc/include/any-windows-any/magnification.h diff --git a/libc/include/any-windows-any/mailmsgprops.h b/lib/libc/include/any-windows-any/mailmsgprops.h similarity index 100% rename from libc/include/any-windows-any/mailmsgprops.h rename to lib/libc/include/any-windows-any/mailmsgprops.h diff --git a/libc/include/any-windows-any/malloc.h b/lib/libc/include/any-windows-any/malloc.h similarity index 100% rename from libc/include/any-windows-any/malloc.h rename to lib/libc/include/any-windows-any/malloc.h diff --git a/libc/include/any-windows-any/manipulations.h b/lib/libc/include/any-windows-any/manipulations.h similarity index 100% rename from libc/include/any-windows-any/manipulations.h rename to lib/libc/include/any-windows-any/manipulations.h diff --git a/libc/include/any-windows-any/mapi.h b/lib/libc/include/any-windows-any/mapi.h similarity index 100% rename from libc/include/any-windows-any/mapi.h rename to lib/libc/include/any-windows-any/mapi.h diff --git a/libc/include/any-windows-any/mapicode.h b/lib/libc/include/any-windows-any/mapicode.h similarity index 100% rename from libc/include/any-windows-any/mapicode.h rename to lib/libc/include/any-windows-any/mapicode.h diff --git a/libc/include/any-windows-any/mapidbg.h b/lib/libc/include/any-windows-any/mapidbg.h similarity index 100% rename from libc/include/any-windows-any/mapidbg.h rename to lib/libc/include/any-windows-any/mapidbg.h diff --git a/libc/include/any-windows-any/mapidefs.h b/lib/libc/include/any-windows-any/mapidefs.h similarity index 100% rename from libc/include/any-windows-any/mapidefs.h rename to lib/libc/include/any-windows-any/mapidefs.h diff --git a/libc/include/any-windows-any/mapiform.h b/lib/libc/include/any-windows-any/mapiform.h similarity index 100% rename from libc/include/any-windows-any/mapiform.h rename to lib/libc/include/any-windows-any/mapiform.h diff --git a/libc/include/any-windows-any/mapiguid.h b/lib/libc/include/any-windows-any/mapiguid.h similarity index 100% rename from libc/include/any-windows-any/mapiguid.h rename to lib/libc/include/any-windows-any/mapiguid.h diff --git a/libc/include/any-windows-any/mapihook.h b/lib/libc/include/any-windows-any/mapihook.h similarity index 100% rename from libc/include/any-windows-any/mapihook.h rename to lib/libc/include/any-windows-any/mapihook.h diff --git a/libc/include/any-windows-any/mapinls.h b/lib/libc/include/any-windows-any/mapinls.h similarity index 100% rename from libc/include/any-windows-any/mapinls.h rename to lib/libc/include/any-windows-any/mapinls.h diff --git a/libc/include/any-windows-any/mapioid.h b/lib/libc/include/any-windows-any/mapioid.h similarity index 100% rename from libc/include/any-windows-any/mapioid.h rename to lib/libc/include/any-windows-any/mapioid.h diff --git a/libc/include/any-windows-any/mapispi.h b/lib/libc/include/any-windows-any/mapispi.h similarity index 100% rename from libc/include/any-windows-any/mapispi.h rename to lib/libc/include/any-windows-any/mapispi.h diff --git a/libc/include/any-windows-any/mapitags.h b/lib/libc/include/any-windows-any/mapitags.h similarity index 100% rename from libc/include/any-windows-any/mapitags.h rename to lib/libc/include/any-windows-any/mapitags.h diff --git a/libc/include/any-windows-any/mapiutil.h b/lib/libc/include/any-windows-any/mapiutil.h similarity index 100% rename from libc/include/any-windows-any/mapiutil.h rename to lib/libc/include/any-windows-any/mapiutil.h diff --git a/libc/include/any-windows-any/mapival.h b/lib/libc/include/any-windows-any/mapival.h similarity index 100% rename from libc/include/any-windows-any/mapival.h rename to lib/libc/include/any-windows-any/mapival.h diff --git a/libc/include/any-windows-any/mapiwin.h b/lib/libc/include/any-windows-any/mapiwin.h similarity index 100% rename from libc/include/any-windows-any/mapiwin.h rename to lib/libc/include/any-windows-any/mapiwin.h diff --git a/libc/include/any-windows-any/mapiwz.h b/lib/libc/include/any-windows-any/mapiwz.h similarity index 100% rename from libc/include/any-windows-any/mapiwz.h rename to lib/libc/include/any-windows-any/mapiwz.h diff --git a/libc/include/any-windows-any/mapix.h b/lib/libc/include/any-windows-any/mapix.h similarity index 100% rename from libc/include/any-windows-any/mapix.h rename to lib/libc/include/any-windows-any/mapix.h diff --git a/libc/include/any-windows-any/math.h b/lib/libc/include/any-windows-any/math.h similarity index 100% rename from libc/include/any-windows-any/math.h rename to lib/libc/include/any-windows-any/math.h diff --git a/libc/include/any-windows-any/mbctype.h b/lib/libc/include/any-windows-any/mbctype.h similarity index 100% rename from libc/include/any-windows-any/mbctype.h rename to lib/libc/include/any-windows-any/mbctype.h diff --git a/libc/include/any-windows-any/mbstring.h b/lib/libc/include/any-windows-any/mbstring.h similarity index 100% rename from libc/include/any-windows-any/mbstring.h rename to lib/libc/include/any-windows-any/mbstring.h diff --git a/libc/include/any-windows-any/mciavi.h b/lib/libc/include/any-windows-any/mciavi.h similarity index 100% rename from libc/include/any-windows-any/mciavi.h rename to lib/libc/include/any-windows-any/mciavi.h diff --git a/libc/include/any-windows-any/mcx.h b/lib/libc/include/any-windows-any/mcx.h similarity index 100% rename from libc/include/any-windows-any/mcx.h rename to lib/libc/include/any-windows-any/mcx.h diff --git a/libc/include/any-windows-any/mdbrole.hxx b/lib/libc/include/any-windows-any/mdbrole.hxx similarity index 100% rename from libc/include/any-windows-any/mdbrole.hxx rename to lib/libc/include/any-windows-any/mdbrole.hxx diff --git a/libc/include/any-windows-any/mdcommsg.h b/lib/libc/include/any-windows-any/mdcommsg.h similarity index 100% rename from libc/include/any-windows-any/mdcommsg.h rename to lib/libc/include/any-windows-any/mdcommsg.h diff --git a/libc/include/any-windows-any/mddefw.h b/lib/libc/include/any-windows-any/mddefw.h similarity index 100% rename from libc/include/any-windows-any/mddefw.h rename to lib/libc/include/any-windows-any/mddefw.h diff --git a/libc/include/any-windows-any/mdhcp.h b/lib/libc/include/any-windows-any/mdhcp.h similarity index 100% rename from libc/include/any-windows-any/mdhcp.h rename to lib/libc/include/any-windows-any/mdhcp.h diff --git a/libc/include/any-windows-any/mdmsg.h b/lib/libc/include/any-windows-any/mdmsg.h similarity index 100% rename from libc/include/any-windows-any/mdmsg.h rename to lib/libc/include/any-windows-any/mdmsg.h diff --git a/libc/include/any-windows-any/mediaerr.h b/lib/libc/include/any-windows-any/mediaerr.h similarity index 100% rename from libc/include/any-windows-any/mediaerr.h rename to lib/libc/include/any-windows-any/mediaerr.h diff --git a/libc/include/any-windows-any/mediaobj.h b/lib/libc/include/any-windows-any/mediaobj.h similarity index 100% rename from libc/include/any-windows-any/mediaobj.h rename to lib/libc/include/any-windows-any/mediaobj.h diff --git a/libc/include/any-windows-any/mediaobj.idl b/lib/libc/include/any-windows-any/mediaobj.idl similarity index 100% rename from libc/include/any-windows-any/mediaobj.idl rename to lib/libc/include/any-windows-any/mediaobj.idl diff --git a/libc/include/any-windows-any/medparam.h b/lib/libc/include/any-windows-any/medparam.h similarity index 100% rename from libc/include/any-windows-any/medparam.h rename to lib/libc/include/any-windows-any/medparam.h diff --git a/libc/include/any-windows-any/medparam.idl b/lib/libc/include/any-windows-any/medparam.idl similarity index 100% rename from libc/include/any-windows-any/medparam.idl rename to lib/libc/include/any-windows-any/medparam.idl diff --git a/libc/include/any-windows-any/mem.h b/lib/libc/include/any-windows-any/mem.h similarity index 100% rename from libc/include/any-windows-any/mem.h rename to lib/libc/include/any-windows-any/mem.h diff --git a/libc/include/any-windows-any/memory.h b/lib/libc/include/any-windows-any/memory.h similarity index 100% rename from libc/include/any-windows-any/memory.h rename to lib/libc/include/any-windows-any/memory.h diff --git a/libc/include/any-windows-any/memoryapi.h b/lib/libc/include/any-windows-any/memoryapi.h similarity index 100% rename from libc/include/any-windows-any/memoryapi.h rename to lib/libc/include/any-windows-any/memoryapi.h diff --git a/libc/include/any-windows-any/mergemod.h b/lib/libc/include/any-windows-any/mergemod.h similarity index 100% rename from libc/include/any-windows-any/mergemod.h rename to lib/libc/include/any-windows-any/mergemod.h diff --git a/libc/include/any-windows-any/mfapi.h b/lib/libc/include/any-windows-any/mfapi.h similarity index 100% rename from libc/include/any-windows-any/mfapi.h rename to lib/libc/include/any-windows-any/mfapi.h diff --git a/libc/include/any-windows-any/mferror.h b/lib/libc/include/any-windows-any/mferror.h similarity index 100% rename from libc/include/any-windows-any/mferror.h rename to lib/libc/include/any-windows-any/mferror.h diff --git a/libc/include/any-windows-any/mfidl.h b/lib/libc/include/any-windows-any/mfidl.h similarity index 100% rename from libc/include/any-windows-any/mfidl.h rename to lib/libc/include/any-windows-any/mfidl.h diff --git a/libc/include/any-windows-any/mfmp2dlna.h b/lib/libc/include/any-windows-any/mfmp2dlna.h similarity index 100% rename from libc/include/any-windows-any/mfmp2dlna.h rename to lib/libc/include/any-windows-any/mfmp2dlna.h diff --git a/libc/include/any-windows-any/mfobjects.h b/lib/libc/include/any-windows-any/mfobjects.h similarity index 100% rename from libc/include/any-windows-any/mfobjects.h rename to lib/libc/include/any-windows-any/mfobjects.h diff --git a/libc/include/any-windows-any/mfplay.h b/lib/libc/include/any-windows-any/mfplay.h similarity index 100% rename from libc/include/any-windows-any/mfplay.h rename to lib/libc/include/any-windows-any/mfplay.h diff --git a/libc/include/any-windows-any/mfreadwrite.h b/lib/libc/include/any-windows-any/mfreadwrite.h similarity index 100% rename from libc/include/any-windows-any/mfreadwrite.h rename to lib/libc/include/any-windows-any/mfreadwrite.h diff --git a/libc/include/any-windows-any/mftransform.h b/lib/libc/include/any-windows-any/mftransform.h similarity index 100% rename from libc/include/any-windows-any/mftransform.h rename to lib/libc/include/any-windows-any/mftransform.h diff --git a/libc/include/any-windows-any/mgm.h b/lib/libc/include/any-windows-any/mgm.h similarity index 100% rename from libc/include/any-windows-any/mgm.h rename to lib/libc/include/any-windows-any/mgm.h diff --git a/libc/include/any-windows-any/mgmtapi.h b/lib/libc/include/any-windows-any/mgmtapi.h similarity index 100% rename from libc/include/any-windows-any/mgmtapi.h rename to lib/libc/include/any-windows-any/mgmtapi.h diff --git a/libc/include/any-windows-any/midles.h b/lib/libc/include/any-windows-any/midles.h similarity index 100% rename from libc/include/any-windows-any/midles.h rename to lib/libc/include/any-windows-any/midles.h diff --git a/libc/include/any-windows-any/mimedisp.h b/lib/libc/include/any-windows-any/mimedisp.h similarity index 100% rename from libc/include/any-windows-any/mimedisp.h rename to lib/libc/include/any-windows-any/mimedisp.h diff --git a/libc/include/any-windows-any/mimeinfo.h b/lib/libc/include/any-windows-any/mimeinfo.h similarity index 100% rename from libc/include/any-windows-any/mimeinfo.h rename to lib/libc/include/any-windows-any/mimeinfo.h diff --git a/libc/include/any-windows-any/minmax.h b/lib/libc/include/any-windows-any/minmax.h similarity index 100% rename from libc/include/any-windows-any/minmax.h rename to lib/libc/include/any-windows-any/minmax.h diff --git a/libc/include/any-windows-any/minwinbase.h b/lib/libc/include/any-windows-any/minwinbase.h similarity index 100% rename from libc/include/any-windows-any/minwinbase.h rename to lib/libc/include/any-windows-any/minwinbase.h diff --git a/libc/include/any-windows-any/minwindef.h b/lib/libc/include/any-windows-any/minwindef.h similarity index 100% rename from libc/include/any-windows-any/minwindef.h rename to lib/libc/include/any-windows-any/minwindef.h diff --git a/libc/include/any-windows-any/mlang.h b/lib/libc/include/any-windows-any/mlang.h similarity index 100% rename from libc/include/any-windows-any/mlang.h rename to lib/libc/include/any-windows-any/mlang.h diff --git a/libc/include/any-windows-any/mmc.h b/lib/libc/include/any-windows-any/mmc.h similarity index 100% rename from libc/include/any-windows-any/mmc.h rename to lib/libc/include/any-windows-any/mmc.h diff --git a/libc/include/any-windows-any/mmcobj.h b/lib/libc/include/any-windows-any/mmcobj.h similarity index 100% rename from libc/include/any-windows-any/mmcobj.h rename to lib/libc/include/any-windows-any/mmcobj.h diff --git a/libc/include/any-windows-any/mmdeviceapi.h b/lib/libc/include/any-windows-any/mmdeviceapi.h similarity index 100% rename from libc/include/any-windows-any/mmdeviceapi.h rename to lib/libc/include/any-windows-any/mmdeviceapi.h diff --git a/libc/include/any-windows-any/mmreg.h b/lib/libc/include/any-windows-any/mmreg.h similarity index 100% rename from libc/include/any-windows-any/mmreg.h rename to lib/libc/include/any-windows-any/mmreg.h diff --git a/libc/include/any-windows-any/mmstream.h b/lib/libc/include/any-windows-any/mmstream.h similarity index 100% rename from libc/include/any-windows-any/mmstream.h rename to lib/libc/include/any-windows-any/mmstream.h diff --git a/libc/include/any-windows-any/mmstream.idl b/lib/libc/include/any-windows-any/mmstream.idl similarity index 100% rename from libc/include/any-windows-any/mmstream.idl rename to lib/libc/include/any-windows-any/mmstream.idl diff --git a/libc/include/any-windows-any/mmsystem.h b/lib/libc/include/any-windows-any/mmsystem.h similarity index 100% rename from libc/include/any-windows-any/mmsystem.h rename to lib/libc/include/any-windows-any/mmsystem.h diff --git a/libc/include/any-windows-any/mobsync.h b/lib/libc/include/any-windows-any/mobsync.h similarity index 100% rename from libc/include/any-windows-any/mobsync.h rename to lib/libc/include/any-windows-any/mobsync.h diff --git a/libc/include/any-windows-any/moniker.h b/lib/libc/include/any-windows-any/moniker.h similarity index 100% rename from libc/include/any-windows-any/moniker.h rename to lib/libc/include/any-windows-any/moniker.h diff --git a/libc/include/any-windows-any/mpeg2bits.h b/lib/libc/include/any-windows-any/mpeg2bits.h similarity index 100% rename from libc/include/any-windows-any/mpeg2bits.h rename to lib/libc/include/any-windows-any/mpeg2bits.h diff --git a/libc/include/any-windows-any/mpeg2data.h b/lib/libc/include/any-windows-any/mpeg2data.h similarity index 100% rename from libc/include/any-windows-any/mpeg2data.h rename to lib/libc/include/any-windows-any/mpeg2data.h diff --git a/libc/include/any-windows-any/mpeg2psiparser.h b/lib/libc/include/any-windows-any/mpeg2psiparser.h similarity index 100% rename from libc/include/any-windows-any/mpeg2psiparser.h rename to lib/libc/include/any-windows-any/mpeg2psiparser.h diff --git a/libc/include/any-windows-any/mpeg2structs.h b/lib/libc/include/any-windows-any/mpeg2structs.h similarity index 100% rename from libc/include/any-windows-any/mpeg2structs.h rename to lib/libc/include/any-windows-any/mpeg2structs.h diff --git a/libc/include/any-windows-any/mprapi.h b/lib/libc/include/any-windows-any/mprapi.h similarity index 100% rename from libc/include/any-windows-any/mprapi.h rename to lib/libc/include/any-windows-any/mprapi.h diff --git a/libc/include/any-windows-any/mprerror.h b/lib/libc/include/any-windows-any/mprerror.h similarity index 100% rename from libc/include/any-windows-any/mprerror.h rename to lib/libc/include/any-windows-any/mprerror.h diff --git a/libc/include/any-windows-any/mq.h b/lib/libc/include/any-windows-any/mq.h similarity index 100% rename from libc/include/any-windows-any/mq.h rename to lib/libc/include/any-windows-any/mq.h diff --git a/libc/include/any-windows-any/mqmail.h b/lib/libc/include/any-windows-any/mqmail.h similarity index 100% rename from libc/include/any-windows-any/mqmail.h rename to lib/libc/include/any-windows-any/mqmail.h diff --git a/libc/include/any-windows-any/mqoai.h b/lib/libc/include/any-windows-any/mqoai.h similarity index 100% rename from libc/include/any-windows-any/mqoai.h rename to lib/libc/include/any-windows-any/mqoai.h diff --git a/libc/include/any-windows-any/msacm.h b/lib/libc/include/any-windows-any/msacm.h similarity index 100% rename from libc/include/any-windows-any/msacm.h rename to lib/libc/include/any-windows-any/msacm.h diff --git a/libc/include/any-windows-any/msacmdlg.dlg b/lib/libc/include/any-windows-any/msacmdlg.dlg similarity index 100% rename from libc/include/any-windows-any/msacmdlg.dlg rename to lib/libc/include/any-windows-any/msacmdlg.dlg diff --git a/libc/include/any-windows-any/msacmdlg.h b/lib/libc/include/any-windows-any/msacmdlg.h similarity index 100% rename from libc/include/any-windows-any/msacmdlg.h rename to lib/libc/include/any-windows-any/msacmdlg.h diff --git a/libc/include/any-windows-any/msado15.h b/lib/libc/include/any-windows-any/msado15.h similarity index 100% rename from libc/include/any-windows-any/msado15.h rename to lib/libc/include/any-windows-any/msado15.h diff --git a/libc/include/any-windows-any/msasn1.h b/lib/libc/include/any-windows-any/msasn1.h similarity index 100% rename from libc/include/any-windows-any/msasn1.h rename to lib/libc/include/any-windows-any/msasn1.h diff --git a/libc/include/any-windows-any/msber.h b/lib/libc/include/any-windows-any/msber.h similarity index 100% rename from libc/include/any-windows-any/msber.h rename to lib/libc/include/any-windows-any/msber.h diff --git a/libc/include/any-windows-any/mscat.h b/lib/libc/include/any-windows-any/mscat.h similarity index 100% rename from libc/include/any-windows-any/mscat.h rename to lib/libc/include/any-windows-any/mscat.h diff --git a/libc/include/any-windows-any/mschapp.h b/lib/libc/include/any-windows-any/mschapp.h similarity index 100% rename from libc/include/any-windows-any/mschapp.h rename to lib/libc/include/any-windows-any/mschapp.h diff --git a/libc/include/any-windows-any/msclus.h b/lib/libc/include/any-windows-any/msclus.h similarity index 100% rename from libc/include/any-windows-any/msclus.h rename to lib/libc/include/any-windows-any/msclus.h diff --git a/libc/include/any-windows-any/mscoree.h b/lib/libc/include/any-windows-any/mscoree.h similarity index 100% rename from libc/include/any-windows-any/mscoree.h rename to lib/libc/include/any-windows-any/mscoree.h diff --git a/libc/include/any-windows-any/msctf.h b/lib/libc/include/any-windows-any/msctf.h similarity index 100% rename from libc/include/any-windows-any/msctf.h rename to lib/libc/include/any-windows-any/msctf.h diff --git a/libc/include/any-windows-any/msctfmonitorapi.h b/lib/libc/include/any-windows-any/msctfmonitorapi.h similarity index 100% rename from libc/include/any-windows-any/msctfmonitorapi.h rename to lib/libc/include/any-windows-any/msctfmonitorapi.h diff --git a/libc/include/any-windows-any/msdadc.h b/lib/libc/include/any-windows-any/msdadc.h similarity index 100% rename from libc/include/any-windows-any/msdadc.h rename to lib/libc/include/any-windows-any/msdadc.h diff --git a/libc/include/any-windows-any/msdaguid.h b/lib/libc/include/any-windows-any/msdaguid.h similarity index 100% rename from libc/include/any-windows-any/msdaguid.h rename to lib/libc/include/any-windows-any/msdaguid.h diff --git a/libc/include/any-windows-any/msdaipp.h b/lib/libc/include/any-windows-any/msdaipp.h similarity index 100% rename from libc/include/any-windows-any/msdaipp.h rename to lib/libc/include/any-windows-any/msdaipp.h diff --git a/libc/include/any-windows-any/msdaipper.h b/lib/libc/include/any-windows-any/msdaipper.h similarity index 100% rename from libc/include/any-windows-any/msdaipper.h rename to lib/libc/include/any-windows-any/msdaipper.h diff --git a/libc/include/any-windows-any/msdaora.h b/lib/libc/include/any-windows-any/msdaora.h similarity index 100% rename from libc/include/any-windows-any/msdaora.h rename to lib/libc/include/any-windows-any/msdaora.h diff --git a/libc/include/any-windows-any/msdaosp.h b/lib/libc/include/any-windows-any/msdaosp.h similarity index 100% rename from libc/include/any-windows-any/msdaosp.h rename to lib/libc/include/any-windows-any/msdaosp.h diff --git a/libc/include/any-windows-any/msdasc.h b/lib/libc/include/any-windows-any/msdasc.h similarity index 100% rename from libc/include/any-windows-any/msdasc.h rename to lib/libc/include/any-windows-any/msdasc.h diff --git a/libc/include/any-windows-any/msdasql.h b/lib/libc/include/any-windows-any/msdasql.h similarity index 100% rename from libc/include/any-windows-any/msdasql.h rename to lib/libc/include/any-windows-any/msdasql.h diff --git a/libc/include/any-windows-any/msdatsrc.h b/lib/libc/include/any-windows-any/msdatsrc.h similarity index 100% rename from libc/include/any-windows-any/msdatsrc.h rename to lib/libc/include/any-windows-any/msdatsrc.h diff --git a/libc/include/any-windows-any/msdrm.h b/lib/libc/include/any-windows-any/msdrm.h similarity index 100% rename from libc/include/any-windows-any/msdrm.h rename to lib/libc/include/any-windows-any/msdrm.h diff --git a/libc/include/any-windows-any/msdrmdefs.h b/lib/libc/include/any-windows-any/msdrmdefs.h similarity index 100% rename from libc/include/any-windows-any/msdrmdefs.h rename to lib/libc/include/any-windows-any/msdrmdefs.h diff --git a/libc/include/any-windows-any/msdshape.h b/lib/libc/include/any-windows-any/msdshape.h similarity index 100% rename from libc/include/any-windows-any/msdshape.h rename to lib/libc/include/any-windows-any/msdshape.h diff --git a/libc/include/any-windows-any/msfs.h b/lib/libc/include/any-windows-any/msfs.h similarity index 100% rename from libc/include/any-windows-any/msfs.h rename to lib/libc/include/any-windows-any/msfs.h diff --git a/libc/include/any-windows-any/mshtmcid.h b/lib/libc/include/any-windows-any/mshtmcid.h similarity index 100% rename from libc/include/any-windows-any/mshtmcid.h rename to lib/libc/include/any-windows-any/mshtmcid.h diff --git a/libc/include/any-windows-any/mshtmdid.h b/lib/libc/include/any-windows-any/mshtmdid.h similarity index 100% rename from libc/include/any-windows-any/mshtmdid.h rename to lib/libc/include/any-windows-any/mshtmdid.h diff --git a/libc/include/any-windows-any/mshtmhst.h b/lib/libc/include/any-windows-any/mshtmhst.h similarity index 100% rename from libc/include/any-windows-any/mshtmhst.h rename to lib/libc/include/any-windows-any/mshtmhst.h diff --git a/libc/include/any-windows-any/mshtml.h b/lib/libc/include/any-windows-any/mshtml.h similarity index 100% rename from libc/include/any-windows-any/mshtml.h rename to lib/libc/include/any-windows-any/mshtml.h diff --git a/libc/include/any-windows-any/mshtmlc.h b/lib/libc/include/any-windows-any/mshtmlc.h similarity index 100% rename from libc/include/any-windows-any/mshtmlc.h rename to lib/libc/include/any-windows-any/mshtmlc.h diff --git a/libc/include/any-windows-any/msi.h b/lib/libc/include/any-windows-any/msi.h similarity index 100% rename from libc/include/any-windows-any/msi.h rename to lib/libc/include/any-windows-any/msi.h diff --git a/libc/include/any-windows-any/msidefs.h b/lib/libc/include/any-windows-any/msidefs.h similarity index 100% rename from libc/include/any-windows-any/msidefs.h rename to lib/libc/include/any-windows-any/msidefs.h diff --git a/libc/include/any-windows-any/msimcntl.h b/lib/libc/include/any-windows-any/msimcntl.h similarity index 100% rename from libc/include/any-windows-any/msimcntl.h rename to lib/libc/include/any-windows-any/msimcntl.h diff --git a/libc/include/any-windows-any/msimcsdk.h b/lib/libc/include/any-windows-any/msimcsdk.h similarity index 100% rename from libc/include/any-windows-any/msimcsdk.h rename to lib/libc/include/any-windows-any/msimcsdk.h diff --git a/libc/include/any-windows-any/msinkaut.h b/lib/libc/include/any-windows-any/msinkaut.h similarity index 100% rename from libc/include/any-windows-any/msinkaut.h rename to lib/libc/include/any-windows-any/msinkaut.h diff --git a/libc/include/any-windows-any/msinkaut_i.c b/lib/libc/include/any-windows-any/msinkaut_i.c similarity index 100% rename from libc/include/any-windows-any/msinkaut_i.c rename to lib/libc/include/any-windows-any/msinkaut_i.c diff --git a/libc/include/any-windows-any/msiquery.h b/lib/libc/include/any-windows-any/msiquery.h similarity index 100% rename from libc/include/any-windows-any/msiquery.h rename to lib/libc/include/any-windows-any/msiquery.h diff --git a/libc/include/any-windows-any/msoav.h b/lib/libc/include/any-windows-any/msoav.h similarity index 100% rename from libc/include/any-windows-any/msoav.h rename to lib/libc/include/any-windows-any/msoav.h diff --git a/libc/include/any-windows-any/msopc.h b/lib/libc/include/any-windows-any/msopc.h similarity index 100% rename from libc/include/any-windows-any/msopc.h rename to lib/libc/include/any-windows-any/msopc.h diff --git a/libc/include/any-windows-any/msp.h b/lib/libc/include/any-windows-any/msp.h similarity index 100% rename from libc/include/any-windows-any/msp.h rename to lib/libc/include/any-windows-any/msp.h diff --git a/libc/include/any-windows-any/mspab.h b/lib/libc/include/any-windows-any/mspab.h similarity index 100% rename from libc/include/any-windows-any/mspab.h rename to lib/libc/include/any-windows-any/mspab.h diff --git a/libc/include/any-windows-any/mspaddr.h b/lib/libc/include/any-windows-any/mspaddr.h similarity index 100% rename from libc/include/any-windows-any/mspaddr.h rename to lib/libc/include/any-windows-any/mspaddr.h diff --git a/libc/include/any-windows-any/mspbase.h b/lib/libc/include/any-windows-any/mspbase.h similarity index 100% rename from libc/include/any-windows-any/mspbase.h rename to lib/libc/include/any-windows-any/mspbase.h diff --git a/libc/include/any-windows-any/mspcall.h b/lib/libc/include/any-windows-any/mspcall.h similarity index 100% rename from libc/include/any-windows-any/mspcall.h rename to lib/libc/include/any-windows-any/mspcall.h diff --git a/libc/include/any-windows-any/mspcoll.h b/lib/libc/include/any-windows-any/mspcoll.h similarity index 100% rename from libc/include/any-windows-any/mspcoll.h rename to lib/libc/include/any-windows-any/mspcoll.h diff --git a/libc/include/any-windows-any/mspenum.h b/lib/libc/include/any-windows-any/mspenum.h similarity index 100% rename from libc/include/any-windows-any/mspenum.h rename to lib/libc/include/any-windows-any/mspenum.h diff --git a/libc/include/any-windows-any/msplog.h b/lib/libc/include/any-windows-any/msplog.h similarity index 100% rename from libc/include/any-windows-any/msplog.h rename to lib/libc/include/any-windows-any/msplog.h diff --git a/libc/include/any-windows-any/mspst.h b/lib/libc/include/any-windows-any/mspst.h similarity index 100% rename from libc/include/any-windows-any/mspst.h rename to lib/libc/include/any-windows-any/mspst.h diff --git a/libc/include/any-windows-any/mspstrm.h b/lib/libc/include/any-windows-any/mspstrm.h similarity index 100% rename from libc/include/any-windows-any/mspstrm.h rename to lib/libc/include/any-windows-any/mspstrm.h diff --git a/libc/include/any-windows-any/mspterm.h b/lib/libc/include/any-windows-any/mspterm.h similarity index 100% rename from libc/include/any-windows-any/mspterm.h rename to lib/libc/include/any-windows-any/mspterm.h diff --git a/libc/include/any-windows-any/mspthrd.h b/lib/libc/include/any-windows-any/mspthrd.h similarity index 100% rename from libc/include/any-windows-any/mspthrd.h rename to lib/libc/include/any-windows-any/mspthrd.h diff --git a/libc/include/any-windows-any/msptrmac.h b/lib/libc/include/any-windows-any/msptrmac.h similarity index 100% rename from libc/include/any-windows-any/msptrmac.h rename to lib/libc/include/any-windows-any/msptrmac.h diff --git a/libc/include/any-windows-any/msptrmar.h b/lib/libc/include/any-windows-any/msptrmar.h similarity index 100% rename from libc/include/any-windows-any/msptrmar.h rename to lib/libc/include/any-windows-any/msptrmar.h diff --git a/libc/include/any-windows-any/msptrmvc.h b/lib/libc/include/any-windows-any/msptrmvc.h similarity index 100% rename from libc/include/any-windows-any/msptrmvc.h rename to lib/libc/include/any-windows-any/msptrmvc.h diff --git a/libc/include/any-windows-any/msputils.h b/lib/libc/include/any-windows-any/msputils.h similarity index 100% rename from libc/include/any-windows-any/msputils.h rename to lib/libc/include/any-windows-any/msputils.h diff --git a/libc/include/any-windows-any/msrdc.h b/lib/libc/include/any-windows-any/msrdc.h similarity index 100% rename from libc/include/any-windows-any/msrdc.h rename to lib/libc/include/any-windows-any/msrdc.h diff --git a/libc/include/any-windows-any/msremote.h b/lib/libc/include/any-windows-any/msremote.h similarity index 100% rename from libc/include/any-windows-any/msremote.h rename to lib/libc/include/any-windows-any/msremote.h diff --git a/libc/include/any-windows-any/mssip.h b/lib/libc/include/any-windows-any/mssip.h similarity index 100% rename from libc/include/any-windows-any/mssip.h rename to lib/libc/include/any-windows-any/mssip.h diff --git a/libc/include/any-windows-any/msstkppg.h b/lib/libc/include/any-windows-any/msstkppg.h similarity index 100% rename from libc/include/any-windows-any/msstkppg.h rename to lib/libc/include/any-windows-any/msstkppg.h diff --git a/libc/include/any-windows-any/mstask.h b/lib/libc/include/any-windows-any/mstask.h similarity index 100% rename from libc/include/any-windows-any/mstask.h rename to lib/libc/include/any-windows-any/mstask.h diff --git a/libc/include/any-windows-any/mstcpip.h b/lib/libc/include/any-windows-any/mstcpip.h similarity index 100% rename from libc/include/any-windows-any/mstcpip.h rename to lib/libc/include/any-windows-any/mstcpip.h diff --git a/libc/include/any-windows-any/msterr.h b/lib/libc/include/any-windows-any/msterr.h similarity index 100% rename from libc/include/any-windows-any/msterr.h rename to lib/libc/include/any-windows-any/msterr.h diff --git a/libc/include/any-windows-any/mswsock.h b/lib/libc/include/any-windows-any/mswsock.h similarity index 100% rename from libc/include/any-windows-any/mswsock.h rename to lib/libc/include/any-windows-any/mswsock.h diff --git a/libc/include/any-windows-any/msxml.h b/lib/libc/include/any-windows-any/msxml.h similarity index 100% rename from libc/include/any-windows-any/msxml.h rename to lib/libc/include/any-windows-any/msxml.h diff --git a/libc/include/any-windows-any/msxml2.h b/lib/libc/include/any-windows-any/msxml2.h similarity index 100% rename from libc/include/any-windows-any/msxml2.h rename to lib/libc/include/any-windows-any/msxml2.h diff --git a/libc/include/any-windows-any/msxml2did.h b/lib/libc/include/any-windows-any/msxml2did.h similarity index 100% rename from libc/include/any-windows-any/msxml2did.h rename to lib/libc/include/any-windows-any/msxml2did.h diff --git a/libc/include/any-windows-any/msxmldid.h b/lib/libc/include/any-windows-any/msxmldid.h similarity index 100% rename from libc/include/any-windows-any/msxmldid.h rename to lib/libc/include/any-windows-any/msxmldid.h diff --git a/libc/include/any-windows-any/mtsadmin.h b/lib/libc/include/any-windows-any/mtsadmin.h similarity index 100% rename from libc/include/any-windows-any/mtsadmin.h rename to lib/libc/include/any-windows-any/mtsadmin.h diff --git a/libc/include/any-windows-any/mtsevents.h b/lib/libc/include/any-windows-any/mtsevents.h similarity index 100% rename from libc/include/any-windows-any/mtsevents.h rename to lib/libc/include/any-windows-any/mtsevents.h diff --git a/libc/include/any-windows-any/mtsgrp.h b/lib/libc/include/any-windows-any/mtsgrp.h similarity index 100% rename from libc/include/any-windows-any/mtsgrp.h rename to lib/libc/include/any-windows-any/mtsgrp.h diff --git a/libc/include/any-windows-any/mtx.h b/lib/libc/include/any-windows-any/mtx.h similarity index 100% rename from libc/include/any-windows-any/mtx.h rename to lib/libc/include/any-windows-any/mtx.h diff --git a/libc/include/any-windows-any/mtxadmin.h b/lib/libc/include/any-windows-any/mtxadmin.h similarity index 100% rename from libc/include/any-windows-any/mtxadmin.h rename to lib/libc/include/any-windows-any/mtxadmin.h diff --git a/libc/include/any-windows-any/mtxattr.h b/lib/libc/include/any-windows-any/mtxattr.h similarity index 100% rename from libc/include/any-windows-any/mtxattr.h rename to lib/libc/include/any-windows-any/mtxattr.h diff --git a/libc/include/any-windows-any/mtxdm.h b/lib/libc/include/any-windows-any/mtxdm.h similarity index 100% rename from libc/include/any-windows-any/mtxdm.h rename to lib/libc/include/any-windows-any/mtxdm.h diff --git a/libc/include/any-windows-any/muiload.h b/lib/libc/include/any-windows-any/muiload.h similarity index 100% rename from libc/include/any-windows-any/muiload.h rename to lib/libc/include/any-windows-any/muiload.h diff --git a/libc/include/any-windows-any/multimon.h b/lib/libc/include/any-windows-any/multimon.h similarity index 100% rename from libc/include/any-windows-any/multimon.h rename to lib/libc/include/any-windows-any/multimon.h diff --git a/libc/include/any-windows-any/multinfo.h b/lib/libc/include/any-windows-any/multinfo.h similarity index 100% rename from libc/include/any-windows-any/multinfo.h rename to lib/libc/include/any-windows-any/multinfo.h diff --git a/libc/include/any-windows-any/mxdc.h b/lib/libc/include/any-windows-any/mxdc.h similarity index 100% rename from libc/include/any-windows-any/mxdc.h rename to lib/libc/include/any-windows-any/mxdc.h diff --git a/libc/include/any-windows-any/namedpipeapi.h b/lib/libc/include/any-windows-any/namedpipeapi.h similarity index 100% rename from libc/include/any-windows-any/namedpipeapi.h rename to lib/libc/include/any-windows-any/namedpipeapi.h diff --git a/libc/include/any-windows-any/namespaceapi.h b/lib/libc/include/any-windows-any/namespaceapi.h similarity index 100% rename from libc/include/any-windows-any/namespaceapi.h rename to lib/libc/include/any-windows-any/namespaceapi.h diff --git a/libc/include/any-windows-any/napcertrelyingparty.h b/lib/libc/include/any-windows-any/napcertrelyingparty.h similarity index 100% rename from libc/include/any-windows-any/napcertrelyingparty.h rename to lib/libc/include/any-windows-any/napcertrelyingparty.h diff --git a/libc/include/any-windows-any/napcommon.h b/lib/libc/include/any-windows-any/napcommon.h similarity index 100% rename from libc/include/any-windows-any/napcommon.h rename to lib/libc/include/any-windows-any/napcommon.h diff --git a/libc/include/any-windows-any/napenforcementclient.h b/lib/libc/include/any-windows-any/napenforcementclient.h similarity index 100% rename from libc/include/any-windows-any/napenforcementclient.h rename to lib/libc/include/any-windows-any/napenforcementclient.h diff --git a/libc/include/any-windows-any/napmanagement.h b/lib/libc/include/any-windows-any/napmanagement.h similarity index 100% rename from libc/include/any-windows-any/napmanagement.h rename to lib/libc/include/any-windows-any/napmanagement.h diff --git a/libc/include/any-windows-any/napmicrosoftvendorids.h b/lib/libc/include/any-windows-any/napmicrosoftvendorids.h similarity index 100% rename from libc/include/any-windows-any/napmicrosoftvendorids.h rename to lib/libc/include/any-windows-any/napmicrosoftvendorids.h diff --git a/libc/include/any-windows-any/napprotocol.h b/lib/libc/include/any-windows-any/napprotocol.h similarity index 100% rename from libc/include/any-windows-any/napprotocol.h rename to lib/libc/include/any-windows-any/napprotocol.h diff --git a/libc/include/any-windows-any/napservermanagement.h b/lib/libc/include/any-windows-any/napservermanagement.h similarity index 100% rename from libc/include/any-windows-any/napservermanagement.h rename to lib/libc/include/any-windows-any/napservermanagement.h diff --git a/libc/include/any-windows-any/napsystemhealthagent.h b/lib/libc/include/any-windows-any/napsystemhealthagent.h similarity index 100% rename from libc/include/any-windows-any/napsystemhealthagent.h rename to lib/libc/include/any-windows-any/napsystemhealthagent.h diff --git a/libc/include/any-windows-any/napsystemhealthvalidator.h b/lib/libc/include/any-windows-any/napsystemhealthvalidator.h similarity index 100% rename from libc/include/any-windows-any/napsystemhealthvalidator.h rename to lib/libc/include/any-windows-any/napsystemhealthvalidator.h diff --git a/libc/include/any-windows-any/naptypes.h b/lib/libc/include/any-windows-any/naptypes.h similarity index 100% rename from libc/include/any-windows-any/naptypes.h rename to lib/libc/include/any-windows-any/naptypes.h diff --git a/libc/include/any-windows-any/naputil.h b/lib/libc/include/any-windows-any/naputil.h similarity index 100% rename from libc/include/any-windows-any/naputil.h rename to lib/libc/include/any-windows-any/naputil.h diff --git a/libc/include/any-windows-any/nb30.h b/lib/libc/include/any-windows-any/nb30.h similarity index 100% rename from libc/include/any-windows-any/nb30.h rename to lib/libc/include/any-windows-any/nb30.h diff --git a/libc/include/any-windows-any/ncrypt.h b/lib/libc/include/any-windows-any/ncrypt.h similarity index 100% rename from libc/include/any-windows-any/ncrypt.h rename to lib/libc/include/any-windows-any/ncrypt.h diff --git a/libc/include/any-windows-any/ndattrib.h b/lib/libc/include/any-windows-any/ndattrib.h similarity index 100% rename from libc/include/any-windows-any/ndattrib.h rename to lib/libc/include/any-windows-any/ndattrib.h diff --git a/libc/include/any-windows-any/ndfapi.h b/lib/libc/include/any-windows-any/ndfapi.h similarity index 100% rename from libc/include/any-windows-any/ndfapi.h rename to lib/libc/include/any-windows-any/ndfapi.h diff --git a/libc/include/any-windows-any/ndhelper.h b/lib/libc/include/any-windows-any/ndhelper.h similarity index 100% rename from libc/include/any-windows-any/ndhelper.h rename to lib/libc/include/any-windows-any/ndhelper.h diff --git a/libc/include/any-windows-any/ndkinfo.h b/lib/libc/include/any-windows-any/ndkinfo.h similarity index 100% rename from libc/include/any-windows-any/ndkinfo.h rename to lib/libc/include/any-windows-any/ndkinfo.h diff --git a/libc/include/any-windows-any/ndr64types.h b/lib/libc/include/any-windows-any/ndr64types.h similarity index 100% rename from libc/include/any-windows-any/ndr64types.h rename to lib/libc/include/any-windows-any/ndr64types.h diff --git a/libc/include/any-windows-any/ndrtypes.h b/lib/libc/include/any-windows-any/ndrtypes.h similarity index 100% rename from libc/include/any-windows-any/ndrtypes.h rename to lib/libc/include/any-windows-any/ndrtypes.h diff --git a/libc/include/any-windows-any/netcon.h b/lib/libc/include/any-windows-any/netcon.h similarity index 100% rename from libc/include/any-windows-any/netcon.h rename to lib/libc/include/any-windows-any/netcon.h diff --git a/libc/include/any-windows-any/neterr.h b/lib/libc/include/any-windows-any/neterr.h similarity index 100% rename from libc/include/any-windows-any/neterr.h rename to lib/libc/include/any-windows-any/neterr.h diff --git a/libc/include/any-windows-any/netevent.h b/lib/libc/include/any-windows-any/netevent.h similarity index 100% rename from libc/include/any-windows-any/netevent.h rename to lib/libc/include/any-windows-any/netevent.h diff --git a/libc/include/any-windows-any/netfw.h b/lib/libc/include/any-windows-any/netfw.h similarity index 100% rename from libc/include/any-windows-any/netfw.h rename to lib/libc/include/any-windows-any/netfw.h diff --git a/libc/include/any-windows-any/netioapi.h b/lib/libc/include/any-windows-any/netioapi.h similarity index 100% rename from libc/include/any-windows-any/netioapi.h rename to lib/libc/include/any-windows-any/netioapi.h diff --git a/libc/include/any-windows-any/netlistmgr.h b/lib/libc/include/any-windows-any/netlistmgr.h similarity index 100% rename from libc/include/any-windows-any/netlistmgr.h rename to lib/libc/include/any-windows-any/netlistmgr.h diff --git a/libc/include/any-windows-any/netmon.h b/lib/libc/include/any-windows-any/netmon.h similarity index 100% rename from libc/include/any-windows-any/netmon.h rename to lib/libc/include/any-windows-any/netmon.h diff --git a/libc/include/any-windows-any/netprov.h b/lib/libc/include/any-windows-any/netprov.h similarity index 100% rename from libc/include/any-windows-any/netprov.h rename to lib/libc/include/any-windows-any/netprov.h diff --git a/libc/include/any-windows-any/nettypes.h b/lib/libc/include/any-windows-any/nettypes.h similarity index 100% rename from libc/include/any-windows-any/nettypes.h rename to lib/libc/include/any-windows-any/nettypes.h diff --git a/libc/include/any-windows-any/new.h b/lib/libc/include/any-windows-any/new.h similarity index 100% rename from libc/include/any-windows-any/new.h rename to lib/libc/include/any-windows-any/new.h diff --git a/libc/include/any-windows-any/newapis.h b/lib/libc/include/any-windows-any/newapis.h similarity index 100% rename from libc/include/any-windows-any/newapis.h rename to lib/libc/include/any-windows-any/newapis.h diff --git a/libc/include/any-windows-any/newdev.h b/lib/libc/include/any-windows-any/newdev.h similarity index 100% rename from libc/include/any-windows-any/newdev.h rename to lib/libc/include/any-windows-any/newdev.h diff --git a/libc/include/any-windows-any/nldef.h b/lib/libc/include/any-windows-any/nldef.h similarity index 100% rename from libc/include/any-windows-any/nldef.h rename to lib/libc/include/any-windows-any/nldef.h diff --git a/libc/include/any-windows-any/nmsupp.h b/lib/libc/include/any-windows-any/nmsupp.h similarity index 100% rename from libc/include/any-windows-any/nmsupp.h rename to lib/libc/include/any-windows-any/nmsupp.h diff --git a/libc/include/any-windows-any/npapi.h b/lib/libc/include/any-windows-any/npapi.h similarity index 100% rename from libc/include/any-windows-any/npapi.h rename to lib/libc/include/any-windows-any/npapi.h diff --git a/libc/include/any-windows-any/nsemail.h b/lib/libc/include/any-windows-any/nsemail.h similarity index 100% rename from libc/include/any-windows-any/nsemail.h rename to lib/libc/include/any-windows-any/nsemail.h diff --git a/libc/include/any-windows-any/nspapi.h b/lib/libc/include/any-windows-any/nspapi.h similarity index 100% rename from libc/include/any-windows-any/nspapi.h rename to lib/libc/include/any-windows-any/nspapi.h diff --git a/libc/include/any-windows-any/ntdd1394.h b/lib/libc/include/any-windows-any/ntdd1394.h similarity index 100% rename from libc/include/any-windows-any/ntdd1394.h rename to lib/libc/include/any-windows-any/ntdd1394.h diff --git a/libc/include/any-windows-any/ntdd8042.h b/lib/libc/include/any-windows-any/ntdd8042.h similarity index 100% rename from libc/include/any-windows-any/ntdd8042.h rename to lib/libc/include/any-windows-any/ntdd8042.h diff --git a/libc/include/any-windows-any/ntddbeep.h b/lib/libc/include/any-windows-any/ntddbeep.h similarity index 100% rename from libc/include/any-windows-any/ntddbeep.h rename to lib/libc/include/any-windows-any/ntddbeep.h diff --git a/libc/include/any-windows-any/ntddcdrm.h b/lib/libc/include/any-windows-any/ntddcdrm.h similarity index 100% rename from libc/include/any-windows-any/ntddcdrm.h rename to lib/libc/include/any-windows-any/ntddcdrm.h diff --git a/libc/include/any-windows-any/ntddcdvd.h b/lib/libc/include/any-windows-any/ntddcdvd.h similarity index 100% rename from libc/include/any-windows-any/ntddcdvd.h rename to lib/libc/include/any-windows-any/ntddcdvd.h diff --git a/libc/include/any-windows-any/ntddchgr.h b/lib/libc/include/any-windows-any/ntddchgr.h similarity index 100% rename from libc/include/any-windows-any/ntddchgr.h rename to lib/libc/include/any-windows-any/ntddchgr.h diff --git a/libc/include/any-windows-any/ntdddisk.h b/lib/libc/include/any-windows-any/ntdddisk.h similarity index 100% rename from libc/include/any-windows-any/ntdddisk.h rename to lib/libc/include/any-windows-any/ntdddisk.h diff --git a/libc/include/any-windows-any/ntddft.h b/lib/libc/include/any-windows-any/ntddft.h similarity index 100% rename from libc/include/any-windows-any/ntddft.h rename to lib/libc/include/any-windows-any/ntddft.h diff --git a/libc/include/any-windows-any/ntddkbd.h b/lib/libc/include/any-windows-any/ntddkbd.h similarity index 100% rename from libc/include/any-windows-any/ntddkbd.h rename to lib/libc/include/any-windows-any/ntddkbd.h diff --git a/libc/include/any-windows-any/ntddmmc.h b/lib/libc/include/any-windows-any/ntddmmc.h similarity index 100% rename from libc/include/any-windows-any/ntddmmc.h rename to lib/libc/include/any-windows-any/ntddmmc.h diff --git a/libc/include/any-windows-any/ntddmodm.h b/lib/libc/include/any-windows-any/ntddmodm.h similarity index 100% rename from libc/include/any-windows-any/ntddmodm.h rename to lib/libc/include/any-windows-any/ntddmodm.h diff --git a/libc/include/any-windows-any/ntddmou.h b/lib/libc/include/any-windows-any/ntddmou.h similarity index 100% rename from libc/include/any-windows-any/ntddmou.h rename to lib/libc/include/any-windows-any/ntddmou.h diff --git a/libc/include/any-windows-any/ntddndis.h b/lib/libc/include/any-windows-any/ntddndis.h similarity index 100% rename from libc/include/any-windows-any/ntddndis.h rename to lib/libc/include/any-windows-any/ntddndis.h diff --git a/libc/include/any-windows-any/ntddpar.h b/lib/libc/include/any-windows-any/ntddpar.h similarity index 100% rename from libc/include/any-windows-any/ntddpar.h rename to lib/libc/include/any-windows-any/ntddpar.h diff --git a/libc/include/any-windows-any/ntddpsch.h b/lib/libc/include/any-windows-any/ntddpsch.h similarity index 100% rename from libc/include/any-windows-any/ntddpsch.h rename to lib/libc/include/any-windows-any/ntddpsch.h diff --git a/libc/include/any-windows-any/ntddscsi.h b/lib/libc/include/any-windows-any/ntddscsi.h similarity index 100% rename from libc/include/any-windows-any/ntddscsi.h rename to lib/libc/include/any-windows-any/ntddscsi.h diff --git a/libc/include/any-windows-any/ntddser.h b/lib/libc/include/any-windows-any/ntddser.h similarity index 100% rename from libc/include/any-windows-any/ntddser.h rename to lib/libc/include/any-windows-any/ntddser.h diff --git a/libc/include/any-windows-any/ntddstor.h b/lib/libc/include/any-windows-any/ntddstor.h similarity index 100% rename from libc/include/any-windows-any/ntddstor.h rename to lib/libc/include/any-windows-any/ntddstor.h diff --git a/libc/include/any-windows-any/ntddtape.h b/lib/libc/include/any-windows-any/ntddtape.h similarity index 100% rename from libc/include/any-windows-any/ntddtape.h rename to lib/libc/include/any-windows-any/ntddtape.h diff --git a/libc/include/any-windows-any/ntddtdi.h b/lib/libc/include/any-windows-any/ntddtdi.h similarity index 100% rename from libc/include/any-windows-any/ntddtdi.h rename to lib/libc/include/any-windows-any/ntddtdi.h diff --git a/libc/include/any-windows-any/ntddvdeo.h b/lib/libc/include/any-windows-any/ntddvdeo.h similarity index 100% rename from libc/include/any-windows-any/ntddvdeo.h rename to lib/libc/include/any-windows-any/ntddvdeo.h diff --git a/libc/include/any-windows-any/ntddvol.h b/lib/libc/include/any-windows-any/ntddvol.h similarity index 100% rename from libc/include/any-windows-any/ntddvol.h rename to lib/libc/include/any-windows-any/ntddvol.h diff --git a/libc/include/any-windows-any/ntdef.h b/lib/libc/include/any-windows-any/ntdef.h similarity index 100% rename from libc/include/any-windows-any/ntdef.h rename to lib/libc/include/any-windows-any/ntdef.h diff --git a/libc/include/any-windows-any/ntdsapi.h b/lib/libc/include/any-windows-any/ntdsapi.h similarity index 100% rename from libc/include/any-windows-any/ntdsapi.h rename to lib/libc/include/any-windows-any/ntdsapi.h diff --git a/libc/include/any-windows-any/ntdsbcli.h b/lib/libc/include/any-windows-any/ntdsbcli.h similarity index 100% rename from libc/include/any-windows-any/ntdsbcli.h rename to lib/libc/include/any-windows-any/ntdsbcli.h diff --git a/libc/include/any-windows-any/ntdsbmsg.h b/lib/libc/include/any-windows-any/ntdsbmsg.h similarity index 100% rename from libc/include/any-windows-any/ntdsbmsg.h rename to lib/libc/include/any-windows-any/ntdsbmsg.h diff --git a/libc/include/any-windows-any/ntgdi.h b/lib/libc/include/any-windows-any/ntgdi.h similarity index 100% rename from libc/include/any-windows-any/ntgdi.h rename to lib/libc/include/any-windows-any/ntgdi.h diff --git a/libc/include/any-windows-any/ntiologc.h b/lib/libc/include/any-windows-any/ntiologc.h similarity index 100% rename from libc/include/any-windows-any/ntiologc.h rename to lib/libc/include/any-windows-any/ntiologc.h diff --git a/libc/include/any-windows-any/ntldap.h b/lib/libc/include/any-windows-any/ntldap.h similarity index 100% rename from libc/include/any-windows-any/ntldap.h rename to lib/libc/include/any-windows-any/ntldap.h diff --git a/libc/include/any-windows-any/ntmsapi.h b/lib/libc/include/any-windows-any/ntmsapi.h similarity index 100% rename from libc/include/any-windows-any/ntmsapi.h rename to lib/libc/include/any-windows-any/ntmsapi.h diff --git a/libc/include/any-windows-any/ntmsmli.h b/lib/libc/include/any-windows-any/ntmsmli.h similarity index 100% rename from libc/include/any-windows-any/ntmsmli.h rename to lib/libc/include/any-windows-any/ntmsmli.h diff --git a/libc/include/any-windows-any/ntquery.h b/lib/libc/include/any-windows-any/ntquery.h similarity index 100% rename from libc/include/any-windows-any/ntquery.h rename to lib/libc/include/any-windows-any/ntquery.h diff --git a/libc/include/any-windows-any/ntsdexts.h b/lib/libc/include/any-windows-any/ntsdexts.h similarity index 100% rename from libc/include/any-windows-any/ntsdexts.h rename to lib/libc/include/any-windows-any/ntsdexts.h diff --git a/libc/include/any-windows-any/ntsecapi.h b/lib/libc/include/any-windows-any/ntsecapi.h similarity index 100% rename from libc/include/any-windows-any/ntsecapi.h rename to lib/libc/include/any-windows-any/ntsecapi.h diff --git a/libc/include/any-windows-any/ntsecpkg.h b/lib/libc/include/any-windows-any/ntsecpkg.h similarity index 100% rename from libc/include/any-windows-any/ntsecpkg.h rename to lib/libc/include/any-windows-any/ntsecpkg.h diff --git a/libc/include/any-windows-any/ntstatus.h b/lib/libc/include/any-windows-any/ntstatus.h similarity index 100% rename from libc/include/any-windows-any/ntstatus.h rename to lib/libc/include/any-windows-any/ntstatus.h diff --git a/libc/include/any-windows-any/ntverp.h b/lib/libc/include/any-windows-any/ntverp.h similarity index 100% rename from libc/include/any-windows-any/ntverp.h rename to lib/libc/include/any-windows-any/ntverp.h diff --git a/libc/include/any-windows-any/oaidl.h b/lib/libc/include/any-windows-any/oaidl.h similarity index 100% rename from libc/include/any-windows-any/oaidl.h rename to lib/libc/include/any-windows-any/oaidl.h diff --git a/libc/include/any-windows-any/objbase.h b/lib/libc/include/any-windows-any/objbase.h similarity index 100% rename from libc/include/any-windows-any/objbase.h rename to lib/libc/include/any-windows-any/objbase.h diff --git a/libc/include/any-windows-any/objectarray.h b/lib/libc/include/any-windows-any/objectarray.h similarity index 100% rename from libc/include/any-windows-any/objectarray.h rename to lib/libc/include/any-windows-any/objectarray.h diff --git a/libc/include/any-windows-any/objerror.h b/lib/libc/include/any-windows-any/objerror.h similarity index 100% rename from libc/include/any-windows-any/objerror.h rename to lib/libc/include/any-windows-any/objerror.h diff --git a/libc/include/any-windows-any/objidl.h b/lib/libc/include/any-windows-any/objidl.h similarity index 100% rename from libc/include/any-windows-any/objidl.h rename to lib/libc/include/any-windows-any/objidl.h diff --git a/libc/include/any-windows-any/objidlbase.h b/lib/libc/include/any-windows-any/objidlbase.h similarity index 100% rename from libc/include/any-windows-any/objidlbase.h rename to lib/libc/include/any-windows-any/objidlbase.h diff --git a/libc/include/any-windows-any/objsafe.h b/lib/libc/include/any-windows-any/objsafe.h similarity index 100% rename from libc/include/any-windows-any/objsafe.h rename to lib/libc/include/any-windows-any/objsafe.h diff --git a/libc/include/any-windows-any/objsel.h b/lib/libc/include/any-windows-any/objsel.h similarity index 100% rename from libc/include/any-windows-any/objsel.h rename to lib/libc/include/any-windows-any/objsel.h diff --git a/libc/include/any-windows-any/ocidl.h b/lib/libc/include/any-windows-any/ocidl.h similarity index 100% rename from libc/include/any-windows-any/ocidl.h rename to lib/libc/include/any-windows-any/ocidl.h diff --git a/libc/include/any-windows-any/ocmm.h b/lib/libc/include/any-windows-any/ocmm.h similarity index 100% rename from libc/include/any-windows-any/ocmm.h rename to lib/libc/include/any-windows-any/ocmm.h diff --git a/libc/include/any-windows-any/odbcinst.h b/lib/libc/include/any-windows-any/odbcinst.h similarity index 100% rename from libc/include/any-windows-any/odbcinst.h rename to lib/libc/include/any-windows-any/odbcinst.h diff --git a/libc/include/any-windows-any/odbcss.h b/lib/libc/include/any-windows-any/odbcss.h similarity index 100% rename from libc/include/any-windows-any/odbcss.h rename to lib/libc/include/any-windows-any/odbcss.h diff --git a/libc/include/any-windows-any/ole.h b/lib/libc/include/any-windows-any/ole.h similarity index 100% rename from libc/include/any-windows-any/ole.h rename to lib/libc/include/any-windows-any/ole.h diff --git a/libc/include/any-windows-any/ole2.h b/lib/libc/include/any-windows-any/ole2.h similarity index 100% rename from libc/include/any-windows-any/ole2.h rename to lib/libc/include/any-windows-any/ole2.h diff --git a/libc/include/any-windows-any/ole2ver.h b/lib/libc/include/any-windows-any/ole2ver.h similarity index 100% rename from libc/include/any-windows-any/ole2ver.h rename to lib/libc/include/any-windows-any/ole2ver.h diff --git a/libc/include/any-windows-any/oleacc.h b/lib/libc/include/any-windows-any/oleacc.h similarity index 100% rename from libc/include/any-windows-any/oleacc.h rename to lib/libc/include/any-windows-any/oleacc.h diff --git a/libc/include/any-windows-any/oleauto.h b/lib/libc/include/any-windows-any/oleauto.h similarity index 100% rename from libc/include/any-windows-any/oleauto.h rename to lib/libc/include/any-windows-any/oleauto.h diff --git a/libc/include/any-windows-any/olectl.h b/lib/libc/include/any-windows-any/olectl.h similarity index 100% rename from libc/include/any-windows-any/olectl.h rename to lib/libc/include/any-windows-any/olectl.h diff --git a/libc/include/any-windows-any/olectlid.h b/lib/libc/include/any-windows-any/olectlid.h similarity index 100% rename from libc/include/any-windows-any/olectlid.h rename to lib/libc/include/any-windows-any/olectlid.h diff --git a/libc/include/any-windows-any/oledb.h b/lib/libc/include/any-windows-any/oledb.h similarity index 100% rename from libc/include/any-windows-any/oledb.h rename to lib/libc/include/any-windows-any/oledb.h diff --git a/libc/include/any-windows-any/oledbdep.h b/lib/libc/include/any-windows-any/oledbdep.h similarity index 100% rename from libc/include/any-windows-any/oledbdep.h rename to lib/libc/include/any-windows-any/oledbdep.h diff --git a/libc/include/any-windows-any/oledberr.h b/lib/libc/include/any-windows-any/oledberr.h similarity index 100% rename from libc/include/any-windows-any/oledberr.h rename to lib/libc/include/any-windows-any/oledberr.h diff --git a/libc/include/any-windows-any/oledbguid.h b/lib/libc/include/any-windows-any/oledbguid.h similarity index 100% rename from libc/include/any-windows-any/oledbguid.h rename to lib/libc/include/any-windows-any/oledbguid.h diff --git a/libc/include/any-windows-any/oledlg.dlg b/lib/libc/include/any-windows-any/oledlg.dlg similarity index 100% rename from libc/include/any-windows-any/oledlg.dlg rename to lib/libc/include/any-windows-any/oledlg.dlg diff --git a/libc/include/any-windows-any/oledlg.h b/lib/libc/include/any-windows-any/oledlg.h similarity index 100% rename from libc/include/any-windows-any/oledlg.h rename to lib/libc/include/any-windows-any/oledlg.h diff --git a/libc/include/any-windows-any/oleidl.h b/lib/libc/include/any-windows-any/oleidl.h similarity index 100% rename from libc/include/any-windows-any/oleidl.h rename to lib/libc/include/any-windows-any/oleidl.h diff --git a/libc/include/any-windows-any/oletx2xa.h b/lib/libc/include/any-windows-any/oletx2xa.h similarity index 100% rename from libc/include/any-windows-any/oletx2xa.h rename to lib/libc/include/any-windows-any/oletx2xa.h diff --git a/libc/include/any-windows-any/opmapi.h b/lib/libc/include/any-windows-any/opmapi.h similarity index 100% rename from libc/include/any-windows-any/opmapi.h rename to lib/libc/include/any-windows-any/opmapi.h diff --git a/libc/include/any-windows-any/optary.h b/lib/libc/include/any-windows-any/optary.h similarity index 100% rename from libc/include/any-windows-any/optary.h rename to lib/libc/include/any-windows-any/optary.h diff --git a/libc/include/any-windows-any/p2p.h b/lib/libc/include/any-windows-any/p2p.h similarity index 100% rename from libc/include/any-windows-any/p2p.h rename to lib/libc/include/any-windows-any/p2p.h diff --git a/libc/include/any-windows-any/packoff.h b/lib/libc/include/any-windows-any/packoff.h similarity index 100% rename from libc/include/any-windows-any/packoff.h rename to lib/libc/include/any-windows-any/packoff.h diff --git a/libc/include/any-windows-any/packon.h b/lib/libc/include/any-windows-any/packon.h similarity index 100% rename from libc/include/any-windows-any/packon.h rename to lib/libc/include/any-windows-any/packon.h diff --git a/libc/include/any-windows-any/parser.h b/lib/libc/include/any-windows-any/parser.h similarity index 100% rename from libc/include/any-windows-any/parser.h rename to lib/libc/include/any-windows-any/parser.h diff --git a/libc/include/any-windows-any/patchapi.h b/lib/libc/include/any-windows-any/patchapi.h similarity index 100% rename from libc/include/any-windows-any/patchapi.h rename to lib/libc/include/any-windows-any/patchapi.h diff --git a/libc/include/any-windows-any/patchwiz.h b/lib/libc/include/any-windows-any/patchwiz.h similarity index 100% rename from libc/include/any-windows-any/patchwiz.h rename to lib/libc/include/any-windows-any/patchwiz.h diff --git a/libc/include/any-windows-any/pathcch.h b/lib/libc/include/any-windows-any/pathcch.h similarity index 100% rename from libc/include/any-windows-any/pathcch.h rename to lib/libc/include/any-windows-any/pathcch.h diff --git a/libc/include/any-windows-any/pbt.h b/lib/libc/include/any-windows-any/pbt.h similarity index 100% rename from libc/include/any-windows-any/pbt.h rename to lib/libc/include/any-windows-any/pbt.h diff --git a/libc/include/any-windows-any/pchannel.h b/lib/libc/include/any-windows-any/pchannel.h similarity index 100% rename from libc/include/any-windows-any/pchannel.h rename to lib/libc/include/any-windows-any/pchannel.h diff --git a/libc/include/any-windows-any/pciprop.h b/lib/libc/include/any-windows-any/pciprop.h similarity index 100% rename from libc/include/any-windows-any/pciprop.h rename to lib/libc/include/any-windows-any/pciprop.h diff --git a/libc/include/any-windows-any/pcrt32.h b/lib/libc/include/any-windows-any/pcrt32.h similarity index 100% rename from libc/include/any-windows-any/pcrt32.h rename to lib/libc/include/any-windows-any/pcrt32.h diff --git a/libc/include/any-windows-any/pdh.h b/lib/libc/include/any-windows-any/pdh.h similarity index 100% rename from libc/include/any-windows-any/pdh.h rename to lib/libc/include/any-windows-any/pdh.h diff --git a/libc/include/any-windows-any/pdhmsg.h b/lib/libc/include/any-windows-any/pdhmsg.h similarity index 100% rename from libc/include/any-windows-any/pdhmsg.h rename to lib/libc/include/any-windows-any/pdhmsg.h diff --git a/libc/include/any-windows-any/penwin.h b/lib/libc/include/any-windows-any/penwin.h similarity index 100% rename from libc/include/any-windows-any/penwin.h rename to lib/libc/include/any-windows-any/penwin.h diff --git a/libc/include/any-windows-any/perflib.h b/lib/libc/include/any-windows-any/perflib.h similarity index 100% rename from libc/include/any-windows-any/perflib.h rename to lib/libc/include/any-windows-any/perflib.h diff --git a/libc/include/any-windows-any/perhist.h b/lib/libc/include/any-windows-any/perhist.h similarity index 100% rename from libc/include/any-windows-any/perhist.h rename to lib/libc/include/any-windows-any/perhist.h diff --git a/libc/include/any-windows-any/persist.h b/lib/libc/include/any-windows-any/persist.h similarity index 100% rename from libc/include/any-windows-any/persist.h rename to lib/libc/include/any-windows-any/persist.h diff --git a/libc/include/any-windows-any/pgobootrun.h b/lib/libc/include/any-windows-any/pgobootrun.h similarity index 100% rename from libc/include/any-windows-any/pgobootrun.h rename to lib/libc/include/any-windows-any/pgobootrun.h diff --git a/libc/include/any-windows-any/physicalmonitorenumerationapi.h b/lib/libc/include/any-windows-any/physicalmonitorenumerationapi.h similarity index 100% rename from libc/include/any-windows-any/physicalmonitorenumerationapi.h rename to lib/libc/include/any-windows-any/physicalmonitorenumerationapi.h diff --git a/libc/include/any-windows-any/pla.h b/lib/libc/include/any-windows-any/pla.h similarity index 100% rename from libc/include/any-windows-any/pla.h rename to lib/libc/include/any-windows-any/pla.h diff --git a/libc/include/any-windows-any/pnrpdef.h b/lib/libc/include/any-windows-any/pnrpdef.h similarity index 100% rename from libc/include/any-windows-any/pnrpdef.h rename to lib/libc/include/any-windows-any/pnrpdef.h diff --git a/libc/include/any-windows-any/pnrpns.h b/lib/libc/include/any-windows-any/pnrpns.h similarity index 100% rename from libc/include/any-windows-any/pnrpns.h rename to lib/libc/include/any-windows-any/pnrpns.h diff --git a/libc/include/any-windows-any/poclass.h b/lib/libc/include/any-windows-any/poclass.h similarity index 100% rename from libc/include/any-windows-any/poclass.h rename to lib/libc/include/any-windows-any/poclass.h diff --git a/libc/include/any-windows-any/polarity.h b/lib/libc/include/any-windows-any/polarity.h similarity index 100% rename from libc/include/any-windows-any/polarity.h rename to lib/libc/include/any-windows-any/polarity.h diff --git a/libc/include/any-windows-any/poppack.h b/lib/libc/include/any-windows-any/poppack.h similarity index 100% rename from libc/include/any-windows-any/poppack.h rename to lib/libc/include/any-windows-any/poppack.h diff --git a/libc/include/any-windows-any/portabledeviceconnectapi.h b/lib/libc/include/any-windows-any/portabledeviceconnectapi.h similarity index 100% rename from libc/include/any-windows-any/portabledeviceconnectapi.h rename to lib/libc/include/any-windows-any/portabledeviceconnectapi.h diff --git a/libc/include/any-windows-any/portabledevicetypes.h b/lib/libc/include/any-windows-any/portabledevicetypes.h similarity index 100% rename from libc/include/any-windows-any/portabledevicetypes.h rename to lib/libc/include/any-windows-any/portabledevicetypes.h diff --git a/libc/include/any-windows-any/powrprof.h b/lib/libc/include/any-windows-any/powrprof.h similarity index 100% rename from libc/include/any-windows-any/powrprof.h rename to lib/libc/include/any-windows-any/powrprof.h diff --git a/libc/include/any-windows-any/prnasnot.h b/lib/libc/include/any-windows-any/prnasnot.h similarity index 100% rename from libc/include/any-windows-any/prnasnot.h rename to lib/libc/include/any-windows-any/prnasnot.h diff --git a/libc/include/any-windows-any/prnsetup.dlg b/lib/libc/include/any-windows-any/prnsetup.dlg similarity index 100% rename from libc/include/any-windows-any/prnsetup.dlg rename to lib/libc/include/any-windows-any/prnsetup.dlg diff --git a/libc/include/any-windows-any/prntfont.h b/lib/libc/include/any-windows-any/prntfont.h similarity index 100% rename from libc/include/any-windows-any/prntfont.h rename to lib/libc/include/any-windows-any/prntfont.h diff --git a/libc/include/any-windows-any/process.h b/lib/libc/include/any-windows-any/process.h similarity index 100% rename from libc/include/any-windows-any/process.h rename to lib/libc/include/any-windows-any/process.h diff --git a/libc/include/any-windows-any/processenv.h b/lib/libc/include/any-windows-any/processenv.h similarity index 100% rename from libc/include/any-windows-any/processenv.h rename to lib/libc/include/any-windows-any/processenv.h diff --git a/libc/include/any-windows-any/processthreadsapi.h b/lib/libc/include/any-windows-any/processthreadsapi.h similarity index 100% rename from libc/include/any-windows-any/processthreadsapi.h rename to lib/libc/include/any-windows-any/processthreadsapi.h diff --git a/libc/include/any-windows-any/processtopologyapi.h b/lib/libc/include/any-windows-any/processtopologyapi.h similarity index 100% rename from libc/include/any-windows-any/processtopologyapi.h rename to lib/libc/include/any-windows-any/processtopologyapi.h diff --git a/libc/include/any-windows-any/profile.h b/lib/libc/include/any-windows-any/profile.h similarity index 100% rename from libc/include/any-windows-any/profile.h rename to lib/libc/include/any-windows-any/profile.h diff --git a/libc/include/any-windows-any/profileapi.h b/lib/libc/include/any-windows-any/profileapi.h similarity index 100% rename from libc/include/any-windows-any/profileapi.h rename to lib/libc/include/any-windows-any/profileapi.h diff --git a/libc/include/any-windows-any/profinfo.h b/lib/libc/include/any-windows-any/profinfo.h similarity index 100% rename from libc/include/any-windows-any/profinfo.h rename to lib/libc/include/any-windows-any/profinfo.h diff --git a/libc/include/any-windows-any/propidl.h b/lib/libc/include/any-windows-any/propidl.h similarity index 100% rename from libc/include/any-windows-any/propidl.h rename to lib/libc/include/any-windows-any/propidl.h diff --git a/libc/include/any-windows-any/propkey.h b/lib/libc/include/any-windows-any/propkey.h similarity index 100% rename from libc/include/any-windows-any/propkey.h rename to lib/libc/include/any-windows-any/propkey.h diff --git a/libc/include/any-windows-any/propkeydef.h b/lib/libc/include/any-windows-any/propkeydef.h similarity index 100% rename from libc/include/any-windows-any/propkeydef.h rename to lib/libc/include/any-windows-any/propkeydef.h diff --git a/libc/include/any-windows-any/propsys.h b/lib/libc/include/any-windows-any/propsys.h similarity index 100% rename from libc/include/any-windows-any/propsys.h rename to lib/libc/include/any-windows-any/propsys.h diff --git a/libc/include/any-windows-any/propvarutil.h b/lib/libc/include/any-windows-any/propvarutil.h similarity index 100% rename from libc/include/any-windows-any/propvarutil.h rename to lib/libc/include/any-windows-any/propvarutil.h diff --git a/libc/include/any-windows-any/prsht.h b/lib/libc/include/any-windows-any/prsht.h similarity index 100% rename from libc/include/any-windows-any/prsht.h rename to lib/libc/include/any-windows-any/prsht.h diff --git a/libc/include/any-windows-any/psapi.h b/lib/libc/include/any-windows-any/psapi.h similarity index 100% rename from libc/include/any-windows-any/psapi.h rename to lib/libc/include/any-windows-any/psapi.h diff --git a/libc/include/any-windows-any/psdk_inc/_dbg_LOAD_IMAGE.h b/lib/libc/include/any-windows-any/psdk_inc/_dbg_LOAD_IMAGE.h similarity index 100% rename from libc/include/any-windows-any/psdk_inc/_dbg_LOAD_IMAGE.h rename to lib/libc/include/any-windows-any/psdk_inc/_dbg_LOAD_IMAGE.h diff --git a/libc/include/any-windows-any/psdk_inc/_dbg_common.h b/lib/libc/include/any-windows-any/psdk_inc/_dbg_common.h similarity index 100% rename from libc/include/any-windows-any/psdk_inc/_dbg_common.h rename to lib/libc/include/any-windows-any/psdk_inc/_dbg_common.h diff --git a/libc/include/any-windows-any/psdk_inc/_fd_types.h b/lib/libc/include/any-windows-any/psdk_inc/_fd_types.h similarity index 100% rename from libc/include/any-windows-any/psdk_inc/_fd_types.h rename to lib/libc/include/any-windows-any/psdk_inc/_fd_types.h diff --git a/libc/include/any-windows-any/psdk_inc/_ip_mreq1.h b/lib/libc/include/any-windows-any/psdk_inc/_ip_mreq1.h similarity index 100% rename from libc/include/any-windows-any/psdk_inc/_ip_mreq1.h rename to lib/libc/include/any-windows-any/psdk_inc/_ip_mreq1.h diff --git a/libc/include/any-windows-any/psdk_inc/_ip_types.h b/lib/libc/include/any-windows-any/psdk_inc/_ip_types.h similarity index 100% rename from libc/include/any-windows-any/psdk_inc/_ip_types.h rename to lib/libc/include/any-windows-any/psdk_inc/_ip_types.h diff --git a/libc/include/any-windows-any/psdk_inc/_pop_BOOL.h b/lib/libc/include/any-windows-any/psdk_inc/_pop_BOOL.h similarity index 100% rename from libc/include/any-windows-any/psdk_inc/_pop_BOOL.h rename to lib/libc/include/any-windows-any/psdk_inc/_pop_BOOL.h diff --git a/libc/include/any-windows-any/psdk_inc/_push_BOOL.h b/lib/libc/include/any-windows-any/psdk_inc/_push_BOOL.h similarity index 100% rename from libc/include/any-windows-any/psdk_inc/_push_BOOL.h rename to lib/libc/include/any-windows-any/psdk_inc/_push_BOOL.h diff --git a/libc/include/any-windows-any/psdk_inc/_socket_types.h b/lib/libc/include/any-windows-any/psdk_inc/_socket_types.h similarity index 100% rename from libc/include/any-windows-any/psdk_inc/_socket_types.h rename to lib/libc/include/any-windows-any/psdk_inc/_socket_types.h diff --git a/libc/include/any-windows-any/psdk_inc/_varenum.h b/lib/libc/include/any-windows-any/psdk_inc/_varenum.h similarity index 100% rename from libc/include/any-windows-any/psdk_inc/_varenum.h rename to lib/libc/include/any-windows-any/psdk_inc/_varenum.h diff --git a/libc/include/any-windows-any/psdk_inc/_ws1_undef.h b/lib/libc/include/any-windows-any/psdk_inc/_ws1_undef.h similarity index 100% rename from libc/include/any-windows-any/psdk_inc/_ws1_undef.h rename to lib/libc/include/any-windows-any/psdk_inc/_ws1_undef.h diff --git a/libc/include/any-windows-any/psdk_inc/_wsa_errnos.h b/lib/libc/include/any-windows-any/psdk_inc/_wsa_errnos.h similarity index 100% rename from libc/include/any-windows-any/psdk_inc/_wsa_errnos.h rename to lib/libc/include/any-windows-any/psdk_inc/_wsa_errnos.h diff --git a/libc/include/any-windows-any/psdk_inc/_wsadata.h b/lib/libc/include/any-windows-any/psdk_inc/_wsadata.h similarity index 100% rename from libc/include/any-windows-any/psdk_inc/_wsadata.h rename to lib/libc/include/any-windows-any/psdk_inc/_wsadata.h diff --git a/libc/include/any-windows-any/psdk_inc/_xmitfile.h b/lib/libc/include/any-windows-any/psdk_inc/_xmitfile.h similarity index 100% rename from libc/include/any-windows-any/psdk_inc/_xmitfile.h rename to lib/libc/include/any-windows-any/psdk_inc/_xmitfile.h diff --git a/libc/include/any-windows-any/psdk_inc/intrin-impl.h b/lib/libc/include/any-windows-any/psdk_inc/intrin-impl.h similarity index 100% rename from libc/include/any-windows-any/psdk_inc/intrin-impl.h rename to lib/libc/include/any-windows-any/psdk_inc/intrin-impl.h diff --git a/libc/include/any-windows-any/pshpack1.h b/lib/libc/include/any-windows-any/pshpack1.h similarity index 100% rename from libc/include/any-windows-any/pshpack1.h rename to lib/libc/include/any-windows-any/pshpack1.h diff --git a/libc/include/any-windows-any/pshpack2.h b/lib/libc/include/any-windows-any/pshpack2.h similarity index 100% rename from libc/include/any-windows-any/pshpack2.h rename to lib/libc/include/any-windows-any/pshpack2.h diff --git a/libc/include/any-windows-any/pshpack4.h b/lib/libc/include/any-windows-any/pshpack4.h similarity index 100% rename from libc/include/any-windows-any/pshpack4.h rename to lib/libc/include/any-windows-any/pshpack4.h diff --git a/libc/include/any-windows-any/pshpack8.h b/lib/libc/include/any-windows-any/pshpack8.h similarity index 100% rename from libc/include/any-windows-any/pshpack8.h rename to lib/libc/include/any-windows-any/pshpack8.h diff --git a/libc/include/any-windows-any/pshpck16.h b/lib/libc/include/any-windows-any/pshpck16.h similarity index 100% rename from libc/include/any-windows-any/pshpck16.h rename to lib/libc/include/any-windows-any/pshpck16.h diff --git a/libc/include/any-windows-any/pstore.h b/lib/libc/include/any-windows-any/pstore.h similarity index 100% rename from libc/include/any-windows-any/pstore.h rename to lib/libc/include/any-windows-any/pstore.h diff --git a/libc/include/any-windows-any/pthread_signal.h b/lib/libc/include/any-windows-any/pthread_signal.h similarity index 100% rename from libc/include/any-windows-any/pthread_signal.h rename to lib/libc/include/any-windows-any/pthread_signal.h diff --git a/libc/include/any-windows-any/pthread_time.h b/lib/libc/include/any-windows-any/pthread_time.h similarity index 100% rename from libc/include/any-windows-any/pthread_time.h rename to lib/libc/include/any-windows-any/pthread_time.h diff --git a/libc/include/any-windows-any/pthread_unistd.h b/lib/libc/include/any-windows-any/pthread_unistd.h similarity index 100% rename from libc/include/any-windows-any/pthread_unistd.h rename to lib/libc/include/any-windows-any/pthread_unistd.h diff --git a/libc/include/any-windows-any/qedit.h b/lib/libc/include/any-windows-any/qedit.h similarity index 100% rename from libc/include/any-windows-any/qedit.h rename to lib/libc/include/any-windows-any/qedit.h diff --git a/libc/include/any-windows-any/qedit.idl b/lib/libc/include/any-windows-any/qedit.idl similarity index 100% rename from libc/include/any-windows-any/qedit.idl rename to lib/libc/include/any-windows-any/qedit.idl diff --git a/libc/include/any-windows-any/qmgr.h b/lib/libc/include/any-windows-any/qmgr.h similarity index 100% rename from libc/include/any-windows-any/qmgr.h rename to lib/libc/include/any-windows-any/qmgr.h diff --git a/libc/include/any-windows-any/qnetwork.h b/lib/libc/include/any-windows-any/qnetwork.h similarity index 100% rename from libc/include/any-windows-any/qnetwork.h rename to lib/libc/include/any-windows-any/qnetwork.h diff --git a/libc/include/any-windows-any/qnetwork.idl b/lib/libc/include/any-windows-any/qnetwork.idl similarity index 100% rename from libc/include/any-windows-any/qnetwork.idl rename to lib/libc/include/any-windows-any/qnetwork.idl diff --git a/libc/include/any-windows-any/qos.h b/lib/libc/include/any-windows-any/qos.h similarity index 100% rename from libc/include/any-windows-any/qos.h rename to lib/libc/include/any-windows-any/qos.h diff --git a/libc/include/any-windows-any/qos2.h b/lib/libc/include/any-windows-any/qos2.h similarity index 100% rename from libc/include/any-windows-any/qos2.h rename to lib/libc/include/any-windows-any/qos2.h diff --git a/libc/include/any-windows-any/qosname.h b/lib/libc/include/any-windows-any/qosname.h similarity index 100% rename from libc/include/any-windows-any/qosname.h rename to lib/libc/include/any-windows-any/qosname.h diff --git a/libc/include/any-windows-any/qospol.h b/lib/libc/include/any-windows-any/qospol.h similarity index 100% rename from libc/include/any-windows-any/qospol.h rename to lib/libc/include/any-windows-any/qospol.h diff --git a/libc/include/any-windows-any/qossp.h b/lib/libc/include/any-windows-any/qossp.h similarity index 100% rename from libc/include/any-windows-any/qossp.h rename to lib/libc/include/any-windows-any/qossp.h diff --git a/libc/include/any-windows-any/ras.h b/lib/libc/include/any-windows-any/ras.h similarity index 100% rename from libc/include/any-windows-any/ras.h rename to lib/libc/include/any-windows-any/ras.h diff --git a/libc/include/any-windows-any/rasdlg.h b/lib/libc/include/any-windows-any/rasdlg.h similarity index 100% rename from libc/include/any-windows-any/rasdlg.h rename to lib/libc/include/any-windows-any/rasdlg.h diff --git a/libc/include/any-windows-any/raseapif.h b/lib/libc/include/any-windows-any/raseapif.h similarity index 100% rename from libc/include/any-windows-any/raseapif.h rename to lib/libc/include/any-windows-any/raseapif.h diff --git a/libc/include/any-windows-any/raserror.h b/lib/libc/include/any-windows-any/raserror.h similarity index 100% rename from libc/include/any-windows-any/raserror.h rename to lib/libc/include/any-windows-any/raserror.h diff --git a/libc/include/any-windows-any/rassapi.h b/lib/libc/include/any-windows-any/rassapi.h similarity index 100% rename from libc/include/any-windows-any/rassapi.h rename to lib/libc/include/any-windows-any/rassapi.h diff --git a/libc/include/any-windows-any/rasshost.h b/lib/libc/include/any-windows-any/rasshost.h similarity index 100% rename from libc/include/any-windows-any/rasshost.h rename to lib/libc/include/any-windows-any/rasshost.h diff --git a/libc/include/any-windows-any/ratings.h b/lib/libc/include/any-windows-any/ratings.h similarity index 100% rename from libc/include/any-windows-any/ratings.h rename to lib/libc/include/any-windows-any/ratings.h diff --git a/libc/include/any-windows-any/rdpencomapi.h b/lib/libc/include/any-windows-any/rdpencomapi.h similarity index 100% rename from libc/include/any-windows-any/rdpencomapi.h rename to lib/libc/include/any-windows-any/rdpencomapi.h diff --git a/libc/include/any-windows-any/realtimeapiset.h b/lib/libc/include/any-windows-any/realtimeapiset.h similarity index 100% rename from libc/include/any-windows-any/realtimeapiset.h rename to lib/libc/include/any-windows-any/realtimeapiset.h diff --git a/libc/include/any-windows-any/reason.h b/lib/libc/include/any-windows-any/reason.h similarity index 100% rename from libc/include/any-windows-any/reason.h rename to lib/libc/include/any-windows-any/reason.h diff --git a/libc/include/any-windows-any/recguids.h b/lib/libc/include/any-windows-any/recguids.h similarity index 100% rename from libc/include/any-windows-any/recguids.h rename to lib/libc/include/any-windows-any/recguids.h diff --git a/libc/include/any-windows-any/reconcil.h b/lib/libc/include/any-windows-any/reconcil.h similarity index 100% rename from libc/include/any-windows-any/reconcil.h rename to lib/libc/include/any-windows-any/reconcil.h diff --git a/libc/include/any-windows-any/regbag.h b/lib/libc/include/any-windows-any/regbag.h similarity index 100% rename from libc/include/any-windows-any/regbag.h rename to lib/libc/include/any-windows-any/regbag.h diff --git a/libc/include/any-windows-any/regstr.h b/lib/libc/include/any-windows-any/regstr.h similarity index 100% rename from libc/include/any-windows-any/regstr.h rename to lib/libc/include/any-windows-any/regstr.h diff --git a/libc/include/any-windows-any/rend.h b/lib/libc/include/any-windows-any/rend.h similarity index 100% rename from libc/include/any-windows-any/rend.h rename to lib/libc/include/any-windows-any/rend.h diff --git a/libc/include/any-windows-any/resapi.h b/lib/libc/include/any-windows-any/resapi.h similarity index 100% rename from libc/include/any-windows-any/resapi.h rename to lib/libc/include/any-windows-any/resapi.h diff --git a/libc/include/any-windows-any/restartmanager.h b/lib/libc/include/any-windows-any/restartmanager.h similarity index 100% rename from libc/include/any-windows-any/restartmanager.h rename to lib/libc/include/any-windows-any/restartmanager.h diff --git a/libc/include/any-windows-any/richedit.h b/lib/libc/include/any-windows-any/richedit.h similarity index 100% rename from libc/include/any-windows-any/richedit.h rename to lib/libc/include/any-windows-any/richedit.h diff --git a/libc/include/any-windows-any/richole.h b/lib/libc/include/any-windows-any/richole.h similarity index 100% rename from libc/include/any-windows-any/richole.h rename to lib/libc/include/any-windows-any/richole.h diff --git a/libc/include/any-windows-any/rkeysvcc.h b/lib/libc/include/any-windows-any/rkeysvcc.h similarity index 100% rename from libc/include/any-windows-any/rkeysvcc.h rename to lib/libc/include/any-windows-any/rkeysvcc.h diff --git a/libc/include/any-windows-any/rnderr.h b/lib/libc/include/any-windows-any/rnderr.h similarity index 100% rename from libc/include/any-windows-any/rnderr.h rename to lib/libc/include/any-windows-any/rnderr.h diff --git a/libc/include/any-windows-any/roapi.h b/lib/libc/include/any-windows-any/roapi.h similarity index 100% rename from libc/include/any-windows-any/roapi.h rename to lib/libc/include/any-windows-any/roapi.h diff --git a/libc/include/any-windows-any/routprot.h b/lib/libc/include/any-windows-any/routprot.h similarity index 100% rename from libc/include/any-windows-any/routprot.h rename to lib/libc/include/any-windows-any/routprot.h diff --git a/libc/include/any-windows-any/rpc.h b/lib/libc/include/any-windows-any/rpc.h similarity index 100% rename from libc/include/any-windows-any/rpc.h rename to lib/libc/include/any-windows-any/rpc.h diff --git a/libc/include/any-windows-any/rpcasync.h b/lib/libc/include/any-windows-any/rpcasync.h similarity index 100% rename from libc/include/any-windows-any/rpcasync.h rename to lib/libc/include/any-windows-any/rpcasync.h diff --git a/libc/include/any-windows-any/rpcdce.h b/lib/libc/include/any-windows-any/rpcdce.h similarity index 100% rename from libc/include/any-windows-any/rpcdce.h rename to lib/libc/include/any-windows-any/rpcdce.h diff --git a/libc/include/any-windows-any/rpcdcep.h b/lib/libc/include/any-windows-any/rpcdcep.h similarity index 100% rename from libc/include/any-windows-any/rpcdcep.h rename to lib/libc/include/any-windows-any/rpcdcep.h diff --git a/libc/include/any-windows-any/rpcndr.h b/lib/libc/include/any-windows-any/rpcndr.h similarity index 100% rename from libc/include/any-windows-any/rpcndr.h rename to lib/libc/include/any-windows-any/rpcndr.h diff --git a/libc/include/any-windows-any/rpcnsi.h b/lib/libc/include/any-windows-any/rpcnsi.h similarity index 100% rename from libc/include/any-windows-any/rpcnsi.h rename to lib/libc/include/any-windows-any/rpcnsi.h diff --git a/libc/include/any-windows-any/rpcnsip.h b/lib/libc/include/any-windows-any/rpcnsip.h similarity index 100% rename from libc/include/any-windows-any/rpcnsip.h rename to lib/libc/include/any-windows-any/rpcnsip.h diff --git a/libc/include/any-windows-any/rpcnterr.h b/lib/libc/include/any-windows-any/rpcnterr.h similarity index 100% rename from libc/include/any-windows-any/rpcnterr.h rename to lib/libc/include/any-windows-any/rpcnterr.h diff --git a/libc/include/any-windows-any/rpcproxy.h b/lib/libc/include/any-windows-any/rpcproxy.h similarity index 100% rename from libc/include/any-windows-any/rpcproxy.h rename to lib/libc/include/any-windows-any/rpcproxy.h diff --git a/libc/include/any-windows-any/rpcsal.h b/lib/libc/include/any-windows-any/rpcsal.h similarity index 100% rename from libc/include/any-windows-any/rpcsal.h rename to lib/libc/include/any-windows-any/rpcsal.h diff --git a/libc/include/any-windows-any/rpcssl.h b/lib/libc/include/any-windows-any/rpcssl.h similarity index 100% rename from libc/include/any-windows-any/rpcssl.h rename to lib/libc/include/any-windows-any/rpcssl.h diff --git a/libc/include/any-windows-any/rrascfg.h b/lib/libc/include/any-windows-any/rrascfg.h similarity index 100% rename from libc/include/any-windows-any/rrascfg.h rename to lib/libc/include/any-windows-any/rrascfg.h diff --git a/libc/include/any-windows-any/rtcapi.h b/lib/libc/include/any-windows-any/rtcapi.h similarity index 100% rename from libc/include/any-windows-any/rtcapi.h rename to lib/libc/include/any-windows-any/rtcapi.h diff --git a/libc/include/any-windows-any/rtccore.h b/lib/libc/include/any-windows-any/rtccore.h similarity index 100% rename from libc/include/any-windows-any/rtccore.h rename to lib/libc/include/any-windows-any/rtccore.h diff --git a/libc/include/any-windows-any/rtcerr.h b/lib/libc/include/any-windows-any/rtcerr.h similarity index 100% rename from libc/include/any-windows-any/rtcerr.h rename to lib/libc/include/any-windows-any/rtcerr.h diff --git a/libc/include/any-windows-any/rtinfo.h b/lib/libc/include/any-windows-any/rtinfo.h similarity index 100% rename from libc/include/any-windows-any/rtinfo.h rename to lib/libc/include/any-windows-any/rtinfo.h diff --git a/libc/include/any-windows-any/rtm.h b/lib/libc/include/any-windows-any/rtm.h similarity index 100% rename from libc/include/any-windows-any/rtm.h rename to lib/libc/include/any-windows-any/rtm.h diff --git a/libc/include/any-windows-any/rtmv2.h b/lib/libc/include/any-windows-any/rtmv2.h similarity index 100% rename from libc/include/any-windows-any/rtmv2.h rename to lib/libc/include/any-windows-any/rtmv2.h diff --git a/libc/include/any-windows-any/rtutils.h b/lib/libc/include/any-windows-any/rtutils.h similarity index 100% rename from libc/include/any-windows-any/rtutils.h rename to lib/libc/include/any-windows-any/rtutils.h diff --git a/libc/include/any-windows-any/sal.h b/lib/libc/include/any-windows-any/sal.h similarity index 100% rename from libc/include/any-windows-any/sal.h rename to lib/libc/include/any-windows-any/sal.h diff --git a/libc/include/any-windows-any/sapi.h b/lib/libc/include/any-windows-any/sapi.h similarity index 100% rename from libc/include/any-windows-any/sapi.h rename to lib/libc/include/any-windows-any/sapi.h diff --git a/libc/include/any-windows-any/sapi51.h b/lib/libc/include/any-windows-any/sapi51.h similarity index 100% rename from libc/include/any-windows-any/sapi51.h rename to lib/libc/include/any-windows-any/sapi51.h diff --git a/libc/include/any-windows-any/sapi53.h b/lib/libc/include/any-windows-any/sapi53.h similarity index 100% rename from libc/include/any-windows-any/sapi53.h rename to lib/libc/include/any-windows-any/sapi53.h diff --git a/libc/include/any-windows-any/sapi54.h b/lib/libc/include/any-windows-any/sapi54.h similarity index 100% rename from libc/include/any-windows-any/sapi54.h rename to lib/libc/include/any-windows-any/sapi54.h diff --git a/libc/include/any-windows-any/sas.h b/lib/libc/include/any-windows-any/sas.h similarity index 100% rename from libc/include/any-windows-any/sas.h rename to lib/libc/include/any-windows-any/sas.h diff --git a/libc/include/any-windows-any/sbe.h b/lib/libc/include/any-windows-any/sbe.h similarity index 100% rename from libc/include/any-windows-any/sbe.h rename to lib/libc/include/any-windows-any/sbe.h diff --git a/libc/include/any-windows-any/scarddat.h b/lib/libc/include/any-windows-any/scarddat.h similarity index 100% rename from libc/include/any-windows-any/scarddat.h rename to lib/libc/include/any-windows-any/scarddat.h diff --git a/libc/include/any-windows-any/scarderr.h b/lib/libc/include/any-windows-any/scarderr.h similarity index 100% rename from libc/include/any-windows-any/scarderr.h rename to lib/libc/include/any-windows-any/scarderr.h diff --git a/libc/include/any-windows-any/scardmgr.h b/lib/libc/include/any-windows-any/scardmgr.h similarity index 100% rename from libc/include/any-windows-any/scardmgr.h rename to lib/libc/include/any-windows-any/scardmgr.h diff --git a/libc/include/any-windows-any/scardsrv.h b/lib/libc/include/any-windows-any/scardsrv.h similarity index 100% rename from libc/include/any-windows-any/scardsrv.h rename to lib/libc/include/any-windows-any/scardsrv.h diff --git a/libc/include/any-windows-any/scardssp.h b/lib/libc/include/any-windows-any/scardssp.h similarity index 100% rename from libc/include/any-windows-any/scardssp.h rename to lib/libc/include/any-windows-any/scardssp.h diff --git a/libc/include/any-windows-any/scesvc.h b/lib/libc/include/any-windows-any/scesvc.h similarity index 100% rename from libc/include/any-windows-any/scesvc.h rename to lib/libc/include/any-windows-any/scesvc.h diff --git a/libc/include/any-windows-any/schannel.h b/lib/libc/include/any-windows-any/schannel.h similarity index 100% rename from libc/include/any-windows-any/schannel.h rename to lib/libc/include/any-windows-any/schannel.h diff --git a/libc/include/any-windows-any/schedule.h b/lib/libc/include/any-windows-any/schedule.h similarity index 100% rename from libc/include/any-windows-any/schedule.h rename to lib/libc/include/any-windows-any/schedule.h diff --git a/libc/include/any-windows-any/schemadef.h b/lib/libc/include/any-windows-any/schemadef.h similarity index 100% rename from libc/include/any-windows-any/schemadef.h rename to lib/libc/include/any-windows-any/schemadef.h diff --git a/libc/include/any-windows-any/schnlsp.h b/lib/libc/include/any-windows-any/schnlsp.h similarity index 100% rename from libc/include/any-windows-any/schnlsp.h rename to lib/libc/include/any-windows-any/schnlsp.h diff --git a/libc/include/any-windows-any/scode.h b/lib/libc/include/any-windows-any/scode.h similarity index 100% rename from libc/include/any-windows-any/scode.h rename to lib/libc/include/any-windows-any/scode.h diff --git a/libc/include/any-windows-any/scrnsave.h b/lib/libc/include/any-windows-any/scrnsave.h similarity index 100% rename from libc/include/any-windows-any/scrnsave.h rename to lib/libc/include/any-windows-any/scrnsave.h diff --git a/libc/include/any-windows-any/scrptids.h b/lib/libc/include/any-windows-any/scrptids.h similarity index 100% rename from libc/include/any-windows-any/scrptids.h rename to lib/libc/include/any-windows-any/scrptids.h diff --git a/libc/include/any-windows-any/sddl.h b/lib/libc/include/any-windows-any/sddl.h similarity index 100% rename from libc/include/any-windows-any/sddl.h rename to lib/libc/include/any-windows-any/sddl.h diff --git a/libc/include/any-windows-any/sdkddkver.h b/lib/libc/include/any-windows-any/sdkddkver.h similarity index 100% rename from libc/include/any-windows-any/sdkddkver.h rename to lib/libc/include/any-windows-any/sdkddkver.h diff --git a/libc/include/any-windows-any/sdks/_mingw_ddk.h b/lib/libc/include/any-windows-any/sdks/_mingw_ddk.h similarity index 100% rename from libc/include/any-windows-any/sdks/_mingw_ddk.h rename to lib/libc/include/any-windows-any/sdks/_mingw_ddk.h diff --git a/libc/include/any-windows-any/sdks/_mingw_directx.h b/lib/libc/include/any-windows-any/sdks/_mingw_directx.h similarity index 100% rename from libc/include/any-windows-any/sdks/_mingw_directx.h rename to lib/libc/include/any-windows-any/sdks/_mingw_directx.h diff --git a/libc/include/any-windows-any/sdoias.h b/lib/libc/include/any-windows-any/sdoias.h similarity index 100% rename from libc/include/any-windows-any/sdoias.h rename to lib/libc/include/any-windows-any/sdoias.h diff --git a/libc/include/any-windows-any/sdpblb.h b/lib/libc/include/any-windows-any/sdpblb.h similarity index 100% rename from libc/include/any-windows-any/sdpblb.h rename to lib/libc/include/any-windows-any/sdpblb.h diff --git a/libc/include/any-windows-any/sdperr.h b/lib/libc/include/any-windows-any/sdperr.h similarity index 100% rename from libc/include/any-windows-any/sdperr.h rename to lib/libc/include/any-windows-any/sdperr.h diff --git a/libc/include/any-windows-any/search.h b/lib/libc/include/any-windows-any/search.h similarity index 100% rename from libc/include/any-windows-any/search.h rename to lib/libc/include/any-windows-any/search.h diff --git a/libc/include/any-windows-any/sec_api/conio_s.h b/lib/libc/include/any-windows-any/sec_api/conio_s.h similarity index 100% rename from libc/include/any-windows-any/sec_api/conio_s.h rename to lib/libc/include/any-windows-any/sec_api/conio_s.h diff --git a/libc/include/any-windows-any/sec_api/crtdbg_s.h b/lib/libc/include/any-windows-any/sec_api/crtdbg_s.h similarity index 100% rename from libc/include/any-windows-any/sec_api/crtdbg_s.h rename to lib/libc/include/any-windows-any/sec_api/crtdbg_s.h diff --git a/libc/include/any-windows-any/sec_api/mbstring_s.h b/lib/libc/include/any-windows-any/sec_api/mbstring_s.h similarity index 100% rename from libc/include/any-windows-any/sec_api/mbstring_s.h rename to lib/libc/include/any-windows-any/sec_api/mbstring_s.h diff --git a/libc/include/any-windows-any/sec_api/search_s.h b/lib/libc/include/any-windows-any/sec_api/search_s.h similarity index 100% rename from libc/include/any-windows-any/sec_api/search_s.h rename to lib/libc/include/any-windows-any/sec_api/search_s.h diff --git a/libc/include/any-windows-any/sec_api/stdio_s.h b/lib/libc/include/any-windows-any/sec_api/stdio_s.h similarity index 100% rename from libc/include/any-windows-any/sec_api/stdio_s.h rename to lib/libc/include/any-windows-any/sec_api/stdio_s.h diff --git a/libc/include/any-windows-any/sec_api/stdlib_s.h b/lib/libc/include/any-windows-any/sec_api/stdlib_s.h similarity index 100% rename from libc/include/any-windows-any/sec_api/stdlib_s.h rename to lib/libc/include/any-windows-any/sec_api/stdlib_s.h diff --git a/libc/include/any-windows-any/sec_api/stralign_s.h b/lib/libc/include/any-windows-any/sec_api/stralign_s.h similarity index 100% rename from libc/include/any-windows-any/sec_api/stralign_s.h rename to lib/libc/include/any-windows-any/sec_api/stralign_s.h diff --git a/libc/include/any-windows-any/sec_api/string_s.h b/lib/libc/include/any-windows-any/sec_api/string_s.h similarity index 100% rename from libc/include/any-windows-any/sec_api/string_s.h rename to lib/libc/include/any-windows-any/sec_api/string_s.h diff --git a/libc/include/any-windows-any/sec_api/sys/timeb_s.h b/lib/libc/include/any-windows-any/sec_api/sys/timeb_s.h similarity index 100% rename from libc/include/any-windows-any/sec_api/sys/timeb_s.h rename to lib/libc/include/any-windows-any/sec_api/sys/timeb_s.h diff --git a/libc/include/any-windows-any/sec_api/tchar_s.h b/lib/libc/include/any-windows-any/sec_api/tchar_s.h similarity index 100% rename from libc/include/any-windows-any/sec_api/tchar_s.h rename to lib/libc/include/any-windows-any/sec_api/tchar_s.h diff --git a/libc/include/any-windows-any/sec_api/wchar_s.h b/lib/libc/include/any-windows-any/sec_api/wchar_s.h similarity index 100% rename from libc/include/any-windows-any/sec_api/wchar_s.h rename to lib/libc/include/any-windows-any/sec_api/wchar_s.h diff --git a/libc/include/any-windows-any/secext.h b/lib/libc/include/any-windows-any/secext.h similarity index 100% rename from libc/include/any-windows-any/secext.h rename to lib/libc/include/any-windows-any/secext.h diff --git a/libc/include/any-windows-any/security.h b/lib/libc/include/any-windows-any/security.h similarity index 100% rename from libc/include/any-windows-any/security.h rename to lib/libc/include/any-windows-any/security.h diff --git a/libc/include/any-windows-any/securityappcontainer.h b/lib/libc/include/any-windows-any/securityappcontainer.h similarity index 100% rename from libc/include/any-windows-any/securityappcontainer.h rename to lib/libc/include/any-windows-any/securityappcontainer.h diff --git a/libc/include/any-windows-any/securitybaseapi.h b/lib/libc/include/any-windows-any/securitybaseapi.h similarity index 100% rename from libc/include/any-windows-any/securitybaseapi.h rename to lib/libc/include/any-windows-any/securitybaseapi.h diff --git a/libc/include/any-windows-any/sehmap.h b/lib/libc/include/any-windows-any/sehmap.h similarity index 100% rename from libc/include/any-windows-any/sehmap.h rename to lib/libc/include/any-windows-any/sehmap.h diff --git a/libc/include/any-windows-any/sens.h b/lib/libc/include/any-windows-any/sens.h similarity index 100% rename from libc/include/any-windows-any/sens.h rename to lib/libc/include/any-windows-any/sens.h diff --git a/libc/include/any-windows-any/sensapi.h b/lib/libc/include/any-windows-any/sensapi.h similarity index 100% rename from libc/include/any-windows-any/sensapi.h rename to lib/libc/include/any-windows-any/sensapi.h diff --git a/libc/include/any-windows-any/sensevts.h b/lib/libc/include/any-windows-any/sensevts.h similarity index 100% rename from libc/include/any-windows-any/sensevts.h rename to lib/libc/include/any-windows-any/sensevts.h diff --git a/libc/include/any-windows-any/sensors.h b/lib/libc/include/any-windows-any/sensors.h similarity index 100% rename from libc/include/any-windows-any/sensors.h rename to lib/libc/include/any-windows-any/sensors.h diff --git a/libc/include/any-windows-any/sensorsapi.h b/lib/libc/include/any-windows-any/sensorsapi.h similarity index 100% rename from libc/include/any-windows-any/sensorsapi.h rename to lib/libc/include/any-windows-any/sensorsapi.h diff --git a/libc/include/any-windows-any/servprov.h b/lib/libc/include/any-windows-any/servprov.h similarity index 100% rename from libc/include/any-windows-any/servprov.h rename to lib/libc/include/any-windows-any/servprov.h diff --git a/libc/include/any-windows-any/setjmp.h b/lib/libc/include/any-windows-any/setjmp.h similarity index 100% rename from libc/include/any-windows-any/setjmp.h rename to lib/libc/include/any-windows-any/setjmp.h diff --git a/libc/include/any-windows-any/setjmpex.h b/lib/libc/include/any-windows-any/setjmpex.h similarity index 100% rename from libc/include/any-windows-any/setjmpex.h rename to lib/libc/include/any-windows-any/setjmpex.h diff --git a/libc/include/any-windows-any/setupapi.h b/lib/libc/include/any-windows-any/setupapi.h similarity index 100% rename from libc/include/any-windows-any/setupapi.h rename to lib/libc/include/any-windows-any/setupapi.h diff --git a/libc/include/any-windows-any/sfc.h b/lib/libc/include/any-windows-any/sfc.h similarity index 100% rename from libc/include/any-windows-any/sfc.h rename to lib/libc/include/any-windows-any/sfc.h diff --git a/libc/include/any-windows-any/shappmgr.h b/lib/libc/include/any-windows-any/shappmgr.h similarity index 100% rename from libc/include/any-windows-any/shappmgr.h rename to lib/libc/include/any-windows-any/shappmgr.h diff --git a/libc/include/any-windows-any/share.h b/lib/libc/include/any-windows-any/share.h similarity index 100% rename from libc/include/any-windows-any/share.h rename to lib/libc/include/any-windows-any/share.h diff --git a/libc/include/any-windows-any/shdeprecated.h b/lib/libc/include/any-windows-any/shdeprecated.h similarity index 100% rename from libc/include/any-windows-any/shdeprecated.h rename to lib/libc/include/any-windows-any/shdeprecated.h diff --git a/libc/include/any-windows-any/shdispid.h b/lib/libc/include/any-windows-any/shdispid.h similarity index 100% rename from libc/include/any-windows-any/shdispid.h rename to lib/libc/include/any-windows-any/shdispid.h diff --git a/libc/include/any-windows-any/shellapi.h b/lib/libc/include/any-windows-any/shellapi.h similarity index 100% rename from libc/include/any-windows-any/shellapi.h rename to lib/libc/include/any-windows-any/shellapi.h diff --git a/libc/include/any-windows-any/sherrors.h b/lib/libc/include/any-windows-any/sherrors.h similarity index 100% rename from libc/include/any-windows-any/sherrors.h rename to lib/libc/include/any-windows-any/sherrors.h diff --git a/libc/include/any-windows-any/shfolder.h b/lib/libc/include/any-windows-any/shfolder.h similarity index 100% rename from libc/include/any-windows-any/shfolder.h rename to lib/libc/include/any-windows-any/shfolder.h diff --git a/libc/include/any-windows-any/shldisp.h b/lib/libc/include/any-windows-any/shldisp.h similarity index 100% rename from libc/include/any-windows-any/shldisp.h rename to lib/libc/include/any-windows-any/shldisp.h diff --git a/libc/include/any-windows-any/shlguid.h b/lib/libc/include/any-windows-any/shlguid.h similarity index 100% rename from libc/include/any-windows-any/shlguid.h rename to lib/libc/include/any-windows-any/shlguid.h diff --git a/libc/include/any-windows-any/shlobj.h b/lib/libc/include/any-windows-any/shlobj.h similarity index 100% rename from libc/include/any-windows-any/shlobj.h rename to lib/libc/include/any-windows-any/shlobj.h diff --git a/libc/include/any-windows-any/shlwapi.h b/lib/libc/include/any-windows-any/shlwapi.h similarity index 100% rename from libc/include/any-windows-any/shlwapi.h rename to lib/libc/include/any-windows-any/shlwapi.h diff --git a/libc/include/any-windows-any/shobjidl.h b/lib/libc/include/any-windows-any/shobjidl.h similarity index 100% rename from libc/include/any-windows-any/shobjidl.h rename to lib/libc/include/any-windows-any/shobjidl.h diff --git a/libc/include/any-windows-any/shtypes.h b/lib/libc/include/any-windows-any/shtypes.h similarity index 100% rename from libc/include/any-windows-any/shtypes.h rename to lib/libc/include/any-windows-any/shtypes.h diff --git a/libc/include/any-windows-any/signal.h b/lib/libc/include/any-windows-any/signal.h similarity index 100% rename from libc/include/any-windows-any/signal.h rename to lib/libc/include/any-windows-any/signal.h diff --git a/libc/include/any-windows-any/simpdata.h b/lib/libc/include/any-windows-any/simpdata.h similarity index 100% rename from libc/include/any-windows-any/simpdata.h rename to lib/libc/include/any-windows-any/simpdata.h diff --git a/libc/include/any-windows-any/simpdc.h b/lib/libc/include/any-windows-any/simpdc.h similarity index 100% rename from libc/include/any-windows-any/simpdc.h rename to lib/libc/include/any-windows-any/simpdc.h diff --git a/libc/include/any-windows-any/sipbase.h b/lib/libc/include/any-windows-any/sipbase.h similarity index 100% rename from libc/include/any-windows-any/sipbase.h rename to lib/libc/include/any-windows-any/sipbase.h diff --git a/libc/include/any-windows-any/sisbkup.h b/lib/libc/include/any-windows-any/sisbkup.h similarity index 100% rename from libc/include/any-windows-any/sisbkup.h rename to lib/libc/include/any-windows-any/sisbkup.h diff --git a/libc/include/any-windows-any/slerror.h b/lib/libc/include/any-windows-any/slerror.h similarity index 100% rename from libc/include/any-windows-any/slerror.h rename to lib/libc/include/any-windows-any/slerror.h diff --git a/libc/include/any-windows-any/slpublic.h b/lib/libc/include/any-windows-any/slpublic.h similarity index 100% rename from libc/include/any-windows-any/slpublic.h rename to lib/libc/include/any-windows-any/slpublic.h diff --git a/libc/include/any-windows-any/smpab.h b/lib/libc/include/any-windows-any/smpab.h similarity index 100% rename from libc/include/any-windows-any/smpab.h rename to lib/libc/include/any-windows-any/smpab.h diff --git a/libc/include/any-windows-any/smpms.h b/lib/libc/include/any-windows-any/smpms.h similarity index 100% rename from libc/include/any-windows-any/smpms.h rename to lib/libc/include/any-windows-any/smpms.h diff --git a/libc/include/any-windows-any/smpxp.h b/lib/libc/include/any-windows-any/smpxp.h similarity index 100% rename from libc/include/any-windows-any/smpxp.h rename to lib/libc/include/any-windows-any/smpxp.h diff --git a/libc/include/any-windows-any/smtpguid.h b/lib/libc/include/any-windows-any/smtpguid.h similarity index 100% rename from libc/include/any-windows-any/smtpguid.h rename to lib/libc/include/any-windows-any/smtpguid.h diff --git a/libc/include/any-windows-any/smx.h b/lib/libc/include/any-windows-any/smx.h similarity index 100% rename from libc/include/any-windows-any/smx.h rename to lib/libc/include/any-windows-any/smx.h diff --git a/libc/include/any-windows-any/snmp.h b/lib/libc/include/any-windows-any/snmp.h similarity index 100% rename from libc/include/any-windows-any/snmp.h rename to lib/libc/include/any-windows-any/snmp.h diff --git a/libc/include/any-windows-any/softpub.h b/lib/libc/include/any-windows-any/softpub.h similarity index 100% rename from libc/include/any-windows-any/softpub.h rename to lib/libc/include/any-windows-any/softpub.h diff --git a/libc/include/any-windows-any/specstrings.h b/lib/libc/include/any-windows-any/specstrings.h similarity index 100% rename from libc/include/any-windows-any/specstrings.h rename to lib/libc/include/any-windows-any/specstrings.h diff --git a/libc/include/any-windows-any/sperror.h b/lib/libc/include/any-windows-any/sperror.h similarity index 100% rename from libc/include/any-windows-any/sperror.h rename to lib/libc/include/any-windows-any/sperror.h diff --git a/libc/include/any-windows-any/sphelper.h b/lib/libc/include/any-windows-any/sphelper.h similarity index 100% rename from libc/include/any-windows-any/sphelper.h rename to lib/libc/include/any-windows-any/sphelper.h diff --git a/libc/include/any-windows-any/sporder.h b/lib/libc/include/any-windows-any/sporder.h similarity index 100% rename from libc/include/any-windows-any/sporder.h rename to lib/libc/include/any-windows-any/sporder.h diff --git a/libc/include/any-windows-any/sql.h b/lib/libc/include/any-windows-any/sql.h similarity index 100% rename from libc/include/any-windows-any/sql.h rename to lib/libc/include/any-windows-any/sql.h diff --git a/libc/include/any-windows-any/sql_1.h b/lib/libc/include/any-windows-any/sql_1.h similarity index 100% rename from libc/include/any-windows-any/sql_1.h rename to lib/libc/include/any-windows-any/sql_1.h diff --git a/libc/include/any-windows-any/sqlext.h b/lib/libc/include/any-windows-any/sqlext.h similarity index 100% rename from libc/include/any-windows-any/sqlext.h rename to lib/libc/include/any-windows-any/sqlext.h diff --git a/libc/include/any-windows-any/sqloledb.h b/lib/libc/include/any-windows-any/sqloledb.h similarity index 100% rename from libc/include/any-windows-any/sqloledb.h rename to lib/libc/include/any-windows-any/sqloledb.h diff --git a/libc/include/any-windows-any/sqltypes.h b/lib/libc/include/any-windows-any/sqltypes.h similarity index 100% rename from libc/include/any-windows-any/sqltypes.h rename to lib/libc/include/any-windows-any/sqltypes.h diff --git a/libc/include/any-windows-any/sqlucode.h b/lib/libc/include/any-windows-any/sqlucode.h similarity index 100% rename from libc/include/any-windows-any/sqlucode.h rename to lib/libc/include/any-windows-any/sqlucode.h diff --git a/libc/include/any-windows-any/srrestoreptapi.h b/lib/libc/include/any-windows-any/srrestoreptapi.h similarity index 100% rename from libc/include/any-windows-any/srrestoreptapi.h rename to lib/libc/include/any-windows-any/srrestoreptapi.h diff --git a/libc/include/any-windows-any/srv.h b/lib/libc/include/any-windows-any/srv.h similarity index 100% rename from libc/include/any-windows-any/srv.h rename to lib/libc/include/any-windows-any/srv.h diff --git a/libc/include/any-windows-any/sspguid.h b/lib/libc/include/any-windows-any/sspguid.h similarity index 100% rename from libc/include/any-windows-any/sspguid.h rename to lib/libc/include/any-windows-any/sspguid.h diff --git a/libc/include/any-windows-any/sspi.h b/lib/libc/include/any-windows-any/sspi.h similarity index 100% rename from libc/include/any-windows-any/sspi.h rename to lib/libc/include/any-windows-any/sspi.h diff --git a/libc/include/any-windows-any/sspserr.h b/lib/libc/include/any-windows-any/sspserr.h similarity index 100% rename from libc/include/any-windows-any/sspserr.h rename to lib/libc/include/any-windows-any/sspserr.h diff --git a/libc/include/any-windows-any/sspsidl.h b/lib/libc/include/any-windows-any/sspsidl.h similarity index 100% rename from libc/include/any-windows-any/sspsidl.h rename to lib/libc/include/any-windows-any/sspsidl.h diff --git a/libc/include/any-windows-any/stdarg.h b/lib/libc/include/any-windows-any/stdarg.h similarity index 100% rename from libc/include/any-windows-any/stdarg.h rename to lib/libc/include/any-windows-any/stdarg.h diff --git a/libc/include/any-windows-any/stddef.h b/lib/libc/include/any-windows-any/stddef.h similarity index 100% rename from libc/include/any-windows-any/stddef.h rename to lib/libc/include/any-windows-any/stddef.h diff --git a/libc/include/any-windows-any/stdexcpt.h b/lib/libc/include/any-windows-any/stdexcpt.h similarity index 100% rename from libc/include/any-windows-any/stdexcpt.h rename to lib/libc/include/any-windows-any/stdexcpt.h diff --git a/libc/include/any-windows-any/stdint.h b/lib/libc/include/any-windows-any/stdint.h similarity index 100% rename from libc/include/any-windows-any/stdint.h rename to lib/libc/include/any-windows-any/stdint.h diff --git a/libc/include/any-windows-any/stdio.h b/lib/libc/include/any-windows-any/stdio.h similarity index 100% rename from libc/include/any-windows-any/stdio.h rename to lib/libc/include/any-windows-any/stdio.h diff --git a/libc/include/any-windows-any/stdlib.h b/lib/libc/include/any-windows-any/stdlib.h similarity index 100% rename from libc/include/any-windows-any/stdlib.h rename to lib/libc/include/any-windows-any/stdlib.h diff --git a/libc/include/any-windows-any/sti.h b/lib/libc/include/any-windows-any/sti.h similarity index 100% rename from libc/include/any-windows-any/sti.h rename to lib/libc/include/any-windows-any/sti.h diff --git a/libc/include/any-windows-any/stierr.h b/lib/libc/include/any-windows-any/stierr.h similarity index 100% rename from libc/include/any-windows-any/stierr.h rename to lib/libc/include/any-windows-any/stierr.h diff --git a/libc/include/any-windows-any/stireg.h b/lib/libc/include/any-windows-any/stireg.h similarity index 100% rename from libc/include/any-windows-any/stireg.h rename to lib/libc/include/any-windows-any/stireg.h diff --git a/libc/include/any-windows-any/stllock.h b/lib/libc/include/any-windows-any/stllock.h similarity index 100% rename from libc/include/any-windows-any/stllock.h rename to lib/libc/include/any-windows-any/stllock.h diff --git a/libc/include/any-windows-any/stm.h b/lib/libc/include/any-windows-any/stm.h similarity index 100% rename from libc/include/any-windows-any/stm.h rename to lib/libc/include/any-windows-any/stm.h diff --git a/libc/include/any-windows-any/storage.h b/lib/libc/include/any-windows-any/storage.h similarity index 100% rename from libc/include/any-windows-any/storage.h rename to lib/libc/include/any-windows-any/storage.h diff --git a/libc/include/any-windows-any/storduid.h b/lib/libc/include/any-windows-any/storduid.h similarity index 100% rename from libc/include/any-windows-any/storduid.h rename to lib/libc/include/any-windows-any/storduid.h diff --git a/libc/include/any-windows-any/storprop.h b/lib/libc/include/any-windows-any/storprop.h similarity index 100% rename from libc/include/any-windows-any/storprop.h rename to lib/libc/include/any-windows-any/storprop.h diff --git a/libc/include/any-windows-any/stralign.h b/lib/libc/include/any-windows-any/stralign.h similarity index 100% rename from libc/include/any-windows-any/stralign.h rename to lib/libc/include/any-windows-any/stralign.h diff --git a/libc/include/any-windows-any/string.h b/lib/libc/include/any-windows-any/string.h similarity index 100% rename from libc/include/any-windows-any/string.h rename to lib/libc/include/any-windows-any/string.h diff --git a/libc/include/any-windows-any/stringapiset.h b/lib/libc/include/any-windows-any/stringapiset.h similarity index 100% rename from libc/include/any-windows-any/stringapiset.h rename to lib/libc/include/any-windows-any/stringapiset.h diff --git a/libc/include/any-windows-any/strings.h b/lib/libc/include/any-windows-any/strings.h similarity index 100% rename from libc/include/any-windows-any/strings.h rename to lib/libc/include/any-windows-any/strings.h diff --git a/libc/include/any-windows-any/strmif.h b/lib/libc/include/any-windows-any/strmif.h similarity index 100% rename from libc/include/any-windows-any/strmif.h rename to lib/libc/include/any-windows-any/strmif.h diff --git a/libc/include/any-windows-any/strsafe.h b/lib/libc/include/any-windows-any/strsafe.h similarity index 100% rename from libc/include/any-windows-any/strsafe.h rename to lib/libc/include/any-windows-any/strsafe.h diff --git a/libc/include/any-windows-any/structuredquerycondition.h b/lib/libc/include/any-windows-any/structuredquerycondition.h similarity index 100% rename from libc/include/any-windows-any/structuredquerycondition.h rename to lib/libc/include/any-windows-any/structuredquerycondition.h diff --git a/libc/include/any-windows-any/subauth.h b/lib/libc/include/any-windows-any/subauth.h similarity index 100% rename from libc/include/any-windows-any/subauth.h rename to lib/libc/include/any-windows-any/subauth.h diff --git a/libc/include/any-windows-any/subsmgr.h b/lib/libc/include/any-windows-any/subsmgr.h similarity index 100% rename from libc/include/any-windows-any/subsmgr.h rename to lib/libc/include/any-windows-any/subsmgr.h diff --git a/libc/include/any-windows-any/svcguid.h b/lib/libc/include/any-windows-any/svcguid.h similarity index 100% rename from libc/include/any-windows-any/svcguid.h rename to lib/libc/include/any-windows-any/svcguid.h diff --git a/libc/include/any-windows-any/svrapi.h b/lib/libc/include/any-windows-any/svrapi.h similarity index 100% rename from libc/include/any-windows-any/svrapi.h rename to lib/libc/include/any-windows-any/svrapi.h diff --git a/libc/include/any-windows-any/swprintf.inl b/lib/libc/include/any-windows-any/swprintf.inl similarity index 100% rename from libc/include/any-windows-any/swprintf.inl rename to lib/libc/include/any-windows-any/swprintf.inl diff --git a/libc/include/any-windows-any/synchapi.h b/lib/libc/include/any-windows-any/synchapi.h similarity index 100% rename from libc/include/any-windows-any/synchapi.h rename to lib/libc/include/any-windows-any/synchapi.h diff --git a/libc/include/any-windows-any/sys/cdefs.h b/lib/libc/include/any-windows-any/sys/cdefs.h similarity index 100% rename from libc/include/any-windows-any/sys/cdefs.h rename to lib/libc/include/any-windows-any/sys/cdefs.h diff --git a/libc/include/any-windows-any/sys/fcntl.h b/lib/libc/include/any-windows-any/sys/fcntl.h similarity index 100% rename from libc/include/any-windows-any/sys/fcntl.h rename to lib/libc/include/any-windows-any/sys/fcntl.h diff --git a/libc/include/any-windows-any/sys/file.h b/lib/libc/include/any-windows-any/sys/file.h similarity index 100% rename from libc/include/any-windows-any/sys/file.h rename to lib/libc/include/any-windows-any/sys/file.h diff --git a/libc/include/any-windows-any/sys/locking.h b/lib/libc/include/any-windows-any/sys/locking.h similarity index 100% rename from libc/include/any-windows-any/sys/locking.h rename to lib/libc/include/any-windows-any/sys/locking.h diff --git a/libc/include/any-windows-any/sys/param.h b/lib/libc/include/any-windows-any/sys/param.h similarity index 100% rename from libc/include/any-windows-any/sys/param.h rename to lib/libc/include/any-windows-any/sys/param.h diff --git a/libc/include/any-windows-any/sys/stat.h b/lib/libc/include/any-windows-any/sys/stat.h similarity index 100% rename from libc/include/any-windows-any/sys/stat.h rename to lib/libc/include/any-windows-any/sys/stat.h diff --git a/libc/include/any-windows-any/sys/time.h b/lib/libc/include/any-windows-any/sys/time.h similarity index 100% rename from libc/include/any-windows-any/sys/time.h rename to lib/libc/include/any-windows-any/sys/time.h diff --git a/libc/include/any-windows-any/sys/timeb.h b/lib/libc/include/any-windows-any/sys/timeb.h similarity index 100% rename from libc/include/any-windows-any/sys/timeb.h rename to lib/libc/include/any-windows-any/sys/timeb.h diff --git a/libc/include/any-windows-any/sys/types.h b/lib/libc/include/any-windows-any/sys/types.h similarity index 100% rename from libc/include/any-windows-any/sys/types.h rename to lib/libc/include/any-windows-any/sys/types.h diff --git a/libc/include/any-windows-any/sys/unistd.h b/lib/libc/include/any-windows-any/sys/unistd.h similarity index 100% rename from libc/include/any-windows-any/sys/unistd.h rename to lib/libc/include/any-windows-any/sys/unistd.h diff --git a/libc/include/any-windows-any/sys/utime.h b/lib/libc/include/any-windows-any/sys/utime.h similarity index 100% rename from libc/include/any-windows-any/sys/utime.h rename to lib/libc/include/any-windows-any/sys/utime.h diff --git a/libc/include/any-windows-any/sysinfoapi.h b/lib/libc/include/any-windows-any/sysinfoapi.h similarity index 100% rename from libc/include/any-windows-any/sysinfoapi.h rename to lib/libc/include/any-windows-any/sysinfoapi.h diff --git a/libc/include/any-windows-any/syslimits.h b/lib/libc/include/any-windows-any/syslimits.h similarity index 100% rename from libc/include/any-windows-any/syslimits.h rename to lib/libc/include/any-windows-any/syslimits.h diff --git a/libc/include/any-windows-any/systemtopologyapi.h b/lib/libc/include/any-windows-any/systemtopologyapi.h similarity index 100% rename from libc/include/any-windows-any/systemtopologyapi.h rename to lib/libc/include/any-windows-any/systemtopologyapi.h diff --git a/libc/include/any-windows-any/t2embapi.h b/lib/libc/include/any-windows-any/t2embapi.h similarity index 100% rename from libc/include/any-windows-any/t2embapi.h rename to lib/libc/include/any-windows-any/t2embapi.h diff --git a/libc/include/any-windows-any/tabflicks.h b/lib/libc/include/any-windows-any/tabflicks.h similarity index 100% rename from libc/include/any-windows-any/tabflicks.h rename to lib/libc/include/any-windows-any/tabflicks.h diff --git a/libc/include/any-windows-any/tapi.h b/lib/libc/include/any-windows-any/tapi.h similarity index 100% rename from libc/include/any-windows-any/tapi.h rename to lib/libc/include/any-windows-any/tapi.h diff --git a/libc/include/any-windows-any/tapi3.h b/lib/libc/include/any-windows-any/tapi3.h similarity index 100% rename from libc/include/any-windows-any/tapi3.h rename to lib/libc/include/any-windows-any/tapi3.h diff --git a/libc/include/any-windows-any/tapi3cc.h b/lib/libc/include/any-windows-any/tapi3cc.h similarity index 100% rename from libc/include/any-windows-any/tapi3cc.h rename to lib/libc/include/any-windows-any/tapi3cc.h diff --git a/libc/include/any-windows-any/tapi3ds.h b/lib/libc/include/any-windows-any/tapi3ds.h similarity index 100% rename from libc/include/any-windows-any/tapi3ds.h rename to lib/libc/include/any-windows-any/tapi3ds.h diff --git a/libc/include/any-windows-any/tapi3err.h b/lib/libc/include/any-windows-any/tapi3err.h similarity index 100% rename from libc/include/any-windows-any/tapi3err.h rename to lib/libc/include/any-windows-any/tapi3err.h diff --git a/libc/include/any-windows-any/tapi3if.h b/lib/libc/include/any-windows-any/tapi3if.h similarity index 100% rename from libc/include/any-windows-any/tapi3if.h rename to lib/libc/include/any-windows-any/tapi3if.h diff --git a/libc/include/any-windows-any/taskschd.h b/lib/libc/include/any-windows-any/taskschd.h similarity index 100% rename from libc/include/any-windows-any/taskschd.h rename to lib/libc/include/any-windows-any/taskschd.h diff --git a/libc/include/any-windows-any/tbs.h b/lib/libc/include/any-windows-any/tbs.h similarity index 100% rename from libc/include/any-windows-any/tbs.h rename to lib/libc/include/any-windows-any/tbs.h diff --git a/libc/include/any-windows-any/tcerror.h b/lib/libc/include/any-windows-any/tcerror.h similarity index 100% rename from libc/include/any-windows-any/tcerror.h rename to lib/libc/include/any-windows-any/tcerror.h diff --git a/libc/include/any-windows-any/tcguid.h b/lib/libc/include/any-windows-any/tcguid.h similarity index 100% rename from libc/include/any-windows-any/tcguid.h rename to lib/libc/include/any-windows-any/tcguid.h diff --git a/libc/include/any-windows-any/tchar.h b/lib/libc/include/any-windows-any/tchar.h similarity index 100% rename from libc/include/any-windows-any/tchar.h rename to lib/libc/include/any-windows-any/tchar.h diff --git a/libc/include/any-windows-any/tcpestats.h b/lib/libc/include/any-windows-any/tcpestats.h similarity index 100% rename from libc/include/any-windows-any/tcpestats.h rename to lib/libc/include/any-windows-any/tcpestats.h diff --git a/libc/include/any-windows-any/tcpmib.h b/lib/libc/include/any-windows-any/tcpmib.h similarity index 100% rename from libc/include/any-windows-any/tcpmib.h rename to lib/libc/include/any-windows-any/tcpmib.h diff --git a/libc/include/any-windows-any/tdh.h b/lib/libc/include/any-windows-any/tdh.h similarity index 100% rename from libc/include/any-windows-any/tdh.h rename to lib/libc/include/any-windows-any/tdh.h diff --git a/libc/include/any-windows-any/tdi.h b/lib/libc/include/any-windows-any/tdi.h similarity index 100% rename from libc/include/any-windows-any/tdi.h rename to lib/libc/include/any-windows-any/tdi.h diff --git a/libc/include/any-windows-any/tdiinfo.h b/lib/libc/include/any-windows-any/tdiinfo.h similarity index 100% rename from libc/include/any-windows-any/tdiinfo.h rename to lib/libc/include/any-windows-any/tdiinfo.h diff --git a/libc/include/any-windows-any/termmgr.h b/lib/libc/include/any-windows-any/termmgr.h similarity index 100% rename from libc/include/any-windows-any/termmgr.h rename to lib/libc/include/any-windows-any/termmgr.h diff --git a/libc/include/any-windows-any/textserv.h b/lib/libc/include/any-windows-any/textserv.h similarity index 100% rename from libc/include/any-windows-any/textserv.h rename to lib/libc/include/any-windows-any/textserv.h diff --git a/libc/include/any-windows-any/textstor.h b/lib/libc/include/any-windows-any/textstor.h similarity index 100% rename from libc/include/any-windows-any/textstor.h rename to lib/libc/include/any-windows-any/textstor.h diff --git a/libc/include/any-windows-any/threadpoolapiset.h b/lib/libc/include/any-windows-any/threadpoolapiset.h similarity index 100% rename from libc/include/any-windows-any/threadpoolapiset.h rename to lib/libc/include/any-windows-any/threadpoolapiset.h diff --git a/libc/include/any-windows-any/threadpoollegacyapiset.h b/lib/libc/include/any-windows-any/threadpoollegacyapiset.h similarity index 100% rename from libc/include/any-windows-any/threadpoollegacyapiset.h rename to lib/libc/include/any-windows-any/threadpoollegacyapiset.h diff --git a/libc/include/any-windows-any/time.h b/lib/libc/include/any-windows-any/time.h similarity index 100% rename from libc/include/any-windows-any/time.h rename to lib/libc/include/any-windows-any/time.h diff --git a/libc/include/any-windows-any/timeprov.h b/lib/libc/include/any-windows-any/timeprov.h similarity index 100% rename from libc/include/any-windows-any/timeprov.h rename to lib/libc/include/any-windows-any/timeprov.h diff --git a/libc/include/any-windows-any/timezoneapi.h b/lib/libc/include/any-windows-any/timezoneapi.h similarity index 100% rename from libc/include/any-windows-any/timezoneapi.h rename to lib/libc/include/any-windows-any/timezoneapi.h diff --git a/libc/include/any-windows-any/tlbref.h b/lib/libc/include/any-windows-any/tlbref.h similarity index 100% rename from libc/include/any-windows-any/tlbref.h rename to lib/libc/include/any-windows-any/tlbref.h diff --git a/libc/include/any-windows-any/tlhelp32.h b/lib/libc/include/any-windows-any/tlhelp32.h similarity index 100% rename from libc/include/any-windows-any/tlhelp32.h rename to lib/libc/include/any-windows-any/tlhelp32.h diff --git a/libc/include/any-windows-any/tlogstg.h b/lib/libc/include/any-windows-any/tlogstg.h similarity index 100% rename from libc/include/any-windows-any/tlogstg.h rename to lib/libc/include/any-windows-any/tlogstg.h diff --git a/libc/include/any-windows-any/tmschema.h b/lib/libc/include/any-windows-any/tmschema.h similarity index 100% rename from libc/include/any-windows-any/tmschema.h rename to lib/libc/include/any-windows-any/tmschema.h diff --git a/libc/include/any-windows-any/tnef.h b/lib/libc/include/any-windows-any/tnef.h similarity index 100% rename from libc/include/any-windows-any/tnef.h rename to lib/libc/include/any-windows-any/tnef.h diff --git a/libc/include/any-windows-any/tom.h b/lib/libc/include/any-windows-any/tom.h similarity index 100% rename from libc/include/any-windows-any/tom.h rename to lib/libc/include/any-windows-any/tom.h diff --git a/libc/include/any-windows-any/tpcshrd.h b/lib/libc/include/any-windows-any/tpcshrd.h similarity index 100% rename from libc/include/any-windows-any/tpcshrd.h rename to lib/libc/include/any-windows-any/tpcshrd.h diff --git a/libc/include/any-windows-any/traffic.h b/lib/libc/include/any-windows-any/traffic.h similarity index 100% rename from libc/include/any-windows-any/traffic.h rename to lib/libc/include/any-windows-any/traffic.h diff --git a/libc/include/any-windows-any/transact.h b/lib/libc/include/any-windows-any/transact.h similarity index 100% rename from libc/include/any-windows-any/transact.h rename to lib/libc/include/any-windows-any/transact.h diff --git a/libc/include/any-windows-any/triedcid.h b/lib/libc/include/any-windows-any/triedcid.h similarity index 100% rename from libc/include/any-windows-any/triedcid.h rename to lib/libc/include/any-windows-any/triedcid.h diff --git a/libc/include/any-windows-any/triediid.h b/lib/libc/include/any-windows-any/triediid.h similarity index 100% rename from libc/include/any-windows-any/triediid.h rename to lib/libc/include/any-windows-any/triediid.h diff --git a/libc/include/any-windows-any/triedit.h b/lib/libc/include/any-windows-any/triedit.h similarity index 100% rename from libc/include/any-windows-any/triedit.h rename to lib/libc/include/any-windows-any/triedit.h diff --git a/libc/include/any-windows-any/tsattrs.h b/lib/libc/include/any-windows-any/tsattrs.h similarity index 100% rename from libc/include/any-windows-any/tsattrs.h rename to lib/libc/include/any-windows-any/tsattrs.h diff --git a/libc/include/any-windows-any/tspi.h b/lib/libc/include/any-windows-any/tspi.h similarity index 100% rename from libc/include/any-windows-any/tspi.h rename to lib/libc/include/any-windows-any/tspi.h diff --git a/libc/include/any-windows-any/tssbx.h b/lib/libc/include/any-windows-any/tssbx.h similarity index 100% rename from libc/include/any-windows-any/tssbx.h rename to lib/libc/include/any-windows-any/tssbx.h diff --git a/libc/include/any-windows-any/tsuserex.h b/lib/libc/include/any-windows-any/tsuserex.h similarity index 100% rename from libc/include/any-windows-any/tsuserex.h rename to lib/libc/include/any-windows-any/tsuserex.h diff --git a/libc/include/any-windows-any/tuner.h b/lib/libc/include/any-windows-any/tuner.h similarity index 100% rename from libc/include/any-windows-any/tuner.h rename to lib/libc/include/any-windows-any/tuner.h diff --git a/libc/include/any-windows-any/tvout.h b/lib/libc/include/any-windows-any/tvout.h similarity index 100% rename from libc/include/any-windows-any/tvout.h rename to lib/libc/include/any-windows-any/tvout.h diff --git a/libc/include/any-windows-any/txcoord.h b/lib/libc/include/any-windows-any/txcoord.h similarity index 100% rename from libc/include/any-windows-any/txcoord.h rename to lib/libc/include/any-windows-any/txcoord.h diff --git a/libc/include/any-windows-any/txctx.h b/lib/libc/include/any-windows-any/txctx.h similarity index 100% rename from libc/include/any-windows-any/txctx.h rename to lib/libc/include/any-windows-any/txctx.h diff --git a/libc/include/any-windows-any/txdtc.h b/lib/libc/include/any-windows-any/txdtc.h similarity index 100% rename from libc/include/any-windows-any/txdtc.h rename to lib/libc/include/any-windows-any/txdtc.h diff --git a/libc/include/any-windows-any/txfw32.h b/lib/libc/include/any-windows-any/txfw32.h similarity index 100% rename from libc/include/any-windows-any/txfw32.h rename to lib/libc/include/any-windows-any/txfw32.h diff --git a/libc/include/any-windows-any/typeinfo.h b/lib/libc/include/any-windows-any/typeinfo.h similarity index 100% rename from libc/include/any-windows-any/typeinfo.h rename to lib/libc/include/any-windows-any/typeinfo.h diff --git a/libc/include/any-windows-any/uastrfnc.h b/lib/libc/include/any-windows-any/uastrfnc.h similarity index 100% rename from libc/include/any-windows-any/uastrfnc.h rename to lib/libc/include/any-windows-any/uastrfnc.h diff --git a/libc/include/any-windows-any/uchar.h b/lib/libc/include/any-windows-any/uchar.h similarity index 100% rename from libc/include/any-windows-any/uchar.h rename to lib/libc/include/any-windows-any/uchar.h diff --git a/libc/include/any-windows-any/udpmib.h b/lib/libc/include/any-windows-any/udpmib.h similarity index 100% rename from libc/include/any-windows-any/udpmib.h rename to lib/libc/include/any-windows-any/udpmib.h diff --git a/libc/include/any-windows-any/uianimation.h b/lib/libc/include/any-windows-any/uianimation.h similarity index 100% rename from libc/include/any-windows-any/uianimation.h rename to lib/libc/include/any-windows-any/uianimation.h diff --git a/libc/include/any-windows-any/uiautomation.h b/lib/libc/include/any-windows-any/uiautomation.h similarity index 100% rename from libc/include/any-windows-any/uiautomation.h rename to lib/libc/include/any-windows-any/uiautomation.h diff --git a/libc/include/any-windows-any/uiautomationclient.h b/lib/libc/include/any-windows-any/uiautomationclient.h similarity index 100% rename from libc/include/any-windows-any/uiautomationclient.h rename to lib/libc/include/any-windows-any/uiautomationclient.h diff --git a/libc/include/any-windows-any/uiautomationcore.h b/lib/libc/include/any-windows-any/uiautomationcore.h similarity index 100% rename from libc/include/any-windows-any/uiautomationcore.h rename to lib/libc/include/any-windows-any/uiautomationcore.h diff --git a/libc/include/any-windows-any/uiautomationcoreapi.h b/lib/libc/include/any-windows-any/uiautomationcoreapi.h similarity index 100% rename from libc/include/any-windows-any/uiautomationcoreapi.h rename to lib/libc/include/any-windows-any/uiautomationcoreapi.h diff --git a/libc/include/any-windows-any/uiviewsettingsinterop.h b/lib/libc/include/any-windows-any/uiviewsettingsinterop.h similarity index 100% rename from libc/include/any-windows-any/uiviewsettingsinterop.h rename to lib/libc/include/any-windows-any/uiviewsettingsinterop.h diff --git a/libc/include/any-windows-any/umx.h b/lib/libc/include/any-windows-any/umx.h similarity index 100% rename from libc/include/any-windows-any/umx.h rename to lib/libc/include/any-windows-any/umx.h diff --git a/libc/include/any-windows-any/unistd.h b/lib/libc/include/any-windows-any/unistd.h similarity index 100% rename from libc/include/any-windows-any/unistd.h rename to lib/libc/include/any-windows-any/unistd.h diff --git a/libc/include/any-windows-any/unknown.h b/lib/libc/include/any-windows-any/unknown.h similarity index 100% rename from libc/include/any-windows-any/unknown.h rename to lib/libc/include/any-windows-any/unknown.h diff --git a/libc/include/any-windows-any/unknwn.h b/lib/libc/include/any-windows-any/unknwn.h similarity index 100% rename from libc/include/any-windows-any/unknwn.h rename to lib/libc/include/any-windows-any/unknwn.h diff --git a/libc/include/any-windows-any/unknwnbase.h b/lib/libc/include/any-windows-any/unknwnbase.h similarity index 100% rename from libc/include/any-windows-any/unknwnbase.h rename to lib/libc/include/any-windows-any/unknwnbase.h diff --git a/libc/include/any-windows-any/urlhist.h b/lib/libc/include/any-windows-any/urlhist.h similarity index 100% rename from libc/include/any-windows-any/urlhist.h rename to lib/libc/include/any-windows-any/urlhist.h diff --git a/libc/include/any-windows-any/urlmon.h b/lib/libc/include/any-windows-any/urlmon.h similarity index 100% rename from libc/include/any-windows-any/urlmon.h rename to lib/libc/include/any-windows-any/urlmon.h diff --git a/libc/include/any-windows-any/usb.h b/lib/libc/include/any-windows-any/usb.h similarity index 100% rename from libc/include/any-windows-any/usb.h rename to lib/libc/include/any-windows-any/usb.h diff --git a/libc/include/any-windows-any/usb100.h b/lib/libc/include/any-windows-any/usb100.h similarity index 100% rename from libc/include/any-windows-any/usb100.h rename to lib/libc/include/any-windows-any/usb100.h diff --git a/libc/include/any-windows-any/usb200.h b/lib/libc/include/any-windows-any/usb200.h similarity index 100% rename from libc/include/any-windows-any/usb200.h rename to lib/libc/include/any-windows-any/usb200.h diff --git a/libc/include/any-windows-any/usbcamdi.h b/lib/libc/include/any-windows-any/usbcamdi.h similarity index 100% rename from libc/include/any-windows-any/usbcamdi.h rename to lib/libc/include/any-windows-any/usbcamdi.h diff --git a/libc/include/any-windows-any/usbdi.h b/lib/libc/include/any-windows-any/usbdi.h similarity index 100% rename from libc/include/any-windows-any/usbdi.h rename to lib/libc/include/any-windows-any/usbdi.h diff --git a/libc/include/any-windows-any/usbioctl.h b/lib/libc/include/any-windows-any/usbioctl.h similarity index 100% rename from libc/include/any-windows-any/usbioctl.h rename to lib/libc/include/any-windows-any/usbioctl.h diff --git a/libc/include/any-windows-any/usbiodef.h b/lib/libc/include/any-windows-any/usbiodef.h similarity index 100% rename from libc/include/any-windows-any/usbiodef.h rename to lib/libc/include/any-windows-any/usbiodef.h diff --git a/libc/include/any-windows-any/usbprint.h b/lib/libc/include/any-windows-any/usbprint.h similarity index 100% rename from libc/include/any-windows-any/usbprint.h rename to lib/libc/include/any-windows-any/usbprint.h diff --git a/libc/include/any-windows-any/usbrpmif.h b/lib/libc/include/any-windows-any/usbrpmif.h similarity index 100% rename from libc/include/any-windows-any/usbrpmif.h rename to lib/libc/include/any-windows-any/usbrpmif.h diff --git a/libc/include/any-windows-any/usbscan.h b/lib/libc/include/any-windows-any/usbscan.h similarity index 100% rename from libc/include/any-windows-any/usbscan.h rename to lib/libc/include/any-windows-any/usbscan.h diff --git a/libc/include/any-windows-any/usbspec.h b/lib/libc/include/any-windows-any/usbspec.h similarity index 100% rename from libc/include/any-windows-any/usbspec.h rename to lib/libc/include/any-windows-any/usbspec.h diff --git a/libc/include/any-windows-any/usbuser.h b/lib/libc/include/any-windows-any/usbuser.h similarity index 100% rename from libc/include/any-windows-any/usbuser.h rename to lib/libc/include/any-windows-any/usbuser.h diff --git a/libc/include/any-windows-any/userenv.h b/lib/libc/include/any-windows-any/userenv.h similarity index 100% rename from libc/include/any-windows-any/userenv.h rename to lib/libc/include/any-windows-any/userenv.h diff --git a/libc/include/any-windows-any/usp10.h b/lib/libc/include/any-windows-any/usp10.h similarity index 100% rename from libc/include/any-windows-any/usp10.h rename to lib/libc/include/any-windows-any/usp10.h diff --git a/libc/include/any-windows-any/utilapiset.h b/lib/libc/include/any-windows-any/utilapiset.h similarity index 100% rename from libc/include/any-windows-any/utilapiset.h rename to lib/libc/include/any-windows-any/utilapiset.h diff --git a/libc/include/any-windows-any/utime.h b/lib/libc/include/any-windows-any/utime.h similarity index 100% rename from libc/include/any-windows-any/utime.h rename to lib/libc/include/any-windows-any/utime.h diff --git a/libc/include/any-windows-any/uuids.h b/lib/libc/include/any-windows-any/uuids.h similarity index 100% rename from libc/include/any-windows-any/uuids.h rename to lib/libc/include/any-windows-any/uuids.h diff --git a/libc/include/any-windows-any/uxtheme.h b/lib/libc/include/any-windows-any/uxtheme.h similarity index 100% rename from libc/include/any-windows-any/uxtheme.h rename to lib/libc/include/any-windows-any/uxtheme.h diff --git a/libc/include/any-windows-any/vadefs.h b/lib/libc/include/any-windows-any/vadefs.h similarity index 100% rename from libc/include/any-windows-any/vadefs.h rename to lib/libc/include/any-windows-any/vadefs.h diff --git a/libc/include/any-windows-any/varargs.h b/lib/libc/include/any-windows-any/varargs.h similarity index 100% rename from libc/include/any-windows-any/varargs.h rename to lib/libc/include/any-windows-any/varargs.h diff --git a/libc/include/any-windows-any/vcr.h b/lib/libc/include/any-windows-any/vcr.h similarity index 100% rename from libc/include/any-windows-any/vcr.h rename to lib/libc/include/any-windows-any/vcr.h diff --git a/libc/include/any-windows-any/vdmdbg.h b/lib/libc/include/any-windows-any/vdmdbg.h similarity index 100% rename from libc/include/any-windows-any/vdmdbg.h rename to lib/libc/include/any-windows-any/vdmdbg.h diff --git a/libc/include/any-windows-any/vds.h b/lib/libc/include/any-windows-any/vds.h similarity index 100% rename from libc/include/any-windows-any/vds.h rename to lib/libc/include/any-windows-any/vds.h diff --git a/libc/include/any-windows-any/vdslun.h b/lib/libc/include/any-windows-any/vdslun.h similarity index 100% rename from libc/include/any-windows-any/vdslun.h rename to lib/libc/include/any-windows-any/vdslun.h diff --git a/libc/include/any-windows-any/verinfo.ver b/lib/libc/include/any-windows-any/verinfo.ver similarity index 100% rename from libc/include/any-windows-any/verinfo.ver rename to lib/libc/include/any-windows-any/verinfo.ver diff --git a/libc/include/any-windows-any/versionhelpers.h b/lib/libc/include/any-windows-any/versionhelpers.h similarity index 100% rename from libc/include/any-windows-any/versionhelpers.h rename to lib/libc/include/any-windows-any/versionhelpers.h diff --git a/libc/include/any-windows-any/vfw.h b/lib/libc/include/any-windows-any/vfw.h similarity index 100% rename from libc/include/any-windows-any/vfw.h rename to lib/libc/include/any-windows-any/vfw.h diff --git a/libc/include/any-windows-any/vfwmsgs.h b/lib/libc/include/any-windows-any/vfwmsgs.h similarity index 100% rename from libc/include/any-windows-any/vfwmsgs.h rename to lib/libc/include/any-windows-any/vfwmsgs.h diff --git a/libc/include/any-windows-any/virtdisk.h b/lib/libc/include/any-windows-any/virtdisk.h similarity index 100% rename from libc/include/any-windows-any/virtdisk.h rename to lib/libc/include/any-windows-any/virtdisk.h diff --git a/libc/include/any-windows-any/vmr9.h b/lib/libc/include/any-windows-any/vmr9.h similarity index 100% rename from libc/include/any-windows-any/vmr9.h rename to lib/libc/include/any-windows-any/vmr9.h diff --git a/libc/include/any-windows-any/vmr9.idl b/lib/libc/include/any-windows-any/vmr9.idl similarity index 100% rename from libc/include/any-windows-any/vmr9.idl rename to lib/libc/include/any-windows-any/vmr9.idl diff --git a/libc/include/any-windows-any/vsadmin.h b/lib/libc/include/any-windows-any/vsadmin.h similarity index 100% rename from libc/include/any-windows-any/vsadmin.h rename to lib/libc/include/any-windows-any/vsadmin.h diff --git a/libc/include/any-windows-any/vsbackup.h b/lib/libc/include/any-windows-any/vsbackup.h similarity index 100% rename from libc/include/any-windows-any/vsbackup.h rename to lib/libc/include/any-windows-any/vsbackup.h diff --git a/libc/include/any-windows-any/vsmgmt.h b/lib/libc/include/any-windows-any/vsmgmt.h similarity index 100% rename from libc/include/any-windows-any/vsmgmt.h rename to lib/libc/include/any-windows-any/vsmgmt.h diff --git a/libc/include/any-windows-any/vsprov.h b/lib/libc/include/any-windows-any/vsprov.h similarity index 100% rename from libc/include/any-windows-any/vsprov.h rename to lib/libc/include/any-windows-any/vsprov.h diff --git a/libc/include/any-windows-any/vss.h b/lib/libc/include/any-windows-any/vss.h similarity index 100% rename from libc/include/any-windows-any/vss.h rename to lib/libc/include/any-windows-any/vss.h diff --git a/libc/include/any-windows-any/vsstyle.h b/lib/libc/include/any-windows-any/vsstyle.h similarity index 100% rename from libc/include/any-windows-any/vsstyle.h rename to lib/libc/include/any-windows-any/vsstyle.h diff --git a/libc/include/any-windows-any/vssym32.h b/lib/libc/include/any-windows-any/vssym32.h similarity index 100% rename from libc/include/any-windows-any/vssym32.h rename to lib/libc/include/any-windows-any/vssym32.h diff --git a/libc/include/any-windows-any/vswriter.h b/lib/libc/include/any-windows-any/vswriter.h similarity index 100% rename from libc/include/any-windows-any/vswriter.h rename to lib/libc/include/any-windows-any/vswriter.h diff --git a/libc/include/any-windows-any/w32api.h b/lib/libc/include/any-windows-any/w32api.h similarity index 100% rename from libc/include/any-windows-any/w32api.h rename to lib/libc/include/any-windows-any/w32api.h diff --git a/libc/include/any-windows-any/wab.h b/lib/libc/include/any-windows-any/wab.h similarity index 100% rename from libc/include/any-windows-any/wab.h rename to lib/libc/include/any-windows-any/wab.h diff --git a/libc/include/any-windows-any/wabapi.h b/lib/libc/include/any-windows-any/wabapi.h similarity index 100% rename from libc/include/any-windows-any/wabapi.h rename to lib/libc/include/any-windows-any/wabapi.h diff --git a/libc/include/any-windows-any/wabcode.h b/lib/libc/include/any-windows-any/wabcode.h similarity index 100% rename from libc/include/any-windows-any/wabcode.h rename to lib/libc/include/any-windows-any/wabcode.h diff --git a/libc/include/any-windows-any/wabdefs.h b/lib/libc/include/any-windows-any/wabdefs.h similarity index 100% rename from libc/include/any-windows-any/wabdefs.h rename to lib/libc/include/any-windows-any/wabdefs.h diff --git a/libc/include/any-windows-any/wabiab.h b/lib/libc/include/any-windows-any/wabiab.h similarity index 100% rename from libc/include/any-windows-any/wabiab.h rename to lib/libc/include/any-windows-any/wabiab.h diff --git a/libc/include/any-windows-any/wabmem.h b/lib/libc/include/any-windows-any/wabmem.h similarity index 100% rename from libc/include/any-windows-any/wabmem.h rename to lib/libc/include/any-windows-any/wabmem.h diff --git a/libc/include/any-windows-any/wabnot.h b/lib/libc/include/any-windows-any/wabnot.h similarity index 100% rename from libc/include/any-windows-any/wabnot.h rename to lib/libc/include/any-windows-any/wabnot.h diff --git a/libc/include/any-windows-any/wabtags.h b/lib/libc/include/any-windows-any/wabtags.h similarity index 100% rename from libc/include/any-windows-any/wabtags.h rename to lib/libc/include/any-windows-any/wabtags.h diff --git a/libc/include/any-windows-any/wabutil.h b/lib/libc/include/any-windows-any/wabutil.h similarity index 100% rename from libc/include/any-windows-any/wabutil.h rename to lib/libc/include/any-windows-any/wabutil.h diff --git a/libc/include/any-windows-any/wbemads.h b/lib/libc/include/any-windows-any/wbemads.h similarity index 100% rename from libc/include/any-windows-any/wbemads.h rename to lib/libc/include/any-windows-any/wbemads.h diff --git a/libc/include/any-windows-any/wbemcli.h b/lib/libc/include/any-windows-any/wbemcli.h similarity index 100% rename from libc/include/any-windows-any/wbemcli.h rename to lib/libc/include/any-windows-any/wbemcli.h diff --git a/libc/include/any-windows-any/wbemdisp.h b/lib/libc/include/any-windows-any/wbemdisp.h similarity index 100% rename from libc/include/any-windows-any/wbemdisp.h rename to lib/libc/include/any-windows-any/wbemdisp.h diff --git a/libc/include/any-windows-any/wbemidl.h b/lib/libc/include/any-windows-any/wbemidl.h similarity index 100% rename from libc/include/any-windows-any/wbemidl.h rename to lib/libc/include/any-windows-any/wbemidl.h diff --git a/libc/include/any-windows-any/wbemprov.h b/lib/libc/include/any-windows-any/wbemprov.h similarity index 100% rename from libc/include/any-windows-any/wbemprov.h rename to lib/libc/include/any-windows-any/wbemprov.h diff --git a/libc/include/any-windows-any/wbemtran.h b/lib/libc/include/any-windows-any/wbemtran.h similarity index 100% rename from libc/include/any-windows-any/wbemtran.h rename to lib/libc/include/any-windows-any/wbemtran.h diff --git a/libc/include/any-windows-any/wchar.h b/lib/libc/include/any-windows-any/wchar.h similarity index 100% rename from libc/include/any-windows-any/wchar.h rename to lib/libc/include/any-windows-any/wchar.h diff --git a/libc/include/any-windows-any/wcmconfig.h b/lib/libc/include/any-windows-any/wcmconfig.h similarity index 100% rename from libc/include/any-windows-any/wcmconfig.h rename to lib/libc/include/any-windows-any/wcmconfig.h diff --git a/libc/include/any-windows-any/wcsplugin.h b/lib/libc/include/any-windows-any/wcsplugin.h similarity index 100% rename from libc/include/any-windows-any/wcsplugin.h rename to lib/libc/include/any-windows-any/wcsplugin.h diff --git a/libc/include/any-windows-any/wct.h b/lib/libc/include/any-windows-any/wct.h similarity index 100% rename from libc/include/any-windows-any/wct.h rename to lib/libc/include/any-windows-any/wct.h diff --git a/libc/include/any-windows-any/wctype.h b/lib/libc/include/any-windows-any/wctype.h similarity index 100% rename from libc/include/any-windows-any/wctype.h rename to lib/libc/include/any-windows-any/wctype.h diff --git a/libc/include/any-windows-any/wdsbp.h b/lib/libc/include/any-windows-any/wdsbp.h similarity index 100% rename from libc/include/any-windows-any/wdsbp.h rename to lib/libc/include/any-windows-any/wdsbp.h diff --git a/libc/include/any-windows-any/wdsclientapi.h b/lib/libc/include/any-windows-any/wdsclientapi.h similarity index 100% rename from libc/include/any-windows-any/wdsclientapi.h rename to lib/libc/include/any-windows-any/wdsclientapi.h diff --git a/libc/include/any-windows-any/wdspxe.h b/lib/libc/include/any-windows-any/wdspxe.h similarity index 100% rename from libc/include/any-windows-any/wdspxe.h rename to lib/libc/include/any-windows-any/wdspxe.h diff --git a/libc/include/any-windows-any/wdstci.h b/lib/libc/include/any-windows-any/wdstci.h similarity index 100% rename from libc/include/any-windows-any/wdstci.h rename to lib/libc/include/any-windows-any/wdstci.h diff --git a/libc/include/any-windows-any/wdstpdi.h b/lib/libc/include/any-windows-any/wdstpdi.h similarity index 100% rename from libc/include/any-windows-any/wdstpdi.h rename to lib/libc/include/any-windows-any/wdstpdi.h diff --git a/libc/include/any-windows-any/wdstptmgmt.h b/lib/libc/include/any-windows-any/wdstptmgmt.h similarity index 100% rename from libc/include/any-windows-any/wdstptmgmt.h rename to lib/libc/include/any-windows-any/wdstptmgmt.h diff --git a/libc/include/any-windows-any/werapi.h b/lib/libc/include/any-windows-any/werapi.h similarity index 100% rename from libc/include/any-windows-any/werapi.h rename to lib/libc/include/any-windows-any/werapi.h diff --git a/libc/include/any-windows-any/wfext.h b/lib/libc/include/any-windows-any/wfext.h similarity index 100% rename from libc/include/any-windows-any/wfext.h rename to lib/libc/include/any-windows-any/wfext.h diff --git a/libc/include/any-windows-any/wia.h b/lib/libc/include/any-windows-any/wia.h similarity index 100% rename from libc/include/any-windows-any/wia.h rename to lib/libc/include/any-windows-any/wia.h diff --git a/libc/include/any-windows-any/wiadef.h b/lib/libc/include/any-windows-any/wiadef.h similarity index 100% rename from libc/include/any-windows-any/wiadef.h rename to lib/libc/include/any-windows-any/wiadef.h diff --git a/libc/include/any-windows-any/wiadevd.h b/lib/libc/include/any-windows-any/wiadevd.h similarity index 100% rename from libc/include/any-windows-any/wiadevd.h rename to lib/libc/include/any-windows-any/wiadevd.h diff --git a/libc/include/any-windows-any/wiavideo.h b/lib/libc/include/any-windows-any/wiavideo.h similarity index 100% rename from libc/include/any-windows-any/wiavideo.h rename to lib/libc/include/any-windows-any/wiavideo.h diff --git a/libc/include/any-windows-any/winable.h b/lib/libc/include/any-windows-any/winable.h similarity index 100% rename from libc/include/any-windows-any/winable.h rename to lib/libc/include/any-windows-any/winable.h diff --git a/libc/include/any-windows-any/winapifamily.h b/lib/libc/include/any-windows-any/winapifamily.h similarity index 100% rename from libc/include/any-windows-any/winapifamily.h rename to lib/libc/include/any-windows-any/winapifamily.h diff --git a/libc/include/any-windows-any/winbase.h b/lib/libc/include/any-windows-any/winbase.h similarity index 100% rename from libc/include/any-windows-any/winbase.h rename to lib/libc/include/any-windows-any/winbase.h diff --git a/libc/include/any-windows-any/winber.h b/lib/libc/include/any-windows-any/winber.h similarity index 100% rename from libc/include/any-windows-any/winber.h rename to lib/libc/include/any-windows-any/winber.h diff --git a/libc/include/any-windows-any/wincodec.h b/lib/libc/include/any-windows-any/wincodec.h similarity index 100% rename from libc/include/any-windows-any/wincodec.h rename to lib/libc/include/any-windows-any/wincodec.h diff --git a/libc/include/any-windows-any/wincon.h b/lib/libc/include/any-windows-any/wincon.h similarity index 100% rename from libc/include/any-windows-any/wincon.h rename to lib/libc/include/any-windows-any/wincon.h diff --git a/libc/include/any-windows-any/wincred.h b/lib/libc/include/any-windows-any/wincred.h similarity index 100% rename from libc/include/any-windows-any/wincred.h rename to lib/libc/include/any-windows-any/wincred.h diff --git a/libc/include/any-windows-any/wincrypt.h b/lib/libc/include/any-windows-any/wincrypt.h similarity index 100% rename from libc/include/any-windows-any/wincrypt.h rename to lib/libc/include/any-windows-any/wincrypt.h diff --git a/libc/include/any-windows-any/winddi.h b/lib/libc/include/any-windows-any/winddi.h similarity index 100% rename from libc/include/any-windows-any/winddi.h rename to lib/libc/include/any-windows-any/winddi.h diff --git a/libc/include/any-windows-any/winddiui.h b/lib/libc/include/any-windows-any/winddiui.h similarity index 100% rename from libc/include/any-windows-any/winddiui.h rename to lib/libc/include/any-windows-any/winddiui.h diff --git a/libc/include/any-windows-any/windef.h b/lib/libc/include/any-windows-any/windef.h similarity index 100% rename from libc/include/any-windows-any/windef.h rename to lib/libc/include/any-windows-any/windef.h diff --git a/libc/include/any-windows-any/windns.h b/lib/libc/include/any-windows-any/windns.h similarity index 100% rename from libc/include/any-windows-any/windns.h rename to lib/libc/include/any-windows-any/windns.h diff --git a/libc/include/any-windows-any/windot11.h b/lib/libc/include/any-windows-any/windot11.h similarity index 100% rename from libc/include/any-windows-any/windot11.h rename to lib/libc/include/any-windows-any/windot11.h diff --git a/libc/include/any-windows-any/windows.foundation.h b/lib/libc/include/any-windows-any/windows.foundation.h similarity index 100% rename from libc/include/any-windows-any/windows.foundation.h rename to lib/libc/include/any-windows-any/windows.foundation.h diff --git a/libc/include/any-windows-any/windows.h b/lib/libc/include/any-windows-any/windows.h similarity index 100% rename from libc/include/any-windows-any/windows.h rename to lib/libc/include/any-windows-any/windows.h diff --git a/libc/include/any-windows-any/windows.security.cryptography.h b/lib/libc/include/any-windows-any/windows.security.cryptography.h similarity index 100% rename from libc/include/any-windows-any/windows.security.cryptography.h rename to lib/libc/include/any-windows-any/windows.security.cryptography.h diff --git a/libc/include/any-windows-any/windows.storage.h b/lib/libc/include/any-windows-any/windows.storage.h similarity index 100% rename from libc/include/any-windows-any/windows.storage.h rename to lib/libc/include/any-windows-any/windows.storage.h diff --git a/libc/include/any-windows-any/windows.storage.streams.h b/lib/libc/include/any-windows-any/windows.storage.streams.h similarity index 100% rename from libc/include/any-windows-any/windows.storage.streams.h rename to lib/libc/include/any-windows-any/windows.storage.streams.h diff --git a/libc/include/any-windows-any/windows.system.threading.h b/lib/libc/include/any-windows-any/windows.system.threading.h similarity index 100% rename from libc/include/any-windows-any/windows.system.threading.h rename to lib/libc/include/any-windows-any/windows.system.threading.h diff --git a/libc/include/any-windows-any/windowsx.h b/lib/libc/include/any-windows-any/windowsx.h similarity index 100% rename from libc/include/any-windows-any/windowsx.h rename to lib/libc/include/any-windows-any/windowsx.h diff --git a/libc/include/any-windows-any/windowsx.h16 b/lib/libc/include/any-windows-any/windowsx.h16 similarity index 100% rename from libc/include/any-windows-any/windowsx.h16 rename to lib/libc/include/any-windows-any/windowsx.h16 diff --git a/libc/include/any-windows-any/winefs.h b/lib/libc/include/any-windows-any/winefs.h similarity index 100% rename from libc/include/any-windows-any/winefs.h rename to lib/libc/include/any-windows-any/winefs.h diff --git a/libc/include/any-windows-any/winerror.h b/lib/libc/include/any-windows-any/winerror.h similarity index 100% rename from libc/include/any-windows-any/winerror.h rename to lib/libc/include/any-windows-any/winerror.h diff --git a/libc/include/any-windows-any/winevt.h b/lib/libc/include/any-windows-any/winevt.h similarity index 100% rename from libc/include/any-windows-any/winevt.h rename to lib/libc/include/any-windows-any/winevt.h diff --git a/libc/include/any-windows-any/wingdi.h b/lib/libc/include/any-windows-any/wingdi.h similarity index 100% rename from libc/include/any-windows-any/wingdi.h rename to lib/libc/include/any-windows-any/wingdi.h diff --git a/libc/include/any-windows-any/winhttp.h b/lib/libc/include/any-windows-any/winhttp.h similarity index 100% rename from libc/include/any-windows-any/winhttp.h rename to lib/libc/include/any-windows-any/winhttp.h diff --git a/libc/include/any-windows-any/wininet.h b/lib/libc/include/any-windows-any/wininet.h similarity index 100% rename from libc/include/any-windows-any/wininet.h rename to lib/libc/include/any-windows-any/wininet.h diff --git a/libc/include/any-windows-any/winineti.h b/lib/libc/include/any-windows-any/winineti.h similarity index 100% rename from libc/include/any-windows-any/winineti.h rename to lib/libc/include/any-windows-any/winineti.h diff --git a/libc/include/any-windows-any/winioctl.h b/lib/libc/include/any-windows-any/winioctl.h similarity index 100% rename from libc/include/any-windows-any/winioctl.h rename to lib/libc/include/any-windows-any/winioctl.h diff --git a/libc/include/any-windows-any/winldap.h b/lib/libc/include/any-windows-any/winldap.h similarity index 100% rename from libc/include/any-windows-any/winldap.h rename to lib/libc/include/any-windows-any/winldap.h diff --git a/libc/include/any-windows-any/winnetwk.h b/lib/libc/include/any-windows-any/winnetwk.h similarity index 100% rename from libc/include/any-windows-any/winnetwk.h rename to lib/libc/include/any-windows-any/winnetwk.h diff --git a/libc/include/any-windows-any/winnls.h b/lib/libc/include/any-windows-any/winnls.h similarity index 100% rename from libc/include/any-windows-any/winnls.h rename to lib/libc/include/any-windows-any/winnls.h diff --git a/libc/include/any-windows-any/winnls32.h b/lib/libc/include/any-windows-any/winnls32.h similarity index 100% rename from libc/include/any-windows-any/winnls32.h rename to lib/libc/include/any-windows-any/winnls32.h diff --git a/libc/include/any-windows-any/winnt.h b/lib/libc/include/any-windows-any/winnt.h similarity index 100% rename from libc/include/any-windows-any/winnt.h rename to lib/libc/include/any-windows-any/winnt.h diff --git a/libc/include/any-windows-any/winnt.rh b/lib/libc/include/any-windows-any/winnt.rh similarity index 100% rename from libc/include/any-windows-any/winnt.rh rename to lib/libc/include/any-windows-any/winnt.rh diff --git a/libc/include/any-windows-any/winperf.h b/lib/libc/include/any-windows-any/winperf.h similarity index 100% rename from libc/include/any-windows-any/winperf.h rename to lib/libc/include/any-windows-any/winperf.h diff --git a/libc/include/any-windows-any/winreg.h b/lib/libc/include/any-windows-any/winreg.h similarity index 100% rename from libc/include/any-windows-any/winreg.h rename to lib/libc/include/any-windows-any/winreg.h diff --git a/libc/include/any-windows-any/winresrc.h b/lib/libc/include/any-windows-any/winresrc.h similarity index 100% rename from libc/include/any-windows-any/winresrc.h rename to lib/libc/include/any-windows-any/winresrc.h diff --git a/libc/include/any-windows-any/winsafer.h b/lib/libc/include/any-windows-any/winsafer.h similarity index 100% rename from libc/include/any-windows-any/winsafer.h rename to lib/libc/include/any-windows-any/winsafer.h diff --git a/libc/include/any-windows-any/winsatcominterfacei.h b/lib/libc/include/any-windows-any/winsatcominterfacei.h similarity index 100% rename from libc/include/any-windows-any/winsatcominterfacei.h rename to lib/libc/include/any-windows-any/winsatcominterfacei.h diff --git a/libc/include/any-windows-any/winscard.h b/lib/libc/include/any-windows-any/winscard.h similarity index 100% rename from libc/include/any-windows-any/winscard.h rename to lib/libc/include/any-windows-any/winscard.h diff --git a/libc/include/any-windows-any/winsdkver.h b/lib/libc/include/any-windows-any/winsdkver.h similarity index 100% rename from libc/include/any-windows-any/winsdkver.h rename to lib/libc/include/any-windows-any/winsdkver.h diff --git a/libc/include/any-windows-any/winsmcrd.h b/lib/libc/include/any-windows-any/winsmcrd.h similarity index 100% rename from libc/include/any-windows-any/winsmcrd.h rename to lib/libc/include/any-windows-any/winsmcrd.h diff --git a/libc/include/any-windows-any/winsnmp.h b/lib/libc/include/any-windows-any/winsnmp.h similarity index 100% rename from libc/include/any-windows-any/winsnmp.h rename to lib/libc/include/any-windows-any/winsnmp.h diff --git a/libc/include/any-windows-any/winsock.h b/lib/libc/include/any-windows-any/winsock.h similarity index 100% rename from libc/include/any-windows-any/winsock.h rename to lib/libc/include/any-windows-any/winsock.h diff --git a/libc/include/any-windows-any/winsock2.h b/lib/libc/include/any-windows-any/winsock2.h similarity index 100% rename from libc/include/any-windows-any/winsock2.h rename to lib/libc/include/any-windows-any/winsock2.h diff --git a/libc/include/any-windows-any/winsplp.h b/lib/libc/include/any-windows-any/winsplp.h similarity index 100% rename from libc/include/any-windows-any/winsplp.h rename to lib/libc/include/any-windows-any/winsplp.h diff --git a/libc/include/any-windows-any/winspool.h b/lib/libc/include/any-windows-any/winspool.h similarity index 100% rename from libc/include/any-windows-any/winspool.h rename to lib/libc/include/any-windows-any/winspool.h diff --git a/libc/include/any-windows-any/winstring.h b/lib/libc/include/any-windows-any/winstring.h similarity index 100% rename from libc/include/any-windows-any/winstring.h rename to lib/libc/include/any-windows-any/winstring.h diff --git a/libc/include/any-windows-any/winsvc.h b/lib/libc/include/any-windows-any/winsvc.h similarity index 100% rename from libc/include/any-windows-any/winsvc.h rename to lib/libc/include/any-windows-any/winsvc.h diff --git a/libc/include/any-windows-any/winsxs.h b/lib/libc/include/any-windows-any/winsxs.h similarity index 100% rename from libc/include/any-windows-any/winsxs.h rename to lib/libc/include/any-windows-any/winsxs.h diff --git a/libc/include/any-windows-any/winsync.h b/lib/libc/include/any-windows-any/winsync.h similarity index 100% rename from libc/include/any-windows-any/winsync.h rename to lib/libc/include/any-windows-any/winsync.h diff --git a/libc/include/any-windows-any/winternl.h b/lib/libc/include/any-windows-any/winternl.h similarity index 100% rename from libc/include/any-windows-any/winternl.h rename to lib/libc/include/any-windows-any/winternl.h diff --git a/libc/include/any-windows-any/wintrust.h b/lib/libc/include/any-windows-any/wintrust.h similarity index 100% rename from libc/include/any-windows-any/wintrust.h rename to lib/libc/include/any-windows-any/wintrust.h diff --git a/libc/include/any-windows-any/winusb.h b/lib/libc/include/any-windows-any/winusb.h similarity index 100% rename from libc/include/any-windows-any/winusb.h rename to lib/libc/include/any-windows-any/winusb.h diff --git a/libc/include/any-windows-any/winusbio.h b/lib/libc/include/any-windows-any/winusbio.h similarity index 100% rename from libc/include/any-windows-any/winusbio.h rename to lib/libc/include/any-windows-any/winusbio.h diff --git a/libc/include/any-windows-any/winuser.h b/lib/libc/include/any-windows-any/winuser.h similarity index 100% rename from libc/include/any-windows-any/winuser.h rename to lib/libc/include/any-windows-any/winuser.h diff --git a/libc/include/any-windows-any/winuser.rh b/lib/libc/include/any-windows-any/winuser.rh similarity index 100% rename from libc/include/any-windows-any/winuser.rh rename to lib/libc/include/any-windows-any/winuser.rh diff --git a/libc/include/any-windows-any/winver.h b/lib/libc/include/any-windows-any/winver.h similarity index 100% rename from libc/include/any-windows-any/winver.h rename to lib/libc/include/any-windows-any/winver.h diff --git a/libc/include/any-windows-any/winwlx.h b/lib/libc/include/any-windows-any/winwlx.h similarity index 100% rename from libc/include/any-windows-any/winwlx.h rename to lib/libc/include/any-windows-any/winwlx.h diff --git a/libc/include/any-windows-any/wlanapi.h b/lib/libc/include/any-windows-any/wlanapi.h similarity index 100% rename from libc/include/any-windows-any/wlanapi.h rename to lib/libc/include/any-windows-any/wlanapi.h diff --git a/libc/include/any-windows-any/wlanihvtypes.h b/lib/libc/include/any-windows-any/wlanihvtypes.h similarity index 100% rename from libc/include/any-windows-any/wlanihvtypes.h rename to lib/libc/include/any-windows-any/wlanihvtypes.h diff --git a/libc/include/any-windows-any/wlantypes.h b/lib/libc/include/any-windows-any/wlantypes.h similarity index 100% rename from libc/include/any-windows-any/wlantypes.h rename to lib/libc/include/any-windows-any/wlantypes.h diff --git a/libc/include/any-windows-any/wmcodecdsp.h b/lib/libc/include/any-windows-any/wmcodecdsp.h similarity index 100% rename from libc/include/any-windows-any/wmcodecdsp.h rename to lib/libc/include/any-windows-any/wmcodecdsp.h diff --git a/libc/include/any-windows-any/wmcontainer.h b/lib/libc/include/any-windows-any/wmcontainer.h similarity index 100% rename from libc/include/any-windows-any/wmcontainer.h rename to lib/libc/include/any-windows-any/wmcontainer.h diff --git a/libc/include/any-windows-any/wmdrmsdk.h b/lib/libc/include/any-windows-any/wmdrmsdk.h similarity index 100% rename from libc/include/any-windows-any/wmdrmsdk.h rename to lib/libc/include/any-windows-any/wmdrmsdk.h diff --git a/libc/include/any-windows-any/wmiatlprov.h b/lib/libc/include/any-windows-any/wmiatlprov.h similarity index 100% rename from libc/include/any-windows-any/wmiatlprov.h rename to lib/libc/include/any-windows-any/wmiatlprov.h diff --git a/libc/include/any-windows-any/wmistr.h b/lib/libc/include/any-windows-any/wmistr.h similarity index 100% rename from libc/include/any-windows-any/wmistr.h rename to lib/libc/include/any-windows-any/wmistr.h diff --git a/libc/include/any-windows-any/wmiutils.h b/lib/libc/include/any-windows-any/wmiutils.h similarity index 100% rename from libc/include/any-windows-any/wmiutils.h rename to lib/libc/include/any-windows-any/wmiutils.h diff --git a/libc/include/any-windows-any/wmsbuffer.h b/lib/libc/include/any-windows-any/wmsbuffer.h similarity index 100% rename from libc/include/any-windows-any/wmsbuffer.h rename to lib/libc/include/any-windows-any/wmsbuffer.h diff --git a/libc/include/any-windows-any/wmsdkidl.h b/lib/libc/include/any-windows-any/wmsdkidl.h similarity index 100% rename from libc/include/any-windows-any/wmsdkidl.h rename to lib/libc/include/any-windows-any/wmsdkidl.h diff --git a/libc/include/any-windows-any/wnnc.h b/lib/libc/include/any-windows-any/wnnc.h similarity index 100% rename from libc/include/any-windows-any/wnnc.h rename to lib/libc/include/any-windows-any/wnnc.h diff --git a/libc/include/any-windows-any/wow64apiset.h b/lib/libc/include/any-windows-any/wow64apiset.h similarity index 100% rename from libc/include/any-windows-any/wow64apiset.h rename to lib/libc/include/any-windows-any/wow64apiset.h diff --git a/libc/include/any-windows-any/wownt16.h b/lib/libc/include/any-windows-any/wownt16.h similarity index 100% rename from libc/include/any-windows-any/wownt16.h rename to lib/libc/include/any-windows-any/wownt16.h diff --git a/libc/include/any-windows-any/wownt32.h b/lib/libc/include/any-windows-any/wownt32.h similarity index 100% rename from libc/include/any-windows-any/wownt32.h rename to lib/libc/include/any-windows-any/wownt32.h diff --git a/libc/include/any-windows-any/wpapi.h b/lib/libc/include/any-windows-any/wpapi.h similarity index 100% rename from libc/include/any-windows-any/wpapi.h rename to lib/libc/include/any-windows-any/wpapi.h diff --git a/libc/include/any-windows-any/wpapimsg.h b/lib/libc/include/any-windows-any/wpapimsg.h similarity index 100% rename from libc/include/any-windows-any/wpapimsg.h rename to lib/libc/include/any-windows-any/wpapimsg.h diff --git a/libc/include/any-windows-any/wpcapi.h b/lib/libc/include/any-windows-any/wpcapi.h similarity index 100% rename from libc/include/any-windows-any/wpcapi.h rename to lib/libc/include/any-windows-any/wpcapi.h diff --git a/libc/include/any-windows-any/wpcevent.h b/lib/libc/include/any-windows-any/wpcevent.h similarity index 100% rename from libc/include/any-windows-any/wpcevent.h rename to lib/libc/include/any-windows-any/wpcevent.h diff --git a/libc/include/any-windows-any/wpcrsmsg.h b/lib/libc/include/any-windows-any/wpcrsmsg.h similarity index 100% rename from libc/include/any-windows-any/wpcrsmsg.h rename to lib/libc/include/any-windows-any/wpcrsmsg.h diff --git a/libc/include/any-windows-any/wpftpmsg.h b/lib/libc/include/any-windows-any/wpftpmsg.h similarity index 100% rename from libc/include/any-windows-any/wpftpmsg.h rename to lib/libc/include/any-windows-any/wpftpmsg.h diff --git a/libc/include/any-windows-any/wppstmsg.h b/lib/libc/include/any-windows-any/wppstmsg.h similarity index 100% rename from libc/include/any-windows-any/wppstmsg.h rename to lib/libc/include/any-windows-any/wppstmsg.h diff --git a/libc/include/any-windows-any/wpspihlp.h b/lib/libc/include/any-windows-any/wpspihlp.h similarity index 100% rename from libc/include/any-windows-any/wpspihlp.h rename to lib/libc/include/any-windows-any/wpspihlp.h diff --git a/libc/include/any-windows-any/wptypes.h b/lib/libc/include/any-windows-any/wptypes.h similarity index 100% rename from libc/include/any-windows-any/wptypes.h rename to lib/libc/include/any-windows-any/wptypes.h diff --git a/libc/include/any-windows-any/wpwizmsg.h b/lib/libc/include/any-windows-any/wpwizmsg.h similarity index 100% rename from libc/include/any-windows-any/wpwizmsg.h rename to lib/libc/include/any-windows-any/wpwizmsg.h diff --git a/libc/include/any-windows-any/wrl.h b/lib/libc/include/any-windows-any/wrl.h similarity index 100% rename from libc/include/any-windows-any/wrl.h rename to lib/libc/include/any-windows-any/wrl.h diff --git a/libc/include/any-windows-any/wrl/client.h b/lib/libc/include/any-windows-any/wrl/client.h similarity index 100% rename from libc/include/any-windows-any/wrl/client.h rename to lib/libc/include/any-windows-any/wrl/client.h diff --git a/libc/include/any-windows-any/wrl/internal.h b/lib/libc/include/any-windows-any/wrl/internal.h similarity index 100% rename from libc/include/any-windows-any/wrl/internal.h rename to lib/libc/include/any-windows-any/wrl/internal.h diff --git a/libc/include/any-windows-any/wrl/module.h b/lib/libc/include/any-windows-any/wrl/module.h similarity index 100% rename from libc/include/any-windows-any/wrl/module.h rename to lib/libc/include/any-windows-any/wrl/module.h diff --git a/libc/include/any-windows-any/wrl/wrappers/corewrappers.h b/lib/libc/include/any-windows-any/wrl/wrappers/corewrappers.h similarity index 100% rename from libc/include/any-windows-any/wrl/wrappers/corewrappers.h rename to lib/libc/include/any-windows-any/wrl/wrappers/corewrappers.h diff --git a/libc/include/any-windows-any/ws2atm.h b/lib/libc/include/any-windows-any/ws2atm.h similarity index 100% rename from libc/include/any-windows-any/ws2atm.h rename to lib/libc/include/any-windows-any/ws2atm.h diff --git a/libc/include/any-windows-any/ws2bth.h b/lib/libc/include/any-windows-any/ws2bth.h similarity index 100% rename from libc/include/any-windows-any/ws2bth.h rename to lib/libc/include/any-windows-any/ws2bth.h diff --git a/libc/include/any-windows-any/ws2def.h b/lib/libc/include/any-windows-any/ws2def.h similarity index 100% rename from libc/include/any-windows-any/ws2def.h rename to lib/libc/include/any-windows-any/ws2def.h diff --git a/libc/include/any-windows-any/ws2dnet.h b/lib/libc/include/any-windows-any/ws2dnet.h similarity index 100% rename from libc/include/any-windows-any/ws2dnet.h rename to lib/libc/include/any-windows-any/ws2dnet.h diff --git a/libc/include/any-windows-any/ws2ipdef.h b/lib/libc/include/any-windows-any/ws2ipdef.h similarity index 100% rename from libc/include/any-windows-any/ws2ipdef.h rename to lib/libc/include/any-windows-any/ws2ipdef.h diff --git a/libc/include/any-windows-any/ws2spi.h b/lib/libc/include/any-windows-any/ws2spi.h similarity index 100% rename from libc/include/any-windows-any/ws2spi.h rename to lib/libc/include/any-windows-any/ws2spi.h diff --git a/libc/include/any-windows-any/ws2tcpip.h b/lib/libc/include/any-windows-any/ws2tcpip.h similarity index 100% rename from libc/include/any-windows-any/ws2tcpip.h rename to lib/libc/include/any-windows-any/ws2tcpip.h diff --git a/libc/include/any-windows-any/wsdapi.h b/lib/libc/include/any-windows-any/wsdapi.h similarity index 100% rename from libc/include/any-windows-any/wsdapi.h rename to lib/libc/include/any-windows-any/wsdapi.h diff --git a/libc/include/any-windows-any/wsdattachment.h b/lib/libc/include/any-windows-any/wsdattachment.h similarity index 100% rename from libc/include/any-windows-any/wsdattachment.h rename to lib/libc/include/any-windows-any/wsdattachment.h diff --git a/libc/include/any-windows-any/wsdbase.h b/lib/libc/include/any-windows-any/wsdbase.h similarity index 100% rename from libc/include/any-windows-any/wsdbase.h rename to lib/libc/include/any-windows-any/wsdbase.h diff --git a/libc/include/any-windows-any/wsdclient.h b/lib/libc/include/any-windows-any/wsdclient.h similarity index 100% rename from libc/include/any-windows-any/wsdclient.h rename to lib/libc/include/any-windows-any/wsdclient.h diff --git a/libc/include/any-windows-any/wsddisco.h b/lib/libc/include/any-windows-any/wsddisco.h similarity index 100% rename from libc/include/any-windows-any/wsddisco.h rename to lib/libc/include/any-windows-any/wsddisco.h diff --git a/libc/include/any-windows-any/wsdhost.h b/lib/libc/include/any-windows-any/wsdhost.h similarity index 100% rename from libc/include/any-windows-any/wsdhost.h rename to lib/libc/include/any-windows-any/wsdhost.h diff --git a/libc/include/any-windows-any/wsdtypes.h b/lib/libc/include/any-windows-any/wsdtypes.h similarity index 100% rename from libc/include/any-windows-any/wsdtypes.h rename to lib/libc/include/any-windows-any/wsdtypes.h diff --git a/libc/include/any-windows-any/wsdutil.h b/lib/libc/include/any-windows-any/wsdutil.h similarity index 100% rename from libc/include/any-windows-any/wsdutil.h rename to lib/libc/include/any-windows-any/wsdutil.h diff --git a/libc/include/any-windows-any/wsdxml.h b/lib/libc/include/any-windows-any/wsdxml.h similarity index 100% rename from libc/include/any-windows-any/wsdxml.h rename to lib/libc/include/any-windows-any/wsdxml.h diff --git a/libc/include/any-windows-any/wsdxmldom.h b/lib/libc/include/any-windows-any/wsdxmldom.h similarity index 100% rename from libc/include/any-windows-any/wsdxmldom.h rename to lib/libc/include/any-windows-any/wsdxmldom.h diff --git a/libc/include/any-windows-any/wshisotp.h b/lib/libc/include/any-windows-any/wshisotp.h similarity index 100% rename from libc/include/any-windows-any/wshisotp.h rename to lib/libc/include/any-windows-any/wshisotp.h diff --git a/libc/include/any-windows-any/wsipv6ok.h b/lib/libc/include/any-windows-any/wsipv6ok.h similarity index 100% rename from libc/include/any-windows-any/wsipv6ok.h rename to lib/libc/include/any-windows-any/wsipv6ok.h diff --git a/libc/include/any-windows-any/wsipx.h b/lib/libc/include/any-windows-any/wsipx.h similarity index 100% rename from libc/include/any-windows-any/wsipx.h rename to lib/libc/include/any-windows-any/wsipx.h diff --git a/libc/include/any-windows-any/wsman.h b/lib/libc/include/any-windows-any/wsman.h similarity index 100% rename from libc/include/any-windows-any/wsman.h rename to lib/libc/include/any-windows-any/wsman.h diff --git a/libc/include/any-windows-any/wsmandisp.h b/lib/libc/include/any-windows-any/wsmandisp.h similarity index 100% rename from libc/include/any-windows-any/wsmandisp.h rename to lib/libc/include/any-windows-any/wsmandisp.h diff --git a/libc/include/any-windows-any/wsnetbs.h b/lib/libc/include/any-windows-any/wsnetbs.h similarity index 100% rename from libc/include/any-windows-any/wsnetbs.h rename to lib/libc/include/any-windows-any/wsnetbs.h diff --git a/libc/include/any-windows-any/wsnwlink.h b/lib/libc/include/any-windows-any/wsnwlink.h similarity index 100% rename from libc/include/any-windows-any/wsnwlink.h rename to lib/libc/include/any-windows-any/wsnwlink.h diff --git a/libc/include/any-windows-any/wspiapi.h b/lib/libc/include/any-windows-any/wspiapi.h similarity index 100% rename from libc/include/any-windows-any/wspiapi.h rename to lib/libc/include/any-windows-any/wspiapi.h diff --git a/libc/include/any-windows-any/wsrm.h b/lib/libc/include/any-windows-any/wsrm.h similarity index 100% rename from libc/include/any-windows-any/wsrm.h rename to lib/libc/include/any-windows-any/wsrm.h diff --git a/libc/include/any-windows-any/wsvns.h b/lib/libc/include/any-windows-any/wsvns.h similarity index 100% rename from libc/include/any-windows-any/wsvns.h rename to lib/libc/include/any-windows-any/wsvns.h diff --git a/libc/include/any-windows-any/wtsapi32.h b/lib/libc/include/any-windows-any/wtsapi32.h similarity index 100% rename from libc/include/any-windows-any/wtsapi32.h rename to lib/libc/include/any-windows-any/wtsapi32.h diff --git a/libc/include/any-windows-any/wtypes.h b/lib/libc/include/any-windows-any/wtypes.h similarity index 100% rename from libc/include/any-windows-any/wtypes.h rename to lib/libc/include/any-windows-any/wtypes.h diff --git a/libc/include/any-windows-any/wtypesbase.h b/lib/libc/include/any-windows-any/wtypesbase.h similarity index 100% rename from libc/include/any-windows-any/wtypesbase.h rename to lib/libc/include/any-windows-any/wtypesbase.h diff --git a/libc/include/any-windows-any/xa.h b/lib/libc/include/any-windows-any/xa.h similarity index 100% rename from libc/include/any-windows-any/xa.h rename to lib/libc/include/any-windows-any/xa.h diff --git a/libc/include/any-windows-any/xcmc.h b/lib/libc/include/any-windows-any/xcmc.h similarity index 100% rename from libc/include/any-windows-any/xcmc.h rename to lib/libc/include/any-windows-any/xcmc.h diff --git a/libc/include/any-windows-any/xcmcext.h b/lib/libc/include/any-windows-any/xcmcext.h similarity index 100% rename from libc/include/any-windows-any/xcmcext.h rename to lib/libc/include/any-windows-any/xcmcext.h diff --git a/libc/include/any-windows-any/xcmcmsx2.h b/lib/libc/include/any-windows-any/xcmcmsx2.h similarity index 100% rename from libc/include/any-windows-any/xcmcmsx2.h rename to lib/libc/include/any-windows-any/xcmcmsx2.h diff --git a/libc/include/any-windows-any/xcmcmsxt.h b/lib/libc/include/any-windows-any/xcmcmsxt.h similarity index 100% rename from libc/include/any-windows-any/xcmcmsxt.h rename to lib/libc/include/any-windows-any/xcmcmsxt.h diff --git a/libc/include/any-windows-any/xenroll.h b/lib/libc/include/any-windows-any/xenroll.h similarity index 100% rename from libc/include/any-windows-any/xenroll.h rename to lib/libc/include/any-windows-any/xenroll.h diff --git a/libc/include/any-windows-any/xinput.h b/lib/libc/include/any-windows-any/xinput.h similarity index 100% rename from libc/include/any-windows-any/xinput.h rename to lib/libc/include/any-windows-any/xinput.h diff --git a/libc/include/any-windows-any/xlocinfo.h b/lib/libc/include/any-windows-any/xlocinfo.h similarity index 100% rename from libc/include/any-windows-any/xlocinfo.h rename to lib/libc/include/any-windows-any/xlocinfo.h diff --git a/libc/include/any-windows-any/xmath.h b/lib/libc/include/any-windows-any/xmath.h similarity index 100% rename from libc/include/any-windows-any/xmath.h rename to lib/libc/include/any-windows-any/xmath.h diff --git a/libc/include/any-windows-any/xmldomdid.h b/lib/libc/include/any-windows-any/xmldomdid.h similarity index 100% rename from libc/include/any-windows-any/xmldomdid.h rename to lib/libc/include/any-windows-any/xmldomdid.h diff --git a/libc/include/any-windows-any/xmldsodid.h b/lib/libc/include/any-windows-any/xmldsodid.h similarity index 100% rename from libc/include/any-windows-any/xmldsodid.h rename to lib/libc/include/any-windows-any/xmldsodid.h diff --git a/libc/include/any-windows-any/xmllite.h b/lib/libc/include/any-windows-any/xmllite.h similarity index 100% rename from libc/include/any-windows-any/xmllite.h rename to lib/libc/include/any-windows-any/xmllite.h diff --git a/libc/include/any-windows-any/xmltrnsf.h b/lib/libc/include/any-windows-any/xmltrnsf.h similarity index 100% rename from libc/include/any-windows-any/xmltrnsf.h rename to lib/libc/include/any-windows-any/xmltrnsf.h diff --git a/libc/include/any-windows-any/xolehlp.h b/lib/libc/include/any-windows-any/xolehlp.h similarity index 100% rename from libc/include/any-windows-any/xolehlp.h rename to lib/libc/include/any-windows-any/xolehlp.h diff --git a/libc/include/any-windows-any/xpsdigitalsignature.h b/lib/libc/include/any-windows-any/xpsdigitalsignature.h similarity index 100% rename from libc/include/any-windows-any/xpsdigitalsignature.h rename to lib/libc/include/any-windows-any/xpsdigitalsignature.h diff --git a/libc/include/any-windows-any/xpsobjectmodel.h b/lib/libc/include/any-windows-any/xpsobjectmodel.h similarity index 100% rename from libc/include/any-windows-any/xpsobjectmodel.h rename to lib/libc/include/any-windows-any/xpsobjectmodel.h diff --git a/libc/include/any-windows-any/xpsobjectmodel_1.h b/lib/libc/include/any-windows-any/xpsobjectmodel_1.h similarity index 100% rename from libc/include/any-windows-any/xpsobjectmodel_1.h rename to lib/libc/include/any-windows-any/xpsobjectmodel_1.h diff --git a/libc/include/any-windows-any/xpsprint.h b/lib/libc/include/any-windows-any/xpsprint.h similarity index 100% rename from libc/include/any-windows-any/xpsprint.h rename to lib/libc/include/any-windows-any/xpsprint.h diff --git a/libc/include/any-windows-any/xpsrassvc.h b/lib/libc/include/any-windows-any/xpsrassvc.h similarity index 100% rename from libc/include/any-windows-any/xpsrassvc.h rename to lib/libc/include/any-windows-any/xpsrassvc.h diff --git a/libc/include/any-windows-any/ymath.h b/lib/libc/include/any-windows-any/ymath.h similarity index 100% rename from libc/include/any-windows-any/ymath.h rename to lib/libc/include/any-windows-any/ymath.h diff --git a/libc/include/any-windows-any/yvals.h b/lib/libc/include/any-windows-any/yvals.h similarity index 100% rename from libc/include/any-windows-any/yvals.h rename to lib/libc/include/any-windows-any/yvals.h diff --git a/libc/include/any-windows-any/zmouse.h b/lib/libc/include/any-windows-any/zmouse.h similarity index 100% rename from libc/include/any-windows-any/zmouse.h rename to lib/libc/include/any-windows-any/zmouse.h diff --git a/libc/include/arm-linux-any/asm/fcntl.h b/lib/libc/include/arm-linux-any/asm/fcntl.h similarity index 100% rename from libc/include/arm-linux-any/asm/fcntl.h rename to lib/libc/include/arm-linux-any/asm/fcntl.h diff --git a/libc/include/arm-linux-any/asm/ioctls.h b/lib/libc/include/arm-linux-any/asm/ioctls.h similarity index 100% rename from libc/include/arm-linux-any/asm/ioctls.h rename to lib/libc/include/arm-linux-any/asm/ioctls.h diff --git a/libc/include/arm-linux-any/asm/mman.h b/lib/libc/include/arm-linux-any/asm/mman.h similarity index 100% rename from libc/include/arm-linux-any/asm/mman.h rename to lib/libc/include/arm-linux-any/asm/mman.h diff --git a/libc/include/arm-linux-any/asm/statfs.h b/lib/libc/include/arm-linux-any/asm/statfs.h similarity index 100% rename from libc/include/arm-linux-any/asm/statfs.h rename to lib/libc/include/arm-linux-any/asm/statfs.h diff --git a/libc/include/arm-linux-any/asm/swab.h b/lib/libc/include/arm-linux-any/asm/swab.h similarity index 100% rename from libc/include/arm-linux-any/asm/swab.h rename to lib/libc/include/arm-linux-any/asm/swab.h diff --git a/libc/include/arm-linux-any/asm/types.h b/lib/libc/include/arm-linux-any/asm/types.h similarity index 100% rename from libc/include/arm-linux-any/asm/types.h rename to lib/libc/include/arm-linux-any/asm/types.h diff --git a/libc/include/arm-linux-gnueabi/bits/endian.h b/lib/libc/include/arm-linux-gnueabi/bits/endian.h similarity index 100% rename from libc/include/arm-linux-gnueabi/bits/endian.h rename to lib/libc/include/arm-linux-gnueabi/bits/endian.h diff --git a/libc/include/arm-linux-gnueabi/bits/fcntl.h b/lib/libc/include/arm-linux-gnueabi/bits/fcntl.h similarity index 100% rename from libc/include/arm-linux-gnueabi/bits/fcntl.h rename to lib/libc/include/arm-linux-gnueabi/bits/fcntl.h diff --git a/libc/include/arm-linux-gnueabi/bits/fenv.h b/lib/libc/include/arm-linux-gnueabi/bits/fenv.h similarity index 100% rename from libc/include/arm-linux-gnueabi/bits/fenv.h rename to lib/libc/include/arm-linux-gnueabi/bits/fenv.h diff --git a/libc/include/arm-linux-gnueabi/bits/floatn.h b/lib/libc/include/arm-linux-gnueabi/bits/floatn.h similarity index 100% rename from libc/include/arm-linux-gnueabi/bits/floatn.h rename to lib/libc/include/arm-linux-gnueabi/bits/floatn.h diff --git a/libc/include/arm-linux-gnueabi/bits/hwcap.h b/lib/libc/include/arm-linux-gnueabi/bits/hwcap.h similarity index 100% rename from libc/include/arm-linux-gnueabi/bits/hwcap.h rename to lib/libc/include/arm-linux-gnueabi/bits/hwcap.h diff --git a/libc/include/arm-linux-gnueabi/bits/link.h b/lib/libc/include/arm-linux-gnueabi/bits/link.h similarity index 100% rename from libc/include/arm-linux-gnueabi/bits/link.h rename to lib/libc/include/arm-linux-gnueabi/bits/link.h diff --git a/libc/include/arm-linux-gnueabi/bits/long-double.h b/lib/libc/include/arm-linux-gnueabi/bits/long-double.h similarity index 100% rename from libc/include/arm-linux-gnueabi/bits/long-double.h rename to lib/libc/include/arm-linux-gnueabi/bits/long-double.h diff --git a/libc/include/arm-linux-gnueabi/bits/procfs-id.h b/lib/libc/include/arm-linux-gnueabi/bits/procfs-id.h similarity index 100% rename from libc/include/arm-linux-gnueabi/bits/procfs-id.h rename to lib/libc/include/arm-linux-gnueabi/bits/procfs-id.h diff --git a/libc/include/arm-linux-gnueabi/bits/procfs.h b/lib/libc/include/arm-linux-gnueabi/bits/procfs.h similarity index 100% rename from libc/include/arm-linux-gnueabi/bits/procfs.h rename to lib/libc/include/arm-linux-gnueabi/bits/procfs.h diff --git a/libc/include/arm-linux-gnueabi/bits/pthreadtypes-arch.h b/lib/libc/include/arm-linux-gnueabi/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/arm-linux-gnueabi/bits/pthreadtypes-arch.h rename to lib/libc/include/arm-linux-gnueabi/bits/pthreadtypes-arch.h diff --git a/libc/include/arm-linux-gnueabi/bits/semaphore.h b/lib/libc/include/arm-linux-gnueabi/bits/semaphore.h similarity index 100% rename from libc/include/arm-linux-gnueabi/bits/semaphore.h rename to lib/libc/include/arm-linux-gnueabi/bits/semaphore.h diff --git a/libc/include/arm-linux-gnueabi/bits/setjmp.h b/lib/libc/include/arm-linux-gnueabi/bits/setjmp.h similarity index 100% rename from libc/include/arm-linux-gnueabi/bits/setjmp.h rename to lib/libc/include/arm-linux-gnueabi/bits/setjmp.h diff --git a/libc/include/arm-linux-gnueabi/bits/shmlba.h b/lib/libc/include/arm-linux-gnueabi/bits/shmlba.h similarity index 100% rename from libc/include/arm-linux-gnueabi/bits/shmlba.h rename to lib/libc/include/arm-linux-gnueabi/bits/shmlba.h diff --git a/libc/include/arm-linux-gnueabi/bits/stat.h b/lib/libc/include/arm-linux-gnueabi/bits/stat.h similarity index 100% rename from libc/include/arm-linux-gnueabi/bits/stat.h rename to lib/libc/include/arm-linux-gnueabi/bits/stat.h diff --git a/libc/include/arm-linux-gnueabi/bits/wordsize.h b/lib/libc/include/arm-linux-gnueabi/bits/wordsize.h similarity index 100% rename from libc/include/arm-linux-gnueabi/bits/wordsize.h rename to lib/libc/include/arm-linux-gnueabi/bits/wordsize.h diff --git a/libc/include/arm-linux-gnueabi/fpu_control.h b/lib/libc/include/arm-linux-gnueabi/fpu_control.h similarity index 100% rename from libc/include/arm-linux-gnueabi/fpu_control.h rename to lib/libc/include/arm-linux-gnueabi/fpu_control.h diff --git a/libc/include/arm-linux-gnueabi/gnu/lib-names.h b/lib/libc/include/arm-linux-gnueabi/gnu/lib-names.h similarity index 100% rename from libc/include/arm-linux-gnueabi/gnu/lib-names.h rename to lib/libc/include/arm-linux-gnueabi/gnu/lib-names.h diff --git a/libc/include/arm-linux-gnueabi/gnu/stubs.h b/lib/libc/include/arm-linux-gnueabi/gnu/stubs.h similarity index 100% rename from libc/include/arm-linux-gnueabi/gnu/stubs.h rename to lib/libc/include/arm-linux-gnueabi/gnu/stubs.h diff --git a/libc/include/arm-linux-gnueabi/sys/ptrace.h b/lib/libc/include/arm-linux-gnueabi/sys/ptrace.h similarity index 100% rename from libc/include/arm-linux-gnueabi/sys/ptrace.h rename to lib/libc/include/arm-linux-gnueabi/sys/ptrace.h diff --git a/libc/include/arm-linux-gnueabi/sys/ucontext.h b/lib/libc/include/arm-linux-gnueabi/sys/ucontext.h similarity index 100% rename from libc/include/arm-linux-gnueabi/sys/ucontext.h rename to lib/libc/include/arm-linux-gnueabi/sys/ucontext.h diff --git a/libc/include/arm-linux-gnueabi/sys/user.h b/lib/libc/include/arm-linux-gnueabi/sys/user.h similarity index 100% rename from libc/include/arm-linux-gnueabi/sys/user.h rename to lib/libc/include/arm-linux-gnueabi/sys/user.h diff --git a/libc/include/arm-linux-gnueabihf/bits/endian.h b/lib/libc/include/arm-linux-gnueabihf/bits/endian.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/bits/endian.h rename to lib/libc/include/arm-linux-gnueabihf/bits/endian.h diff --git a/libc/include/arm-linux-gnueabihf/bits/fcntl.h b/lib/libc/include/arm-linux-gnueabihf/bits/fcntl.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/bits/fcntl.h rename to lib/libc/include/arm-linux-gnueabihf/bits/fcntl.h diff --git a/libc/include/arm-linux-gnueabihf/bits/fenv.h b/lib/libc/include/arm-linux-gnueabihf/bits/fenv.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/bits/fenv.h rename to lib/libc/include/arm-linux-gnueabihf/bits/fenv.h diff --git a/libc/include/arm-linux-gnueabihf/bits/floatn.h b/lib/libc/include/arm-linux-gnueabihf/bits/floatn.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/bits/floatn.h rename to lib/libc/include/arm-linux-gnueabihf/bits/floatn.h diff --git a/libc/include/arm-linux-gnueabihf/bits/hwcap.h b/lib/libc/include/arm-linux-gnueabihf/bits/hwcap.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/bits/hwcap.h rename to lib/libc/include/arm-linux-gnueabihf/bits/hwcap.h diff --git a/libc/include/arm-linux-gnueabihf/bits/link.h b/lib/libc/include/arm-linux-gnueabihf/bits/link.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/bits/link.h rename to lib/libc/include/arm-linux-gnueabihf/bits/link.h diff --git a/libc/include/arm-linux-gnueabihf/bits/long-double.h b/lib/libc/include/arm-linux-gnueabihf/bits/long-double.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/bits/long-double.h rename to lib/libc/include/arm-linux-gnueabihf/bits/long-double.h diff --git a/libc/include/arm-linux-gnueabihf/bits/procfs-id.h b/lib/libc/include/arm-linux-gnueabihf/bits/procfs-id.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/bits/procfs-id.h rename to lib/libc/include/arm-linux-gnueabihf/bits/procfs-id.h diff --git a/libc/include/arm-linux-gnueabihf/bits/procfs.h b/lib/libc/include/arm-linux-gnueabihf/bits/procfs.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/bits/procfs.h rename to lib/libc/include/arm-linux-gnueabihf/bits/procfs.h diff --git a/libc/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h b/lib/libc/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h rename to lib/libc/include/arm-linux-gnueabihf/bits/pthreadtypes-arch.h diff --git a/libc/include/arm-linux-gnueabihf/bits/semaphore.h b/lib/libc/include/arm-linux-gnueabihf/bits/semaphore.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/bits/semaphore.h rename to lib/libc/include/arm-linux-gnueabihf/bits/semaphore.h diff --git a/libc/include/arm-linux-gnueabihf/bits/setjmp.h b/lib/libc/include/arm-linux-gnueabihf/bits/setjmp.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/bits/setjmp.h rename to lib/libc/include/arm-linux-gnueabihf/bits/setjmp.h diff --git a/libc/include/arm-linux-gnueabihf/bits/shmlba.h b/lib/libc/include/arm-linux-gnueabihf/bits/shmlba.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/bits/shmlba.h rename to lib/libc/include/arm-linux-gnueabihf/bits/shmlba.h diff --git a/libc/include/arm-linux-gnueabihf/bits/stat.h b/lib/libc/include/arm-linux-gnueabihf/bits/stat.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/bits/stat.h rename to lib/libc/include/arm-linux-gnueabihf/bits/stat.h diff --git a/libc/include/arm-linux-gnueabihf/bits/wordsize.h b/lib/libc/include/arm-linux-gnueabihf/bits/wordsize.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/bits/wordsize.h rename to lib/libc/include/arm-linux-gnueabihf/bits/wordsize.h diff --git a/libc/include/arm-linux-gnueabihf/fpu_control.h b/lib/libc/include/arm-linux-gnueabihf/fpu_control.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/fpu_control.h rename to lib/libc/include/arm-linux-gnueabihf/fpu_control.h diff --git a/libc/include/arm-linux-gnueabihf/gnu/lib-names.h b/lib/libc/include/arm-linux-gnueabihf/gnu/lib-names.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/gnu/lib-names.h rename to lib/libc/include/arm-linux-gnueabihf/gnu/lib-names.h diff --git a/libc/include/arm-linux-gnueabihf/gnu/stubs.h b/lib/libc/include/arm-linux-gnueabihf/gnu/stubs.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/gnu/stubs.h rename to lib/libc/include/arm-linux-gnueabihf/gnu/stubs.h diff --git a/libc/include/arm-linux-gnueabihf/sys/ptrace.h b/lib/libc/include/arm-linux-gnueabihf/sys/ptrace.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/sys/ptrace.h rename to lib/libc/include/arm-linux-gnueabihf/sys/ptrace.h diff --git a/libc/include/arm-linux-gnueabihf/sys/ucontext.h b/lib/libc/include/arm-linux-gnueabihf/sys/ucontext.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/sys/ucontext.h rename to lib/libc/include/arm-linux-gnueabihf/sys/ucontext.h diff --git a/libc/include/arm-linux-gnueabihf/sys/user.h b/lib/libc/include/arm-linux-gnueabihf/sys/user.h similarity index 100% rename from libc/include/arm-linux-gnueabihf/sys/user.h rename to lib/libc/include/arm-linux-gnueabihf/sys/user.h diff --git a/libc/include/arm-linux-musleabi/bfd.h b/lib/libc/include/arm-linux-musleabi/bfd.h similarity index 100% rename from libc/include/arm-linux-musleabi/bfd.h rename to lib/libc/include/arm-linux-musleabi/bfd.h diff --git a/libc/include/arm-linux-musleabi/bfd_stdint.h b/lib/libc/include/arm-linux-musleabi/bfd_stdint.h similarity index 100% rename from libc/include/arm-linux-musleabi/bfd_stdint.h rename to lib/libc/include/arm-linux-musleabi/bfd_stdint.h diff --git a/libc/include/arm-linux-musleabi/bits/fcntl.h b/lib/libc/include/arm-linux-musleabi/bits/fcntl.h similarity index 100% rename from libc/include/arm-linux-musleabi/bits/fcntl.h rename to lib/libc/include/arm-linux-musleabi/bits/fcntl.h diff --git a/libc/include/arm-linux-musleabi/bits/hwcap.h b/lib/libc/include/arm-linux-musleabi/bits/hwcap.h similarity index 100% rename from libc/include/arm-linux-musleabi/bits/hwcap.h rename to lib/libc/include/arm-linux-musleabi/bits/hwcap.h diff --git a/libc/include/arm-linux-musleabi/bits/ioctl_fix.h b/lib/libc/include/arm-linux-musleabi/bits/ioctl_fix.h similarity index 100% rename from libc/include/arm-linux-musleabi/bits/ioctl_fix.h rename to lib/libc/include/arm-linux-musleabi/bits/ioctl_fix.h diff --git a/libc/include/arm-linux-musleabi/bits/msg.h b/lib/libc/include/arm-linux-musleabi/bits/msg.h similarity index 100% rename from libc/include/arm-linux-musleabi/bits/msg.h rename to lib/libc/include/arm-linux-musleabi/bits/msg.h diff --git a/libc/include/arm-linux-musleabi/bits/ptrace.h b/lib/libc/include/arm-linux-musleabi/bits/ptrace.h similarity index 100% rename from libc/include/arm-linux-musleabi/bits/ptrace.h rename to lib/libc/include/arm-linux-musleabi/bits/ptrace.h diff --git a/libc/include/arm-linux-musleabi/bits/shm.h b/lib/libc/include/arm-linux-musleabi/bits/shm.h similarity index 100% rename from libc/include/arm-linux-musleabi/bits/shm.h rename to lib/libc/include/arm-linux-musleabi/bits/shm.h diff --git a/libc/include/arm-linux-musleabi/bits/stdint.h b/lib/libc/include/arm-linux-musleabi/bits/stdint.h similarity index 100% rename from libc/include/arm-linux-musleabi/bits/stdint.h rename to lib/libc/include/arm-linux-musleabi/bits/stdint.h diff --git a/libc/include/arm-linux-musleabihf/bfd.h b/lib/libc/include/arm-linux-musleabihf/bfd.h similarity index 100% rename from libc/include/arm-linux-musleabihf/bfd.h rename to lib/libc/include/arm-linux-musleabihf/bfd.h diff --git a/libc/include/arm-linux-musleabihf/bfd_stdint.h b/lib/libc/include/arm-linux-musleabihf/bfd_stdint.h similarity index 100% rename from libc/include/arm-linux-musleabihf/bfd_stdint.h rename to lib/libc/include/arm-linux-musleabihf/bfd_stdint.h diff --git a/libc/include/arm-linux-musleabihf/bits/fcntl.h b/lib/libc/include/arm-linux-musleabihf/bits/fcntl.h similarity index 100% rename from libc/include/arm-linux-musleabihf/bits/fcntl.h rename to lib/libc/include/arm-linux-musleabihf/bits/fcntl.h diff --git a/libc/include/arm-linux-musleabihf/bits/hwcap.h b/lib/libc/include/arm-linux-musleabihf/bits/hwcap.h similarity index 100% rename from libc/include/arm-linux-musleabihf/bits/hwcap.h rename to lib/libc/include/arm-linux-musleabihf/bits/hwcap.h diff --git a/libc/include/arm-linux-musleabihf/bits/ioctl_fix.h b/lib/libc/include/arm-linux-musleabihf/bits/ioctl_fix.h similarity index 100% rename from libc/include/arm-linux-musleabihf/bits/ioctl_fix.h rename to lib/libc/include/arm-linux-musleabihf/bits/ioctl_fix.h diff --git a/libc/include/arm-linux-musleabihf/bits/msg.h b/lib/libc/include/arm-linux-musleabihf/bits/msg.h similarity index 100% rename from libc/include/arm-linux-musleabihf/bits/msg.h rename to lib/libc/include/arm-linux-musleabihf/bits/msg.h diff --git a/libc/include/arm-linux-musleabihf/bits/ptrace.h b/lib/libc/include/arm-linux-musleabihf/bits/ptrace.h similarity index 100% rename from libc/include/arm-linux-musleabihf/bits/ptrace.h rename to lib/libc/include/arm-linux-musleabihf/bits/ptrace.h diff --git a/libc/include/arm-linux-musleabihf/bits/shm.h b/lib/libc/include/arm-linux-musleabihf/bits/shm.h similarity index 100% rename from libc/include/arm-linux-musleabihf/bits/shm.h rename to lib/libc/include/arm-linux-musleabihf/bits/shm.h diff --git a/libc/include/arm-linux-musleabihf/bits/stdint.h b/lib/libc/include/arm-linux-musleabihf/bits/stdint.h similarity index 100% rename from libc/include/arm-linux-musleabihf/bits/stdint.h rename to lib/libc/include/arm-linux-musleabihf/bits/stdint.h diff --git a/libc/include/armeb-linux-any/asm/fcntl.h b/lib/libc/include/armeb-linux-any/asm/fcntl.h similarity index 100% rename from libc/include/armeb-linux-any/asm/fcntl.h rename to lib/libc/include/armeb-linux-any/asm/fcntl.h diff --git a/libc/include/armeb-linux-any/asm/ioctls.h b/lib/libc/include/armeb-linux-any/asm/ioctls.h similarity index 100% rename from libc/include/armeb-linux-any/asm/ioctls.h rename to lib/libc/include/armeb-linux-any/asm/ioctls.h diff --git a/libc/include/armeb-linux-any/asm/mman.h b/lib/libc/include/armeb-linux-any/asm/mman.h similarity index 100% rename from libc/include/armeb-linux-any/asm/mman.h rename to lib/libc/include/armeb-linux-any/asm/mman.h diff --git a/libc/include/armeb-linux-any/asm/statfs.h b/lib/libc/include/armeb-linux-any/asm/statfs.h similarity index 100% rename from libc/include/armeb-linux-any/asm/statfs.h rename to lib/libc/include/armeb-linux-any/asm/statfs.h diff --git a/libc/include/armeb-linux-any/asm/swab.h b/lib/libc/include/armeb-linux-any/asm/swab.h similarity index 100% rename from libc/include/armeb-linux-any/asm/swab.h rename to lib/libc/include/armeb-linux-any/asm/swab.h diff --git a/libc/include/armeb-linux-any/asm/types.h b/lib/libc/include/armeb-linux-any/asm/types.h similarity index 100% rename from libc/include/armeb-linux-any/asm/types.h rename to lib/libc/include/armeb-linux-any/asm/types.h diff --git a/libc/include/armeb-linux-gnueabi/bits/endian.h b/lib/libc/include/armeb-linux-gnueabi/bits/endian.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/bits/endian.h rename to lib/libc/include/armeb-linux-gnueabi/bits/endian.h diff --git a/libc/include/armeb-linux-gnueabi/bits/fcntl.h b/lib/libc/include/armeb-linux-gnueabi/bits/fcntl.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/bits/fcntl.h rename to lib/libc/include/armeb-linux-gnueabi/bits/fcntl.h diff --git a/libc/include/armeb-linux-gnueabi/bits/fenv.h b/lib/libc/include/armeb-linux-gnueabi/bits/fenv.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/bits/fenv.h rename to lib/libc/include/armeb-linux-gnueabi/bits/fenv.h diff --git a/libc/include/armeb-linux-gnueabi/bits/floatn.h b/lib/libc/include/armeb-linux-gnueabi/bits/floatn.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/bits/floatn.h rename to lib/libc/include/armeb-linux-gnueabi/bits/floatn.h diff --git a/libc/include/armeb-linux-gnueabi/bits/hwcap.h b/lib/libc/include/armeb-linux-gnueabi/bits/hwcap.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/bits/hwcap.h rename to lib/libc/include/armeb-linux-gnueabi/bits/hwcap.h diff --git a/libc/include/armeb-linux-gnueabi/bits/link.h b/lib/libc/include/armeb-linux-gnueabi/bits/link.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/bits/link.h rename to lib/libc/include/armeb-linux-gnueabi/bits/link.h diff --git a/libc/include/armeb-linux-gnueabi/bits/long-double.h b/lib/libc/include/armeb-linux-gnueabi/bits/long-double.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/bits/long-double.h rename to lib/libc/include/armeb-linux-gnueabi/bits/long-double.h diff --git a/libc/include/armeb-linux-gnueabi/bits/procfs-id.h b/lib/libc/include/armeb-linux-gnueabi/bits/procfs-id.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/bits/procfs-id.h rename to lib/libc/include/armeb-linux-gnueabi/bits/procfs-id.h diff --git a/libc/include/armeb-linux-gnueabi/bits/procfs.h b/lib/libc/include/armeb-linux-gnueabi/bits/procfs.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/bits/procfs.h rename to lib/libc/include/armeb-linux-gnueabi/bits/procfs.h diff --git a/libc/include/armeb-linux-gnueabi/bits/pthreadtypes-arch.h b/lib/libc/include/armeb-linux-gnueabi/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/bits/pthreadtypes-arch.h rename to lib/libc/include/armeb-linux-gnueabi/bits/pthreadtypes-arch.h diff --git a/libc/include/armeb-linux-gnueabi/bits/semaphore.h b/lib/libc/include/armeb-linux-gnueabi/bits/semaphore.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/bits/semaphore.h rename to lib/libc/include/armeb-linux-gnueabi/bits/semaphore.h diff --git a/libc/include/armeb-linux-gnueabi/bits/setjmp.h b/lib/libc/include/armeb-linux-gnueabi/bits/setjmp.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/bits/setjmp.h rename to lib/libc/include/armeb-linux-gnueabi/bits/setjmp.h diff --git a/libc/include/armeb-linux-gnueabi/bits/shmlba.h b/lib/libc/include/armeb-linux-gnueabi/bits/shmlba.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/bits/shmlba.h rename to lib/libc/include/armeb-linux-gnueabi/bits/shmlba.h diff --git a/libc/include/armeb-linux-gnueabi/bits/stat.h b/lib/libc/include/armeb-linux-gnueabi/bits/stat.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/bits/stat.h rename to lib/libc/include/armeb-linux-gnueabi/bits/stat.h diff --git a/libc/include/armeb-linux-gnueabi/bits/wordsize.h b/lib/libc/include/armeb-linux-gnueabi/bits/wordsize.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/bits/wordsize.h rename to lib/libc/include/armeb-linux-gnueabi/bits/wordsize.h diff --git a/libc/include/armeb-linux-gnueabi/fpu_control.h b/lib/libc/include/armeb-linux-gnueabi/fpu_control.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/fpu_control.h rename to lib/libc/include/armeb-linux-gnueabi/fpu_control.h diff --git a/libc/include/armeb-linux-gnueabi/gnu/lib-names.h b/lib/libc/include/armeb-linux-gnueabi/gnu/lib-names.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/gnu/lib-names.h rename to lib/libc/include/armeb-linux-gnueabi/gnu/lib-names.h diff --git a/libc/include/armeb-linux-gnueabi/gnu/stubs.h b/lib/libc/include/armeb-linux-gnueabi/gnu/stubs.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/gnu/stubs.h rename to lib/libc/include/armeb-linux-gnueabi/gnu/stubs.h diff --git a/libc/include/armeb-linux-gnueabi/sys/ptrace.h b/lib/libc/include/armeb-linux-gnueabi/sys/ptrace.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/sys/ptrace.h rename to lib/libc/include/armeb-linux-gnueabi/sys/ptrace.h diff --git a/libc/include/armeb-linux-gnueabi/sys/ucontext.h b/lib/libc/include/armeb-linux-gnueabi/sys/ucontext.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/sys/ucontext.h rename to lib/libc/include/armeb-linux-gnueabi/sys/ucontext.h diff --git a/libc/include/armeb-linux-gnueabi/sys/user.h b/lib/libc/include/armeb-linux-gnueabi/sys/user.h similarity index 100% rename from libc/include/armeb-linux-gnueabi/sys/user.h rename to lib/libc/include/armeb-linux-gnueabi/sys/user.h diff --git a/libc/include/armeb-linux-gnueabihf/bits/endian.h b/lib/libc/include/armeb-linux-gnueabihf/bits/endian.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/bits/endian.h rename to lib/libc/include/armeb-linux-gnueabihf/bits/endian.h diff --git a/libc/include/armeb-linux-gnueabihf/bits/fcntl.h b/lib/libc/include/armeb-linux-gnueabihf/bits/fcntl.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/bits/fcntl.h rename to lib/libc/include/armeb-linux-gnueabihf/bits/fcntl.h diff --git a/libc/include/armeb-linux-gnueabihf/bits/fenv.h b/lib/libc/include/armeb-linux-gnueabihf/bits/fenv.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/bits/fenv.h rename to lib/libc/include/armeb-linux-gnueabihf/bits/fenv.h diff --git a/libc/include/armeb-linux-gnueabihf/bits/floatn.h b/lib/libc/include/armeb-linux-gnueabihf/bits/floatn.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/bits/floatn.h rename to lib/libc/include/armeb-linux-gnueabihf/bits/floatn.h diff --git a/libc/include/armeb-linux-gnueabihf/bits/hwcap.h b/lib/libc/include/armeb-linux-gnueabihf/bits/hwcap.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/bits/hwcap.h rename to lib/libc/include/armeb-linux-gnueabihf/bits/hwcap.h diff --git a/libc/include/armeb-linux-gnueabihf/bits/link.h b/lib/libc/include/armeb-linux-gnueabihf/bits/link.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/bits/link.h rename to lib/libc/include/armeb-linux-gnueabihf/bits/link.h diff --git a/libc/include/armeb-linux-gnueabihf/bits/long-double.h b/lib/libc/include/armeb-linux-gnueabihf/bits/long-double.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/bits/long-double.h rename to lib/libc/include/armeb-linux-gnueabihf/bits/long-double.h diff --git a/libc/include/armeb-linux-gnueabihf/bits/procfs-id.h b/lib/libc/include/armeb-linux-gnueabihf/bits/procfs-id.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/bits/procfs-id.h rename to lib/libc/include/armeb-linux-gnueabihf/bits/procfs-id.h diff --git a/libc/include/armeb-linux-gnueabihf/bits/procfs.h b/lib/libc/include/armeb-linux-gnueabihf/bits/procfs.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/bits/procfs.h rename to lib/libc/include/armeb-linux-gnueabihf/bits/procfs.h diff --git a/libc/include/armeb-linux-gnueabihf/bits/pthreadtypes-arch.h b/lib/libc/include/armeb-linux-gnueabihf/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/bits/pthreadtypes-arch.h rename to lib/libc/include/armeb-linux-gnueabihf/bits/pthreadtypes-arch.h diff --git a/libc/include/armeb-linux-gnueabihf/bits/semaphore.h b/lib/libc/include/armeb-linux-gnueabihf/bits/semaphore.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/bits/semaphore.h rename to lib/libc/include/armeb-linux-gnueabihf/bits/semaphore.h diff --git a/libc/include/armeb-linux-gnueabihf/bits/setjmp.h b/lib/libc/include/armeb-linux-gnueabihf/bits/setjmp.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/bits/setjmp.h rename to lib/libc/include/armeb-linux-gnueabihf/bits/setjmp.h diff --git a/libc/include/armeb-linux-gnueabihf/bits/shmlba.h b/lib/libc/include/armeb-linux-gnueabihf/bits/shmlba.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/bits/shmlba.h rename to lib/libc/include/armeb-linux-gnueabihf/bits/shmlba.h diff --git a/libc/include/armeb-linux-gnueabihf/bits/stat.h b/lib/libc/include/armeb-linux-gnueabihf/bits/stat.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/bits/stat.h rename to lib/libc/include/armeb-linux-gnueabihf/bits/stat.h diff --git a/libc/include/armeb-linux-gnueabihf/bits/wordsize.h b/lib/libc/include/armeb-linux-gnueabihf/bits/wordsize.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/bits/wordsize.h rename to lib/libc/include/armeb-linux-gnueabihf/bits/wordsize.h diff --git a/libc/include/armeb-linux-gnueabihf/fpu_control.h b/lib/libc/include/armeb-linux-gnueabihf/fpu_control.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/fpu_control.h rename to lib/libc/include/armeb-linux-gnueabihf/fpu_control.h diff --git a/libc/include/armeb-linux-gnueabihf/gnu/lib-names.h b/lib/libc/include/armeb-linux-gnueabihf/gnu/lib-names.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/gnu/lib-names.h rename to lib/libc/include/armeb-linux-gnueabihf/gnu/lib-names.h diff --git a/libc/include/armeb-linux-gnueabihf/gnu/stubs.h b/lib/libc/include/armeb-linux-gnueabihf/gnu/stubs.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/gnu/stubs.h rename to lib/libc/include/armeb-linux-gnueabihf/gnu/stubs.h diff --git a/libc/include/armeb-linux-gnueabihf/sys/ptrace.h b/lib/libc/include/armeb-linux-gnueabihf/sys/ptrace.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/sys/ptrace.h rename to lib/libc/include/armeb-linux-gnueabihf/sys/ptrace.h diff --git a/libc/include/armeb-linux-gnueabihf/sys/ucontext.h b/lib/libc/include/armeb-linux-gnueabihf/sys/ucontext.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/sys/ucontext.h rename to lib/libc/include/armeb-linux-gnueabihf/sys/ucontext.h diff --git a/libc/include/armeb-linux-gnueabihf/sys/user.h b/lib/libc/include/armeb-linux-gnueabihf/sys/user.h similarity index 100% rename from libc/include/armeb-linux-gnueabihf/sys/user.h rename to lib/libc/include/armeb-linux-gnueabihf/sys/user.h diff --git a/libc/include/armeb-linux-musleabi/bfd.h b/lib/libc/include/armeb-linux-musleabi/bfd.h similarity index 100% rename from libc/include/armeb-linux-musleabi/bfd.h rename to lib/libc/include/armeb-linux-musleabi/bfd.h diff --git a/libc/include/armeb-linux-musleabi/bfd_stdint.h b/lib/libc/include/armeb-linux-musleabi/bfd_stdint.h similarity index 100% rename from libc/include/armeb-linux-musleabi/bfd_stdint.h rename to lib/libc/include/armeb-linux-musleabi/bfd_stdint.h diff --git a/libc/include/armeb-linux-musleabi/bits/fcntl.h b/lib/libc/include/armeb-linux-musleabi/bits/fcntl.h similarity index 100% rename from libc/include/armeb-linux-musleabi/bits/fcntl.h rename to lib/libc/include/armeb-linux-musleabi/bits/fcntl.h diff --git a/libc/include/armeb-linux-musleabi/bits/hwcap.h b/lib/libc/include/armeb-linux-musleabi/bits/hwcap.h similarity index 100% rename from libc/include/armeb-linux-musleabi/bits/hwcap.h rename to lib/libc/include/armeb-linux-musleabi/bits/hwcap.h diff --git a/libc/include/armeb-linux-musleabi/bits/ioctl_fix.h b/lib/libc/include/armeb-linux-musleabi/bits/ioctl_fix.h similarity index 100% rename from libc/include/armeb-linux-musleabi/bits/ioctl_fix.h rename to lib/libc/include/armeb-linux-musleabi/bits/ioctl_fix.h diff --git a/libc/include/armeb-linux-musleabi/bits/msg.h b/lib/libc/include/armeb-linux-musleabi/bits/msg.h similarity index 100% rename from libc/include/armeb-linux-musleabi/bits/msg.h rename to lib/libc/include/armeb-linux-musleabi/bits/msg.h diff --git a/libc/include/armeb-linux-musleabi/bits/ptrace.h b/lib/libc/include/armeb-linux-musleabi/bits/ptrace.h similarity index 100% rename from libc/include/armeb-linux-musleabi/bits/ptrace.h rename to lib/libc/include/armeb-linux-musleabi/bits/ptrace.h diff --git a/libc/include/armeb-linux-musleabi/bits/shm.h b/lib/libc/include/armeb-linux-musleabi/bits/shm.h similarity index 100% rename from libc/include/armeb-linux-musleabi/bits/shm.h rename to lib/libc/include/armeb-linux-musleabi/bits/shm.h diff --git a/libc/include/armeb-linux-musleabi/bits/stdint.h b/lib/libc/include/armeb-linux-musleabi/bits/stdint.h similarity index 100% rename from libc/include/armeb-linux-musleabi/bits/stdint.h rename to lib/libc/include/armeb-linux-musleabi/bits/stdint.h diff --git a/libc/include/armeb-linux-musleabihf/bfd.h b/lib/libc/include/armeb-linux-musleabihf/bfd.h similarity index 100% rename from libc/include/armeb-linux-musleabihf/bfd.h rename to lib/libc/include/armeb-linux-musleabihf/bfd.h diff --git a/libc/include/armeb-linux-musleabihf/bfd_stdint.h b/lib/libc/include/armeb-linux-musleabihf/bfd_stdint.h similarity index 100% rename from libc/include/armeb-linux-musleabihf/bfd_stdint.h rename to lib/libc/include/armeb-linux-musleabihf/bfd_stdint.h diff --git a/libc/include/armeb-linux-musleabihf/bits/fcntl.h b/lib/libc/include/armeb-linux-musleabihf/bits/fcntl.h similarity index 100% rename from libc/include/armeb-linux-musleabihf/bits/fcntl.h rename to lib/libc/include/armeb-linux-musleabihf/bits/fcntl.h diff --git a/libc/include/armeb-linux-musleabihf/bits/hwcap.h b/lib/libc/include/armeb-linux-musleabihf/bits/hwcap.h similarity index 100% rename from libc/include/armeb-linux-musleabihf/bits/hwcap.h rename to lib/libc/include/armeb-linux-musleabihf/bits/hwcap.h diff --git a/libc/include/armeb-linux-musleabihf/bits/ioctl_fix.h b/lib/libc/include/armeb-linux-musleabihf/bits/ioctl_fix.h similarity index 100% rename from libc/include/armeb-linux-musleabihf/bits/ioctl_fix.h rename to lib/libc/include/armeb-linux-musleabihf/bits/ioctl_fix.h diff --git a/libc/include/armeb-linux-musleabihf/bits/msg.h b/lib/libc/include/armeb-linux-musleabihf/bits/msg.h similarity index 100% rename from libc/include/armeb-linux-musleabihf/bits/msg.h rename to lib/libc/include/armeb-linux-musleabihf/bits/msg.h diff --git a/libc/include/armeb-linux-musleabihf/bits/ptrace.h b/lib/libc/include/armeb-linux-musleabihf/bits/ptrace.h similarity index 100% rename from libc/include/armeb-linux-musleabihf/bits/ptrace.h rename to lib/libc/include/armeb-linux-musleabihf/bits/ptrace.h diff --git a/libc/include/armeb-linux-musleabihf/bits/shm.h b/lib/libc/include/armeb-linux-musleabihf/bits/shm.h similarity index 100% rename from libc/include/armeb-linux-musleabihf/bits/shm.h rename to lib/libc/include/armeb-linux-musleabihf/bits/shm.h diff --git a/libc/include/armeb-linux-musleabihf/bits/stdint.h b/lib/libc/include/armeb-linux-musleabihf/bits/stdint.h similarity index 100% rename from libc/include/armeb-linux-musleabihf/bits/stdint.h rename to lib/libc/include/armeb-linux-musleabihf/bits/stdint.h diff --git a/libc/include/generic-glibc/a.out.h b/lib/libc/include/generic-glibc/a.out.h similarity index 100% rename from libc/include/generic-glibc/a.out.h rename to lib/libc/include/generic-glibc/a.out.h diff --git a/libc/include/generic-glibc/aio.h b/lib/libc/include/generic-glibc/aio.h similarity index 100% rename from libc/include/generic-glibc/aio.h rename to lib/libc/include/generic-glibc/aio.h diff --git a/libc/include/generic-glibc/aliases.h b/lib/libc/include/generic-glibc/aliases.h similarity index 100% rename from libc/include/generic-glibc/aliases.h rename to lib/libc/include/generic-glibc/aliases.h diff --git a/libc/include/generic-glibc/alloca.h b/lib/libc/include/generic-glibc/alloca.h similarity index 100% rename from libc/include/generic-glibc/alloca.h rename to lib/libc/include/generic-glibc/alloca.h diff --git a/libc/include/generic-glibc/ar.h b/lib/libc/include/generic-glibc/ar.h similarity index 100% rename from libc/include/generic-glibc/ar.h rename to lib/libc/include/generic-glibc/ar.h diff --git a/libc/include/generic-glibc/argp.h b/lib/libc/include/generic-glibc/argp.h similarity index 100% rename from libc/include/generic-glibc/argp.h rename to lib/libc/include/generic-glibc/argp.h diff --git a/libc/include/generic-glibc/argz.h b/lib/libc/include/generic-glibc/argz.h similarity index 100% rename from libc/include/generic-glibc/argz.h rename to lib/libc/include/generic-glibc/argz.h diff --git a/libc/include/generic-glibc/arpa/ftp.h b/lib/libc/include/generic-glibc/arpa/ftp.h similarity index 100% rename from libc/include/generic-glibc/arpa/ftp.h rename to lib/libc/include/generic-glibc/arpa/ftp.h diff --git a/libc/include/generic-glibc/arpa/inet.h b/lib/libc/include/generic-glibc/arpa/inet.h similarity index 100% rename from libc/include/generic-glibc/arpa/inet.h rename to lib/libc/include/generic-glibc/arpa/inet.h diff --git a/libc/include/generic-glibc/arpa/nameser.h b/lib/libc/include/generic-glibc/arpa/nameser.h similarity index 100% rename from libc/include/generic-glibc/arpa/nameser.h rename to lib/libc/include/generic-glibc/arpa/nameser.h diff --git a/libc/include/generic-glibc/arpa/nameser_compat.h b/lib/libc/include/generic-glibc/arpa/nameser_compat.h similarity index 100% rename from libc/include/generic-glibc/arpa/nameser_compat.h rename to lib/libc/include/generic-glibc/arpa/nameser_compat.h diff --git a/libc/include/generic-glibc/arpa/telnet.h b/lib/libc/include/generic-glibc/arpa/telnet.h similarity index 100% rename from libc/include/generic-glibc/arpa/telnet.h rename to lib/libc/include/generic-glibc/arpa/telnet.h diff --git a/libc/include/generic-glibc/arpa/tftp.h b/lib/libc/include/generic-glibc/arpa/tftp.h similarity index 100% rename from libc/include/generic-glibc/arpa/tftp.h rename to lib/libc/include/generic-glibc/arpa/tftp.h diff --git a/libc/include/generic-glibc/assert.h b/lib/libc/include/generic-glibc/assert.h similarity index 100% rename from libc/include/generic-glibc/assert.h rename to lib/libc/include/generic-glibc/assert.h diff --git a/libc/include/generic-glibc/bits/a.out.h b/lib/libc/include/generic-glibc/bits/a.out.h similarity index 100% rename from libc/include/generic-glibc/bits/a.out.h rename to lib/libc/include/generic-glibc/bits/a.out.h diff --git a/libc/include/generic-glibc/bits/argp-ldbl.h b/lib/libc/include/generic-glibc/bits/argp-ldbl.h similarity index 100% rename from libc/include/generic-glibc/bits/argp-ldbl.h rename to lib/libc/include/generic-glibc/bits/argp-ldbl.h diff --git a/libc/include/generic-glibc/bits/byteswap.h b/lib/libc/include/generic-glibc/bits/byteswap.h similarity index 100% rename from libc/include/generic-glibc/bits/byteswap.h rename to lib/libc/include/generic-glibc/bits/byteswap.h diff --git a/libc/include/generic-glibc/bits/cmathcalls.h b/lib/libc/include/generic-glibc/bits/cmathcalls.h similarity index 100% rename from libc/include/generic-glibc/bits/cmathcalls.h rename to lib/libc/include/generic-glibc/bits/cmathcalls.h diff --git a/libc/include/generic-glibc/bits/confname.h b/lib/libc/include/generic-glibc/bits/confname.h similarity index 100% rename from libc/include/generic-glibc/bits/confname.h rename to lib/libc/include/generic-glibc/bits/confname.h diff --git a/libc/include/generic-glibc/bits/cpu-set.h b/lib/libc/include/generic-glibc/bits/cpu-set.h similarity index 100% rename from libc/include/generic-glibc/bits/cpu-set.h rename to lib/libc/include/generic-glibc/bits/cpu-set.h diff --git a/libc/include/generic-glibc/bits/dirent.h b/lib/libc/include/generic-glibc/bits/dirent.h similarity index 100% rename from libc/include/generic-glibc/bits/dirent.h rename to lib/libc/include/generic-glibc/bits/dirent.h diff --git a/libc/include/generic-glibc/bits/dlfcn.h b/lib/libc/include/generic-glibc/bits/dlfcn.h similarity index 100% rename from libc/include/generic-glibc/bits/dlfcn.h rename to lib/libc/include/generic-glibc/bits/dlfcn.h diff --git a/libc/include/generic-glibc/bits/elfclass.h b/lib/libc/include/generic-glibc/bits/elfclass.h similarity index 100% rename from libc/include/generic-glibc/bits/elfclass.h rename to lib/libc/include/generic-glibc/bits/elfclass.h diff --git a/libc/include/generic-glibc/bits/endian.h b/lib/libc/include/generic-glibc/bits/endian.h similarity index 100% rename from libc/include/generic-glibc/bits/endian.h rename to lib/libc/include/generic-glibc/bits/endian.h diff --git a/libc/include/generic-glibc/bits/environments.h b/lib/libc/include/generic-glibc/bits/environments.h similarity index 100% rename from libc/include/generic-glibc/bits/environments.h rename to lib/libc/include/generic-glibc/bits/environments.h diff --git a/libc/include/generic-glibc/bits/epoll.h b/lib/libc/include/generic-glibc/bits/epoll.h similarity index 100% rename from libc/include/generic-glibc/bits/epoll.h rename to lib/libc/include/generic-glibc/bits/epoll.h diff --git a/libc/include/generic-glibc/bits/err-ldbl.h b/lib/libc/include/generic-glibc/bits/err-ldbl.h similarity index 100% rename from libc/include/generic-glibc/bits/err-ldbl.h rename to lib/libc/include/generic-glibc/bits/err-ldbl.h diff --git a/libc/include/generic-glibc/bits/errno.h b/lib/libc/include/generic-glibc/bits/errno.h similarity index 100% rename from libc/include/generic-glibc/bits/errno.h rename to lib/libc/include/generic-glibc/bits/errno.h diff --git a/libc/include/generic-glibc/bits/error-ldbl.h b/lib/libc/include/generic-glibc/bits/error-ldbl.h similarity index 100% rename from libc/include/generic-glibc/bits/error-ldbl.h rename to lib/libc/include/generic-glibc/bits/error-ldbl.h diff --git a/libc/include/generic-glibc/bits/error.h b/lib/libc/include/generic-glibc/bits/error.h similarity index 100% rename from libc/include/generic-glibc/bits/error.h rename to lib/libc/include/generic-glibc/bits/error.h diff --git a/libc/include/generic-glibc/bits/eventfd.h b/lib/libc/include/generic-glibc/bits/eventfd.h similarity index 100% rename from libc/include/generic-glibc/bits/eventfd.h rename to lib/libc/include/generic-glibc/bits/eventfd.h diff --git a/libc/include/generic-glibc/bits/fcntl-linux.h b/lib/libc/include/generic-glibc/bits/fcntl-linux.h similarity index 100% rename from libc/include/generic-glibc/bits/fcntl-linux.h rename to lib/libc/include/generic-glibc/bits/fcntl-linux.h diff --git a/libc/include/generic-glibc/bits/fcntl.h b/lib/libc/include/generic-glibc/bits/fcntl.h similarity index 100% rename from libc/include/generic-glibc/bits/fcntl.h rename to lib/libc/include/generic-glibc/bits/fcntl.h diff --git a/libc/include/generic-glibc/bits/fcntl2.h b/lib/libc/include/generic-glibc/bits/fcntl2.h similarity index 100% rename from libc/include/generic-glibc/bits/fcntl2.h rename to lib/libc/include/generic-glibc/bits/fcntl2.h diff --git a/libc/include/generic-glibc/bits/fenv.h b/lib/libc/include/generic-glibc/bits/fenv.h similarity index 100% rename from libc/include/generic-glibc/bits/fenv.h rename to lib/libc/include/generic-glibc/bits/fenv.h diff --git a/libc/include/generic-glibc/bits/fenvinline.h b/lib/libc/include/generic-glibc/bits/fenvinline.h similarity index 100% rename from libc/include/generic-glibc/bits/fenvinline.h rename to lib/libc/include/generic-glibc/bits/fenvinline.h diff --git a/libc/include/generic-glibc/bits/floatn-common.h b/lib/libc/include/generic-glibc/bits/floatn-common.h similarity index 100% rename from libc/include/generic-glibc/bits/floatn-common.h rename to lib/libc/include/generic-glibc/bits/floatn-common.h diff --git a/libc/include/generic-glibc/bits/floatn.h b/lib/libc/include/generic-glibc/bits/floatn.h similarity index 100% rename from libc/include/generic-glibc/bits/floatn.h rename to lib/libc/include/generic-glibc/bits/floatn.h diff --git a/libc/include/generic-glibc/bits/flt-eval-method.h b/lib/libc/include/generic-glibc/bits/flt-eval-method.h similarity index 100% rename from libc/include/generic-glibc/bits/flt-eval-method.h rename to lib/libc/include/generic-glibc/bits/flt-eval-method.h diff --git a/libc/include/generic-glibc/bits/fp-fast.h b/lib/libc/include/generic-glibc/bits/fp-fast.h similarity index 100% rename from libc/include/generic-glibc/bits/fp-fast.h rename to lib/libc/include/generic-glibc/bits/fp-fast.h diff --git a/libc/include/generic-glibc/bits/fp-logb.h b/lib/libc/include/generic-glibc/bits/fp-logb.h similarity index 100% rename from libc/include/generic-glibc/bits/fp-logb.h rename to lib/libc/include/generic-glibc/bits/fp-logb.h diff --git a/libc/include/generic-glibc/bits/getopt_core.h b/lib/libc/include/generic-glibc/bits/getopt_core.h similarity index 100% rename from libc/include/generic-glibc/bits/getopt_core.h rename to lib/libc/include/generic-glibc/bits/getopt_core.h diff --git a/libc/include/generic-glibc/bits/getopt_ext.h b/lib/libc/include/generic-glibc/bits/getopt_ext.h similarity index 100% rename from libc/include/generic-glibc/bits/getopt_ext.h rename to lib/libc/include/generic-glibc/bits/getopt_ext.h diff --git a/libc/include/generic-glibc/bits/getopt_posix.h b/lib/libc/include/generic-glibc/bits/getopt_posix.h similarity index 100% rename from libc/include/generic-glibc/bits/getopt_posix.h rename to lib/libc/include/generic-glibc/bits/getopt_posix.h diff --git a/libc/include/generic-glibc/bits/hwcap.h b/lib/libc/include/generic-glibc/bits/hwcap.h similarity index 100% rename from libc/include/generic-glibc/bits/hwcap.h rename to lib/libc/include/generic-glibc/bits/hwcap.h diff --git a/libc/include/generic-glibc/bits/in.h b/lib/libc/include/generic-glibc/bits/in.h similarity index 100% rename from libc/include/generic-glibc/bits/in.h rename to lib/libc/include/generic-glibc/bits/in.h diff --git a/libc/include/generic-glibc/bits/indirect-return.h b/lib/libc/include/generic-glibc/bits/indirect-return.h similarity index 100% rename from libc/include/generic-glibc/bits/indirect-return.h rename to lib/libc/include/generic-glibc/bits/indirect-return.h diff --git a/libc/include/generic-glibc/bits/initspin.h b/lib/libc/include/generic-glibc/bits/initspin.h similarity index 100% rename from libc/include/generic-glibc/bits/initspin.h rename to lib/libc/include/generic-glibc/bits/initspin.h diff --git a/libc/include/generic-glibc/bits/inotify.h b/lib/libc/include/generic-glibc/bits/inotify.h similarity index 100% rename from libc/include/generic-glibc/bits/inotify.h rename to lib/libc/include/generic-glibc/bits/inotify.h diff --git a/libc/include/generic-glibc/bits/ioctl-types.h b/lib/libc/include/generic-glibc/bits/ioctl-types.h similarity index 100% rename from libc/include/generic-glibc/bits/ioctl-types.h rename to lib/libc/include/generic-glibc/bits/ioctl-types.h diff --git a/libc/include/generic-glibc/bits/ioctls.h b/lib/libc/include/generic-glibc/bits/ioctls.h similarity index 100% rename from libc/include/generic-glibc/bits/ioctls.h rename to lib/libc/include/generic-glibc/bits/ioctls.h diff --git a/libc/include/generic-glibc/bits/ipc.h b/lib/libc/include/generic-glibc/bits/ipc.h similarity index 100% rename from libc/include/generic-glibc/bits/ipc.h rename to lib/libc/include/generic-glibc/bits/ipc.h diff --git a/libc/include/generic-glibc/bits/ipctypes.h b/lib/libc/include/generic-glibc/bits/ipctypes.h similarity index 100% rename from libc/include/generic-glibc/bits/ipctypes.h rename to lib/libc/include/generic-glibc/bits/ipctypes.h diff --git a/libc/include/generic-glibc/bits/iscanonical.h b/lib/libc/include/generic-glibc/bits/iscanonical.h similarity index 100% rename from libc/include/generic-glibc/bits/iscanonical.h rename to lib/libc/include/generic-glibc/bits/iscanonical.h diff --git a/libc/include/generic-glibc/bits/libc-header-start.h b/lib/libc/include/generic-glibc/bits/libc-header-start.h similarity index 100% rename from libc/include/generic-glibc/bits/libc-header-start.h rename to lib/libc/include/generic-glibc/bits/libc-header-start.h diff --git a/libc/include/generic-glibc/bits/libm-simd-decl-stubs.h b/lib/libc/include/generic-glibc/bits/libm-simd-decl-stubs.h similarity index 100% rename from libc/include/generic-glibc/bits/libm-simd-decl-stubs.h rename to lib/libc/include/generic-glibc/bits/libm-simd-decl-stubs.h diff --git a/libc/include/generic-glibc/bits/link.h b/lib/libc/include/generic-glibc/bits/link.h similarity index 100% rename from libc/include/generic-glibc/bits/link.h rename to lib/libc/include/generic-glibc/bits/link.h diff --git a/libc/include/generic-glibc/bits/local_lim.h b/lib/libc/include/generic-glibc/bits/local_lim.h similarity index 100% rename from libc/include/generic-glibc/bits/local_lim.h rename to lib/libc/include/generic-glibc/bits/local_lim.h diff --git a/libc/include/generic-glibc/bits/locale.h b/lib/libc/include/generic-glibc/bits/locale.h similarity index 100% rename from libc/include/generic-glibc/bits/locale.h rename to lib/libc/include/generic-glibc/bits/locale.h diff --git a/libc/include/generic-glibc/bits/long-double.h b/lib/libc/include/generic-glibc/bits/long-double.h similarity index 100% rename from libc/include/generic-glibc/bits/long-double.h rename to lib/libc/include/generic-glibc/bits/long-double.h diff --git a/libc/include/generic-glibc/bits/math-finite.h b/lib/libc/include/generic-glibc/bits/math-finite.h similarity index 100% rename from libc/include/generic-glibc/bits/math-finite.h rename to lib/libc/include/generic-glibc/bits/math-finite.h diff --git a/libc/include/generic-glibc/bits/math-vector-fortran.h b/lib/libc/include/generic-glibc/bits/math-vector-fortran.h similarity index 100% rename from libc/include/generic-glibc/bits/math-vector-fortran.h rename to lib/libc/include/generic-glibc/bits/math-vector-fortran.h diff --git a/libc/include/generic-glibc/bits/math-vector.h b/lib/libc/include/generic-glibc/bits/math-vector.h similarity index 100% rename from libc/include/generic-glibc/bits/math-vector.h rename to lib/libc/include/generic-glibc/bits/math-vector.h diff --git a/libc/include/generic-glibc/bits/mathcalls-helper-functions.h b/lib/libc/include/generic-glibc/bits/mathcalls-helper-functions.h similarity index 100% rename from libc/include/generic-glibc/bits/mathcalls-helper-functions.h rename to lib/libc/include/generic-glibc/bits/mathcalls-helper-functions.h diff --git a/libc/include/generic-glibc/bits/mathcalls-narrow.h b/lib/libc/include/generic-glibc/bits/mathcalls-narrow.h similarity index 100% rename from libc/include/generic-glibc/bits/mathcalls-narrow.h rename to lib/libc/include/generic-glibc/bits/mathcalls-narrow.h diff --git a/libc/include/generic-glibc/bits/mathcalls.h b/lib/libc/include/generic-glibc/bits/mathcalls.h similarity index 100% rename from libc/include/generic-glibc/bits/mathcalls.h rename to lib/libc/include/generic-glibc/bits/mathcalls.h diff --git a/libc/include/generic-glibc/bits/mathdef.h b/lib/libc/include/generic-glibc/bits/mathdef.h similarity index 100% rename from libc/include/generic-glibc/bits/mathdef.h rename to lib/libc/include/generic-glibc/bits/mathdef.h diff --git a/libc/include/generic-glibc/bits/mathinline.h b/lib/libc/include/generic-glibc/bits/mathinline.h similarity index 100% rename from libc/include/generic-glibc/bits/mathinline.h rename to lib/libc/include/generic-glibc/bits/mathinline.h diff --git a/libc/include/generic-glibc/bits/mman-linux.h b/lib/libc/include/generic-glibc/bits/mman-linux.h similarity index 100% rename from libc/include/generic-glibc/bits/mman-linux.h rename to lib/libc/include/generic-glibc/bits/mman-linux.h diff --git a/libc/include/generic-glibc/bits/mman-map-flags-generic.h b/lib/libc/include/generic-glibc/bits/mman-map-flags-generic.h similarity index 100% rename from libc/include/generic-glibc/bits/mman-map-flags-generic.h rename to lib/libc/include/generic-glibc/bits/mman-map-flags-generic.h diff --git a/libc/include/generic-glibc/bits/mman-shared.h b/lib/libc/include/generic-glibc/bits/mman-shared.h similarity index 100% rename from libc/include/generic-glibc/bits/mman-shared.h rename to lib/libc/include/generic-glibc/bits/mman-shared.h diff --git a/libc/include/generic-glibc/bits/mman.h b/lib/libc/include/generic-glibc/bits/mman.h similarity index 100% rename from libc/include/generic-glibc/bits/mman.h rename to lib/libc/include/generic-glibc/bits/mman.h diff --git a/libc/include/generic-glibc/bits/monetary-ldbl.h b/lib/libc/include/generic-glibc/bits/monetary-ldbl.h similarity index 100% rename from libc/include/generic-glibc/bits/monetary-ldbl.h rename to lib/libc/include/generic-glibc/bits/monetary-ldbl.h diff --git a/libc/include/generic-glibc/bits/mqueue.h b/lib/libc/include/generic-glibc/bits/mqueue.h similarity index 100% rename from libc/include/generic-glibc/bits/mqueue.h rename to lib/libc/include/generic-glibc/bits/mqueue.h diff --git a/libc/include/generic-glibc/bits/mqueue2.h b/lib/libc/include/generic-glibc/bits/mqueue2.h similarity index 100% rename from libc/include/generic-glibc/bits/mqueue2.h rename to lib/libc/include/generic-glibc/bits/mqueue2.h diff --git a/libc/include/generic-glibc/bits/msq-pad.h b/lib/libc/include/generic-glibc/bits/msq-pad.h similarity index 100% rename from libc/include/generic-glibc/bits/msq-pad.h rename to lib/libc/include/generic-glibc/bits/msq-pad.h diff --git a/libc/include/generic-glibc/bits/msq.h b/lib/libc/include/generic-glibc/bits/msq.h similarity index 100% rename from libc/include/generic-glibc/bits/msq.h rename to lib/libc/include/generic-glibc/bits/msq.h diff --git a/libc/include/generic-glibc/bits/netdb.h b/lib/libc/include/generic-glibc/bits/netdb.h similarity index 100% rename from libc/include/generic-glibc/bits/netdb.h rename to lib/libc/include/generic-glibc/bits/netdb.h diff --git a/libc/include/generic-glibc/bits/param.h b/lib/libc/include/generic-glibc/bits/param.h similarity index 100% rename from libc/include/generic-glibc/bits/param.h rename to lib/libc/include/generic-glibc/bits/param.h diff --git a/libc/include/generic-glibc/bits/poll.h b/lib/libc/include/generic-glibc/bits/poll.h similarity index 100% rename from libc/include/generic-glibc/bits/poll.h rename to lib/libc/include/generic-glibc/bits/poll.h diff --git a/libc/include/generic-glibc/bits/poll2.h b/lib/libc/include/generic-glibc/bits/poll2.h similarity index 100% rename from libc/include/generic-glibc/bits/poll2.h rename to lib/libc/include/generic-glibc/bits/poll2.h diff --git a/libc/include/generic-glibc/bits/posix1_lim.h b/lib/libc/include/generic-glibc/bits/posix1_lim.h similarity index 100% rename from libc/include/generic-glibc/bits/posix1_lim.h rename to lib/libc/include/generic-glibc/bits/posix1_lim.h diff --git a/libc/include/generic-glibc/bits/posix2_lim.h b/lib/libc/include/generic-glibc/bits/posix2_lim.h similarity index 100% rename from libc/include/generic-glibc/bits/posix2_lim.h rename to lib/libc/include/generic-glibc/bits/posix2_lim.h diff --git a/libc/include/generic-glibc/bits/posix_opt.h b/lib/libc/include/generic-glibc/bits/posix_opt.h similarity index 100% rename from libc/include/generic-glibc/bits/posix_opt.h rename to lib/libc/include/generic-glibc/bits/posix_opt.h diff --git a/libc/include/generic-glibc/bits/ppc.h b/lib/libc/include/generic-glibc/bits/ppc.h similarity index 100% rename from libc/include/generic-glibc/bits/ppc.h rename to lib/libc/include/generic-glibc/bits/ppc.h diff --git a/libc/include/generic-glibc/bits/printf-ldbl.h b/lib/libc/include/generic-glibc/bits/printf-ldbl.h similarity index 100% rename from libc/include/generic-glibc/bits/printf-ldbl.h rename to lib/libc/include/generic-glibc/bits/printf-ldbl.h diff --git a/libc/include/generic-glibc/bits/procfs-extra.h b/lib/libc/include/generic-glibc/bits/procfs-extra.h similarity index 100% rename from libc/include/generic-glibc/bits/procfs-extra.h rename to lib/libc/include/generic-glibc/bits/procfs-extra.h diff --git a/libc/include/generic-glibc/bits/procfs-id.h b/lib/libc/include/generic-glibc/bits/procfs-id.h similarity index 100% rename from libc/include/generic-glibc/bits/procfs-id.h rename to lib/libc/include/generic-glibc/bits/procfs-id.h diff --git a/libc/include/generic-glibc/bits/procfs-prregset.h b/lib/libc/include/generic-glibc/bits/procfs-prregset.h similarity index 100% rename from libc/include/generic-glibc/bits/procfs-prregset.h rename to lib/libc/include/generic-glibc/bits/procfs-prregset.h diff --git a/libc/include/generic-glibc/bits/procfs.h b/lib/libc/include/generic-glibc/bits/procfs.h similarity index 100% rename from libc/include/generic-glibc/bits/procfs.h rename to lib/libc/include/generic-glibc/bits/procfs.h diff --git a/libc/include/generic-glibc/bits/pthreadtypes-arch.h b/lib/libc/include/generic-glibc/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/generic-glibc/bits/pthreadtypes-arch.h rename to lib/libc/include/generic-glibc/bits/pthreadtypes-arch.h diff --git a/libc/include/generic-glibc/bits/pthreadtypes.h b/lib/libc/include/generic-glibc/bits/pthreadtypes.h similarity index 100% rename from libc/include/generic-glibc/bits/pthreadtypes.h rename to lib/libc/include/generic-glibc/bits/pthreadtypes.h diff --git a/libc/include/generic-glibc/bits/ptrace-shared.h b/lib/libc/include/generic-glibc/bits/ptrace-shared.h similarity index 100% rename from libc/include/generic-glibc/bits/ptrace-shared.h rename to lib/libc/include/generic-glibc/bits/ptrace-shared.h diff --git a/libc/include/generic-glibc/bits/resource.h b/lib/libc/include/generic-glibc/bits/resource.h similarity index 100% rename from libc/include/generic-glibc/bits/resource.h rename to lib/libc/include/generic-glibc/bits/resource.h diff --git a/libc/include/generic-glibc/bits/sched.h b/lib/libc/include/generic-glibc/bits/sched.h similarity index 100% rename from libc/include/generic-glibc/bits/sched.h rename to lib/libc/include/generic-glibc/bits/sched.h diff --git a/libc/include/generic-glibc/bits/select.h b/lib/libc/include/generic-glibc/bits/select.h similarity index 100% rename from libc/include/generic-glibc/bits/select.h rename to lib/libc/include/generic-glibc/bits/select.h diff --git a/libc/include/generic-glibc/bits/select2.h b/lib/libc/include/generic-glibc/bits/select2.h similarity index 100% rename from libc/include/generic-glibc/bits/select2.h rename to lib/libc/include/generic-glibc/bits/select2.h diff --git a/libc/include/generic-glibc/bits/sem-pad.h b/lib/libc/include/generic-glibc/bits/sem-pad.h similarity index 100% rename from libc/include/generic-glibc/bits/sem-pad.h rename to lib/libc/include/generic-glibc/bits/sem-pad.h diff --git a/libc/include/generic-glibc/bits/sem.h b/lib/libc/include/generic-glibc/bits/sem.h similarity index 100% rename from libc/include/generic-glibc/bits/sem.h rename to lib/libc/include/generic-glibc/bits/sem.h diff --git a/libc/include/generic-glibc/bits/semaphore.h b/lib/libc/include/generic-glibc/bits/semaphore.h similarity index 100% rename from libc/include/generic-glibc/bits/semaphore.h rename to lib/libc/include/generic-glibc/bits/semaphore.h diff --git a/libc/include/generic-glibc/bits/setjmp.h b/lib/libc/include/generic-glibc/bits/setjmp.h similarity index 100% rename from libc/include/generic-glibc/bits/setjmp.h rename to lib/libc/include/generic-glibc/bits/setjmp.h diff --git a/libc/include/generic-glibc/bits/setjmp2.h b/lib/libc/include/generic-glibc/bits/setjmp2.h similarity index 100% rename from libc/include/generic-glibc/bits/setjmp2.h rename to lib/libc/include/generic-glibc/bits/setjmp2.h diff --git a/libc/include/generic-glibc/bits/shm-pad.h b/lib/libc/include/generic-glibc/bits/shm-pad.h similarity index 100% rename from libc/include/generic-glibc/bits/shm-pad.h rename to lib/libc/include/generic-glibc/bits/shm-pad.h diff --git a/libc/include/generic-glibc/bits/shm.h b/lib/libc/include/generic-glibc/bits/shm.h similarity index 100% rename from libc/include/generic-glibc/bits/shm.h rename to lib/libc/include/generic-glibc/bits/shm.h diff --git a/libc/include/generic-glibc/bits/shmlba.h b/lib/libc/include/generic-glibc/bits/shmlba.h similarity index 100% rename from libc/include/generic-glibc/bits/shmlba.h rename to lib/libc/include/generic-glibc/bits/shmlba.h diff --git a/libc/include/generic-glibc/bits/sigaction.h b/lib/libc/include/generic-glibc/bits/sigaction.h similarity index 100% rename from libc/include/generic-glibc/bits/sigaction.h rename to lib/libc/include/generic-glibc/bits/sigaction.h diff --git a/libc/include/generic-glibc/bits/sigcontext.h b/lib/libc/include/generic-glibc/bits/sigcontext.h similarity index 100% rename from libc/include/generic-glibc/bits/sigcontext.h rename to lib/libc/include/generic-glibc/bits/sigcontext.h diff --git a/libc/include/generic-glibc/bits/sigevent-consts.h b/lib/libc/include/generic-glibc/bits/sigevent-consts.h similarity index 100% rename from libc/include/generic-glibc/bits/sigevent-consts.h rename to lib/libc/include/generic-glibc/bits/sigevent-consts.h diff --git a/libc/include/generic-glibc/bits/siginfo-arch.h b/lib/libc/include/generic-glibc/bits/siginfo-arch.h similarity index 100% rename from libc/include/generic-glibc/bits/siginfo-arch.h rename to lib/libc/include/generic-glibc/bits/siginfo-arch.h diff --git a/libc/include/generic-glibc/bits/siginfo-consts-arch.h b/lib/libc/include/generic-glibc/bits/siginfo-consts-arch.h similarity index 100% rename from libc/include/generic-glibc/bits/siginfo-consts-arch.h rename to lib/libc/include/generic-glibc/bits/siginfo-consts-arch.h diff --git a/libc/include/generic-glibc/bits/siginfo-consts.h b/lib/libc/include/generic-glibc/bits/siginfo-consts.h similarity index 100% rename from libc/include/generic-glibc/bits/siginfo-consts.h rename to lib/libc/include/generic-glibc/bits/siginfo-consts.h diff --git a/libc/include/generic-glibc/bits/signalfd.h b/lib/libc/include/generic-glibc/bits/signalfd.h similarity index 100% rename from libc/include/generic-glibc/bits/signalfd.h rename to lib/libc/include/generic-glibc/bits/signalfd.h diff --git a/libc/include/generic-glibc/bits/signum-generic.h b/lib/libc/include/generic-glibc/bits/signum-generic.h similarity index 100% rename from libc/include/generic-glibc/bits/signum-generic.h rename to lib/libc/include/generic-glibc/bits/signum-generic.h diff --git a/libc/include/generic-glibc/bits/signum.h b/lib/libc/include/generic-glibc/bits/signum.h similarity index 100% rename from libc/include/generic-glibc/bits/signum.h rename to lib/libc/include/generic-glibc/bits/signum.h diff --git a/libc/include/generic-glibc/bits/sigstack.h b/lib/libc/include/generic-glibc/bits/sigstack.h similarity index 100% rename from libc/include/generic-glibc/bits/sigstack.h rename to lib/libc/include/generic-glibc/bits/sigstack.h diff --git a/libc/include/generic-glibc/bits/sigthread.h b/lib/libc/include/generic-glibc/bits/sigthread.h similarity index 100% rename from libc/include/generic-glibc/bits/sigthread.h rename to lib/libc/include/generic-glibc/bits/sigthread.h diff --git a/libc/include/generic-glibc/bits/sockaddr.h b/lib/libc/include/generic-glibc/bits/sockaddr.h similarity index 100% rename from libc/include/generic-glibc/bits/sockaddr.h rename to lib/libc/include/generic-glibc/bits/sockaddr.h diff --git a/libc/include/generic-glibc/bits/socket.h b/lib/libc/include/generic-glibc/bits/socket.h similarity index 100% rename from libc/include/generic-glibc/bits/socket.h rename to lib/libc/include/generic-glibc/bits/socket.h diff --git a/libc/include/generic-glibc/bits/socket2.h b/lib/libc/include/generic-glibc/bits/socket2.h similarity index 100% rename from libc/include/generic-glibc/bits/socket2.h rename to lib/libc/include/generic-glibc/bits/socket2.h diff --git a/libc/include/generic-glibc/bits/socket_type.h b/lib/libc/include/generic-glibc/bits/socket_type.h similarity index 100% rename from libc/include/generic-glibc/bits/socket_type.h rename to lib/libc/include/generic-glibc/bits/socket_type.h diff --git a/libc/include/generic-glibc/bits/ss_flags.h b/lib/libc/include/generic-glibc/bits/ss_flags.h similarity index 100% rename from libc/include/generic-glibc/bits/ss_flags.h rename to lib/libc/include/generic-glibc/bits/ss_flags.h diff --git a/libc/include/generic-glibc/bits/stab.def b/lib/libc/include/generic-glibc/bits/stab.def similarity index 100% rename from libc/include/generic-glibc/bits/stab.def rename to lib/libc/include/generic-glibc/bits/stab.def diff --git a/libc/include/generic-glibc/bits/stat.h b/lib/libc/include/generic-glibc/bits/stat.h similarity index 100% rename from libc/include/generic-glibc/bits/stat.h rename to lib/libc/include/generic-glibc/bits/stat.h diff --git a/libc/include/generic-glibc/bits/statfs.h b/lib/libc/include/generic-glibc/bits/statfs.h similarity index 100% rename from libc/include/generic-glibc/bits/statfs.h rename to lib/libc/include/generic-glibc/bits/statfs.h diff --git a/libc/include/generic-glibc/bits/statvfs.h b/lib/libc/include/generic-glibc/bits/statvfs.h similarity index 100% rename from libc/include/generic-glibc/bits/statvfs.h rename to lib/libc/include/generic-glibc/bits/statvfs.h diff --git a/libc/include/generic-glibc/bits/statx.h b/lib/libc/include/generic-glibc/bits/statx.h similarity index 100% rename from libc/include/generic-glibc/bits/statx.h rename to lib/libc/include/generic-glibc/bits/statx.h diff --git a/libc/include/generic-glibc/bits/stdint-intn.h b/lib/libc/include/generic-glibc/bits/stdint-intn.h similarity index 100% rename from libc/include/generic-glibc/bits/stdint-intn.h rename to lib/libc/include/generic-glibc/bits/stdint-intn.h diff --git a/libc/include/generic-glibc/bits/stdint-uintn.h b/lib/libc/include/generic-glibc/bits/stdint-uintn.h similarity index 100% rename from libc/include/generic-glibc/bits/stdint-uintn.h rename to lib/libc/include/generic-glibc/bits/stdint-uintn.h diff --git a/libc/include/generic-glibc/bits/stdio-ldbl.h b/lib/libc/include/generic-glibc/bits/stdio-ldbl.h similarity index 100% rename from libc/include/generic-glibc/bits/stdio-ldbl.h rename to lib/libc/include/generic-glibc/bits/stdio-ldbl.h diff --git a/libc/include/generic-glibc/bits/stdio.h b/lib/libc/include/generic-glibc/bits/stdio.h similarity index 100% rename from libc/include/generic-glibc/bits/stdio.h rename to lib/libc/include/generic-glibc/bits/stdio.h diff --git a/libc/include/generic-glibc/bits/stdio2.h b/lib/libc/include/generic-glibc/bits/stdio2.h similarity index 100% rename from libc/include/generic-glibc/bits/stdio2.h rename to lib/libc/include/generic-glibc/bits/stdio2.h diff --git a/libc/include/generic-glibc/bits/stdio_lim.h b/lib/libc/include/generic-glibc/bits/stdio_lim.h similarity index 100% rename from libc/include/generic-glibc/bits/stdio_lim.h rename to lib/libc/include/generic-glibc/bits/stdio_lim.h diff --git a/libc/include/generic-glibc/bits/stdlib-bsearch.h b/lib/libc/include/generic-glibc/bits/stdlib-bsearch.h similarity index 100% rename from libc/include/generic-glibc/bits/stdlib-bsearch.h rename to lib/libc/include/generic-glibc/bits/stdlib-bsearch.h diff --git a/libc/include/generic-glibc/bits/stdlib-float.h b/lib/libc/include/generic-glibc/bits/stdlib-float.h similarity index 100% rename from libc/include/generic-glibc/bits/stdlib-float.h rename to lib/libc/include/generic-glibc/bits/stdlib-float.h diff --git a/libc/include/generic-glibc/bits/stdlib-ldbl.h b/lib/libc/include/generic-glibc/bits/stdlib-ldbl.h similarity index 100% rename from libc/include/generic-glibc/bits/stdlib-ldbl.h rename to lib/libc/include/generic-glibc/bits/stdlib-ldbl.h diff --git a/libc/include/generic-glibc/bits/stdlib.h b/lib/libc/include/generic-glibc/bits/stdlib.h similarity index 100% rename from libc/include/generic-glibc/bits/stdlib.h rename to lib/libc/include/generic-glibc/bits/stdlib.h diff --git a/libc/include/generic-glibc/bits/string_fortified.h b/lib/libc/include/generic-glibc/bits/string_fortified.h similarity index 100% rename from libc/include/generic-glibc/bits/string_fortified.h rename to lib/libc/include/generic-glibc/bits/string_fortified.h diff --git a/libc/include/generic-glibc/bits/strings_fortified.h b/lib/libc/include/generic-glibc/bits/strings_fortified.h similarity index 100% rename from libc/include/generic-glibc/bits/strings_fortified.h rename to lib/libc/include/generic-glibc/bits/strings_fortified.h diff --git a/libc/include/generic-glibc/bits/stropts.h b/lib/libc/include/generic-glibc/bits/stropts.h similarity index 100% rename from libc/include/generic-glibc/bits/stropts.h rename to lib/libc/include/generic-glibc/bits/stropts.h diff --git a/libc/include/generic-glibc/bits/sys_errlist.h b/lib/libc/include/generic-glibc/bits/sys_errlist.h similarity index 100% rename from libc/include/generic-glibc/bits/sys_errlist.h rename to lib/libc/include/generic-glibc/bits/sys_errlist.h diff --git a/libc/include/generic-glibc/bits/syscall.h b/lib/libc/include/generic-glibc/bits/syscall.h similarity index 100% rename from libc/include/generic-glibc/bits/syscall.h rename to lib/libc/include/generic-glibc/bits/syscall.h diff --git a/libc/include/generic-glibc/bits/sysctl.h b/lib/libc/include/generic-glibc/bits/sysctl.h similarity index 100% rename from libc/include/generic-glibc/bits/sysctl.h rename to lib/libc/include/generic-glibc/bits/sysctl.h diff --git a/libc/include/generic-glibc/bits/syslog-ldbl.h b/lib/libc/include/generic-glibc/bits/syslog-ldbl.h similarity index 100% rename from libc/include/generic-glibc/bits/syslog-ldbl.h rename to lib/libc/include/generic-glibc/bits/syslog-ldbl.h diff --git a/libc/include/generic-glibc/bits/syslog-path.h b/lib/libc/include/generic-glibc/bits/syslog-path.h similarity index 100% rename from libc/include/generic-glibc/bits/syslog-path.h rename to lib/libc/include/generic-glibc/bits/syslog-path.h diff --git a/libc/include/generic-glibc/bits/syslog.h b/lib/libc/include/generic-glibc/bits/syslog.h similarity index 100% rename from libc/include/generic-glibc/bits/syslog.h rename to lib/libc/include/generic-glibc/bits/syslog.h diff --git a/libc/include/generic-glibc/bits/sysmacros.h b/lib/libc/include/generic-glibc/bits/sysmacros.h similarity index 100% rename from libc/include/generic-glibc/bits/sysmacros.h rename to lib/libc/include/generic-glibc/bits/sysmacros.h diff --git a/libc/include/generic-glibc/bits/termios-baud.h b/lib/libc/include/generic-glibc/bits/termios-baud.h similarity index 100% rename from libc/include/generic-glibc/bits/termios-baud.h rename to lib/libc/include/generic-glibc/bits/termios-baud.h diff --git a/libc/include/generic-glibc/bits/termios-c_cc.h b/lib/libc/include/generic-glibc/bits/termios-c_cc.h similarity index 100% rename from libc/include/generic-glibc/bits/termios-c_cc.h rename to lib/libc/include/generic-glibc/bits/termios-c_cc.h diff --git a/libc/include/generic-glibc/bits/termios-c_cflag.h b/lib/libc/include/generic-glibc/bits/termios-c_cflag.h similarity index 100% rename from libc/include/generic-glibc/bits/termios-c_cflag.h rename to lib/libc/include/generic-glibc/bits/termios-c_cflag.h diff --git a/libc/include/generic-glibc/bits/termios-c_iflag.h b/lib/libc/include/generic-glibc/bits/termios-c_iflag.h similarity index 100% rename from libc/include/generic-glibc/bits/termios-c_iflag.h rename to lib/libc/include/generic-glibc/bits/termios-c_iflag.h diff --git a/libc/include/generic-glibc/bits/termios-c_lflag.h b/lib/libc/include/generic-glibc/bits/termios-c_lflag.h similarity index 100% rename from libc/include/generic-glibc/bits/termios-c_lflag.h rename to lib/libc/include/generic-glibc/bits/termios-c_lflag.h diff --git a/libc/include/generic-glibc/bits/termios-c_oflag.h b/lib/libc/include/generic-glibc/bits/termios-c_oflag.h similarity index 100% rename from libc/include/generic-glibc/bits/termios-c_oflag.h rename to lib/libc/include/generic-glibc/bits/termios-c_oflag.h diff --git a/libc/include/generic-glibc/bits/termios-misc.h b/lib/libc/include/generic-glibc/bits/termios-misc.h similarity index 100% rename from libc/include/generic-glibc/bits/termios-misc.h rename to lib/libc/include/generic-glibc/bits/termios-misc.h diff --git a/libc/include/generic-glibc/bits/termios-struct.h b/lib/libc/include/generic-glibc/bits/termios-struct.h similarity index 100% rename from libc/include/generic-glibc/bits/termios-struct.h rename to lib/libc/include/generic-glibc/bits/termios-struct.h diff --git a/libc/include/generic-glibc/bits/termios-tcflow.h b/lib/libc/include/generic-glibc/bits/termios-tcflow.h similarity index 100% rename from libc/include/generic-glibc/bits/termios-tcflow.h rename to lib/libc/include/generic-glibc/bits/termios-tcflow.h diff --git a/libc/include/generic-glibc/bits/termios.h b/lib/libc/include/generic-glibc/bits/termios.h similarity index 100% rename from libc/include/generic-glibc/bits/termios.h rename to lib/libc/include/generic-glibc/bits/termios.h diff --git a/libc/include/generic-glibc/bits/thread-shared-types.h b/lib/libc/include/generic-glibc/bits/thread-shared-types.h similarity index 100% rename from libc/include/generic-glibc/bits/thread-shared-types.h rename to lib/libc/include/generic-glibc/bits/thread-shared-types.h diff --git a/libc/include/generic-glibc/bits/time.h b/lib/libc/include/generic-glibc/bits/time.h similarity index 100% rename from libc/include/generic-glibc/bits/time.h rename to lib/libc/include/generic-glibc/bits/time.h diff --git a/libc/include/generic-glibc/bits/time64.h b/lib/libc/include/generic-glibc/bits/time64.h similarity index 100% rename from libc/include/generic-glibc/bits/time64.h rename to lib/libc/include/generic-glibc/bits/time64.h diff --git a/libc/include/generic-glibc/bits/timerfd.h b/lib/libc/include/generic-glibc/bits/timerfd.h similarity index 100% rename from libc/include/generic-glibc/bits/timerfd.h rename to lib/libc/include/generic-glibc/bits/timerfd.h diff --git a/libc/include/generic-glibc/bits/timesize.h b/lib/libc/include/generic-glibc/bits/timesize.h similarity index 100% rename from libc/include/generic-glibc/bits/timesize.h rename to lib/libc/include/generic-glibc/bits/timesize.h diff --git a/libc/include/generic-glibc/bits/timex.h b/lib/libc/include/generic-glibc/bits/timex.h similarity index 100% rename from libc/include/generic-glibc/bits/timex.h rename to lib/libc/include/generic-glibc/bits/timex.h diff --git a/libc/include/generic-glibc/bits/types.h b/lib/libc/include/generic-glibc/bits/types.h similarity index 100% rename from libc/include/generic-glibc/bits/types.h rename to lib/libc/include/generic-glibc/bits/types.h diff --git a/libc/include/generic-glibc/bits/types/FILE.h b/lib/libc/include/generic-glibc/bits/types/FILE.h similarity index 100% rename from libc/include/generic-glibc/bits/types/FILE.h rename to lib/libc/include/generic-glibc/bits/types/FILE.h diff --git a/libc/include/generic-glibc/bits/types/__FILE.h b/lib/libc/include/generic-glibc/bits/types/__FILE.h similarity index 100% rename from libc/include/generic-glibc/bits/types/__FILE.h rename to lib/libc/include/generic-glibc/bits/types/__FILE.h diff --git a/libc/include/generic-glibc/bits/types/__fpos64_t.h b/lib/libc/include/generic-glibc/bits/types/__fpos64_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/__fpos64_t.h rename to lib/libc/include/generic-glibc/bits/types/__fpos64_t.h diff --git a/libc/include/generic-glibc/bits/types/__fpos_t.h b/lib/libc/include/generic-glibc/bits/types/__fpos_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/__fpos_t.h rename to lib/libc/include/generic-glibc/bits/types/__fpos_t.h diff --git a/libc/include/generic-glibc/bits/types/__locale_t.h b/lib/libc/include/generic-glibc/bits/types/__locale_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/__locale_t.h rename to lib/libc/include/generic-glibc/bits/types/__locale_t.h diff --git a/libc/include/generic-glibc/bits/types/__mbstate_t.h b/lib/libc/include/generic-glibc/bits/types/__mbstate_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/__mbstate_t.h rename to lib/libc/include/generic-glibc/bits/types/__mbstate_t.h diff --git a/libc/include/generic-glibc/bits/types/__sigset_t.h b/lib/libc/include/generic-glibc/bits/types/__sigset_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/__sigset_t.h rename to lib/libc/include/generic-glibc/bits/types/__sigset_t.h diff --git a/libc/include/generic-glibc/bits/types/__sigval_t.h b/lib/libc/include/generic-glibc/bits/types/__sigval_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/__sigval_t.h rename to lib/libc/include/generic-glibc/bits/types/__sigval_t.h diff --git a/libc/include/generic-glibc/bits/types/clock_t.h b/lib/libc/include/generic-glibc/bits/types/clock_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/clock_t.h rename to lib/libc/include/generic-glibc/bits/types/clock_t.h diff --git a/libc/include/generic-glibc/bits/types/clockid_t.h b/lib/libc/include/generic-glibc/bits/types/clockid_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/clockid_t.h rename to lib/libc/include/generic-glibc/bits/types/clockid_t.h diff --git a/libc/include/generic-glibc/bits/types/cookie_io_functions_t.h b/lib/libc/include/generic-glibc/bits/types/cookie_io_functions_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/cookie_io_functions_t.h rename to lib/libc/include/generic-glibc/bits/types/cookie_io_functions_t.h diff --git a/libc/include/generic-glibc/bits/types/error_t.h b/lib/libc/include/generic-glibc/bits/types/error_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/error_t.h rename to lib/libc/include/generic-glibc/bits/types/error_t.h diff --git a/libc/include/generic-glibc/bits/types/locale_t.h b/lib/libc/include/generic-glibc/bits/types/locale_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/locale_t.h rename to lib/libc/include/generic-glibc/bits/types/locale_t.h diff --git a/libc/include/generic-glibc/bits/types/mbstate_t.h b/lib/libc/include/generic-glibc/bits/types/mbstate_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/mbstate_t.h rename to lib/libc/include/generic-glibc/bits/types/mbstate_t.h diff --git a/libc/include/generic-glibc/bits/types/res_state.h b/lib/libc/include/generic-glibc/bits/types/res_state.h similarity index 100% rename from libc/include/generic-glibc/bits/types/res_state.h rename to lib/libc/include/generic-glibc/bits/types/res_state.h diff --git a/libc/include/generic-glibc/bits/types/sig_atomic_t.h b/lib/libc/include/generic-glibc/bits/types/sig_atomic_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/sig_atomic_t.h rename to lib/libc/include/generic-glibc/bits/types/sig_atomic_t.h diff --git a/libc/include/generic-glibc/bits/types/sigevent_t.h b/lib/libc/include/generic-glibc/bits/types/sigevent_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/sigevent_t.h rename to lib/libc/include/generic-glibc/bits/types/sigevent_t.h diff --git a/libc/include/generic-glibc/bits/types/siginfo_t.h b/lib/libc/include/generic-glibc/bits/types/siginfo_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/siginfo_t.h rename to lib/libc/include/generic-glibc/bits/types/siginfo_t.h diff --git a/libc/include/generic-glibc/bits/types/sigset_t.h b/lib/libc/include/generic-glibc/bits/types/sigset_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/sigset_t.h rename to lib/libc/include/generic-glibc/bits/types/sigset_t.h diff --git a/libc/include/generic-glibc/bits/types/sigval_t.h b/lib/libc/include/generic-glibc/bits/types/sigval_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/sigval_t.h rename to lib/libc/include/generic-glibc/bits/types/sigval_t.h diff --git a/libc/include/generic-glibc/bits/types/stack_t.h b/lib/libc/include/generic-glibc/bits/types/stack_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/stack_t.h rename to lib/libc/include/generic-glibc/bits/types/stack_t.h diff --git a/libc/include/generic-glibc/bits/types/struct_FILE.h b/lib/libc/include/generic-glibc/bits/types/struct_FILE.h similarity index 100% rename from libc/include/generic-glibc/bits/types/struct_FILE.h rename to lib/libc/include/generic-glibc/bits/types/struct_FILE.h diff --git a/libc/include/generic-glibc/bits/types/struct_iovec.h b/lib/libc/include/generic-glibc/bits/types/struct_iovec.h similarity index 100% rename from libc/include/generic-glibc/bits/types/struct_iovec.h rename to lib/libc/include/generic-glibc/bits/types/struct_iovec.h diff --git a/libc/include/generic-glibc/bits/types/struct_itimerspec.h b/lib/libc/include/generic-glibc/bits/types/struct_itimerspec.h similarity index 100% rename from libc/include/generic-glibc/bits/types/struct_itimerspec.h rename to lib/libc/include/generic-glibc/bits/types/struct_itimerspec.h diff --git a/libc/include/generic-glibc/bits/types/struct_osockaddr.h b/lib/libc/include/generic-glibc/bits/types/struct_osockaddr.h similarity index 100% rename from libc/include/generic-glibc/bits/types/struct_osockaddr.h rename to lib/libc/include/generic-glibc/bits/types/struct_osockaddr.h diff --git a/libc/include/generic-glibc/bits/types/struct_rusage.h b/lib/libc/include/generic-glibc/bits/types/struct_rusage.h similarity index 100% rename from libc/include/generic-glibc/bits/types/struct_rusage.h rename to lib/libc/include/generic-glibc/bits/types/struct_rusage.h diff --git a/libc/include/generic-glibc/bits/types/struct_sched_param.h b/lib/libc/include/generic-glibc/bits/types/struct_sched_param.h similarity index 100% rename from libc/include/generic-glibc/bits/types/struct_sched_param.h rename to lib/libc/include/generic-glibc/bits/types/struct_sched_param.h diff --git a/libc/include/generic-glibc/bits/types/struct_sigstack.h b/lib/libc/include/generic-glibc/bits/types/struct_sigstack.h similarity index 100% rename from libc/include/generic-glibc/bits/types/struct_sigstack.h rename to lib/libc/include/generic-glibc/bits/types/struct_sigstack.h diff --git a/libc/include/generic-glibc/bits/types/struct_timespec.h b/lib/libc/include/generic-glibc/bits/types/struct_timespec.h similarity index 100% rename from libc/include/generic-glibc/bits/types/struct_timespec.h rename to lib/libc/include/generic-glibc/bits/types/struct_timespec.h diff --git a/libc/include/generic-glibc/bits/types/struct_timeval.h b/lib/libc/include/generic-glibc/bits/types/struct_timeval.h similarity index 100% rename from libc/include/generic-glibc/bits/types/struct_timeval.h rename to lib/libc/include/generic-glibc/bits/types/struct_timeval.h diff --git a/libc/include/generic-glibc/bits/types/struct_tm.h b/lib/libc/include/generic-glibc/bits/types/struct_tm.h similarity index 100% rename from libc/include/generic-glibc/bits/types/struct_tm.h rename to lib/libc/include/generic-glibc/bits/types/struct_tm.h diff --git a/libc/include/generic-glibc/bits/types/time_t.h b/lib/libc/include/generic-glibc/bits/types/time_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/time_t.h rename to lib/libc/include/generic-glibc/bits/types/time_t.h diff --git a/libc/include/generic-glibc/bits/types/timer_t.h b/lib/libc/include/generic-glibc/bits/types/timer_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/timer_t.h rename to lib/libc/include/generic-glibc/bits/types/timer_t.h diff --git a/libc/include/generic-glibc/bits/types/wint_t.h b/lib/libc/include/generic-glibc/bits/types/wint_t.h similarity index 100% rename from libc/include/generic-glibc/bits/types/wint_t.h rename to lib/libc/include/generic-glibc/bits/types/wint_t.h diff --git a/libc/include/generic-glibc/bits/typesizes.h b/lib/libc/include/generic-glibc/bits/typesizes.h similarity index 100% rename from libc/include/generic-glibc/bits/typesizes.h rename to lib/libc/include/generic-glibc/bits/typesizes.h diff --git a/libc/include/generic-glibc/bits/uintn-identity.h b/lib/libc/include/generic-glibc/bits/uintn-identity.h similarity index 100% rename from libc/include/generic-glibc/bits/uintn-identity.h rename to lib/libc/include/generic-glibc/bits/uintn-identity.h diff --git a/libc/include/generic-glibc/bits/uio-ext.h b/lib/libc/include/generic-glibc/bits/uio-ext.h similarity index 100% rename from libc/include/generic-glibc/bits/uio-ext.h rename to lib/libc/include/generic-glibc/bits/uio-ext.h diff --git a/libc/include/generic-glibc/bits/uio_lim.h b/lib/libc/include/generic-glibc/bits/uio_lim.h similarity index 100% rename from libc/include/generic-glibc/bits/uio_lim.h rename to lib/libc/include/generic-glibc/bits/uio_lim.h diff --git a/libc/include/generic-glibc/bits/unistd.h b/lib/libc/include/generic-glibc/bits/unistd.h similarity index 100% rename from libc/include/generic-glibc/bits/unistd.h rename to lib/libc/include/generic-glibc/bits/unistd.h diff --git a/libc/include/generic-glibc/bits/unistd_ext.h b/lib/libc/include/generic-glibc/bits/unistd_ext.h similarity index 100% rename from libc/include/generic-glibc/bits/unistd_ext.h rename to lib/libc/include/generic-glibc/bits/unistd_ext.h diff --git a/libc/include/generic-glibc/bits/utmp.h b/lib/libc/include/generic-glibc/bits/utmp.h similarity index 100% rename from libc/include/generic-glibc/bits/utmp.h rename to lib/libc/include/generic-glibc/bits/utmp.h diff --git a/libc/include/generic-glibc/bits/utmpx.h b/lib/libc/include/generic-glibc/bits/utmpx.h similarity index 100% rename from libc/include/generic-glibc/bits/utmpx.h rename to lib/libc/include/generic-glibc/bits/utmpx.h diff --git a/libc/include/generic-glibc/bits/utsname.h b/lib/libc/include/generic-glibc/bits/utsname.h similarity index 100% rename from libc/include/generic-glibc/bits/utsname.h rename to lib/libc/include/generic-glibc/bits/utsname.h diff --git a/libc/include/generic-glibc/bits/waitflags.h b/lib/libc/include/generic-glibc/bits/waitflags.h similarity index 100% rename from libc/include/generic-glibc/bits/waitflags.h rename to lib/libc/include/generic-glibc/bits/waitflags.h diff --git a/libc/include/generic-glibc/bits/waitstatus.h b/lib/libc/include/generic-glibc/bits/waitstatus.h similarity index 100% rename from libc/include/generic-glibc/bits/waitstatus.h rename to lib/libc/include/generic-glibc/bits/waitstatus.h diff --git a/libc/include/generic-glibc/bits/wchar-ldbl.h b/lib/libc/include/generic-glibc/bits/wchar-ldbl.h similarity index 100% rename from libc/include/generic-glibc/bits/wchar-ldbl.h rename to lib/libc/include/generic-glibc/bits/wchar-ldbl.h diff --git a/libc/include/generic-glibc/bits/wchar.h b/lib/libc/include/generic-glibc/bits/wchar.h similarity index 100% rename from libc/include/generic-glibc/bits/wchar.h rename to lib/libc/include/generic-glibc/bits/wchar.h diff --git a/libc/include/generic-glibc/bits/wchar2.h b/lib/libc/include/generic-glibc/bits/wchar2.h similarity index 100% rename from libc/include/generic-glibc/bits/wchar2.h rename to lib/libc/include/generic-glibc/bits/wchar2.h diff --git a/libc/include/generic-glibc/bits/wctype-wchar.h b/lib/libc/include/generic-glibc/bits/wctype-wchar.h similarity index 100% rename from libc/include/generic-glibc/bits/wctype-wchar.h rename to lib/libc/include/generic-glibc/bits/wctype-wchar.h diff --git a/libc/include/generic-glibc/bits/wordsize.h b/lib/libc/include/generic-glibc/bits/wordsize.h similarity index 100% rename from libc/include/generic-glibc/bits/wordsize.h rename to lib/libc/include/generic-glibc/bits/wordsize.h diff --git a/libc/include/generic-glibc/bits/xopen_lim.h b/lib/libc/include/generic-glibc/bits/xopen_lim.h similarity index 100% rename from libc/include/generic-glibc/bits/xopen_lim.h rename to lib/libc/include/generic-glibc/bits/xopen_lim.h diff --git a/libc/include/generic-glibc/bits/xtitypes.h b/lib/libc/include/generic-glibc/bits/xtitypes.h similarity index 100% rename from libc/include/generic-glibc/bits/xtitypes.h rename to lib/libc/include/generic-glibc/bits/xtitypes.h diff --git a/libc/include/generic-glibc/byteswap.h b/lib/libc/include/generic-glibc/byteswap.h similarity index 100% rename from libc/include/generic-glibc/byteswap.h rename to lib/libc/include/generic-glibc/byteswap.h diff --git a/libc/include/generic-glibc/complex.h b/lib/libc/include/generic-glibc/complex.h similarity index 100% rename from libc/include/generic-glibc/complex.h rename to lib/libc/include/generic-glibc/complex.h diff --git a/libc/include/generic-glibc/cpio.h b/lib/libc/include/generic-glibc/cpio.h similarity index 100% rename from libc/include/generic-glibc/cpio.h rename to lib/libc/include/generic-glibc/cpio.h diff --git a/libc/include/generic-glibc/crypt.h b/lib/libc/include/generic-glibc/crypt.h similarity index 100% rename from libc/include/generic-glibc/crypt.h rename to lib/libc/include/generic-glibc/crypt.h diff --git a/libc/include/generic-glibc/ctype.h b/lib/libc/include/generic-glibc/ctype.h similarity index 100% rename from libc/include/generic-glibc/ctype.h rename to lib/libc/include/generic-glibc/ctype.h diff --git a/libc/include/generic-glibc/dirent.h b/lib/libc/include/generic-glibc/dirent.h similarity index 100% rename from libc/include/generic-glibc/dirent.h rename to lib/libc/include/generic-glibc/dirent.h diff --git a/libc/include/generic-glibc/dlfcn.h b/lib/libc/include/generic-glibc/dlfcn.h similarity index 100% rename from libc/include/generic-glibc/dlfcn.h rename to lib/libc/include/generic-glibc/dlfcn.h diff --git a/libc/include/generic-glibc/elf.h b/lib/libc/include/generic-glibc/elf.h similarity index 100% rename from libc/include/generic-glibc/elf.h rename to lib/libc/include/generic-glibc/elf.h diff --git a/libc/include/generic-glibc/endian.h b/lib/libc/include/generic-glibc/endian.h similarity index 100% rename from libc/include/generic-glibc/endian.h rename to lib/libc/include/generic-glibc/endian.h diff --git a/libc/include/generic-glibc/envz.h b/lib/libc/include/generic-glibc/envz.h similarity index 100% rename from libc/include/generic-glibc/envz.h rename to lib/libc/include/generic-glibc/envz.h diff --git a/libc/include/generic-glibc/err.h b/lib/libc/include/generic-glibc/err.h similarity index 100% rename from libc/include/generic-glibc/err.h rename to lib/libc/include/generic-glibc/err.h diff --git a/libc/include/generic-glibc/errno.h b/lib/libc/include/generic-glibc/errno.h similarity index 100% rename from libc/include/generic-glibc/errno.h rename to lib/libc/include/generic-glibc/errno.h diff --git a/libc/include/generic-glibc/error.h b/lib/libc/include/generic-glibc/error.h similarity index 100% rename from libc/include/generic-glibc/error.h rename to lib/libc/include/generic-glibc/error.h diff --git a/libc/include/generic-glibc/execinfo.h b/lib/libc/include/generic-glibc/execinfo.h similarity index 100% rename from libc/include/generic-glibc/execinfo.h rename to lib/libc/include/generic-glibc/execinfo.h diff --git a/libc/include/generic-glibc/fcntl.h b/lib/libc/include/generic-glibc/fcntl.h similarity index 100% rename from libc/include/generic-glibc/fcntl.h rename to lib/libc/include/generic-glibc/fcntl.h diff --git a/libc/include/generic-glibc/features.h b/lib/libc/include/generic-glibc/features.h similarity index 100% rename from libc/include/generic-glibc/features.h rename to lib/libc/include/generic-glibc/features.h diff --git a/libc/include/generic-glibc/fenv.h b/lib/libc/include/generic-glibc/fenv.h similarity index 100% rename from libc/include/generic-glibc/fenv.h rename to lib/libc/include/generic-glibc/fenv.h diff --git a/libc/include/generic-glibc/fmtmsg.h b/lib/libc/include/generic-glibc/fmtmsg.h similarity index 100% rename from libc/include/generic-glibc/fmtmsg.h rename to lib/libc/include/generic-glibc/fmtmsg.h diff --git a/libc/include/generic-glibc/fnmatch.h b/lib/libc/include/generic-glibc/fnmatch.h similarity index 100% rename from libc/include/generic-glibc/fnmatch.h rename to lib/libc/include/generic-glibc/fnmatch.h diff --git a/libc/include/generic-glibc/fpregdef.h b/lib/libc/include/generic-glibc/fpregdef.h similarity index 100% rename from libc/include/generic-glibc/fpregdef.h rename to lib/libc/include/generic-glibc/fpregdef.h diff --git a/libc/include/generic-glibc/fpu_control.h b/lib/libc/include/generic-glibc/fpu_control.h similarity index 100% rename from libc/include/generic-glibc/fpu_control.h rename to lib/libc/include/generic-glibc/fpu_control.h diff --git a/libc/include/generic-glibc/fstab.h b/lib/libc/include/generic-glibc/fstab.h similarity index 100% rename from libc/include/generic-glibc/fstab.h rename to lib/libc/include/generic-glibc/fstab.h diff --git a/libc/include/generic-glibc/fts.h b/lib/libc/include/generic-glibc/fts.h similarity index 100% rename from libc/include/generic-glibc/fts.h rename to lib/libc/include/generic-glibc/fts.h diff --git a/libc/include/generic-glibc/ftw.h b/lib/libc/include/generic-glibc/ftw.h similarity index 100% rename from libc/include/generic-glibc/ftw.h rename to lib/libc/include/generic-glibc/ftw.h diff --git a/libc/include/generic-glibc/gconv.h b/lib/libc/include/generic-glibc/gconv.h similarity index 100% rename from libc/include/generic-glibc/gconv.h rename to lib/libc/include/generic-glibc/gconv.h diff --git a/libc/include/generic-glibc/getopt.h b/lib/libc/include/generic-glibc/getopt.h similarity index 100% rename from libc/include/generic-glibc/getopt.h rename to lib/libc/include/generic-glibc/getopt.h diff --git a/libc/include/generic-glibc/glob.h b/lib/libc/include/generic-glibc/glob.h similarity index 100% rename from libc/include/generic-glibc/glob.h rename to lib/libc/include/generic-glibc/glob.h diff --git a/libc/include/generic-glibc/gnu-versions.h b/lib/libc/include/generic-glibc/gnu-versions.h similarity index 100% rename from libc/include/generic-glibc/gnu-versions.h rename to lib/libc/include/generic-glibc/gnu-versions.h diff --git a/libc/include/generic-glibc/gnu/lib-names-32.h b/lib/libc/include/generic-glibc/gnu/lib-names-32.h similarity index 100% rename from libc/include/generic-glibc/gnu/lib-names-32.h rename to lib/libc/include/generic-glibc/gnu/lib-names-32.h diff --git a/libc/include/generic-glibc/gnu/lib-names-hard.h b/lib/libc/include/generic-glibc/gnu/lib-names-hard.h similarity index 100% rename from libc/include/generic-glibc/gnu/lib-names-hard.h rename to lib/libc/include/generic-glibc/gnu/lib-names-hard.h diff --git a/libc/include/generic-glibc/gnu/lib-names-n32_hard.h b/lib/libc/include/generic-glibc/gnu/lib-names-n32_hard.h similarity index 100% rename from libc/include/generic-glibc/gnu/lib-names-n32_hard.h rename to lib/libc/include/generic-glibc/gnu/lib-names-n32_hard.h diff --git a/libc/include/generic-glibc/gnu/lib-names-n64_hard.h b/lib/libc/include/generic-glibc/gnu/lib-names-n64_hard.h similarity index 100% rename from libc/include/generic-glibc/gnu/lib-names-n64_hard.h rename to lib/libc/include/generic-glibc/gnu/lib-names-n64_hard.h diff --git a/libc/include/generic-glibc/gnu/lib-names-o32_hard.h b/lib/libc/include/generic-glibc/gnu/lib-names-o32_hard.h similarity index 100% rename from libc/include/generic-glibc/gnu/lib-names-o32_hard.h rename to lib/libc/include/generic-glibc/gnu/lib-names-o32_hard.h diff --git a/libc/include/generic-glibc/gnu/lib-names-soft.h b/lib/libc/include/generic-glibc/gnu/lib-names-soft.h similarity index 100% rename from libc/include/generic-glibc/gnu/lib-names-soft.h rename to lib/libc/include/generic-glibc/gnu/lib-names-soft.h diff --git a/libc/include/generic-glibc/gnu/lib-names.h b/lib/libc/include/generic-glibc/gnu/lib-names.h similarity index 100% rename from libc/include/generic-glibc/gnu/lib-names.h rename to lib/libc/include/generic-glibc/gnu/lib-names.h diff --git a/libc/include/generic-glibc/gnu/libc-version.h b/lib/libc/include/generic-glibc/gnu/libc-version.h similarity index 100% rename from libc/include/generic-glibc/gnu/libc-version.h rename to lib/libc/include/generic-glibc/gnu/libc-version.h diff --git a/libc/include/generic-glibc/gnu/stubs-32.h b/lib/libc/include/generic-glibc/gnu/stubs-32.h similarity index 100% rename from libc/include/generic-glibc/gnu/stubs-32.h rename to lib/libc/include/generic-glibc/gnu/stubs-32.h diff --git a/libc/include/generic-glibc/gnu/stubs-hard.h b/lib/libc/include/generic-glibc/gnu/stubs-hard.h similarity index 100% rename from libc/include/generic-glibc/gnu/stubs-hard.h rename to lib/libc/include/generic-glibc/gnu/stubs-hard.h diff --git a/libc/include/generic-glibc/gnu/stubs-n32_hard.h b/lib/libc/include/generic-glibc/gnu/stubs-n32_hard.h similarity index 100% rename from libc/include/generic-glibc/gnu/stubs-n32_hard.h rename to lib/libc/include/generic-glibc/gnu/stubs-n32_hard.h diff --git a/libc/include/generic-glibc/gnu/stubs-n64_hard.h b/lib/libc/include/generic-glibc/gnu/stubs-n64_hard.h similarity index 100% rename from libc/include/generic-glibc/gnu/stubs-n64_hard.h rename to lib/libc/include/generic-glibc/gnu/stubs-n64_hard.h diff --git a/libc/include/generic-glibc/gnu/stubs-o32_hard.h b/lib/libc/include/generic-glibc/gnu/stubs-o32_hard.h similarity index 100% rename from libc/include/generic-glibc/gnu/stubs-o32_hard.h rename to lib/libc/include/generic-glibc/gnu/stubs-o32_hard.h diff --git a/libc/include/generic-glibc/gnu/stubs-soft.h b/lib/libc/include/generic-glibc/gnu/stubs-soft.h similarity index 100% rename from libc/include/generic-glibc/gnu/stubs-soft.h rename to lib/libc/include/generic-glibc/gnu/stubs-soft.h diff --git a/libc/include/generic-glibc/gnu/stubs.h b/lib/libc/include/generic-glibc/gnu/stubs.h similarity index 100% rename from libc/include/generic-glibc/gnu/stubs.h rename to lib/libc/include/generic-glibc/gnu/stubs.h diff --git a/libc/include/generic-glibc/grp.h b/lib/libc/include/generic-glibc/grp.h similarity index 100% rename from libc/include/generic-glibc/grp.h rename to lib/libc/include/generic-glibc/grp.h diff --git a/libc/include/generic-glibc/gshadow.h b/lib/libc/include/generic-glibc/gshadow.h similarity index 100% rename from libc/include/generic-glibc/gshadow.h rename to lib/libc/include/generic-glibc/gshadow.h diff --git a/libc/include/generic-glibc/iconv.h b/lib/libc/include/generic-glibc/iconv.h similarity index 100% rename from libc/include/generic-glibc/iconv.h rename to lib/libc/include/generic-glibc/iconv.h diff --git a/libc/include/generic-glibc/ieee754.h b/lib/libc/include/generic-glibc/ieee754.h similarity index 100% rename from libc/include/generic-glibc/ieee754.h rename to lib/libc/include/generic-glibc/ieee754.h diff --git a/libc/include/generic-glibc/ifaddrs.h b/lib/libc/include/generic-glibc/ifaddrs.h similarity index 100% rename from libc/include/generic-glibc/ifaddrs.h rename to lib/libc/include/generic-glibc/ifaddrs.h diff --git a/libc/include/generic-glibc/inttypes.h b/lib/libc/include/generic-glibc/inttypes.h similarity index 100% rename from libc/include/generic-glibc/inttypes.h rename to lib/libc/include/generic-glibc/inttypes.h diff --git a/libc/include/generic-glibc/langinfo.h b/lib/libc/include/generic-glibc/langinfo.h similarity index 100% rename from libc/include/generic-glibc/langinfo.h rename to lib/libc/include/generic-glibc/langinfo.h diff --git a/libc/include/generic-glibc/lastlog.h b/lib/libc/include/generic-glibc/lastlog.h similarity index 100% rename from libc/include/generic-glibc/lastlog.h rename to lib/libc/include/generic-glibc/lastlog.h diff --git a/libc/include/generic-glibc/libgen.h b/lib/libc/include/generic-glibc/libgen.h similarity index 100% rename from libc/include/generic-glibc/libgen.h rename to lib/libc/include/generic-glibc/libgen.h diff --git a/libc/include/generic-glibc/libintl.h b/lib/libc/include/generic-glibc/libintl.h similarity index 100% rename from libc/include/generic-glibc/libintl.h rename to lib/libc/include/generic-glibc/libintl.h diff --git a/libc/include/generic-glibc/limits.h b/lib/libc/include/generic-glibc/limits.h similarity index 100% rename from libc/include/generic-glibc/limits.h rename to lib/libc/include/generic-glibc/limits.h diff --git a/libc/include/generic-glibc/link.h b/lib/libc/include/generic-glibc/link.h similarity index 100% rename from libc/include/generic-glibc/link.h rename to lib/libc/include/generic-glibc/link.h diff --git a/libc/include/generic-glibc/locale.h b/lib/libc/include/generic-glibc/locale.h similarity index 100% rename from libc/include/generic-glibc/locale.h rename to lib/libc/include/generic-glibc/locale.h diff --git a/libc/include/generic-glibc/malloc.h b/lib/libc/include/generic-glibc/malloc.h similarity index 100% rename from libc/include/generic-glibc/malloc.h rename to lib/libc/include/generic-glibc/malloc.h diff --git a/libc/include/generic-glibc/math.h b/lib/libc/include/generic-glibc/math.h similarity index 100% rename from libc/include/generic-glibc/math.h rename to lib/libc/include/generic-glibc/math.h diff --git a/libc/include/generic-glibc/mcheck.h b/lib/libc/include/generic-glibc/mcheck.h similarity index 100% rename from libc/include/generic-glibc/mcheck.h rename to lib/libc/include/generic-glibc/mcheck.h diff --git a/libc/include/generic-glibc/memory.h b/lib/libc/include/generic-glibc/memory.h similarity index 100% rename from libc/include/generic-glibc/memory.h rename to lib/libc/include/generic-glibc/memory.h diff --git a/libc/include/generic-glibc/mntent.h b/lib/libc/include/generic-glibc/mntent.h similarity index 100% rename from libc/include/generic-glibc/mntent.h rename to lib/libc/include/generic-glibc/mntent.h diff --git a/libc/include/generic-glibc/monetary.h b/lib/libc/include/generic-glibc/monetary.h similarity index 100% rename from libc/include/generic-glibc/monetary.h rename to lib/libc/include/generic-glibc/monetary.h diff --git a/libc/include/generic-glibc/mqueue.h b/lib/libc/include/generic-glibc/mqueue.h similarity index 100% rename from libc/include/generic-glibc/mqueue.h rename to lib/libc/include/generic-glibc/mqueue.h diff --git a/libc/include/generic-glibc/net/ethernet.h b/lib/libc/include/generic-glibc/net/ethernet.h similarity index 100% rename from libc/include/generic-glibc/net/ethernet.h rename to lib/libc/include/generic-glibc/net/ethernet.h diff --git a/libc/include/generic-glibc/net/if.h b/lib/libc/include/generic-glibc/net/if.h similarity index 100% rename from libc/include/generic-glibc/net/if.h rename to lib/libc/include/generic-glibc/net/if.h diff --git a/libc/include/generic-glibc/net/if_arp.h b/lib/libc/include/generic-glibc/net/if_arp.h similarity index 100% rename from libc/include/generic-glibc/net/if_arp.h rename to lib/libc/include/generic-glibc/net/if_arp.h diff --git a/libc/include/generic-glibc/net/if_packet.h b/lib/libc/include/generic-glibc/net/if_packet.h similarity index 100% rename from libc/include/generic-glibc/net/if_packet.h rename to lib/libc/include/generic-glibc/net/if_packet.h diff --git a/libc/include/generic-glibc/net/if_ppp.h b/lib/libc/include/generic-glibc/net/if_ppp.h similarity index 100% rename from libc/include/generic-glibc/net/if_ppp.h rename to lib/libc/include/generic-glibc/net/if_ppp.h diff --git a/libc/include/generic-glibc/net/if_shaper.h b/lib/libc/include/generic-glibc/net/if_shaper.h similarity index 100% rename from libc/include/generic-glibc/net/if_shaper.h rename to lib/libc/include/generic-glibc/net/if_shaper.h diff --git a/libc/include/generic-glibc/net/if_slip.h b/lib/libc/include/generic-glibc/net/if_slip.h similarity index 100% rename from libc/include/generic-glibc/net/if_slip.h rename to lib/libc/include/generic-glibc/net/if_slip.h diff --git a/libc/include/generic-glibc/net/ppp-comp.h b/lib/libc/include/generic-glibc/net/ppp-comp.h similarity index 100% rename from libc/include/generic-glibc/net/ppp-comp.h rename to lib/libc/include/generic-glibc/net/ppp-comp.h diff --git a/libc/include/generic-glibc/net/ppp_defs.h b/lib/libc/include/generic-glibc/net/ppp_defs.h similarity index 100% rename from libc/include/generic-glibc/net/ppp_defs.h rename to lib/libc/include/generic-glibc/net/ppp_defs.h diff --git a/libc/include/generic-glibc/net/route.h b/lib/libc/include/generic-glibc/net/route.h similarity index 100% rename from libc/include/generic-glibc/net/route.h rename to lib/libc/include/generic-glibc/net/route.h diff --git a/libc/include/generic-glibc/netash/ash.h b/lib/libc/include/generic-glibc/netash/ash.h similarity index 100% rename from libc/include/generic-glibc/netash/ash.h rename to lib/libc/include/generic-glibc/netash/ash.h diff --git a/libc/include/generic-glibc/netatalk/at.h b/lib/libc/include/generic-glibc/netatalk/at.h similarity index 100% rename from libc/include/generic-glibc/netatalk/at.h rename to lib/libc/include/generic-glibc/netatalk/at.h diff --git a/libc/include/generic-glibc/netax25/ax25.h b/lib/libc/include/generic-glibc/netax25/ax25.h similarity index 100% rename from libc/include/generic-glibc/netax25/ax25.h rename to lib/libc/include/generic-glibc/netax25/ax25.h diff --git a/libc/include/generic-glibc/netdb.h b/lib/libc/include/generic-glibc/netdb.h similarity index 100% rename from libc/include/generic-glibc/netdb.h rename to lib/libc/include/generic-glibc/netdb.h diff --git a/libc/include/generic-glibc/neteconet/ec.h b/lib/libc/include/generic-glibc/neteconet/ec.h similarity index 100% rename from libc/include/generic-glibc/neteconet/ec.h rename to lib/libc/include/generic-glibc/neteconet/ec.h diff --git a/libc/include/generic-glibc/netinet/ether.h b/lib/libc/include/generic-glibc/netinet/ether.h similarity index 100% rename from libc/include/generic-glibc/netinet/ether.h rename to lib/libc/include/generic-glibc/netinet/ether.h diff --git a/libc/include/generic-glibc/netinet/icmp6.h b/lib/libc/include/generic-glibc/netinet/icmp6.h similarity index 100% rename from libc/include/generic-glibc/netinet/icmp6.h rename to lib/libc/include/generic-glibc/netinet/icmp6.h diff --git a/libc/include/generic-glibc/netinet/if_ether.h b/lib/libc/include/generic-glibc/netinet/if_ether.h similarity index 100% rename from libc/include/generic-glibc/netinet/if_ether.h rename to lib/libc/include/generic-glibc/netinet/if_ether.h diff --git a/libc/include/generic-glibc/netinet/if_fddi.h b/lib/libc/include/generic-glibc/netinet/if_fddi.h similarity index 100% rename from libc/include/generic-glibc/netinet/if_fddi.h rename to lib/libc/include/generic-glibc/netinet/if_fddi.h diff --git a/libc/include/generic-glibc/netinet/if_tr.h b/lib/libc/include/generic-glibc/netinet/if_tr.h similarity index 100% rename from libc/include/generic-glibc/netinet/if_tr.h rename to lib/libc/include/generic-glibc/netinet/if_tr.h diff --git a/libc/include/generic-glibc/netinet/igmp.h b/lib/libc/include/generic-glibc/netinet/igmp.h similarity index 100% rename from libc/include/generic-glibc/netinet/igmp.h rename to lib/libc/include/generic-glibc/netinet/igmp.h diff --git a/libc/include/generic-glibc/netinet/in.h b/lib/libc/include/generic-glibc/netinet/in.h similarity index 100% rename from libc/include/generic-glibc/netinet/in.h rename to lib/libc/include/generic-glibc/netinet/in.h diff --git a/libc/include/generic-glibc/netinet/in_systm.h b/lib/libc/include/generic-glibc/netinet/in_systm.h similarity index 100% rename from libc/include/generic-glibc/netinet/in_systm.h rename to lib/libc/include/generic-glibc/netinet/in_systm.h diff --git a/libc/include/generic-glibc/netinet/ip.h b/lib/libc/include/generic-glibc/netinet/ip.h similarity index 100% rename from libc/include/generic-glibc/netinet/ip.h rename to lib/libc/include/generic-glibc/netinet/ip.h diff --git a/libc/include/generic-glibc/netinet/ip6.h b/lib/libc/include/generic-glibc/netinet/ip6.h similarity index 100% rename from libc/include/generic-glibc/netinet/ip6.h rename to lib/libc/include/generic-glibc/netinet/ip6.h diff --git a/libc/include/generic-glibc/netinet/ip_icmp.h b/lib/libc/include/generic-glibc/netinet/ip_icmp.h similarity index 100% rename from libc/include/generic-glibc/netinet/ip_icmp.h rename to lib/libc/include/generic-glibc/netinet/ip_icmp.h diff --git a/libc/include/generic-glibc/netinet/tcp.h b/lib/libc/include/generic-glibc/netinet/tcp.h similarity index 100% rename from libc/include/generic-glibc/netinet/tcp.h rename to lib/libc/include/generic-glibc/netinet/tcp.h diff --git a/libc/include/generic-glibc/netinet/udp.h b/lib/libc/include/generic-glibc/netinet/udp.h similarity index 100% rename from libc/include/generic-glibc/netinet/udp.h rename to lib/libc/include/generic-glibc/netinet/udp.h diff --git a/libc/include/generic-glibc/netipx/ipx.h b/lib/libc/include/generic-glibc/netipx/ipx.h similarity index 100% rename from libc/include/generic-glibc/netipx/ipx.h rename to lib/libc/include/generic-glibc/netipx/ipx.h diff --git a/libc/include/generic-glibc/netiucv/iucv.h b/lib/libc/include/generic-glibc/netiucv/iucv.h similarity index 100% rename from libc/include/generic-glibc/netiucv/iucv.h rename to lib/libc/include/generic-glibc/netiucv/iucv.h diff --git a/libc/include/generic-glibc/netpacket/packet.h b/lib/libc/include/generic-glibc/netpacket/packet.h similarity index 100% rename from libc/include/generic-glibc/netpacket/packet.h rename to lib/libc/include/generic-glibc/netpacket/packet.h diff --git a/libc/include/generic-glibc/netrom/netrom.h b/lib/libc/include/generic-glibc/netrom/netrom.h similarity index 100% rename from libc/include/generic-glibc/netrom/netrom.h rename to lib/libc/include/generic-glibc/netrom/netrom.h diff --git a/libc/include/generic-glibc/netrose/rose.h b/lib/libc/include/generic-glibc/netrose/rose.h similarity index 100% rename from libc/include/generic-glibc/netrose/rose.h rename to lib/libc/include/generic-glibc/netrose/rose.h diff --git a/libc/include/generic-glibc/nfs/nfs.h b/lib/libc/include/generic-glibc/nfs/nfs.h similarity index 100% rename from libc/include/generic-glibc/nfs/nfs.h rename to lib/libc/include/generic-glibc/nfs/nfs.h diff --git a/libc/include/generic-glibc/nl_types.h b/lib/libc/include/generic-glibc/nl_types.h similarity index 100% rename from libc/include/generic-glibc/nl_types.h rename to lib/libc/include/generic-glibc/nl_types.h diff --git a/libc/include/generic-glibc/nss.h b/lib/libc/include/generic-glibc/nss.h similarity index 100% rename from libc/include/generic-glibc/nss.h rename to lib/libc/include/generic-glibc/nss.h diff --git a/libc/include/generic-glibc/obstack.h b/lib/libc/include/generic-glibc/obstack.h similarity index 100% rename from libc/include/generic-glibc/obstack.h rename to lib/libc/include/generic-glibc/obstack.h diff --git a/libc/include/generic-glibc/paths.h b/lib/libc/include/generic-glibc/paths.h similarity index 100% rename from libc/include/generic-glibc/paths.h rename to lib/libc/include/generic-glibc/paths.h diff --git a/libc/include/generic-glibc/poll.h b/lib/libc/include/generic-glibc/poll.h similarity index 100% rename from libc/include/generic-glibc/poll.h rename to lib/libc/include/generic-glibc/poll.h diff --git a/libc/include/generic-glibc/printf.h b/lib/libc/include/generic-glibc/printf.h similarity index 100% rename from libc/include/generic-glibc/printf.h rename to lib/libc/include/generic-glibc/printf.h diff --git a/libc/include/generic-glibc/proc_service.h b/lib/libc/include/generic-glibc/proc_service.h similarity index 100% rename from libc/include/generic-glibc/proc_service.h rename to lib/libc/include/generic-glibc/proc_service.h diff --git a/libc/include/generic-glibc/protocols/routed.h b/lib/libc/include/generic-glibc/protocols/routed.h similarity index 100% rename from libc/include/generic-glibc/protocols/routed.h rename to lib/libc/include/generic-glibc/protocols/routed.h diff --git a/libc/include/generic-glibc/protocols/rwhod.h b/lib/libc/include/generic-glibc/protocols/rwhod.h similarity index 100% rename from libc/include/generic-glibc/protocols/rwhod.h rename to lib/libc/include/generic-glibc/protocols/rwhod.h diff --git a/libc/include/generic-glibc/protocols/talkd.h b/lib/libc/include/generic-glibc/protocols/talkd.h similarity index 100% rename from libc/include/generic-glibc/protocols/talkd.h rename to lib/libc/include/generic-glibc/protocols/talkd.h diff --git a/libc/include/generic-glibc/protocols/timed.h b/lib/libc/include/generic-glibc/protocols/timed.h similarity index 100% rename from libc/include/generic-glibc/protocols/timed.h rename to lib/libc/include/generic-glibc/protocols/timed.h diff --git a/libc/include/generic-glibc/pthread.h b/lib/libc/include/generic-glibc/pthread.h similarity index 100% rename from libc/include/generic-glibc/pthread.h rename to lib/libc/include/generic-glibc/pthread.h diff --git a/libc/include/generic-glibc/pty.h b/lib/libc/include/generic-glibc/pty.h similarity index 100% rename from libc/include/generic-glibc/pty.h rename to lib/libc/include/generic-glibc/pty.h diff --git a/libc/include/generic-glibc/pwd.h b/lib/libc/include/generic-glibc/pwd.h similarity index 100% rename from libc/include/generic-glibc/pwd.h rename to lib/libc/include/generic-glibc/pwd.h diff --git a/libc/include/generic-glibc/re_comp.h b/lib/libc/include/generic-glibc/re_comp.h similarity index 100% rename from libc/include/generic-glibc/re_comp.h rename to lib/libc/include/generic-glibc/re_comp.h diff --git a/libc/include/generic-glibc/regdef.h b/lib/libc/include/generic-glibc/regdef.h similarity index 100% rename from libc/include/generic-glibc/regdef.h rename to lib/libc/include/generic-glibc/regdef.h diff --git a/libc/include/generic-glibc/regex.h b/lib/libc/include/generic-glibc/regex.h similarity index 100% rename from libc/include/generic-glibc/regex.h rename to lib/libc/include/generic-glibc/regex.h diff --git a/libc/include/generic-glibc/regexp.h b/lib/libc/include/generic-glibc/regexp.h similarity index 100% rename from libc/include/generic-glibc/regexp.h rename to lib/libc/include/generic-glibc/regexp.h diff --git a/libc/include/generic-glibc/resolv.h b/lib/libc/include/generic-glibc/resolv.h similarity index 100% rename from libc/include/generic-glibc/resolv.h rename to lib/libc/include/generic-glibc/resolv.h diff --git a/libc/include/generic-glibc/rpc/netdb.h b/lib/libc/include/generic-glibc/rpc/netdb.h similarity index 100% rename from libc/include/generic-glibc/rpc/netdb.h rename to lib/libc/include/generic-glibc/rpc/netdb.h diff --git a/libc/include/generic-glibc/sched.h b/lib/libc/include/generic-glibc/sched.h similarity index 100% rename from libc/include/generic-glibc/sched.h rename to lib/libc/include/generic-glibc/sched.h diff --git a/libc/include/generic-glibc/scsi/scsi.h b/lib/libc/include/generic-glibc/scsi/scsi.h similarity index 100% rename from libc/include/generic-glibc/scsi/scsi.h rename to lib/libc/include/generic-glibc/scsi/scsi.h diff --git a/libc/include/generic-glibc/scsi/scsi_ioctl.h b/lib/libc/include/generic-glibc/scsi/scsi_ioctl.h similarity index 100% rename from libc/include/generic-glibc/scsi/scsi_ioctl.h rename to lib/libc/include/generic-glibc/scsi/scsi_ioctl.h diff --git a/libc/include/generic-glibc/scsi/sg.h b/lib/libc/include/generic-glibc/scsi/sg.h similarity index 100% rename from libc/include/generic-glibc/scsi/sg.h rename to lib/libc/include/generic-glibc/scsi/sg.h diff --git a/libc/include/generic-glibc/search.h b/lib/libc/include/generic-glibc/search.h similarity index 100% rename from libc/include/generic-glibc/search.h rename to lib/libc/include/generic-glibc/search.h diff --git a/libc/include/generic-glibc/semaphore.h b/lib/libc/include/generic-glibc/semaphore.h similarity index 100% rename from libc/include/generic-glibc/semaphore.h rename to lib/libc/include/generic-glibc/semaphore.h diff --git a/libc/include/generic-glibc/setjmp.h b/lib/libc/include/generic-glibc/setjmp.h similarity index 100% rename from libc/include/generic-glibc/setjmp.h rename to lib/libc/include/generic-glibc/setjmp.h diff --git a/libc/include/generic-glibc/sgidefs.h b/lib/libc/include/generic-glibc/sgidefs.h similarity index 100% rename from libc/include/generic-glibc/sgidefs.h rename to lib/libc/include/generic-glibc/sgidefs.h diff --git a/libc/include/generic-glibc/sgtty.h b/lib/libc/include/generic-glibc/sgtty.h similarity index 100% rename from libc/include/generic-glibc/sgtty.h rename to lib/libc/include/generic-glibc/sgtty.h diff --git a/libc/include/generic-glibc/shadow.h b/lib/libc/include/generic-glibc/shadow.h similarity index 100% rename from libc/include/generic-glibc/shadow.h rename to lib/libc/include/generic-glibc/shadow.h diff --git a/libc/include/generic-glibc/signal.h b/lib/libc/include/generic-glibc/signal.h similarity index 100% rename from libc/include/generic-glibc/signal.h rename to lib/libc/include/generic-glibc/signal.h diff --git a/libc/include/generic-glibc/spawn.h b/lib/libc/include/generic-glibc/spawn.h similarity index 100% rename from libc/include/generic-glibc/spawn.h rename to lib/libc/include/generic-glibc/spawn.h diff --git a/libc/include/generic-glibc/stab.h b/lib/libc/include/generic-glibc/stab.h similarity index 100% rename from libc/include/generic-glibc/stab.h rename to lib/libc/include/generic-glibc/stab.h diff --git a/libc/include/generic-glibc/stdc-predef.h b/lib/libc/include/generic-glibc/stdc-predef.h similarity index 100% rename from libc/include/generic-glibc/stdc-predef.h rename to lib/libc/include/generic-glibc/stdc-predef.h diff --git a/libc/include/generic-glibc/stdint.h b/lib/libc/include/generic-glibc/stdint.h similarity index 100% rename from libc/include/generic-glibc/stdint.h rename to lib/libc/include/generic-glibc/stdint.h diff --git a/libc/include/generic-glibc/stdio.h b/lib/libc/include/generic-glibc/stdio.h similarity index 100% rename from libc/include/generic-glibc/stdio.h rename to lib/libc/include/generic-glibc/stdio.h diff --git a/libc/include/generic-glibc/stdio_ext.h b/lib/libc/include/generic-glibc/stdio_ext.h similarity index 100% rename from libc/include/generic-glibc/stdio_ext.h rename to lib/libc/include/generic-glibc/stdio_ext.h diff --git a/libc/include/generic-glibc/stdlib.h b/lib/libc/include/generic-glibc/stdlib.h similarity index 100% rename from libc/include/generic-glibc/stdlib.h rename to lib/libc/include/generic-glibc/stdlib.h diff --git a/libc/include/generic-glibc/string.h b/lib/libc/include/generic-glibc/string.h similarity index 100% rename from libc/include/generic-glibc/string.h rename to lib/libc/include/generic-glibc/string.h diff --git a/libc/include/generic-glibc/strings.h b/lib/libc/include/generic-glibc/strings.h similarity index 100% rename from libc/include/generic-glibc/strings.h rename to lib/libc/include/generic-glibc/strings.h diff --git a/libc/include/generic-glibc/stropts.h b/lib/libc/include/generic-glibc/stropts.h similarity index 100% rename from libc/include/generic-glibc/stropts.h rename to lib/libc/include/generic-glibc/stropts.h diff --git a/libc/include/generic-glibc/sys/acct.h b/lib/libc/include/generic-glibc/sys/acct.h similarity index 100% rename from libc/include/generic-glibc/sys/acct.h rename to lib/libc/include/generic-glibc/sys/acct.h diff --git a/libc/include/generic-glibc/sys/asm.h b/lib/libc/include/generic-glibc/sys/asm.h similarity index 100% rename from libc/include/generic-glibc/sys/asm.h rename to lib/libc/include/generic-glibc/sys/asm.h diff --git a/libc/include/generic-glibc/sys/auxv.h b/lib/libc/include/generic-glibc/sys/auxv.h similarity index 100% rename from libc/include/generic-glibc/sys/auxv.h rename to lib/libc/include/generic-glibc/sys/auxv.h diff --git a/libc/include/generic-glibc/sys/bitypes.h b/lib/libc/include/generic-glibc/sys/bitypes.h similarity index 100% rename from libc/include/generic-glibc/sys/bitypes.h rename to lib/libc/include/generic-glibc/sys/bitypes.h diff --git a/libc/include/generic-glibc/sys/cachectl.h b/lib/libc/include/generic-glibc/sys/cachectl.h similarity index 100% rename from libc/include/generic-glibc/sys/cachectl.h rename to lib/libc/include/generic-glibc/sys/cachectl.h diff --git a/libc/include/generic-glibc/sys/cdefs.h b/lib/libc/include/generic-glibc/sys/cdefs.h similarity index 100% rename from libc/include/generic-glibc/sys/cdefs.h rename to lib/libc/include/generic-glibc/sys/cdefs.h diff --git a/libc/include/generic-glibc/sys/debugreg.h b/lib/libc/include/generic-glibc/sys/debugreg.h similarity index 100% rename from libc/include/generic-glibc/sys/debugreg.h rename to lib/libc/include/generic-glibc/sys/debugreg.h diff --git a/libc/include/generic-glibc/sys/dir.h b/lib/libc/include/generic-glibc/sys/dir.h similarity index 100% rename from libc/include/generic-glibc/sys/dir.h rename to lib/libc/include/generic-glibc/sys/dir.h diff --git a/libc/include/generic-glibc/sys/elf.h b/lib/libc/include/generic-glibc/sys/elf.h similarity index 100% rename from libc/include/generic-glibc/sys/elf.h rename to lib/libc/include/generic-glibc/sys/elf.h diff --git a/libc/include/generic-glibc/sys/epoll.h b/lib/libc/include/generic-glibc/sys/epoll.h similarity index 100% rename from libc/include/generic-glibc/sys/epoll.h rename to lib/libc/include/generic-glibc/sys/epoll.h diff --git a/libc/include/generic-glibc/sys/errno.h b/lib/libc/include/generic-glibc/sys/errno.h similarity index 100% rename from libc/include/generic-glibc/sys/errno.h rename to lib/libc/include/generic-glibc/sys/errno.h diff --git a/libc/include/generic-glibc/sys/eventfd.h b/lib/libc/include/generic-glibc/sys/eventfd.h similarity index 100% rename from libc/include/generic-glibc/sys/eventfd.h rename to lib/libc/include/generic-glibc/sys/eventfd.h diff --git a/libc/include/generic-glibc/sys/fanotify.h b/lib/libc/include/generic-glibc/sys/fanotify.h similarity index 100% rename from libc/include/generic-glibc/sys/fanotify.h rename to lib/libc/include/generic-glibc/sys/fanotify.h diff --git a/libc/include/generic-glibc/sys/fcntl.h b/lib/libc/include/generic-glibc/sys/fcntl.h similarity index 100% rename from libc/include/generic-glibc/sys/fcntl.h rename to lib/libc/include/generic-glibc/sys/fcntl.h diff --git a/libc/include/generic-glibc/sys/file.h b/lib/libc/include/generic-glibc/sys/file.h similarity index 100% rename from libc/include/generic-glibc/sys/file.h rename to lib/libc/include/generic-glibc/sys/file.h diff --git a/libc/include/generic-glibc/sys/fpregdef.h b/lib/libc/include/generic-glibc/sys/fpregdef.h similarity index 100% rename from libc/include/generic-glibc/sys/fpregdef.h rename to lib/libc/include/generic-glibc/sys/fpregdef.h diff --git a/libc/include/generic-glibc/sys/fsuid.h b/lib/libc/include/generic-glibc/sys/fsuid.h similarity index 100% rename from libc/include/generic-glibc/sys/fsuid.h rename to lib/libc/include/generic-glibc/sys/fsuid.h diff --git a/libc/include/generic-glibc/sys/gmon.h b/lib/libc/include/generic-glibc/sys/gmon.h similarity index 100% rename from libc/include/generic-glibc/sys/gmon.h rename to lib/libc/include/generic-glibc/sys/gmon.h diff --git a/libc/include/generic-glibc/sys/gmon_out.h b/lib/libc/include/generic-glibc/sys/gmon_out.h similarity index 100% rename from libc/include/generic-glibc/sys/gmon_out.h rename to lib/libc/include/generic-glibc/sys/gmon_out.h diff --git a/libc/include/generic-glibc/sys/inotify.h b/lib/libc/include/generic-glibc/sys/inotify.h similarity index 100% rename from libc/include/generic-glibc/sys/inotify.h rename to lib/libc/include/generic-glibc/sys/inotify.h diff --git a/libc/include/generic-glibc/sys/io.h b/lib/libc/include/generic-glibc/sys/io.h similarity index 100% rename from libc/include/generic-glibc/sys/io.h rename to lib/libc/include/generic-glibc/sys/io.h diff --git a/libc/include/generic-glibc/sys/ioctl.h b/lib/libc/include/generic-glibc/sys/ioctl.h similarity index 100% rename from libc/include/generic-glibc/sys/ioctl.h rename to lib/libc/include/generic-glibc/sys/ioctl.h diff --git a/libc/include/generic-glibc/sys/ipc.h b/lib/libc/include/generic-glibc/sys/ipc.h similarity index 100% rename from libc/include/generic-glibc/sys/ipc.h rename to lib/libc/include/generic-glibc/sys/ipc.h diff --git a/libc/include/generic-glibc/sys/kd.h b/lib/libc/include/generic-glibc/sys/kd.h similarity index 100% rename from libc/include/generic-glibc/sys/kd.h rename to lib/libc/include/generic-glibc/sys/kd.h diff --git a/libc/include/generic-glibc/sys/klog.h b/lib/libc/include/generic-glibc/sys/klog.h similarity index 100% rename from libc/include/generic-glibc/sys/klog.h rename to lib/libc/include/generic-glibc/sys/klog.h diff --git a/libc/include/generic-glibc/sys/mman.h b/lib/libc/include/generic-glibc/sys/mman.h similarity index 100% rename from libc/include/generic-glibc/sys/mman.h rename to lib/libc/include/generic-glibc/sys/mman.h diff --git a/libc/include/generic-glibc/sys/mount.h b/lib/libc/include/generic-glibc/sys/mount.h similarity index 100% rename from libc/include/generic-glibc/sys/mount.h rename to lib/libc/include/generic-glibc/sys/mount.h diff --git a/libc/include/generic-glibc/sys/msg.h b/lib/libc/include/generic-glibc/sys/msg.h similarity index 100% rename from libc/include/generic-glibc/sys/msg.h rename to lib/libc/include/generic-glibc/sys/msg.h diff --git a/libc/include/generic-glibc/sys/mtio.h b/lib/libc/include/generic-glibc/sys/mtio.h similarity index 100% rename from libc/include/generic-glibc/sys/mtio.h rename to lib/libc/include/generic-glibc/sys/mtio.h diff --git a/libc/include/generic-glibc/sys/param.h b/lib/libc/include/generic-glibc/sys/param.h similarity index 100% rename from libc/include/generic-glibc/sys/param.h rename to lib/libc/include/generic-glibc/sys/param.h diff --git a/libc/include/generic-glibc/sys/pci.h b/lib/libc/include/generic-glibc/sys/pci.h similarity index 100% rename from libc/include/generic-glibc/sys/pci.h rename to lib/libc/include/generic-glibc/sys/pci.h diff --git a/libc/include/generic-glibc/sys/perm.h b/lib/libc/include/generic-glibc/sys/perm.h similarity index 100% rename from libc/include/generic-glibc/sys/perm.h rename to lib/libc/include/generic-glibc/sys/perm.h diff --git a/libc/include/generic-glibc/sys/personality.h b/lib/libc/include/generic-glibc/sys/personality.h similarity index 100% rename from libc/include/generic-glibc/sys/personality.h rename to lib/libc/include/generic-glibc/sys/personality.h diff --git a/libc/include/generic-glibc/sys/platform/ppc.h b/lib/libc/include/generic-glibc/sys/platform/ppc.h similarity index 100% rename from libc/include/generic-glibc/sys/platform/ppc.h rename to lib/libc/include/generic-glibc/sys/platform/ppc.h diff --git a/libc/include/generic-glibc/sys/poll.h b/lib/libc/include/generic-glibc/sys/poll.h similarity index 100% rename from libc/include/generic-glibc/sys/poll.h rename to lib/libc/include/generic-glibc/sys/poll.h diff --git a/libc/include/generic-glibc/sys/prctl.h b/lib/libc/include/generic-glibc/sys/prctl.h similarity index 100% rename from libc/include/generic-glibc/sys/prctl.h rename to lib/libc/include/generic-glibc/sys/prctl.h diff --git a/libc/include/generic-glibc/sys/procfs.h b/lib/libc/include/generic-glibc/sys/procfs.h similarity index 100% rename from libc/include/generic-glibc/sys/procfs.h rename to lib/libc/include/generic-glibc/sys/procfs.h diff --git a/libc/include/generic-glibc/sys/profil.h b/lib/libc/include/generic-glibc/sys/profil.h similarity index 100% rename from libc/include/generic-glibc/sys/profil.h rename to lib/libc/include/generic-glibc/sys/profil.h diff --git a/libc/include/generic-glibc/sys/ptrace.h b/lib/libc/include/generic-glibc/sys/ptrace.h similarity index 100% rename from libc/include/generic-glibc/sys/ptrace.h rename to lib/libc/include/generic-glibc/sys/ptrace.h diff --git a/libc/include/generic-glibc/sys/queue.h b/lib/libc/include/generic-glibc/sys/queue.h similarity index 100% rename from libc/include/generic-glibc/sys/queue.h rename to lib/libc/include/generic-glibc/sys/queue.h diff --git a/libc/include/generic-glibc/sys/quota.h b/lib/libc/include/generic-glibc/sys/quota.h similarity index 100% rename from libc/include/generic-glibc/sys/quota.h rename to lib/libc/include/generic-glibc/sys/quota.h diff --git a/libc/include/generic-glibc/sys/random.h b/lib/libc/include/generic-glibc/sys/random.h similarity index 100% rename from libc/include/generic-glibc/sys/random.h rename to lib/libc/include/generic-glibc/sys/random.h diff --git a/libc/include/generic-glibc/sys/raw.h b/lib/libc/include/generic-glibc/sys/raw.h similarity index 100% rename from libc/include/generic-glibc/sys/raw.h rename to lib/libc/include/generic-glibc/sys/raw.h diff --git a/libc/include/generic-glibc/sys/reboot.h b/lib/libc/include/generic-glibc/sys/reboot.h similarity index 100% rename from libc/include/generic-glibc/sys/reboot.h rename to lib/libc/include/generic-glibc/sys/reboot.h diff --git a/libc/include/generic-glibc/sys/reg.h b/lib/libc/include/generic-glibc/sys/reg.h similarity index 100% rename from libc/include/generic-glibc/sys/reg.h rename to lib/libc/include/generic-glibc/sys/reg.h diff --git a/libc/include/generic-glibc/sys/regdef.h b/lib/libc/include/generic-glibc/sys/regdef.h similarity index 100% rename from libc/include/generic-glibc/sys/regdef.h rename to lib/libc/include/generic-glibc/sys/regdef.h diff --git a/libc/include/generic-glibc/sys/resource.h b/lib/libc/include/generic-glibc/sys/resource.h similarity index 100% rename from libc/include/generic-glibc/sys/resource.h rename to lib/libc/include/generic-glibc/sys/resource.h diff --git a/libc/include/generic-glibc/sys/select.h b/lib/libc/include/generic-glibc/sys/select.h similarity index 100% rename from libc/include/generic-glibc/sys/select.h rename to lib/libc/include/generic-glibc/sys/select.h diff --git a/libc/include/generic-glibc/sys/sem.h b/lib/libc/include/generic-glibc/sys/sem.h similarity index 100% rename from libc/include/generic-glibc/sys/sem.h rename to lib/libc/include/generic-glibc/sys/sem.h diff --git a/libc/include/generic-glibc/sys/sendfile.h b/lib/libc/include/generic-glibc/sys/sendfile.h similarity index 100% rename from libc/include/generic-glibc/sys/sendfile.h rename to lib/libc/include/generic-glibc/sys/sendfile.h diff --git a/libc/include/generic-glibc/sys/shm.h b/lib/libc/include/generic-glibc/sys/shm.h similarity index 100% rename from libc/include/generic-glibc/sys/shm.h rename to lib/libc/include/generic-glibc/sys/shm.h diff --git a/libc/include/generic-glibc/sys/signal.h b/lib/libc/include/generic-glibc/sys/signal.h similarity index 100% rename from libc/include/generic-glibc/sys/signal.h rename to lib/libc/include/generic-glibc/sys/signal.h diff --git a/libc/include/generic-glibc/sys/signalfd.h b/lib/libc/include/generic-glibc/sys/signalfd.h similarity index 100% rename from libc/include/generic-glibc/sys/signalfd.h rename to lib/libc/include/generic-glibc/sys/signalfd.h diff --git a/libc/include/generic-glibc/sys/socket.h b/lib/libc/include/generic-glibc/sys/socket.h similarity index 100% rename from libc/include/generic-glibc/sys/socket.h rename to lib/libc/include/generic-glibc/sys/socket.h diff --git a/libc/include/generic-glibc/sys/socketvar.h b/lib/libc/include/generic-glibc/sys/socketvar.h similarity index 100% rename from libc/include/generic-glibc/sys/socketvar.h rename to lib/libc/include/generic-glibc/sys/socketvar.h diff --git a/libc/include/generic-glibc/sys/soundcard.h b/lib/libc/include/generic-glibc/sys/soundcard.h similarity index 100% rename from libc/include/generic-glibc/sys/soundcard.h rename to lib/libc/include/generic-glibc/sys/soundcard.h diff --git a/libc/include/generic-glibc/sys/stat.h b/lib/libc/include/generic-glibc/sys/stat.h similarity index 100% rename from libc/include/generic-glibc/sys/stat.h rename to lib/libc/include/generic-glibc/sys/stat.h diff --git a/libc/include/generic-glibc/sys/statfs.h b/lib/libc/include/generic-glibc/sys/statfs.h similarity index 100% rename from libc/include/generic-glibc/sys/statfs.h rename to lib/libc/include/generic-glibc/sys/statfs.h diff --git a/libc/include/generic-glibc/sys/statvfs.h b/lib/libc/include/generic-glibc/sys/statvfs.h similarity index 100% rename from libc/include/generic-glibc/sys/statvfs.h rename to lib/libc/include/generic-glibc/sys/statvfs.h diff --git a/libc/include/generic-glibc/sys/stropts.h b/lib/libc/include/generic-glibc/sys/stropts.h similarity index 100% rename from libc/include/generic-glibc/sys/stropts.h rename to lib/libc/include/generic-glibc/sys/stropts.h diff --git a/libc/include/generic-glibc/sys/swap.h b/lib/libc/include/generic-glibc/sys/swap.h similarity index 100% rename from libc/include/generic-glibc/sys/swap.h rename to lib/libc/include/generic-glibc/sys/swap.h diff --git a/libc/include/generic-glibc/sys/syscall.h b/lib/libc/include/generic-glibc/sys/syscall.h similarity index 100% rename from libc/include/generic-glibc/sys/syscall.h rename to lib/libc/include/generic-glibc/sys/syscall.h diff --git a/libc/include/generic-glibc/sys/sysctl.h b/lib/libc/include/generic-glibc/sys/sysctl.h similarity index 100% rename from libc/include/generic-glibc/sys/sysctl.h rename to lib/libc/include/generic-glibc/sys/sysctl.h diff --git a/libc/include/generic-glibc/sys/sysinfo.h b/lib/libc/include/generic-glibc/sys/sysinfo.h similarity index 100% rename from libc/include/generic-glibc/sys/sysinfo.h rename to lib/libc/include/generic-glibc/sys/sysinfo.h diff --git a/libc/include/generic-glibc/sys/syslog.h b/lib/libc/include/generic-glibc/sys/syslog.h similarity index 100% rename from libc/include/generic-glibc/sys/syslog.h rename to lib/libc/include/generic-glibc/sys/syslog.h diff --git a/libc/include/generic-glibc/sys/sysmacros.h b/lib/libc/include/generic-glibc/sys/sysmacros.h similarity index 100% rename from libc/include/generic-glibc/sys/sysmacros.h rename to lib/libc/include/generic-glibc/sys/sysmacros.h diff --git a/libc/include/generic-glibc/sys/sysmips.h b/lib/libc/include/generic-glibc/sys/sysmips.h similarity index 100% rename from libc/include/generic-glibc/sys/sysmips.h rename to lib/libc/include/generic-glibc/sys/sysmips.h diff --git a/libc/include/generic-glibc/sys/tas.h b/lib/libc/include/generic-glibc/sys/tas.h similarity index 100% rename from libc/include/generic-glibc/sys/tas.h rename to lib/libc/include/generic-glibc/sys/tas.h diff --git a/libc/include/generic-glibc/sys/termios.h b/lib/libc/include/generic-glibc/sys/termios.h similarity index 100% rename from libc/include/generic-glibc/sys/termios.h rename to lib/libc/include/generic-glibc/sys/termios.h diff --git a/libc/include/generic-glibc/sys/time.h b/lib/libc/include/generic-glibc/sys/time.h similarity index 100% rename from libc/include/generic-glibc/sys/time.h rename to lib/libc/include/generic-glibc/sys/time.h diff --git a/libc/include/generic-glibc/sys/timeb.h b/lib/libc/include/generic-glibc/sys/timeb.h similarity index 100% rename from libc/include/generic-glibc/sys/timeb.h rename to lib/libc/include/generic-glibc/sys/timeb.h diff --git a/libc/include/generic-glibc/sys/timerfd.h b/lib/libc/include/generic-glibc/sys/timerfd.h similarity index 100% rename from libc/include/generic-glibc/sys/timerfd.h rename to lib/libc/include/generic-glibc/sys/timerfd.h diff --git a/libc/include/generic-glibc/sys/times.h b/lib/libc/include/generic-glibc/sys/times.h similarity index 100% rename from libc/include/generic-glibc/sys/times.h rename to lib/libc/include/generic-glibc/sys/times.h diff --git a/libc/include/generic-glibc/sys/timex.h b/lib/libc/include/generic-glibc/sys/timex.h similarity index 100% rename from libc/include/generic-glibc/sys/timex.h rename to lib/libc/include/generic-glibc/sys/timex.h diff --git a/libc/include/generic-glibc/sys/ttychars.h b/lib/libc/include/generic-glibc/sys/ttychars.h similarity index 100% rename from libc/include/generic-glibc/sys/ttychars.h rename to lib/libc/include/generic-glibc/sys/ttychars.h diff --git a/libc/include/generic-glibc/sys/ttydefaults.h b/lib/libc/include/generic-glibc/sys/ttydefaults.h similarity index 100% rename from libc/include/generic-glibc/sys/ttydefaults.h rename to lib/libc/include/generic-glibc/sys/ttydefaults.h diff --git a/libc/include/generic-glibc/sys/types.h b/lib/libc/include/generic-glibc/sys/types.h similarity index 100% rename from libc/include/generic-glibc/sys/types.h rename to lib/libc/include/generic-glibc/sys/types.h diff --git a/libc/include/generic-glibc/sys/ucontext.h b/lib/libc/include/generic-glibc/sys/ucontext.h similarity index 100% rename from libc/include/generic-glibc/sys/ucontext.h rename to lib/libc/include/generic-glibc/sys/ucontext.h diff --git a/libc/include/generic-glibc/sys/uio.h b/lib/libc/include/generic-glibc/sys/uio.h similarity index 100% rename from libc/include/generic-glibc/sys/uio.h rename to lib/libc/include/generic-glibc/sys/uio.h diff --git a/libc/include/generic-glibc/sys/un.h b/lib/libc/include/generic-glibc/sys/un.h similarity index 100% rename from libc/include/generic-glibc/sys/un.h rename to lib/libc/include/generic-glibc/sys/un.h diff --git a/libc/include/generic-glibc/sys/unistd.h b/lib/libc/include/generic-glibc/sys/unistd.h similarity index 100% rename from libc/include/generic-glibc/sys/unistd.h rename to lib/libc/include/generic-glibc/sys/unistd.h diff --git a/libc/include/generic-glibc/sys/user.h b/lib/libc/include/generic-glibc/sys/user.h similarity index 100% rename from libc/include/generic-glibc/sys/user.h rename to lib/libc/include/generic-glibc/sys/user.h diff --git a/libc/include/generic-glibc/sys/utsname.h b/lib/libc/include/generic-glibc/sys/utsname.h similarity index 100% rename from libc/include/generic-glibc/sys/utsname.h rename to lib/libc/include/generic-glibc/sys/utsname.h diff --git a/libc/include/generic-glibc/sys/vfs.h b/lib/libc/include/generic-glibc/sys/vfs.h similarity index 100% rename from libc/include/generic-glibc/sys/vfs.h rename to lib/libc/include/generic-glibc/sys/vfs.h diff --git a/libc/include/generic-glibc/sys/vlimit.h b/lib/libc/include/generic-glibc/sys/vlimit.h similarity index 100% rename from libc/include/generic-glibc/sys/vlimit.h rename to lib/libc/include/generic-glibc/sys/vlimit.h diff --git a/libc/include/generic-glibc/sys/vm86.h b/lib/libc/include/generic-glibc/sys/vm86.h similarity index 100% rename from libc/include/generic-glibc/sys/vm86.h rename to lib/libc/include/generic-glibc/sys/vm86.h diff --git a/libc/include/generic-glibc/sys/vt.h b/lib/libc/include/generic-glibc/sys/vt.h similarity index 100% rename from libc/include/generic-glibc/sys/vt.h rename to lib/libc/include/generic-glibc/sys/vt.h diff --git a/libc/include/generic-glibc/sys/vtimes.h b/lib/libc/include/generic-glibc/sys/vtimes.h similarity index 100% rename from libc/include/generic-glibc/sys/vtimes.h rename to lib/libc/include/generic-glibc/sys/vtimes.h diff --git a/libc/include/generic-glibc/sys/wait.h b/lib/libc/include/generic-glibc/sys/wait.h similarity index 100% rename from libc/include/generic-glibc/sys/wait.h rename to lib/libc/include/generic-glibc/sys/wait.h diff --git a/libc/include/generic-glibc/sys/xattr.h b/lib/libc/include/generic-glibc/sys/xattr.h similarity index 100% rename from libc/include/generic-glibc/sys/xattr.h rename to lib/libc/include/generic-glibc/sys/xattr.h diff --git a/libc/include/generic-glibc/syscall.h b/lib/libc/include/generic-glibc/syscall.h similarity index 100% rename from libc/include/generic-glibc/syscall.h rename to lib/libc/include/generic-glibc/syscall.h diff --git a/libc/include/generic-glibc/sysexits.h b/lib/libc/include/generic-glibc/sysexits.h similarity index 100% rename from libc/include/generic-glibc/sysexits.h rename to lib/libc/include/generic-glibc/sysexits.h diff --git a/libc/include/generic-glibc/syslog.h b/lib/libc/include/generic-glibc/syslog.h similarity index 100% rename from libc/include/generic-glibc/syslog.h rename to lib/libc/include/generic-glibc/syslog.h diff --git a/libc/include/generic-glibc/tar.h b/lib/libc/include/generic-glibc/tar.h similarity index 100% rename from libc/include/generic-glibc/tar.h rename to lib/libc/include/generic-glibc/tar.h diff --git a/libc/include/generic-glibc/termio.h b/lib/libc/include/generic-glibc/termio.h similarity index 100% rename from libc/include/generic-glibc/termio.h rename to lib/libc/include/generic-glibc/termio.h diff --git a/libc/include/generic-glibc/termios.h b/lib/libc/include/generic-glibc/termios.h similarity index 100% rename from libc/include/generic-glibc/termios.h rename to lib/libc/include/generic-glibc/termios.h diff --git a/libc/include/generic-glibc/tgmath.h b/lib/libc/include/generic-glibc/tgmath.h similarity index 100% rename from libc/include/generic-glibc/tgmath.h rename to lib/libc/include/generic-glibc/tgmath.h diff --git a/libc/include/generic-glibc/thread_db.h b/lib/libc/include/generic-glibc/thread_db.h similarity index 100% rename from libc/include/generic-glibc/thread_db.h rename to lib/libc/include/generic-glibc/thread_db.h diff --git a/libc/include/generic-glibc/threads.h b/lib/libc/include/generic-glibc/threads.h similarity index 100% rename from libc/include/generic-glibc/threads.h rename to lib/libc/include/generic-glibc/threads.h diff --git a/libc/include/generic-glibc/time.h b/lib/libc/include/generic-glibc/time.h similarity index 100% rename from libc/include/generic-glibc/time.h rename to lib/libc/include/generic-glibc/time.h diff --git a/libc/include/generic-glibc/ttyent.h b/lib/libc/include/generic-glibc/ttyent.h similarity index 100% rename from libc/include/generic-glibc/ttyent.h rename to lib/libc/include/generic-glibc/ttyent.h diff --git a/libc/include/generic-glibc/uchar.h b/lib/libc/include/generic-glibc/uchar.h similarity index 100% rename from libc/include/generic-glibc/uchar.h rename to lib/libc/include/generic-glibc/uchar.h diff --git a/libc/include/generic-glibc/ucontext.h b/lib/libc/include/generic-glibc/ucontext.h similarity index 100% rename from libc/include/generic-glibc/ucontext.h rename to lib/libc/include/generic-glibc/ucontext.h diff --git a/libc/include/generic-glibc/ulimit.h b/lib/libc/include/generic-glibc/ulimit.h similarity index 100% rename from libc/include/generic-glibc/ulimit.h rename to lib/libc/include/generic-glibc/ulimit.h diff --git a/libc/include/generic-glibc/unistd.h b/lib/libc/include/generic-glibc/unistd.h similarity index 100% rename from libc/include/generic-glibc/unistd.h rename to lib/libc/include/generic-glibc/unistd.h diff --git a/libc/include/generic-glibc/utime.h b/lib/libc/include/generic-glibc/utime.h similarity index 100% rename from libc/include/generic-glibc/utime.h rename to lib/libc/include/generic-glibc/utime.h diff --git a/libc/include/generic-glibc/utmp.h b/lib/libc/include/generic-glibc/utmp.h similarity index 100% rename from libc/include/generic-glibc/utmp.h rename to lib/libc/include/generic-glibc/utmp.h diff --git a/libc/include/generic-glibc/utmpx.h b/lib/libc/include/generic-glibc/utmpx.h similarity index 100% rename from libc/include/generic-glibc/utmpx.h rename to lib/libc/include/generic-glibc/utmpx.h diff --git a/libc/include/generic-glibc/values.h b/lib/libc/include/generic-glibc/values.h similarity index 100% rename from libc/include/generic-glibc/values.h rename to lib/libc/include/generic-glibc/values.h diff --git a/libc/include/generic-glibc/wait.h b/lib/libc/include/generic-glibc/wait.h similarity index 100% rename from libc/include/generic-glibc/wait.h rename to lib/libc/include/generic-glibc/wait.h diff --git a/libc/include/generic-glibc/wchar.h b/lib/libc/include/generic-glibc/wchar.h similarity index 100% rename from libc/include/generic-glibc/wchar.h rename to lib/libc/include/generic-glibc/wchar.h diff --git a/libc/include/generic-glibc/wctype.h b/lib/libc/include/generic-glibc/wctype.h similarity index 100% rename from libc/include/generic-glibc/wctype.h rename to lib/libc/include/generic-glibc/wctype.h diff --git a/libc/include/generic-glibc/wordexp.h b/lib/libc/include/generic-glibc/wordexp.h similarity index 100% rename from libc/include/generic-glibc/wordexp.h rename to lib/libc/include/generic-glibc/wordexp.h diff --git a/libc/include/generic-musl/aio.h b/lib/libc/include/generic-musl/aio.h similarity index 100% rename from libc/include/generic-musl/aio.h rename to lib/libc/include/generic-musl/aio.h diff --git a/libc/include/generic-musl/alloca.h b/lib/libc/include/generic-musl/alloca.h similarity index 100% rename from libc/include/generic-musl/alloca.h rename to lib/libc/include/generic-musl/alloca.h diff --git a/libc/include/generic-musl/ansidecl.h b/lib/libc/include/generic-musl/ansidecl.h similarity index 100% rename from libc/include/generic-musl/ansidecl.h rename to lib/libc/include/generic-musl/ansidecl.h diff --git a/libc/include/generic-musl/ar.h b/lib/libc/include/generic-musl/ar.h similarity index 100% rename from libc/include/generic-musl/ar.h rename to lib/libc/include/generic-musl/ar.h diff --git a/libc/include/generic-musl/arpa/ftp.h b/lib/libc/include/generic-musl/arpa/ftp.h similarity index 100% rename from libc/include/generic-musl/arpa/ftp.h rename to lib/libc/include/generic-musl/arpa/ftp.h diff --git a/libc/include/generic-musl/arpa/inet.h b/lib/libc/include/generic-musl/arpa/inet.h similarity index 100% rename from libc/include/generic-musl/arpa/inet.h rename to lib/libc/include/generic-musl/arpa/inet.h diff --git a/libc/include/generic-musl/arpa/nameser.h b/lib/libc/include/generic-musl/arpa/nameser.h similarity index 100% rename from libc/include/generic-musl/arpa/nameser.h rename to lib/libc/include/generic-musl/arpa/nameser.h diff --git a/libc/include/generic-musl/arpa/nameser_compat.h b/lib/libc/include/generic-musl/arpa/nameser_compat.h similarity index 100% rename from libc/include/generic-musl/arpa/nameser_compat.h rename to lib/libc/include/generic-musl/arpa/nameser_compat.h diff --git a/libc/include/generic-musl/arpa/telnet.h b/lib/libc/include/generic-musl/arpa/telnet.h similarity index 100% rename from libc/include/generic-musl/arpa/telnet.h rename to lib/libc/include/generic-musl/arpa/telnet.h diff --git a/libc/include/generic-musl/arpa/tftp.h b/lib/libc/include/generic-musl/arpa/tftp.h similarity index 100% rename from libc/include/generic-musl/arpa/tftp.h rename to lib/libc/include/generic-musl/arpa/tftp.h diff --git a/libc/include/generic-musl/assert.h b/lib/libc/include/generic-musl/assert.h similarity index 100% rename from libc/include/generic-musl/assert.h rename to lib/libc/include/generic-musl/assert.h diff --git a/libc/include/generic-musl/bfd.h b/lib/libc/include/generic-musl/bfd.h similarity index 100% rename from libc/include/generic-musl/bfd.h rename to lib/libc/include/generic-musl/bfd.h diff --git a/libc/include/generic-musl/bfdlink.h b/lib/libc/include/generic-musl/bfdlink.h similarity index 100% rename from libc/include/generic-musl/bfdlink.h rename to lib/libc/include/generic-musl/bfdlink.h diff --git a/libc/include/generic-musl/bits/alltypes.h b/lib/libc/include/generic-musl/bits/alltypes.h similarity index 100% rename from libc/include/generic-musl/bits/alltypes.h rename to lib/libc/include/generic-musl/bits/alltypes.h diff --git a/libc/include/generic-musl/bits/endian.h b/lib/libc/include/generic-musl/bits/endian.h similarity index 100% rename from libc/include/generic-musl/bits/endian.h rename to lib/libc/include/generic-musl/bits/endian.h diff --git a/libc/include/generic-musl/bits/errno.h b/lib/libc/include/generic-musl/bits/errno.h similarity index 100% rename from libc/include/generic-musl/bits/errno.h rename to lib/libc/include/generic-musl/bits/errno.h diff --git a/libc/include/generic-musl/bits/fcntl.h b/lib/libc/include/generic-musl/bits/fcntl.h similarity index 100% rename from libc/include/generic-musl/bits/fcntl.h rename to lib/libc/include/generic-musl/bits/fcntl.h diff --git a/libc/include/generic-musl/bits/fenv.h b/lib/libc/include/generic-musl/bits/fenv.h similarity index 100% rename from libc/include/generic-musl/bits/fenv.h rename to lib/libc/include/generic-musl/bits/fenv.h diff --git a/libc/include/generic-musl/bits/float.h b/lib/libc/include/generic-musl/bits/float.h similarity index 100% rename from libc/include/generic-musl/bits/float.h rename to lib/libc/include/generic-musl/bits/float.h diff --git a/libc/include/generic-musl/bits/hwcap.h b/lib/libc/include/generic-musl/bits/hwcap.h similarity index 100% rename from libc/include/generic-musl/bits/hwcap.h rename to lib/libc/include/generic-musl/bits/hwcap.h diff --git a/libc/include/generic-musl/bits/io.h b/lib/libc/include/generic-musl/bits/io.h similarity index 100% rename from libc/include/generic-musl/bits/io.h rename to lib/libc/include/generic-musl/bits/io.h diff --git a/libc/include/generic-musl/bits/ioctl.h b/lib/libc/include/generic-musl/bits/ioctl.h similarity index 100% rename from libc/include/generic-musl/bits/ioctl.h rename to lib/libc/include/generic-musl/bits/ioctl.h diff --git a/libc/include/generic-musl/bits/ioctl_fix.h b/lib/libc/include/generic-musl/bits/ioctl_fix.h similarity index 100% rename from libc/include/generic-musl/bits/ioctl_fix.h rename to lib/libc/include/generic-musl/bits/ioctl_fix.h diff --git a/libc/include/generic-musl/bits/ipc.h b/lib/libc/include/generic-musl/bits/ipc.h similarity index 100% rename from libc/include/generic-musl/bits/ipc.h rename to lib/libc/include/generic-musl/bits/ipc.h diff --git a/libc/include/generic-musl/bits/kd.h b/lib/libc/include/generic-musl/bits/kd.h similarity index 100% rename from libc/include/generic-musl/bits/kd.h rename to lib/libc/include/generic-musl/bits/kd.h diff --git a/libc/include/generic-musl/bits/limits.h b/lib/libc/include/generic-musl/bits/limits.h similarity index 100% rename from libc/include/generic-musl/bits/limits.h rename to lib/libc/include/generic-musl/bits/limits.h diff --git a/libc/include/generic-musl/bits/link.h b/lib/libc/include/generic-musl/bits/link.h similarity index 100% rename from libc/include/generic-musl/bits/link.h rename to lib/libc/include/generic-musl/bits/link.h diff --git a/libc/include/generic-musl/bits/mman.h b/lib/libc/include/generic-musl/bits/mman.h similarity index 100% rename from libc/include/generic-musl/bits/mman.h rename to lib/libc/include/generic-musl/bits/mman.h diff --git a/libc/include/generic-musl/bits/msg.h b/lib/libc/include/generic-musl/bits/msg.h similarity index 100% rename from libc/include/generic-musl/bits/msg.h rename to lib/libc/include/generic-musl/bits/msg.h diff --git a/libc/include/generic-musl/bits/poll.h b/lib/libc/include/generic-musl/bits/poll.h similarity index 100% rename from libc/include/generic-musl/bits/poll.h rename to lib/libc/include/generic-musl/bits/poll.h diff --git a/libc/include/generic-musl/bits/posix.h b/lib/libc/include/generic-musl/bits/posix.h similarity index 100% rename from libc/include/generic-musl/bits/posix.h rename to lib/libc/include/generic-musl/bits/posix.h diff --git a/libc/include/generic-musl/bits/ptrace.h b/lib/libc/include/generic-musl/bits/ptrace.h similarity index 100% rename from libc/include/generic-musl/bits/ptrace.h rename to lib/libc/include/generic-musl/bits/ptrace.h diff --git a/libc/include/generic-musl/bits/reg.h b/lib/libc/include/generic-musl/bits/reg.h similarity index 100% rename from libc/include/generic-musl/bits/reg.h rename to lib/libc/include/generic-musl/bits/reg.h diff --git a/libc/include/generic-musl/bits/resource.h b/lib/libc/include/generic-musl/bits/resource.h similarity index 100% rename from libc/include/generic-musl/bits/resource.h rename to lib/libc/include/generic-musl/bits/resource.h diff --git a/libc/include/generic-musl/bits/sem.h b/lib/libc/include/generic-musl/bits/sem.h similarity index 100% rename from libc/include/generic-musl/bits/sem.h rename to lib/libc/include/generic-musl/bits/sem.h diff --git a/libc/include/generic-musl/bits/setjmp.h b/lib/libc/include/generic-musl/bits/setjmp.h similarity index 100% rename from libc/include/generic-musl/bits/setjmp.h rename to lib/libc/include/generic-musl/bits/setjmp.h diff --git a/libc/include/generic-musl/bits/shm.h b/lib/libc/include/generic-musl/bits/shm.h similarity index 100% rename from libc/include/generic-musl/bits/shm.h rename to lib/libc/include/generic-musl/bits/shm.h diff --git a/libc/include/generic-musl/bits/signal.h b/lib/libc/include/generic-musl/bits/signal.h similarity index 100% rename from libc/include/generic-musl/bits/signal.h rename to lib/libc/include/generic-musl/bits/signal.h diff --git a/libc/include/generic-musl/bits/socket.h b/lib/libc/include/generic-musl/bits/socket.h similarity index 100% rename from libc/include/generic-musl/bits/socket.h rename to lib/libc/include/generic-musl/bits/socket.h diff --git a/libc/include/generic-musl/bits/soundcard.h b/lib/libc/include/generic-musl/bits/soundcard.h similarity index 100% rename from libc/include/generic-musl/bits/soundcard.h rename to lib/libc/include/generic-musl/bits/soundcard.h diff --git a/libc/include/generic-musl/bits/stat.h b/lib/libc/include/generic-musl/bits/stat.h similarity index 100% rename from libc/include/generic-musl/bits/stat.h rename to lib/libc/include/generic-musl/bits/stat.h diff --git a/libc/include/generic-musl/bits/statfs.h b/lib/libc/include/generic-musl/bits/statfs.h similarity index 100% rename from libc/include/generic-musl/bits/statfs.h rename to lib/libc/include/generic-musl/bits/statfs.h diff --git a/libc/include/generic-musl/bits/stdint.h b/lib/libc/include/generic-musl/bits/stdint.h similarity index 100% rename from libc/include/generic-musl/bits/stdint.h rename to lib/libc/include/generic-musl/bits/stdint.h diff --git a/libc/include/generic-musl/bits/syscall.h b/lib/libc/include/generic-musl/bits/syscall.h similarity index 100% rename from libc/include/generic-musl/bits/syscall.h rename to lib/libc/include/generic-musl/bits/syscall.h diff --git a/libc/include/generic-musl/bits/termios.h b/lib/libc/include/generic-musl/bits/termios.h similarity index 100% rename from libc/include/generic-musl/bits/termios.h rename to lib/libc/include/generic-musl/bits/termios.h diff --git a/libc/include/generic-musl/bits/user.h b/lib/libc/include/generic-musl/bits/user.h similarity index 100% rename from libc/include/generic-musl/bits/user.h rename to lib/libc/include/generic-musl/bits/user.h diff --git a/libc/include/generic-musl/bits/vt.h b/lib/libc/include/generic-musl/bits/vt.h similarity index 100% rename from libc/include/generic-musl/bits/vt.h rename to lib/libc/include/generic-musl/bits/vt.h diff --git a/libc/include/generic-musl/byteswap.h b/lib/libc/include/generic-musl/byteswap.h similarity index 100% rename from libc/include/generic-musl/byteswap.h rename to lib/libc/include/generic-musl/byteswap.h diff --git a/libc/include/generic-musl/complex.h b/lib/libc/include/generic-musl/complex.h similarity index 100% rename from libc/include/generic-musl/complex.h rename to lib/libc/include/generic-musl/complex.h diff --git a/libc/include/generic-musl/cpio.h b/lib/libc/include/generic-musl/cpio.h similarity index 100% rename from libc/include/generic-musl/cpio.h rename to lib/libc/include/generic-musl/cpio.h diff --git a/libc/include/generic-musl/crypt.h b/lib/libc/include/generic-musl/crypt.h similarity index 100% rename from libc/include/generic-musl/crypt.h rename to lib/libc/include/generic-musl/crypt.h diff --git a/libc/include/generic-musl/ctype.h b/lib/libc/include/generic-musl/ctype.h similarity index 100% rename from libc/include/generic-musl/ctype.h rename to lib/libc/include/generic-musl/ctype.h diff --git a/libc/include/generic-musl/diagnostics.h b/lib/libc/include/generic-musl/diagnostics.h similarity index 100% rename from libc/include/generic-musl/diagnostics.h rename to lib/libc/include/generic-musl/diagnostics.h diff --git a/libc/include/generic-musl/dirent.h b/lib/libc/include/generic-musl/dirent.h similarity index 100% rename from libc/include/generic-musl/dirent.h rename to lib/libc/include/generic-musl/dirent.h diff --git a/libc/include/generic-musl/dis-asm.h b/lib/libc/include/generic-musl/dis-asm.h similarity index 100% rename from libc/include/generic-musl/dis-asm.h rename to lib/libc/include/generic-musl/dis-asm.h diff --git a/libc/include/generic-musl/dlfcn.h b/lib/libc/include/generic-musl/dlfcn.h similarity index 100% rename from libc/include/generic-musl/dlfcn.h rename to lib/libc/include/generic-musl/dlfcn.h diff --git a/libc/include/generic-musl/drm/amdgpu_drm.h b/lib/libc/include/generic-musl/drm/amdgpu_drm.h similarity index 100% rename from libc/include/generic-musl/drm/amdgpu_drm.h rename to lib/libc/include/generic-musl/drm/amdgpu_drm.h diff --git a/libc/include/generic-musl/drm/armada_drm.h b/lib/libc/include/generic-musl/drm/armada_drm.h similarity index 100% rename from libc/include/generic-musl/drm/armada_drm.h rename to lib/libc/include/generic-musl/drm/armada_drm.h diff --git a/libc/include/generic-musl/drm/drm.h b/lib/libc/include/generic-musl/drm/drm.h similarity index 100% rename from libc/include/generic-musl/drm/drm.h rename to lib/libc/include/generic-musl/drm/drm.h diff --git a/libc/include/generic-musl/drm/drm_fourcc.h b/lib/libc/include/generic-musl/drm/drm_fourcc.h similarity index 100% rename from libc/include/generic-musl/drm/drm_fourcc.h rename to lib/libc/include/generic-musl/drm/drm_fourcc.h diff --git a/libc/include/generic-musl/drm/drm_mode.h b/lib/libc/include/generic-musl/drm/drm_mode.h similarity index 100% rename from libc/include/generic-musl/drm/drm_mode.h rename to lib/libc/include/generic-musl/drm/drm_mode.h diff --git a/libc/include/generic-musl/drm/drm_sarea.h b/lib/libc/include/generic-musl/drm/drm_sarea.h similarity index 100% rename from libc/include/generic-musl/drm/drm_sarea.h rename to lib/libc/include/generic-musl/drm/drm_sarea.h diff --git a/libc/include/generic-musl/drm/etnaviv_drm.h b/lib/libc/include/generic-musl/drm/etnaviv_drm.h similarity index 100% rename from libc/include/generic-musl/drm/etnaviv_drm.h rename to lib/libc/include/generic-musl/drm/etnaviv_drm.h diff --git a/libc/include/generic-musl/drm/exynos_drm.h b/lib/libc/include/generic-musl/drm/exynos_drm.h similarity index 100% rename from libc/include/generic-musl/drm/exynos_drm.h rename to lib/libc/include/generic-musl/drm/exynos_drm.h diff --git a/libc/include/generic-musl/drm/i810_drm.h b/lib/libc/include/generic-musl/drm/i810_drm.h similarity index 100% rename from libc/include/generic-musl/drm/i810_drm.h rename to lib/libc/include/generic-musl/drm/i810_drm.h diff --git a/libc/include/generic-musl/drm/i915_drm.h b/lib/libc/include/generic-musl/drm/i915_drm.h similarity index 100% rename from libc/include/generic-musl/drm/i915_drm.h rename to lib/libc/include/generic-musl/drm/i915_drm.h diff --git a/libc/include/generic-musl/drm/mga_drm.h b/lib/libc/include/generic-musl/drm/mga_drm.h similarity index 100% rename from libc/include/generic-musl/drm/mga_drm.h rename to lib/libc/include/generic-musl/drm/mga_drm.h diff --git a/libc/include/generic-musl/drm/msm_drm.h b/lib/libc/include/generic-musl/drm/msm_drm.h similarity index 100% rename from libc/include/generic-musl/drm/msm_drm.h rename to lib/libc/include/generic-musl/drm/msm_drm.h diff --git a/libc/include/generic-musl/drm/nouveau_drm.h b/lib/libc/include/generic-musl/drm/nouveau_drm.h similarity index 100% rename from libc/include/generic-musl/drm/nouveau_drm.h rename to lib/libc/include/generic-musl/drm/nouveau_drm.h diff --git a/libc/include/generic-musl/drm/omap_drm.h b/lib/libc/include/generic-musl/drm/omap_drm.h similarity index 100% rename from libc/include/generic-musl/drm/omap_drm.h rename to lib/libc/include/generic-musl/drm/omap_drm.h diff --git a/libc/include/generic-musl/drm/qxl_drm.h b/lib/libc/include/generic-musl/drm/qxl_drm.h similarity index 100% rename from libc/include/generic-musl/drm/qxl_drm.h rename to lib/libc/include/generic-musl/drm/qxl_drm.h diff --git a/libc/include/generic-musl/drm/r128_drm.h b/lib/libc/include/generic-musl/drm/r128_drm.h similarity index 100% rename from libc/include/generic-musl/drm/r128_drm.h rename to lib/libc/include/generic-musl/drm/r128_drm.h diff --git a/libc/include/generic-musl/drm/radeon_drm.h b/lib/libc/include/generic-musl/drm/radeon_drm.h similarity index 100% rename from libc/include/generic-musl/drm/radeon_drm.h rename to lib/libc/include/generic-musl/drm/radeon_drm.h diff --git a/libc/include/generic-musl/drm/savage_drm.h b/lib/libc/include/generic-musl/drm/savage_drm.h similarity index 100% rename from libc/include/generic-musl/drm/savage_drm.h rename to lib/libc/include/generic-musl/drm/savage_drm.h diff --git a/libc/include/generic-musl/drm/sis_drm.h b/lib/libc/include/generic-musl/drm/sis_drm.h similarity index 100% rename from libc/include/generic-musl/drm/sis_drm.h rename to lib/libc/include/generic-musl/drm/sis_drm.h diff --git a/libc/include/generic-musl/drm/tegra_drm.h b/lib/libc/include/generic-musl/drm/tegra_drm.h similarity index 100% rename from libc/include/generic-musl/drm/tegra_drm.h rename to lib/libc/include/generic-musl/drm/tegra_drm.h diff --git a/libc/include/generic-musl/drm/v3d_drm.h b/lib/libc/include/generic-musl/drm/v3d_drm.h similarity index 100% rename from libc/include/generic-musl/drm/v3d_drm.h rename to lib/libc/include/generic-musl/drm/v3d_drm.h diff --git a/libc/include/generic-musl/drm/vc4_drm.h b/lib/libc/include/generic-musl/drm/vc4_drm.h similarity index 100% rename from libc/include/generic-musl/drm/vc4_drm.h rename to lib/libc/include/generic-musl/drm/vc4_drm.h diff --git a/libc/include/generic-musl/drm/vgem_drm.h b/lib/libc/include/generic-musl/drm/vgem_drm.h similarity index 100% rename from libc/include/generic-musl/drm/vgem_drm.h rename to lib/libc/include/generic-musl/drm/vgem_drm.h diff --git a/libc/include/generic-musl/drm/via_drm.h b/lib/libc/include/generic-musl/drm/via_drm.h similarity index 100% rename from libc/include/generic-musl/drm/via_drm.h rename to lib/libc/include/generic-musl/drm/via_drm.h diff --git a/libc/include/generic-musl/drm/virtgpu_drm.h b/lib/libc/include/generic-musl/drm/virtgpu_drm.h similarity index 100% rename from libc/include/generic-musl/drm/virtgpu_drm.h rename to lib/libc/include/generic-musl/drm/virtgpu_drm.h diff --git a/libc/include/generic-musl/drm/vmwgfx_drm.h b/lib/libc/include/generic-musl/drm/vmwgfx_drm.h similarity index 100% rename from libc/include/generic-musl/drm/vmwgfx_drm.h rename to lib/libc/include/generic-musl/drm/vmwgfx_drm.h diff --git a/libc/include/generic-musl/elf.h b/lib/libc/include/generic-musl/elf.h similarity index 100% rename from libc/include/generic-musl/elf.h rename to lib/libc/include/generic-musl/elf.h diff --git a/libc/include/generic-musl/endian.h b/lib/libc/include/generic-musl/endian.h similarity index 100% rename from libc/include/generic-musl/endian.h rename to lib/libc/include/generic-musl/endian.h diff --git a/libc/include/generic-musl/err.h b/lib/libc/include/generic-musl/err.h similarity index 100% rename from libc/include/generic-musl/err.h rename to lib/libc/include/generic-musl/err.h diff --git a/libc/include/generic-musl/errno.h b/lib/libc/include/generic-musl/errno.h similarity index 100% rename from libc/include/generic-musl/errno.h rename to lib/libc/include/generic-musl/errno.h diff --git a/libc/include/generic-musl/fcntl.h b/lib/libc/include/generic-musl/fcntl.h similarity index 100% rename from libc/include/generic-musl/fcntl.h rename to lib/libc/include/generic-musl/fcntl.h diff --git a/libc/include/generic-musl/features.h b/lib/libc/include/generic-musl/features.h similarity index 100% rename from libc/include/generic-musl/features.h rename to lib/libc/include/generic-musl/features.h diff --git a/libc/include/generic-musl/fenv.h b/lib/libc/include/generic-musl/fenv.h similarity index 100% rename from libc/include/generic-musl/fenv.h rename to lib/libc/include/generic-musl/fenv.h diff --git a/libc/include/generic-musl/float.h b/lib/libc/include/generic-musl/float.h similarity index 100% rename from libc/include/generic-musl/float.h rename to lib/libc/include/generic-musl/float.h diff --git a/libc/include/generic-musl/fmtmsg.h b/lib/libc/include/generic-musl/fmtmsg.h similarity index 100% rename from libc/include/generic-musl/fmtmsg.h rename to lib/libc/include/generic-musl/fmtmsg.h diff --git a/libc/include/generic-musl/fnmatch.h b/lib/libc/include/generic-musl/fnmatch.h similarity index 100% rename from libc/include/generic-musl/fnmatch.h rename to lib/libc/include/generic-musl/fnmatch.h diff --git a/libc/include/generic-musl/ftw.h b/lib/libc/include/generic-musl/ftw.h similarity index 100% rename from libc/include/generic-musl/ftw.h rename to lib/libc/include/generic-musl/ftw.h diff --git a/libc/include/generic-musl/getopt.h b/lib/libc/include/generic-musl/getopt.h similarity index 100% rename from libc/include/generic-musl/getopt.h rename to lib/libc/include/generic-musl/getopt.h diff --git a/libc/include/generic-musl/glob.h b/lib/libc/include/generic-musl/glob.h similarity index 100% rename from libc/include/generic-musl/glob.h rename to lib/libc/include/generic-musl/glob.h diff --git a/libc/include/generic-musl/grp.h b/lib/libc/include/generic-musl/grp.h similarity index 100% rename from libc/include/generic-musl/grp.h rename to lib/libc/include/generic-musl/grp.h diff --git a/libc/include/generic-musl/iconv.h b/lib/libc/include/generic-musl/iconv.h similarity index 100% rename from libc/include/generic-musl/iconv.h rename to lib/libc/include/generic-musl/iconv.h diff --git a/libc/include/generic-musl/ifaddrs.h b/lib/libc/include/generic-musl/ifaddrs.h similarity index 100% rename from libc/include/generic-musl/ifaddrs.h rename to lib/libc/include/generic-musl/ifaddrs.h diff --git a/libc/include/generic-musl/inttypes.h b/lib/libc/include/generic-musl/inttypes.h similarity index 100% rename from libc/include/generic-musl/inttypes.h rename to lib/libc/include/generic-musl/inttypes.h diff --git a/libc/include/generic-musl/iso646.h b/lib/libc/include/generic-musl/iso646.h similarity index 100% rename from libc/include/generic-musl/iso646.h rename to lib/libc/include/generic-musl/iso646.h diff --git a/libc/include/generic-musl/langinfo.h b/lib/libc/include/generic-musl/langinfo.h similarity index 100% rename from libc/include/generic-musl/langinfo.h rename to lib/libc/include/generic-musl/langinfo.h diff --git a/libc/include/generic-musl/lastlog.h b/lib/libc/include/generic-musl/lastlog.h similarity index 100% rename from libc/include/generic-musl/lastlog.h rename to lib/libc/include/generic-musl/lastlog.h diff --git a/libc/include/generic-musl/libgen.h b/lib/libc/include/generic-musl/libgen.h similarity index 100% rename from libc/include/generic-musl/libgen.h rename to lib/libc/include/generic-musl/libgen.h diff --git a/libc/include/generic-musl/libintl.h b/lib/libc/include/generic-musl/libintl.h similarity index 100% rename from libc/include/generic-musl/libintl.h rename to lib/libc/include/generic-musl/libintl.h diff --git a/libc/include/generic-musl/limits.h b/lib/libc/include/generic-musl/limits.h similarity index 100% rename from libc/include/generic-musl/limits.h rename to lib/libc/include/generic-musl/limits.h diff --git a/libc/include/generic-musl/link.h b/lib/libc/include/generic-musl/link.h similarity index 100% rename from libc/include/generic-musl/link.h rename to lib/libc/include/generic-musl/link.h diff --git a/libc/include/generic-musl/locale.h b/lib/libc/include/generic-musl/locale.h similarity index 100% rename from libc/include/generic-musl/locale.h rename to lib/libc/include/generic-musl/locale.h diff --git a/libc/include/generic-musl/malloc.h b/lib/libc/include/generic-musl/malloc.h similarity index 100% rename from libc/include/generic-musl/malloc.h rename to lib/libc/include/generic-musl/malloc.h diff --git a/libc/include/generic-musl/math.h b/lib/libc/include/generic-musl/math.h similarity index 100% rename from libc/include/generic-musl/math.h rename to lib/libc/include/generic-musl/math.h diff --git a/libc/include/generic-musl/memory.h b/lib/libc/include/generic-musl/memory.h similarity index 100% rename from libc/include/generic-musl/memory.h rename to lib/libc/include/generic-musl/memory.h diff --git a/libc/include/generic-musl/misc/cxl.h b/lib/libc/include/generic-musl/misc/cxl.h similarity index 100% rename from libc/include/generic-musl/misc/cxl.h rename to lib/libc/include/generic-musl/misc/cxl.h diff --git a/libc/include/generic-musl/misc/ocxl.h b/lib/libc/include/generic-musl/misc/ocxl.h similarity index 100% rename from libc/include/generic-musl/misc/ocxl.h rename to lib/libc/include/generic-musl/misc/ocxl.h diff --git a/libc/include/generic-musl/mntent.h b/lib/libc/include/generic-musl/mntent.h similarity index 100% rename from libc/include/generic-musl/mntent.h rename to lib/libc/include/generic-musl/mntent.h diff --git a/libc/include/generic-musl/monetary.h b/lib/libc/include/generic-musl/monetary.h similarity index 100% rename from libc/include/generic-musl/monetary.h rename to lib/libc/include/generic-musl/monetary.h diff --git a/libc/include/generic-musl/mqueue.h b/lib/libc/include/generic-musl/mqueue.h similarity index 100% rename from libc/include/generic-musl/mqueue.h rename to lib/libc/include/generic-musl/mqueue.h diff --git a/libc/include/generic-musl/mtd/inftl-user.h b/lib/libc/include/generic-musl/mtd/inftl-user.h similarity index 100% rename from libc/include/generic-musl/mtd/inftl-user.h rename to lib/libc/include/generic-musl/mtd/inftl-user.h diff --git a/libc/include/generic-musl/mtd/mtd-abi.h b/lib/libc/include/generic-musl/mtd/mtd-abi.h similarity index 100% rename from libc/include/generic-musl/mtd/mtd-abi.h rename to lib/libc/include/generic-musl/mtd/mtd-abi.h diff --git a/libc/include/generic-musl/mtd/mtd-user.h b/lib/libc/include/generic-musl/mtd/mtd-user.h similarity index 100% rename from libc/include/generic-musl/mtd/mtd-user.h rename to lib/libc/include/generic-musl/mtd/mtd-user.h diff --git a/libc/include/generic-musl/mtd/nftl-user.h b/lib/libc/include/generic-musl/mtd/nftl-user.h similarity index 100% rename from libc/include/generic-musl/mtd/nftl-user.h rename to lib/libc/include/generic-musl/mtd/nftl-user.h diff --git a/libc/include/generic-musl/mtd/ubi-user.h b/lib/libc/include/generic-musl/mtd/ubi-user.h similarity index 100% rename from libc/include/generic-musl/mtd/ubi-user.h rename to lib/libc/include/generic-musl/mtd/ubi-user.h diff --git a/libc/include/generic-musl/net/ethernet.h b/lib/libc/include/generic-musl/net/ethernet.h similarity index 100% rename from libc/include/generic-musl/net/ethernet.h rename to lib/libc/include/generic-musl/net/ethernet.h diff --git a/libc/include/generic-musl/net/if.h b/lib/libc/include/generic-musl/net/if.h similarity index 100% rename from libc/include/generic-musl/net/if.h rename to lib/libc/include/generic-musl/net/if.h diff --git a/libc/include/generic-musl/net/if_arp.h b/lib/libc/include/generic-musl/net/if_arp.h similarity index 100% rename from libc/include/generic-musl/net/if_arp.h rename to lib/libc/include/generic-musl/net/if_arp.h diff --git a/libc/include/generic-musl/net/route.h b/lib/libc/include/generic-musl/net/route.h similarity index 100% rename from libc/include/generic-musl/net/route.h rename to lib/libc/include/generic-musl/net/route.h diff --git a/libc/include/generic-musl/netdb.h b/lib/libc/include/generic-musl/netdb.h similarity index 100% rename from libc/include/generic-musl/netdb.h rename to lib/libc/include/generic-musl/netdb.h diff --git a/libc/include/generic-musl/netinet/ether.h b/lib/libc/include/generic-musl/netinet/ether.h similarity index 100% rename from libc/include/generic-musl/netinet/ether.h rename to lib/libc/include/generic-musl/netinet/ether.h diff --git a/libc/include/generic-musl/netinet/icmp6.h b/lib/libc/include/generic-musl/netinet/icmp6.h similarity index 100% rename from libc/include/generic-musl/netinet/icmp6.h rename to lib/libc/include/generic-musl/netinet/icmp6.h diff --git a/libc/include/generic-musl/netinet/if_ether.h b/lib/libc/include/generic-musl/netinet/if_ether.h similarity index 100% rename from libc/include/generic-musl/netinet/if_ether.h rename to lib/libc/include/generic-musl/netinet/if_ether.h diff --git a/libc/include/generic-musl/netinet/igmp.h b/lib/libc/include/generic-musl/netinet/igmp.h similarity index 100% rename from libc/include/generic-musl/netinet/igmp.h rename to lib/libc/include/generic-musl/netinet/igmp.h diff --git a/libc/include/generic-musl/netinet/in.h b/lib/libc/include/generic-musl/netinet/in.h similarity index 100% rename from libc/include/generic-musl/netinet/in.h rename to lib/libc/include/generic-musl/netinet/in.h diff --git a/libc/include/generic-musl/netinet/in_systm.h b/lib/libc/include/generic-musl/netinet/in_systm.h similarity index 100% rename from libc/include/generic-musl/netinet/in_systm.h rename to lib/libc/include/generic-musl/netinet/in_systm.h diff --git a/libc/include/generic-musl/netinet/ip.h b/lib/libc/include/generic-musl/netinet/ip.h similarity index 100% rename from libc/include/generic-musl/netinet/ip.h rename to lib/libc/include/generic-musl/netinet/ip.h diff --git a/libc/include/generic-musl/netinet/ip6.h b/lib/libc/include/generic-musl/netinet/ip6.h similarity index 100% rename from libc/include/generic-musl/netinet/ip6.h rename to lib/libc/include/generic-musl/netinet/ip6.h diff --git a/libc/include/generic-musl/netinet/ip_icmp.h b/lib/libc/include/generic-musl/netinet/ip_icmp.h similarity index 100% rename from libc/include/generic-musl/netinet/ip_icmp.h rename to lib/libc/include/generic-musl/netinet/ip_icmp.h diff --git a/libc/include/generic-musl/netinet/tcp.h b/lib/libc/include/generic-musl/netinet/tcp.h similarity index 100% rename from libc/include/generic-musl/netinet/tcp.h rename to lib/libc/include/generic-musl/netinet/tcp.h diff --git a/libc/include/generic-musl/netinet/udp.h b/lib/libc/include/generic-musl/netinet/udp.h similarity index 100% rename from libc/include/generic-musl/netinet/udp.h rename to lib/libc/include/generic-musl/netinet/udp.h diff --git a/libc/include/generic-musl/netpacket/packet.h b/lib/libc/include/generic-musl/netpacket/packet.h similarity index 100% rename from libc/include/generic-musl/netpacket/packet.h rename to lib/libc/include/generic-musl/netpacket/packet.h diff --git a/libc/include/generic-musl/nl_types.h b/lib/libc/include/generic-musl/nl_types.h similarity index 100% rename from libc/include/generic-musl/nl_types.h rename to lib/libc/include/generic-musl/nl_types.h diff --git a/libc/include/generic-musl/paths.h b/lib/libc/include/generic-musl/paths.h similarity index 100% rename from libc/include/generic-musl/paths.h rename to lib/libc/include/generic-musl/paths.h diff --git a/libc/include/generic-musl/plugin-api.h b/lib/libc/include/generic-musl/plugin-api.h similarity index 100% rename from libc/include/generic-musl/plugin-api.h rename to lib/libc/include/generic-musl/plugin-api.h diff --git a/libc/include/generic-musl/poll.h b/lib/libc/include/generic-musl/poll.h similarity index 100% rename from libc/include/generic-musl/poll.h rename to lib/libc/include/generic-musl/poll.h diff --git a/libc/include/generic-musl/pthread.h b/lib/libc/include/generic-musl/pthread.h similarity index 100% rename from libc/include/generic-musl/pthread.h rename to lib/libc/include/generic-musl/pthread.h diff --git a/libc/include/generic-musl/pty.h b/lib/libc/include/generic-musl/pty.h similarity index 100% rename from libc/include/generic-musl/pty.h rename to lib/libc/include/generic-musl/pty.h diff --git a/libc/include/generic-musl/pwd.h b/lib/libc/include/generic-musl/pwd.h similarity index 100% rename from libc/include/generic-musl/pwd.h rename to lib/libc/include/generic-musl/pwd.h diff --git a/libc/include/generic-musl/rdma/bnxt_re-abi.h b/lib/libc/include/generic-musl/rdma/bnxt_re-abi.h similarity index 100% rename from libc/include/generic-musl/rdma/bnxt_re-abi.h rename to lib/libc/include/generic-musl/rdma/bnxt_re-abi.h diff --git a/libc/include/generic-musl/rdma/cxgb3-abi.h b/lib/libc/include/generic-musl/rdma/cxgb3-abi.h similarity index 100% rename from libc/include/generic-musl/rdma/cxgb3-abi.h rename to lib/libc/include/generic-musl/rdma/cxgb3-abi.h diff --git a/libc/include/generic-musl/rdma/cxgb4-abi.h b/lib/libc/include/generic-musl/rdma/cxgb4-abi.h similarity index 100% rename from libc/include/generic-musl/rdma/cxgb4-abi.h rename to lib/libc/include/generic-musl/rdma/cxgb4-abi.h diff --git a/libc/include/generic-musl/rdma/hfi/hfi1_ioctl.h b/lib/libc/include/generic-musl/rdma/hfi/hfi1_ioctl.h similarity index 100% rename from libc/include/generic-musl/rdma/hfi/hfi1_ioctl.h rename to lib/libc/include/generic-musl/rdma/hfi/hfi1_ioctl.h diff --git a/libc/include/generic-musl/rdma/hfi/hfi1_user.h b/lib/libc/include/generic-musl/rdma/hfi/hfi1_user.h similarity index 100% rename from libc/include/generic-musl/rdma/hfi/hfi1_user.h rename to lib/libc/include/generic-musl/rdma/hfi/hfi1_user.h diff --git a/libc/include/generic-musl/rdma/hns-abi.h b/lib/libc/include/generic-musl/rdma/hns-abi.h similarity index 100% rename from libc/include/generic-musl/rdma/hns-abi.h rename to lib/libc/include/generic-musl/rdma/hns-abi.h diff --git a/libc/include/generic-musl/rdma/i40iw-abi.h b/lib/libc/include/generic-musl/rdma/i40iw-abi.h similarity index 100% rename from libc/include/generic-musl/rdma/i40iw-abi.h rename to lib/libc/include/generic-musl/rdma/i40iw-abi.h diff --git a/libc/include/generic-musl/rdma/ib_user_cm.h b/lib/libc/include/generic-musl/rdma/ib_user_cm.h similarity index 100% rename from libc/include/generic-musl/rdma/ib_user_cm.h rename to lib/libc/include/generic-musl/rdma/ib_user_cm.h diff --git a/libc/include/generic-musl/rdma/ib_user_ioctl_cmds.h b/lib/libc/include/generic-musl/rdma/ib_user_ioctl_cmds.h similarity index 100% rename from libc/include/generic-musl/rdma/ib_user_ioctl_cmds.h rename to lib/libc/include/generic-musl/rdma/ib_user_ioctl_cmds.h diff --git a/libc/include/generic-musl/rdma/ib_user_ioctl_verbs.h b/lib/libc/include/generic-musl/rdma/ib_user_ioctl_verbs.h similarity index 100% rename from libc/include/generic-musl/rdma/ib_user_ioctl_verbs.h rename to lib/libc/include/generic-musl/rdma/ib_user_ioctl_verbs.h diff --git a/libc/include/generic-musl/rdma/ib_user_mad.h b/lib/libc/include/generic-musl/rdma/ib_user_mad.h similarity index 100% rename from libc/include/generic-musl/rdma/ib_user_mad.h rename to lib/libc/include/generic-musl/rdma/ib_user_mad.h diff --git a/libc/include/generic-musl/rdma/ib_user_sa.h b/lib/libc/include/generic-musl/rdma/ib_user_sa.h similarity index 100% rename from libc/include/generic-musl/rdma/ib_user_sa.h rename to lib/libc/include/generic-musl/rdma/ib_user_sa.h diff --git a/libc/include/generic-musl/rdma/ib_user_verbs.h b/lib/libc/include/generic-musl/rdma/ib_user_verbs.h similarity index 100% rename from libc/include/generic-musl/rdma/ib_user_verbs.h rename to lib/libc/include/generic-musl/rdma/ib_user_verbs.h diff --git a/libc/include/generic-musl/rdma/mlx4-abi.h b/lib/libc/include/generic-musl/rdma/mlx4-abi.h similarity index 100% rename from libc/include/generic-musl/rdma/mlx4-abi.h rename to lib/libc/include/generic-musl/rdma/mlx4-abi.h diff --git a/libc/include/generic-musl/rdma/mlx5-abi.h b/lib/libc/include/generic-musl/rdma/mlx5-abi.h similarity index 100% rename from libc/include/generic-musl/rdma/mlx5-abi.h rename to lib/libc/include/generic-musl/rdma/mlx5-abi.h diff --git a/libc/include/generic-musl/rdma/mlx5_user_ioctl_cmds.h b/lib/libc/include/generic-musl/rdma/mlx5_user_ioctl_cmds.h similarity index 100% rename from libc/include/generic-musl/rdma/mlx5_user_ioctl_cmds.h rename to lib/libc/include/generic-musl/rdma/mlx5_user_ioctl_cmds.h diff --git a/libc/include/generic-musl/rdma/mlx5_user_ioctl_verbs.h b/lib/libc/include/generic-musl/rdma/mlx5_user_ioctl_verbs.h similarity index 100% rename from libc/include/generic-musl/rdma/mlx5_user_ioctl_verbs.h rename to lib/libc/include/generic-musl/rdma/mlx5_user_ioctl_verbs.h diff --git a/libc/include/generic-musl/rdma/mthca-abi.h b/lib/libc/include/generic-musl/rdma/mthca-abi.h similarity index 100% rename from libc/include/generic-musl/rdma/mthca-abi.h rename to lib/libc/include/generic-musl/rdma/mthca-abi.h diff --git a/libc/include/generic-musl/rdma/nes-abi.h b/lib/libc/include/generic-musl/rdma/nes-abi.h similarity index 100% rename from libc/include/generic-musl/rdma/nes-abi.h rename to lib/libc/include/generic-musl/rdma/nes-abi.h diff --git a/libc/include/generic-musl/rdma/ocrdma-abi.h b/lib/libc/include/generic-musl/rdma/ocrdma-abi.h similarity index 100% rename from libc/include/generic-musl/rdma/ocrdma-abi.h rename to lib/libc/include/generic-musl/rdma/ocrdma-abi.h diff --git a/libc/include/generic-musl/rdma/qedr-abi.h b/lib/libc/include/generic-musl/rdma/qedr-abi.h similarity index 100% rename from libc/include/generic-musl/rdma/qedr-abi.h rename to lib/libc/include/generic-musl/rdma/qedr-abi.h diff --git a/libc/include/generic-musl/rdma/rdma_netlink.h b/lib/libc/include/generic-musl/rdma/rdma_netlink.h similarity index 100% rename from libc/include/generic-musl/rdma/rdma_netlink.h rename to lib/libc/include/generic-musl/rdma/rdma_netlink.h diff --git a/libc/include/generic-musl/rdma/rdma_user_cm.h b/lib/libc/include/generic-musl/rdma/rdma_user_cm.h similarity index 100% rename from libc/include/generic-musl/rdma/rdma_user_cm.h rename to lib/libc/include/generic-musl/rdma/rdma_user_cm.h diff --git a/libc/include/generic-musl/rdma/rdma_user_ioctl.h b/lib/libc/include/generic-musl/rdma/rdma_user_ioctl.h similarity index 100% rename from libc/include/generic-musl/rdma/rdma_user_ioctl.h rename to lib/libc/include/generic-musl/rdma/rdma_user_ioctl.h diff --git a/libc/include/generic-musl/rdma/rdma_user_ioctl_cmds.h b/lib/libc/include/generic-musl/rdma/rdma_user_ioctl_cmds.h similarity index 100% rename from libc/include/generic-musl/rdma/rdma_user_ioctl_cmds.h rename to lib/libc/include/generic-musl/rdma/rdma_user_ioctl_cmds.h diff --git a/libc/include/generic-musl/rdma/rdma_user_rxe.h b/lib/libc/include/generic-musl/rdma/rdma_user_rxe.h similarity index 100% rename from libc/include/generic-musl/rdma/rdma_user_rxe.h rename to lib/libc/include/generic-musl/rdma/rdma_user_rxe.h diff --git a/libc/include/generic-musl/rdma/vmw_pvrdma-abi.h b/lib/libc/include/generic-musl/rdma/vmw_pvrdma-abi.h similarity index 100% rename from libc/include/generic-musl/rdma/vmw_pvrdma-abi.h rename to lib/libc/include/generic-musl/rdma/vmw_pvrdma-abi.h diff --git a/libc/include/generic-musl/regex.h b/lib/libc/include/generic-musl/regex.h similarity index 100% rename from libc/include/generic-musl/regex.h rename to lib/libc/include/generic-musl/regex.h diff --git a/libc/include/generic-musl/resolv.h b/lib/libc/include/generic-musl/resolv.h similarity index 100% rename from libc/include/generic-musl/resolv.h rename to lib/libc/include/generic-musl/resolv.h diff --git a/libc/include/generic-musl/sched.h b/lib/libc/include/generic-musl/sched.h similarity index 100% rename from libc/include/generic-musl/sched.h rename to lib/libc/include/generic-musl/sched.h diff --git a/libc/include/generic-musl/scsi/cxlflash_ioctl.h b/lib/libc/include/generic-musl/scsi/cxlflash_ioctl.h similarity index 100% rename from libc/include/generic-musl/scsi/cxlflash_ioctl.h rename to lib/libc/include/generic-musl/scsi/cxlflash_ioctl.h diff --git a/libc/include/generic-musl/scsi/fc/fc_els.h b/lib/libc/include/generic-musl/scsi/fc/fc_els.h similarity index 100% rename from libc/include/generic-musl/scsi/fc/fc_els.h rename to lib/libc/include/generic-musl/scsi/fc/fc_els.h diff --git a/libc/include/generic-musl/scsi/fc/fc_fs.h b/lib/libc/include/generic-musl/scsi/fc/fc_fs.h similarity index 100% rename from libc/include/generic-musl/scsi/fc/fc_fs.h rename to lib/libc/include/generic-musl/scsi/fc/fc_fs.h diff --git a/libc/include/generic-musl/scsi/fc/fc_gs.h b/lib/libc/include/generic-musl/scsi/fc/fc_gs.h similarity index 100% rename from libc/include/generic-musl/scsi/fc/fc_gs.h rename to lib/libc/include/generic-musl/scsi/fc/fc_gs.h diff --git a/libc/include/generic-musl/scsi/fc/fc_ns.h b/lib/libc/include/generic-musl/scsi/fc/fc_ns.h similarity index 100% rename from libc/include/generic-musl/scsi/fc/fc_ns.h rename to lib/libc/include/generic-musl/scsi/fc/fc_ns.h diff --git a/libc/include/generic-musl/scsi/scsi.h b/lib/libc/include/generic-musl/scsi/scsi.h similarity index 100% rename from libc/include/generic-musl/scsi/scsi.h rename to lib/libc/include/generic-musl/scsi/scsi.h diff --git a/libc/include/generic-musl/scsi/scsi_bsg_fc.h b/lib/libc/include/generic-musl/scsi/scsi_bsg_fc.h similarity index 100% rename from libc/include/generic-musl/scsi/scsi_bsg_fc.h rename to lib/libc/include/generic-musl/scsi/scsi_bsg_fc.h diff --git a/libc/include/generic-musl/scsi/scsi_ioctl.h b/lib/libc/include/generic-musl/scsi/scsi_ioctl.h similarity index 100% rename from libc/include/generic-musl/scsi/scsi_ioctl.h rename to lib/libc/include/generic-musl/scsi/scsi_ioctl.h diff --git a/libc/include/generic-musl/scsi/scsi_netlink.h b/lib/libc/include/generic-musl/scsi/scsi_netlink.h similarity index 100% rename from libc/include/generic-musl/scsi/scsi_netlink.h rename to lib/libc/include/generic-musl/scsi/scsi_netlink.h diff --git a/libc/include/generic-musl/scsi/scsi_netlink_fc.h b/lib/libc/include/generic-musl/scsi/scsi_netlink_fc.h similarity index 100% rename from libc/include/generic-musl/scsi/scsi_netlink_fc.h rename to lib/libc/include/generic-musl/scsi/scsi_netlink_fc.h diff --git a/libc/include/generic-musl/scsi/sg.h b/lib/libc/include/generic-musl/scsi/sg.h similarity index 100% rename from libc/include/generic-musl/scsi/sg.h rename to lib/libc/include/generic-musl/scsi/sg.h diff --git a/libc/include/generic-musl/search.h b/lib/libc/include/generic-musl/search.h similarity index 100% rename from libc/include/generic-musl/search.h rename to lib/libc/include/generic-musl/search.h diff --git a/libc/include/generic-musl/semaphore.h b/lib/libc/include/generic-musl/semaphore.h similarity index 100% rename from libc/include/generic-musl/semaphore.h rename to lib/libc/include/generic-musl/semaphore.h diff --git a/libc/include/generic-musl/setjmp.h b/lib/libc/include/generic-musl/setjmp.h similarity index 100% rename from libc/include/generic-musl/setjmp.h rename to lib/libc/include/generic-musl/setjmp.h diff --git a/libc/include/generic-musl/shadow.h b/lib/libc/include/generic-musl/shadow.h similarity index 100% rename from libc/include/generic-musl/shadow.h rename to lib/libc/include/generic-musl/shadow.h diff --git a/libc/include/generic-musl/signal.h b/lib/libc/include/generic-musl/signal.h similarity index 100% rename from libc/include/generic-musl/signal.h rename to lib/libc/include/generic-musl/signal.h diff --git a/libc/include/generic-musl/sound/asequencer.h b/lib/libc/include/generic-musl/sound/asequencer.h similarity index 100% rename from libc/include/generic-musl/sound/asequencer.h rename to lib/libc/include/generic-musl/sound/asequencer.h diff --git a/libc/include/generic-musl/sound/asoc.h b/lib/libc/include/generic-musl/sound/asoc.h similarity index 100% rename from libc/include/generic-musl/sound/asoc.h rename to lib/libc/include/generic-musl/sound/asoc.h diff --git a/libc/include/generic-musl/sound/asound.h b/lib/libc/include/generic-musl/sound/asound.h similarity index 100% rename from libc/include/generic-musl/sound/asound.h rename to lib/libc/include/generic-musl/sound/asound.h diff --git a/libc/include/generic-musl/sound/asound_fm.h b/lib/libc/include/generic-musl/sound/asound_fm.h similarity index 100% rename from libc/include/generic-musl/sound/asound_fm.h rename to lib/libc/include/generic-musl/sound/asound_fm.h diff --git a/libc/include/generic-musl/sound/compress_offload.h b/lib/libc/include/generic-musl/sound/compress_offload.h similarity index 100% rename from libc/include/generic-musl/sound/compress_offload.h rename to lib/libc/include/generic-musl/sound/compress_offload.h diff --git a/libc/include/generic-musl/sound/compress_params.h b/lib/libc/include/generic-musl/sound/compress_params.h similarity index 100% rename from libc/include/generic-musl/sound/compress_params.h rename to lib/libc/include/generic-musl/sound/compress_params.h diff --git a/libc/include/generic-musl/sound/emu10k1.h b/lib/libc/include/generic-musl/sound/emu10k1.h similarity index 100% rename from libc/include/generic-musl/sound/emu10k1.h rename to lib/libc/include/generic-musl/sound/emu10k1.h diff --git a/libc/include/generic-musl/sound/firewire.h b/lib/libc/include/generic-musl/sound/firewire.h similarity index 100% rename from libc/include/generic-musl/sound/firewire.h rename to lib/libc/include/generic-musl/sound/firewire.h diff --git a/libc/include/generic-musl/sound/hdsp.h b/lib/libc/include/generic-musl/sound/hdsp.h similarity index 100% rename from libc/include/generic-musl/sound/hdsp.h rename to lib/libc/include/generic-musl/sound/hdsp.h diff --git a/libc/include/generic-musl/sound/hdspm.h b/lib/libc/include/generic-musl/sound/hdspm.h similarity index 100% rename from libc/include/generic-musl/sound/hdspm.h rename to lib/libc/include/generic-musl/sound/hdspm.h diff --git a/libc/include/generic-musl/sound/sb16_csp.h b/lib/libc/include/generic-musl/sound/sb16_csp.h similarity index 100% rename from libc/include/generic-musl/sound/sb16_csp.h rename to lib/libc/include/generic-musl/sound/sb16_csp.h diff --git a/libc/include/generic-musl/sound/sfnt_info.h b/lib/libc/include/generic-musl/sound/sfnt_info.h similarity index 100% rename from libc/include/generic-musl/sound/sfnt_info.h rename to lib/libc/include/generic-musl/sound/sfnt_info.h diff --git a/libc/include/generic-musl/sound/skl-tplg-interface.h b/lib/libc/include/generic-musl/sound/skl-tplg-interface.h similarity index 100% rename from libc/include/generic-musl/sound/skl-tplg-interface.h rename to lib/libc/include/generic-musl/sound/skl-tplg-interface.h diff --git a/libc/include/generic-musl/sound/snd_sst_tokens.h b/lib/libc/include/generic-musl/sound/snd_sst_tokens.h similarity index 100% rename from libc/include/generic-musl/sound/snd_sst_tokens.h rename to lib/libc/include/generic-musl/sound/snd_sst_tokens.h diff --git a/libc/include/generic-musl/sound/tlv.h b/lib/libc/include/generic-musl/sound/tlv.h similarity index 100% rename from libc/include/generic-musl/sound/tlv.h rename to lib/libc/include/generic-musl/sound/tlv.h diff --git a/libc/include/generic-musl/sound/usb_stream.h b/lib/libc/include/generic-musl/sound/usb_stream.h similarity index 100% rename from libc/include/generic-musl/sound/usb_stream.h rename to lib/libc/include/generic-musl/sound/usb_stream.h diff --git a/libc/include/generic-musl/spawn.h b/lib/libc/include/generic-musl/spawn.h similarity index 100% rename from libc/include/generic-musl/spawn.h rename to lib/libc/include/generic-musl/spawn.h diff --git a/libc/include/generic-musl/stdalign.h b/lib/libc/include/generic-musl/stdalign.h similarity index 100% rename from libc/include/generic-musl/stdalign.h rename to lib/libc/include/generic-musl/stdalign.h diff --git a/libc/include/generic-musl/stdarg.h b/lib/libc/include/generic-musl/stdarg.h similarity index 100% rename from libc/include/generic-musl/stdarg.h rename to lib/libc/include/generic-musl/stdarg.h diff --git a/libc/include/generic-musl/stdbool.h b/lib/libc/include/generic-musl/stdbool.h similarity index 100% rename from libc/include/generic-musl/stdbool.h rename to lib/libc/include/generic-musl/stdbool.h diff --git a/libc/include/generic-musl/stdc-predef.h b/lib/libc/include/generic-musl/stdc-predef.h similarity index 100% rename from libc/include/generic-musl/stdc-predef.h rename to lib/libc/include/generic-musl/stdc-predef.h diff --git a/libc/include/generic-musl/stddef.h b/lib/libc/include/generic-musl/stddef.h similarity index 100% rename from libc/include/generic-musl/stddef.h rename to lib/libc/include/generic-musl/stddef.h diff --git a/libc/include/generic-musl/stdint.h b/lib/libc/include/generic-musl/stdint.h similarity index 100% rename from libc/include/generic-musl/stdint.h rename to lib/libc/include/generic-musl/stdint.h diff --git a/libc/include/generic-musl/stdio.h b/lib/libc/include/generic-musl/stdio.h similarity index 100% rename from libc/include/generic-musl/stdio.h rename to lib/libc/include/generic-musl/stdio.h diff --git a/libc/include/generic-musl/stdio_ext.h b/lib/libc/include/generic-musl/stdio_ext.h similarity index 100% rename from libc/include/generic-musl/stdio_ext.h rename to lib/libc/include/generic-musl/stdio_ext.h diff --git a/libc/include/generic-musl/stdlib.h b/lib/libc/include/generic-musl/stdlib.h similarity index 100% rename from libc/include/generic-musl/stdlib.h rename to lib/libc/include/generic-musl/stdlib.h diff --git a/libc/include/generic-musl/stdnoreturn.h b/lib/libc/include/generic-musl/stdnoreturn.h similarity index 100% rename from libc/include/generic-musl/stdnoreturn.h rename to lib/libc/include/generic-musl/stdnoreturn.h diff --git a/libc/include/generic-musl/string.h b/lib/libc/include/generic-musl/string.h similarity index 100% rename from libc/include/generic-musl/string.h rename to lib/libc/include/generic-musl/string.h diff --git a/libc/include/generic-musl/strings.h b/lib/libc/include/generic-musl/strings.h similarity index 100% rename from libc/include/generic-musl/strings.h rename to lib/libc/include/generic-musl/strings.h diff --git a/libc/include/generic-musl/stropts.h b/lib/libc/include/generic-musl/stropts.h similarity index 100% rename from libc/include/generic-musl/stropts.h rename to lib/libc/include/generic-musl/stropts.h diff --git a/libc/include/generic-musl/symcat.h b/lib/libc/include/generic-musl/symcat.h similarity index 100% rename from libc/include/generic-musl/symcat.h rename to lib/libc/include/generic-musl/symcat.h diff --git a/libc/include/generic-musl/sys/acct.h b/lib/libc/include/generic-musl/sys/acct.h similarity index 100% rename from libc/include/generic-musl/sys/acct.h rename to lib/libc/include/generic-musl/sys/acct.h diff --git a/libc/include/generic-musl/sys/auxv.h b/lib/libc/include/generic-musl/sys/auxv.h similarity index 100% rename from libc/include/generic-musl/sys/auxv.h rename to lib/libc/include/generic-musl/sys/auxv.h diff --git a/libc/include/generic-musl/sys/cachectl.h b/lib/libc/include/generic-musl/sys/cachectl.h similarity index 100% rename from libc/include/generic-musl/sys/cachectl.h rename to lib/libc/include/generic-musl/sys/cachectl.h diff --git a/libc/include/generic-musl/sys/dir.h b/lib/libc/include/generic-musl/sys/dir.h similarity index 100% rename from libc/include/generic-musl/sys/dir.h rename to lib/libc/include/generic-musl/sys/dir.h diff --git a/libc/include/generic-musl/sys/epoll.h b/lib/libc/include/generic-musl/sys/epoll.h similarity index 100% rename from libc/include/generic-musl/sys/epoll.h rename to lib/libc/include/generic-musl/sys/epoll.h diff --git a/libc/include/generic-musl/sys/errno.h b/lib/libc/include/generic-musl/sys/errno.h similarity index 100% rename from libc/include/generic-musl/sys/errno.h rename to lib/libc/include/generic-musl/sys/errno.h diff --git a/libc/include/generic-musl/sys/eventfd.h b/lib/libc/include/generic-musl/sys/eventfd.h similarity index 100% rename from libc/include/generic-musl/sys/eventfd.h rename to lib/libc/include/generic-musl/sys/eventfd.h diff --git a/libc/include/generic-musl/sys/fanotify.h b/lib/libc/include/generic-musl/sys/fanotify.h similarity index 100% rename from libc/include/generic-musl/sys/fanotify.h rename to lib/libc/include/generic-musl/sys/fanotify.h diff --git a/libc/include/generic-musl/sys/fcntl.h b/lib/libc/include/generic-musl/sys/fcntl.h similarity index 100% rename from libc/include/generic-musl/sys/fcntl.h rename to lib/libc/include/generic-musl/sys/fcntl.h diff --git a/libc/include/generic-musl/sys/file.h b/lib/libc/include/generic-musl/sys/file.h similarity index 100% rename from libc/include/generic-musl/sys/file.h rename to lib/libc/include/generic-musl/sys/file.h diff --git a/libc/include/generic-musl/sys/fsuid.h b/lib/libc/include/generic-musl/sys/fsuid.h similarity index 100% rename from libc/include/generic-musl/sys/fsuid.h rename to lib/libc/include/generic-musl/sys/fsuid.h diff --git a/libc/include/generic-musl/sys/inotify.h b/lib/libc/include/generic-musl/sys/inotify.h similarity index 100% rename from libc/include/generic-musl/sys/inotify.h rename to lib/libc/include/generic-musl/sys/inotify.h diff --git a/libc/include/generic-musl/sys/io.h b/lib/libc/include/generic-musl/sys/io.h similarity index 100% rename from libc/include/generic-musl/sys/io.h rename to lib/libc/include/generic-musl/sys/io.h diff --git a/libc/include/generic-musl/sys/ioctl.h b/lib/libc/include/generic-musl/sys/ioctl.h similarity index 100% rename from libc/include/generic-musl/sys/ioctl.h rename to lib/libc/include/generic-musl/sys/ioctl.h diff --git a/libc/include/generic-musl/sys/ipc.h b/lib/libc/include/generic-musl/sys/ipc.h similarity index 100% rename from libc/include/generic-musl/sys/ipc.h rename to lib/libc/include/generic-musl/sys/ipc.h diff --git a/libc/include/generic-musl/sys/kd.h b/lib/libc/include/generic-musl/sys/kd.h similarity index 100% rename from libc/include/generic-musl/sys/kd.h rename to lib/libc/include/generic-musl/sys/kd.h diff --git a/libc/include/generic-musl/sys/klog.h b/lib/libc/include/generic-musl/sys/klog.h similarity index 100% rename from libc/include/generic-musl/sys/klog.h rename to lib/libc/include/generic-musl/sys/klog.h diff --git a/libc/include/generic-musl/sys/mman.h b/lib/libc/include/generic-musl/sys/mman.h similarity index 100% rename from libc/include/generic-musl/sys/mman.h rename to lib/libc/include/generic-musl/sys/mman.h diff --git a/libc/include/generic-musl/sys/mount.h b/lib/libc/include/generic-musl/sys/mount.h similarity index 100% rename from libc/include/generic-musl/sys/mount.h rename to lib/libc/include/generic-musl/sys/mount.h diff --git a/libc/include/generic-musl/sys/msg.h b/lib/libc/include/generic-musl/sys/msg.h similarity index 100% rename from libc/include/generic-musl/sys/msg.h rename to lib/libc/include/generic-musl/sys/msg.h diff --git a/libc/include/generic-musl/sys/mtio.h b/lib/libc/include/generic-musl/sys/mtio.h similarity index 100% rename from libc/include/generic-musl/sys/mtio.h rename to lib/libc/include/generic-musl/sys/mtio.h diff --git a/libc/include/generic-musl/sys/param.h b/lib/libc/include/generic-musl/sys/param.h similarity index 100% rename from libc/include/generic-musl/sys/param.h rename to lib/libc/include/generic-musl/sys/param.h diff --git a/libc/include/generic-musl/sys/personality.h b/lib/libc/include/generic-musl/sys/personality.h similarity index 100% rename from libc/include/generic-musl/sys/personality.h rename to lib/libc/include/generic-musl/sys/personality.h diff --git a/libc/include/generic-musl/sys/poll.h b/lib/libc/include/generic-musl/sys/poll.h similarity index 100% rename from libc/include/generic-musl/sys/poll.h rename to lib/libc/include/generic-musl/sys/poll.h diff --git a/libc/include/generic-musl/sys/prctl.h b/lib/libc/include/generic-musl/sys/prctl.h similarity index 100% rename from libc/include/generic-musl/sys/prctl.h rename to lib/libc/include/generic-musl/sys/prctl.h diff --git a/libc/include/generic-musl/sys/procfs.h b/lib/libc/include/generic-musl/sys/procfs.h similarity index 100% rename from libc/include/generic-musl/sys/procfs.h rename to lib/libc/include/generic-musl/sys/procfs.h diff --git a/libc/include/generic-musl/sys/ptrace.h b/lib/libc/include/generic-musl/sys/ptrace.h similarity index 100% rename from libc/include/generic-musl/sys/ptrace.h rename to lib/libc/include/generic-musl/sys/ptrace.h diff --git a/libc/include/generic-musl/sys/quota.h b/lib/libc/include/generic-musl/sys/quota.h similarity index 100% rename from libc/include/generic-musl/sys/quota.h rename to lib/libc/include/generic-musl/sys/quota.h diff --git a/libc/include/generic-musl/sys/random.h b/lib/libc/include/generic-musl/sys/random.h similarity index 100% rename from libc/include/generic-musl/sys/random.h rename to lib/libc/include/generic-musl/sys/random.h diff --git a/libc/include/generic-musl/sys/reboot.h b/lib/libc/include/generic-musl/sys/reboot.h similarity index 100% rename from libc/include/generic-musl/sys/reboot.h rename to lib/libc/include/generic-musl/sys/reboot.h diff --git a/libc/include/generic-musl/sys/reg.h b/lib/libc/include/generic-musl/sys/reg.h similarity index 100% rename from libc/include/generic-musl/sys/reg.h rename to lib/libc/include/generic-musl/sys/reg.h diff --git a/libc/include/generic-musl/sys/resource.h b/lib/libc/include/generic-musl/sys/resource.h similarity index 100% rename from libc/include/generic-musl/sys/resource.h rename to lib/libc/include/generic-musl/sys/resource.h diff --git a/libc/include/generic-musl/sys/select.h b/lib/libc/include/generic-musl/sys/select.h similarity index 100% rename from libc/include/generic-musl/sys/select.h rename to lib/libc/include/generic-musl/sys/select.h diff --git a/libc/include/generic-musl/sys/sem.h b/lib/libc/include/generic-musl/sys/sem.h similarity index 100% rename from libc/include/generic-musl/sys/sem.h rename to lib/libc/include/generic-musl/sys/sem.h diff --git a/libc/include/generic-musl/sys/sendfile.h b/lib/libc/include/generic-musl/sys/sendfile.h similarity index 100% rename from libc/include/generic-musl/sys/sendfile.h rename to lib/libc/include/generic-musl/sys/sendfile.h diff --git a/libc/include/generic-musl/sys/shm.h b/lib/libc/include/generic-musl/sys/shm.h similarity index 100% rename from libc/include/generic-musl/sys/shm.h rename to lib/libc/include/generic-musl/sys/shm.h diff --git a/libc/include/generic-musl/sys/signal.h b/lib/libc/include/generic-musl/sys/signal.h similarity index 100% rename from libc/include/generic-musl/sys/signal.h rename to lib/libc/include/generic-musl/sys/signal.h diff --git a/libc/include/generic-musl/sys/signalfd.h b/lib/libc/include/generic-musl/sys/signalfd.h similarity index 100% rename from libc/include/generic-musl/sys/signalfd.h rename to lib/libc/include/generic-musl/sys/signalfd.h diff --git a/libc/include/generic-musl/sys/socket.h b/lib/libc/include/generic-musl/sys/socket.h similarity index 100% rename from libc/include/generic-musl/sys/socket.h rename to lib/libc/include/generic-musl/sys/socket.h diff --git a/libc/include/generic-musl/sys/soundcard.h b/lib/libc/include/generic-musl/sys/soundcard.h similarity index 100% rename from libc/include/generic-musl/sys/soundcard.h rename to lib/libc/include/generic-musl/sys/soundcard.h diff --git a/libc/include/generic-musl/sys/stat.h b/lib/libc/include/generic-musl/sys/stat.h similarity index 100% rename from libc/include/generic-musl/sys/stat.h rename to lib/libc/include/generic-musl/sys/stat.h diff --git a/libc/include/generic-musl/sys/statfs.h b/lib/libc/include/generic-musl/sys/statfs.h similarity index 100% rename from libc/include/generic-musl/sys/statfs.h rename to lib/libc/include/generic-musl/sys/statfs.h diff --git a/libc/include/generic-musl/sys/statvfs.h b/lib/libc/include/generic-musl/sys/statvfs.h similarity index 100% rename from libc/include/generic-musl/sys/statvfs.h rename to lib/libc/include/generic-musl/sys/statvfs.h diff --git a/libc/include/generic-musl/sys/stropts.h b/lib/libc/include/generic-musl/sys/stropts.h similarity index 100% rename from libc/include/generic-musl/sys/stropts.h rename to lib/libc/include/generic-musl/sys/stropts.h diff --git a/libc/include/generic-musl/sys/swap.h b/lib/libc/include/generic-musl/sys/swap.h similarity index 100% rename from libc/include/generic-musl/sys/swap.h rename to lib/libc/include/generic-musl/sys/swap.h diff --git a/libc/include/generic-musl/sys/syscall.h b/lib/libc/include/generic-musl/sys/syscall.h similarity index 100% rename from libc/include/generic-musl/sys/syscall.h rename to lib/libc/include/generic-musl/sys/syscall.h diff --git a/libc/include/generic-musl/sys/sysinfo.h b/lib/libc/include/generic-musl/sys/sysinfo.h similarity index 100% rename from libc/include/generic-musl/sys/sysinfo.h rename to lib/libc/include/generic-musl/sys/sysinfo.h diff --git a/libc/include/generic-musl/sys/syslog.h b/lib/libc/include/generic-musl/sys/syslog.h similarity index 100% rename from libc/include/generic-musl/sys/syslog.h rename to lib/libc/include/generic-musl/sys/syslog.h diff --git a/libc/include/generic-musl/sys/sysmacros.h b/lib/libc/include/generic-musl/sys/sysmacros.h similarity index 100% rename from libc/include/generic-musl/sys/sysmacros.h rename to lib/libc/include/generic-musl/sys/sysmacros.h diff --git a/libc/include/generic-musl/sys/termios.h b/lib/libc/include/generic-musl/sys/termios.h similarity index 100% rename from libc/include/generic-musl/sys/termios.h rename to lib/libc/include/generic-musl/sys/termios.h diff --git a/libc/include/generic-musl/sys/time.h b/lib/libc/include/generic-musl/sys/time.h similarity index 100% rename from libc/include/generic-musl/sys/time.h rename to lib/libc/include/generic-musl/sys/time.h diff --git a/libc/include/generic-musl/sys/timeb.h b/lib/libc/include/generic-musl/sys/timeb.h similarity index 100% rename from libc/include/generic-musl/sys/timeb.h rename to lib/libc/include/generic-musl/sys/timeb.h diff --git a/libc/include/generic-musl/sys/timerfd.h b/lib/libc/include/generic-musl/sys/timerfd.h similarity index 100% rename from libc/include/generic-musl/sys/timerfd.h rename to lib/libc/include/generic-musl/sys/timerfd.h diff --git a/libc/include/generic-musl/sys/times.h b/lib/libc/include/generic-musl/sys/times.h similarity index 100% rename from libc/include/generic-musl/sys/times.h rename to lib/libc/include/generic-musl/sys/times.h diff --git a/libc/include/generic-musl/sys/timex.h b/lib/libc/include/generic-musl/sys/timex.h similarity index 100% rename from libc/include/generic-musl/sys/timex.h rename to lib/libc/include/generic-musl/sys/timex.h diff --git a/libc/include/generic-musl/sys/ttydefaults.h b/lib/libc/include/generic-musl/sys/ttydefaults.h similarity index 100% rename from libc/include/generic-musl/sys/ttydefaults.h rename to lib/libc/include/generic-musl/sys/ttydefaults.h diff --git a/libc/include/generic-musl/sys/types.h b/lib/libc/include/generic-musl/sys/types.h similarity index 100% rename from libc/include/generic-musl/sys/types.h rename to lib/libc/include/generic-musl/sys/types.h diff --git a/libc/include/generic-musl/sys/ucontext.h b/lib/libc/include/generic-musl/sys/ucontext.h similarity index 100% rename from libc/include/generic-musl/sys/ucontext.h rename to lib/libc/include/generic-musl/sys/ucontext.h diff --git a/libc/include/generic-musl/sys/uio.h b/lib/libc/include/generic-musl/sys/uio.h similarity index 100% rename from libc/include/generic-musl/sys/uio.h rename to lib/libc/include/generic-musl/sys/uio.h diff --git a/libc/include/generic-musl/sys/un.h b/lib/libc/include/generic-musl/sys/un.h similarity index 100% rename from libc/include/generic-musl/sys/un.h rename to lib/libc/include/generic-musl/sys/un.h diff --git a/libc/include/generic-musl/sys/user.h b/lib/libc/include/generic-musl/sys/user.h similarity index 100% rename from libc/include/generic-musl/sys/user.h rename to lib/libc/include/generic-musl/sys/user.h diff --git a/libc/include/generic-musl/sys/utsname.h b/lib/libc/include/generic-musl/sys/utsname.h similarity index 100% rename from libc/include/generic-musl/sys/utsname.h rename to lib/libc/include/generic-musl/sys/utsname.h diff --git a/libc/include/generic-musl/sys/vfs.h b/lib/libc/include/generic-musl/sys/vfs.h similarity index 100% rename from libc/include/generic-musl/sys/vfs.h rename to lib/libc/include/generic-musl/sys/vfs.h diff --git a/libc/include/generic-musl/sys/vt.h b/lib/libc/include/generic-musl/sys/vt.h similarity index 100% rename from libc/include/generic-musl/sys/vt.h rename to lib/libc/include/generic-musl/sys/vt.h diff --git a/libc/include/generic-musl/sys/wait.h b/lib/libc/include/generic-musl/sys/wait.h similarity index 100% rename from libc/include/generic-musl/sys/wait.h rename to lib/libc/include/generic-musl/sys/wait.h diff --git a/libc/include/generic-musl/sys/xattr.h b/lib/libc/include/generic-musl/sys/xattr.h similarity index 100% rename from libc/include/generic-musl/sys/xattr.h rename to lib/libc/include/generic-musl/sys/xattr.h diff --git a/libc/include/generic-musl/syscall.h b/lib/libc/include/generic-musl/syscall.h similarity index 100% rename from libc/include/generic-musl/syscall.h rename to lib/libc/include/generic-musl/syscall.h diff --git a/libc/include/generic-musl/sysexits.h b/lib/libc/include/generic-musl/sysexits.h similarity index 100% rename from libc/include/generic-musl/sysexits.h rename to lib/libc/include/generic-musl/sysexits.h diff --git a/libc/include/generic-musl/syslog.h b/lib/libc/include/generic-musl/syslog.h similarity index 100% rename from libc/include/generic-musl/syslog.h rename to lib/libc/include/generic-musl/syslog.h diff --git a/libc/include/generic-musl/tar.h b/lib/libc/include/generic-musl/tar.h similarity index 100% rename from libc/include/generic-musl/tar.h rename to lib/libc/include/generic-musl/tar.h diff --git a/libc/include/generic-musl/termios.h b/lib/libc/include/generic-musl/termios.h similarity index 100% rename from libc/include/generic-musl/termios.h rename to lib/libc/include/generic-musl/termios.h diff --git a/libc/include/generic-musl/tgmath.h b/lib/libc/include/generic-musl/tgmath.h similarity index 100% rename from libc/include/generic-musl/tgmath.h rename to lib/libc/include/generic-musl/tgmath.h diff --git a/libc/include/generic-musl/threads.h b/lib/libc/include/generic-musl/threads.h similarity index 100% rename from libc/include/generic-musl/threads.h rename to lib/libc/include/generic-musl/threads.h diff --git a/libc/include/generic-musl/time.h b/lib/libc/include/generic-musl/time.h similarity index 100% rename from libc/include/generic-musl/time.h rename to lib/libc/include/generic-musl/time.h diff --git a/libc/include/generic-musl/uchar.h b/lib/libc/include/generic-musl/uchar.h similarity index 100% rename from libc/include/generic-musl/uchar.h rename to lib/libc/include/generic-musl/uchar.h diff --git a/libc/include/generic-musl/ucontext.h b/lib/libc/include/generic-musl/ucontext.h similarity index 100% rename from libc/include/generic-musl/ucontext.h rename to lib/libc/include/generic-musl/ucontext.h diff --git a/libc/include/generic-musl/ulimit.h b/lib/libc/include/generic-musl/ulimit.h similarity index 100% rename from libc/include/generic-musl/ulimit.h rename to lib/libc/include/generic-musl/ulimit.h diff --git a/libc/include/generic-musl/unistd.h b/lib/libc/include/generic-musl/unistd.h similarity index 100% rename from libc/include/generic-musl/unistd.h rename to lib/libc/include/generic-musl/unistd.h diff --git a/libc/include/generic-musl/utime.h b/lib/libc/include/generic-musl/utime.h similarity index 100% rename from libc/include/generic-musl/utime.h rename to lib/libc/include/generic-musl/utime.h diff --git a/libc/include/generic-musl/utmp.h b/lib/libc/include/generic-musl/utmp.h similarity index 100% rename from libc/include/generic-musl/utmp.h rename to lib/libc/include/generic-musl/utmp.h diff --git a/libc/include/generic-musl/utmpx.h b/lib/libc/include/generic-musl/utmpx.h similarity index 100% rename from libc/include/generic-musl/utmpx.h rename to lib/libc/include/generic-musl/utmpx.h diff --git a/libc/include/generic-musl/values.h b/lib/libc/include/generic-musl/values.h similarity index 100% rename from libc/include/generic-musl/values.h rename to lib/libc/include/generic-musl/values.h diff --git a/libc/include/generic-musl/video/edid.h b/lib/libc/include/generic-musl/video/edid.h similarity index 100% rename from libc/include/generic-musl/video/edid.h rename to lib/libc/include/generic-musl/video/edid.h diff --git a/libc/include/generic-musl/video/sisfb.h b/lib/libc/include/generic-musl/video/sisfb.h similarity index 100% rename from libc/include/generic-musl/video/sisfb.h rename to lib/libc/include/generic-musl/video/sisfb.h diff --git a/libc/include/generic-musl/video/uvesafb.h b/lib/libc/include/generic-musl/video/uvesafb.h similarity index 100% rename from libc/include/generic-musl/video/uvesafb.h rename to lib/libc/include/generic-musl/video/uvesafb.h diff --git a/libc/include/generic-musl/wait.h b/lib/libc/include/generic-musl/wait.h similarity index 100% rename from libc/include/generic-musl/wait.h rename to lib/libc/include/generic-musl/wait.h diff --git a/libc/include/generic-musl/wchar.h b/lib/libc/include/generic-musl/wchar.h similarity index 100% rename from libc/include/generic-musl/wchar.h rename to lib/libc/include/generic-musl/wchar.h diff --git a/libc/include/generic-musl/wctype.h b/lib/libc/include/generic-musl/wctype.h similarity index 100% rename from libc/include/generic-musl/wctype.h rename to lib/libc/include/generic-musl/wctype.h diff --git a/libc/include/generic-musl/wordexp.h b/lib/libc/include/generic-musl/wordexp.h similarity index 100% rename from libc/include/generic-musl/wordexp.h rename to lib/libc/include/generic-musl/wordexp.h diff --git a/libc/include/generic-musl/xen/evtchn.h b/lib/libc/include/generic-musl/xen/evtchn.h similarity index 100% rename from libc/include/generic-musl/xen/evtchn.h rename to lib/libc/include/generic-musl/xen/evtchn.h diff --git a/libc/include/generic-musl/xen/gntalloc.h b/lib/libc/include/generic-musl/xen/gntalloc.h similarity index 100% rename from libc/include/generic-musl/xen/gntalloc.h rename to lib/libc/include/generic-musl/xen/gntalloc.h diff --git a/libc/include/generic-musl/xen/gntdev.h b/lib/libc/include/generic-musl/xen/gntdev.h similarity index 100% rename from libc/include/generic-musl/xen/gntdev.h rename to lib/libc/include/generic-musl/xen/gntdev.h diff --git a/libc/include/generic-musl/xen/privcmd.h b/lib/libc/include/generic-musl/xen/privcmd.h similarity index 100% rename from libc/include/generic-musl/xen/privcmd.h rename to lib/libc/include/generic-musl/xen/privcmd.h diff --git a/libc/include/i386-linux-any/asm/auxvec.h b/lib/libc/include/i386-linux-any/asm/auxvec.h similarity index 100% rename from libc/include/i386-linux-any/asm/auxvec.h rename to lib/libc/include/i386-linux-any/asm/auxvec.h diff --git a/libc/include/i386-linux-any/asm/bitsperlong.h b/lib/libc/include/i386-linux-any/asm/bitsperlong.h similarity index 100% rename from libc/include/i386-linux-any/asm/bitsperlong.h rename to lib/libc/include/i386-linux-any/asm/bitsperlong.h diff --git a/libc/include/i386-linux-any/asm/byteorder.h b/lib/libc/include/i386-linux-any/asm/byteorder.h similarity index 100% rename from libc/include/i386-linux-any/asm/byteorder.h rename to lib/libc/include/i386-linux-any/asm/byteorder.h diff --git a/libc/include/i386-linux-any/asm/kvm.h b/lib/libc/include/i386-linux-any/asm/kvm.h similarity index 100% rename from libc/include/i386-linux-any/asm/kvm.h rename to lib/libc/include/i386-linux-any/asm/kvm.h diff --git a/libc/include/i386-linux-any/asm/kvm_para.h b/lib/libc/include/i386-linux-any/asm/kvm_para.h similarity index 100% rename from libc/include/i386-linux-any/asm/kvm_para.h rename to lib/libc/include/i386-linux-any/asm/kvm_para.h diff --git a/libc/include/i386-linux-any/asm/mman.h b/lib/libc/include/i386-linux-any/asm/mman.h similarity index 100% rename from libc/include/i386-linux-any/asm/mman.h rename to lib/libc/include/i386-linux-any/asm/mman.h diff --git a/libc/include/i386-linux-any/asm/msgbuf.h b/lib/libc/include/i386-linux-any/asm/msgbuf.h similarity index 100% rename from libc/include/i386-linux-any/asm/msgbuf.h rename to lib/libc/include/i386-linux-any/asm/msgbuf.h diff --git a/libc/include/i386-linux-any/asm/perf_regs.h b/lib/libc/include/i386-linux-any/asm/perf_regs.h similarity index 100% rename from libc/include/i386-linux-any/asm/perf_regs.h rename to lib/libc/include/i386-linux-any/asm/perf_regs.h diff --git a/libc/include/i386-linux-any/asm/posix_types.h b/lib/libc/include/i386-linux-any/asm/posix_types.h similarity index 100% rename from libc/include/i386-linux-any/asm/posix_types.h rename to lib/libc/include/i386-linux-any/asm/posix_types.h diff --git a/libc/include/i386-linux-any/asm/ptrace.h b/lib/libc/include/i386-linux-any/asm/ptrace.h similarity index 100% rename from libc/include/i386-linux-any/asm/ptrace.h rename to lib/libc/include/i386-linux-any/asm/ptrace.h diff --git a/libc/include/i386-linux-any/asm/sembuf.h b/lib/libc/include/i386-linux-any/asm/sembuf.h similarity index 100% rename from libc/include/i386-linux-any/asm/sembuf.h rename to lib/libc/include/i386-linux-any/asm/sembuf.h diff --git a/libc/include/i386-linux-any/asm/setup.h b/lib/libc/include/i386-linux-any/asm/setup.h similarity index 100% rename from libc/include/i386-linux-any/asm/setup.h rename to lib/libc/include/i386-linux-any/asm/setup.h diff --git a/libc/include/i386-linux-any/asm/shmbuf.h b/lib/libc/include/i386-linux-any/asm/shmbuf.h similarity index 100% rename from libc/include/i386-linux-any/asm/shmbuf.h rename to lib/libc/include/i386-linux-any/asm/shmbuf.h diff --git a/libc/include/i386-linux-any/asm/sigcontext.h b/lib/libc/include/i386-linux-any/asm/sigcontext.h similarity index 100% rename from libc/include/i386-linux-any/asm/sigcontext.h rename to lib/libc/include/i386-linux-any/asm/sigcontext.h diff --git a/libc/include/i386-linux-any/asm/siginfo.h b/lib/libc/include/i386-linux-any/asm/siginfo.h similarity index 100% rename from libc/include/i386-linux-any/asm/siginfo.h rename to lib/libc/include/i386-linux-any/asm/siginfo.h diff --git a/libc/include/i386-linux-any/asm/signal.h b/lib/libc/include/i386-linux-any/asm/signal.h similarity index 100% rename from libc/include/i386-linux-any/asm/signal.h rename to lib/libc/include/i386-linux-any/asm/signal.h diff --git a/libc/include/i386-linux-any/asm/stat.h b/lib/libc/include/i386-linux-any/asm/stat.h similarity index 100% rename from libc/include/i386-linux-any/asm/stat.h rename to lib/libc/include/i386-linux-any/asm/stat.h diff --git a/libc/include/i386-linux-any/asm/statfs.h b/lib/libc/include/i386-linux-any/asm/statfs.h similarity index 100% rename from libc/include/i386-linux-any/asm/statfs.h rename to lib/libc/include/i386-linux-any/asm/statfs.h diff --git a/libc/include/i386-linux-any/asm/swab.h b/lib/libc/include/i386-linux-any/asm/swab.h similarity index 100% rename from libc/include/i386-linux-any/asm/swab.h rename to lib/libc/include/i386-linux-any/asm/swab.h diff --git a/libc/include/i386-linux-any/asm/types.h b/lib/libc/include/i386-linux-any/asm/types.h similarity index 100% rename from libc/include/i386-linux-any/asm/types.h rename to lib/libc/include/i386-linux-any/asm/types.h diff --git a/libc/include/i386-linux-any/asm/ucontext.h b/lib/libc/include/i386-linux-any/asm/ucontext.h similarity index 100% rename from libc/include/i386-linux-any/asm/ucontext.h rename to lib/libc/include/i386-linux-any/asm/ucontext.h diff --git a/libc/include/i386-linux-any/asm/unistd.h b/lib/libc/include/i386-linux-any/asm/unistd.h similarity index 100% rename from libc/include/i386-linux-any/asm/unistd.h rename to lib/libc/include/i386-linux-any/asm/unistd.h diff --git a/libc/include/i386-linux-gnu/bits/a.out.h b/lib/libc/include/i386-linux-gnu/bits/a.out.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/a.out.h rename to lib/libc/include/i386-linux-gnu/bits/a.out.h diff --git a/libc/include/i386-linux-gnu/bits/endian.h b/lib/libc/include/i386-linux-gnu/bits/endian.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/endian.h rename to lib/libc/include/i386-linux-gnu/bits/endian.h diff --git a/libc/include/i386-linux-gnu/bits/environments.h b/lib/libc/include/i386-linux-gnu/bits/environments.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/environments.h rename to lib/libc/include/i386-linux-gnu/bits/environments.h diff --git a/libc/include/i386-linux-gnu/bits/epoll.h b/lib/libc/include/i386-linux-gnu/bits/epoll.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/epoll.h rename to lib/libc/include/i386-linux-gnu/bits/epoll.h diff --git a/libc/include/i386-linux-gnu/bits/fcntl.h b/lib/libc/include/i386-linux-gnu/bits/fcntl.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/fcntl.h rename to lib/libc/include/i386-linux-gnu/bits/fcntl.h diff --git a/libc/include/i386-linux-gnu/bits/fenv.h b/lib/libc/include/i386-linux-gnu/bits/fenv.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/fenv.h rename to lib/libc/include/i386-linux-gnu/bits/fenv.h diff --git a/libc/include/i386-linux-gnu/bits/floatn.h b/lib/libc/include/i386-linux-gnu/bits/floatn.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/floatn.h rename to lib/libc/include/i386-linux-gnu/bits/floatn.h diff --git a/libc/include/i386-linux-gnu/bits/flt-eval-method.h b/lib/libc/include/i386-linux-gnu/bits/flt-eval-method.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/flt-eval-method.h rename to lib/libc/include/i386-linux-gnu/bits/flt-eval-method.h diff --git a/libc/include/i386-linux-gnu/bits/fp-logb.h b/lib/libc/include/i386-linux-gnu/bits/fp-logb.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/fp-logb.h rename to lib/libc/include/i386-linux-gnu/bits/fp-logb.h diff --git a/libc/include/i386-linux-gnu/bits/indirect-return.h b/lib/libc/include/i386-linux-gnu/bits/indirect-return.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/indirect-return.h rename to lib/libc/include/i386-linux-gnu/bits/indirect-return.h diff --git a/libc/include/i386-linux-gnu/bits/ipctypes.h b/lib/libc/include/i386-linux-gnu/bits/ipctypes.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/ipctypes.h rename to lib/libc/include/i386-linux-gnu/bits/ipctypes.h diff --git a/libc/include/i386-linux-gnu/bits/iscanonical.h b/lib/libc/include/i386-linux-gnu/bits/iscanonical.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/iscanonical.h rename to lib/libc/include/i386-linux-gnu/bits/iscanonical.h diff --git a/libc/include/i386-linux-gnu/bits/link.h b/lib/libc/include/i386-linux-gnu/bits/link.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/link.h rename to lib/libc/include/i386-linux-gnu/bits/link.h diff --git a/libc/include/i386-linux-gnu/bits/long-double.h b/lib/libc/include/i386-linux-gnu/bits/long-double.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/long-double.h rename to lib/libc/include/i386-linux-gnu/bits/long-double.h diff --git a/libc/include/i386-linux-gnu/bits/math-vector-fortran.h b/lib/libc/include/i386-linux-gnu/bits/math-vector-fortran.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/math-vector-fortran.h rename to lib/libc/include/i386-linux-gnu/bits/math-vector-fortran.h diff --git a/libc/include/i386-linux-gnu/bits/math-vector.h b/lib/libc/include/i386-linux-gnu/bits/math-vector.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/math-vector.h rename to lib/libc/include/i386-linux-gnu/bits/math-vector.h diff --git a/libc/include/i386-linux-gnu/bits/mman.h b/lib/libc/include/i386-linux-gnu/bits/mman.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/mman.h rename to lib/libc/include/i386-linux-gnu/bits/mman.h diff --git a/libc/include/i386-linux-gnu/bits/procfs-id.h b/lib/libc/include/i386-linux-gnu/bits/procfs-id.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/procfs-id.h rename to lib/libc/include/i386-linux-gnu/bits/procfs-id.h diff --git a/libc/include/i386-linux-gnu/bits/procfs.h b/lib/libc/include/i386-linux-gnu/bits/procfs.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/procfs.h rename to lib/libc/include/i386-linux-gnu/bits/procfs.h diff --git a/libc/include/i386-linux-gnu/bits/pthreadtypes-arch.h b/lib/libc/include/i386-linux-gnu/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/pthreadtypes-arch.h rename to lib/libc/include/i386-linux-gnu/bits/pthreadtypes-arch.h diff --git a/libc/include/i386-linux-gnu/bits/select.h b/lib/libc/include/i386-linux-gnu/bits/select.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/select.h rename to lib/libc/include/i386-linux-gnu/bits/select.h diff --git a/libc/include/i386-linux-gnu/bits/sem-pad.h b/lib/libc/include/i386-linux-gnu/bits/sem-pad.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/sem-pad.h rename to lib/libc/include/i386-linux-gnu/bits/sem-pad.h diff --git a/libc/include/i386-linux-gnu/bits/semaphore.h b/lib/libc/include/i386-linux-gnu/bits/semaphore.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/semaphore.h rename to lib/libc/include/i386-linux-gnu/bits/semaphore.h diff --git a/libc/include/i386-linux-gnu/bits/setjmp.h b/lib/libc/include/i386-linux-gnu/bits/setjmp.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/setjmp.h rename to lib/libc/include/i386-linux-gnu/bits/setjmp.h diff --git a/libc/include/i386-linux-gnu/bits/sigcontext.h b/lib/libc/include/i386-linux-gnu/bits/sigcontext.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/sigcontext.h rename to lib/libc/include/i386-linux-gnu/bits/sigcontext.h diff --git a/libc/include/i386-linux-gnu/bits/siginfo-arch.h b/lib/libc/include/i386-linux-gnu/bits/siginfo-arch.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/siginfo-arch.h rename to lib/libc/include/i386-linux-gnu/bits/siginfo-arch.h diff --git a/libc/include/i386-linux-gnu/bits/stat.h b/lib/libc/include/i386-linux-gnu/bits/stat.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/stat.h rename to lib/libc/include/i386-linux-gnu/bits/stat.h diff --git a/libc/include/i386-linux-gnu/bits/sysctl.h b/lib/libc/include/i386-linux-gnu/bits/sysctl.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/sysctl.h rename to lib/libc/include/i386-linux-gnu/bits/sysctl.h diff --git a/libc/include/i386-linux-gnu/bits/timesize.h b/lib/libc/include/i386-linux-gnu/bits/timesize.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/timesize.h rename to lib/libc/include/i386-linux-gnu/bits/timesize.h diff --git a/libc/include/i386-linux-gnu/bits/typesizes.h b/lib/libc/include/i386-linux-gnu/bits/typesizes.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/typesizes.h rename to lib/libc/include/i386-linux-gnu/bits/typesizes.h diff --git a/libc/include/i386-linux-gnu/bits/wordsize.h b/lib/libc/include/i386-linux-gnu/bits/wordsize.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/wordsize.h rename to lib/libc/include/i386-linux-gnu/bits/wordsize.h diff --git a/libc/include/i386-linux-gnu/bits/xtitypes.h b/lib/libc/include/i386-linux-gnu/bits/xtitypes.h similarity index 100% rename from libc/include/i386-linux-gnu/bits/xtitypes.h rename to lib/libc/include/i386-linux-gnu/bits/xtitypes.h diff --git a/libc/include/i386-linux-gnu/fpu_control.h b/lib/libc/include/i386-linux-gnu/fpu_control.h similarity index 100% rename from libc/include/i386-linux-gnu/fpu_control.h rename to lib/libc/include/i386-linux-gnu/fpu_control.h diff --git a/libc/include/i386-linux-gnu/gnu/lib-names.h b/lib/libc/include/i386-linux-gnu/gnu/lib-names.h similarity index 100% rename from libc/include/i386-linux-gnu/gnu/lib-names.h rename to lib/libc/include/i386-linux-gnu/gnu/lib-names.h diff --git a/libc/include/i386-linux-gnu/gnu/stubs.h b/lib/libc/include/i386-linux-gnu/gnu/stubs.h similarity index 100% rename from libc/include/i386-linux-gnu/gnu/stubs.h rename to lib/libc/include/i386-linux-gnu/gnu/stubs.h diff --git a/libc/include/i386-linux-gnu/sys/elf.h b/lib/libc/include/i386-linux-gnu/sys/elf.h similarity index 100% rename from libc/include/i386-linux-gnu/sys/elf.h rename to lib/libc/include/i386-linux-gnu/sys/elf.h diff --git a/libc/include/i386-linux-gnu/sys/io.h b/lib/libc/include/i386-linux-gnu/sys/io.h similarity index 100% rename from libc/include/i386-linux-gnu/sys/io.h rename to lib/libc/include/i386-linux-gnu/sys/io.h diff --git a/libc/include/i386-linux-gnu/sys/ptrace.h b/lib/libc/include/i386-linux-gnu/sys/ptrace.h similarity index 100% rename from libc/include/i386-linux-gnu/sys/ptrace.h rename to lib/libc/include/i386-linux-gnu/sys/ptrace.h diff --git a/libc/include/i386-linux-gnu/sys/ucontext.h b/lib/libc/include/i386-linux-gnu/sys/ucontext.h similarity index 100% rename from libc/include/i386-linux-gnu/sys/ucontext.h rename to lib/libc/include/i386-linux-gnu/sys/ucontext.h diff --git a/libc/include/i386-linux-gnu/sys/user.h b/lib/libc/include/i386-linux-gnu/sys/user.h similarity index 100% rename from libc/include/i386-linux-gnu/sys/user.h rename to lib/libc/include/i386-linux-gnu/sys/user.h diff --git a/libc/include/i386-linux-musl/bfd.h b/lib/libc/include/i386-linux-musl/bfd.h similarity index 100% rename from libc/include/i386-linux-musl/bfd.h rename to lib/libc/include/i386-linux-musl/bfd.h diff --git a/libc/include/i386-linux-musl/bfd_stdint.h b/lib/libc/include/i386-linux-musl/bfd_stdint.h similarity index 100% rename from libc/include/i386-linux-musl/bfd_stdint.h rename to lib/libc/include/i386-linux-musl/bfd_stdint.h diff --git a/libc/include/i386-linux-musl/bits/alltypes.h b/lib/libc/include/i386-linux-musl/bits/alltypes.h similarity index 100% rename from libc/include/i386-linux-musl/bits/alltypes.h rename to lib/libc/include/i386-linux-musl/bits/alltypes.h diff --git a/libc/include/i386-linux-musl/bits/endian.h b/lib/libc/include/i386-linux-musl/bits/endian.h similarity index 100% rename from libc/include/i386-linux-musl/bits/endian.h rename to lib/libc/include/i386-linux-musl/bits/endian.h diff --git a/libc/include/i386-linux-musl/bits/fcntl.h b/lib/libc/include/i386-linux-musl/bits/fcntl.h similarity index 100% rename from libc/include/i386-linux-musl/bits/fcntl.h rename to lib/libc/include/i386-linux-musl/bits/fcntl.h diff --git a/libc/include/i386-linux-musl/bits/fenv.h b/lib/libc/include/i386-linux-musl/bits/fenv.h similarity index 100% rename from libc/include/i386-linux-musl/bits/fenv.h rename to lib/libc/include/i386-linux-musl/bits/fenv.h diff --git a/libc/include/i386-linux-musl/bits/float.h b/lib/libc/include/i386-linux-musl/bits/float.h similarity index 100% rename from libc/include/i386-linux-musl/bits/float.h rename to lib/libc/include/i386-linux-musl/bits/float.h diff --git a/libc/include/i386-linux-musl/bits/io.h b/lib/libc/include/i386-linux-musl/bits/io.h similarity index 100% rename from libc/include/i386-linux-musl/bits/io.h rename to lib/libc/include/i386-linux-musl/bits/io.h diff --git a/libc/include/i386-linux-musl/bits/limits.h b/lib/libc/include/i386-linux-musl/bits/limits.h similarity index 100% rename from libc/include/i386-linux-musl/bits/limits.h rename to lib/libc/include/i386-linux-musl/bits/limits.h diff --git a/libc/include/i386-linux-musl/bits/mman.h b/lib/libc/include/i386-linux-musl/bits/mman.h similarity index 100% rename from libc/include/i386-linux-musl/bits/mman.h rename to lib/libc/include/i386-linux-musl/bits/mman.h diff --git a/libc/include/i386-linux-musl/bits/msg.h b/lib/libc/include/i386-linux-musl/bits/msg.h similarity index 100% rename from libc/include/i386-linux-musl/bits/msg.h rename to lib/libc/include/i386-linux-musl/bits/msg.h diff --git a/libc/include/i386-linux-musl/bits/ptrace.h b/lib/libc/include/i386-linux-musl/bits/ptrace.h similarity index 100% rename from libc/include/i386-linux-musl/bits/ptrace.h rename to lib/libc/include/i386-linux-musl/bits/ptrace.h diff --git a/libc/include/i386-linux-musl/bits/reg.h b/lib/libc/include/i386-linux-musl/bits/reg.h similarity index 100% rename from libc/include/i386-linux-musl/bits/reg.h rename to lib/libc/include/i386-linux-musl/bits/reg.h diff --git a/libc/include/i386-linux-musl/bits/setjmp.h b/lib/libc/include/i386-linux-musl/bits/setjmp.h similarity index 100% rename from libc/include/i386-linux-musl/bits/setjmp.h rename to lib/libc/include/i386-linux-musl/bits/setjmp.h diff --git a/libc/include/i386-linux-musl/bits/shm.h b/lib/libc/include/i386-linux-musl/bits/shm.h similarity index 100% rename from libc/include/i386-linux-musl/bits/shm.h rename to lib/libc/include/i386-linux-musl/bits/shm.h diff --git a/libc/include/i386-linux-musl/bits/signal.h b/lib/libc/include/i386-linux-musl/bits/signal.h similarity index 100% rename from libc/include/i386-linux-musl/bits/signal.h rename to lib/libc/include/i386-linux-musl/bits/signal.h diff --git a/libc/include/i386-linux-musl/bits/stdint.h b/lib/libc/include/i386-linux-musl/bits/stdint.h similarity index 100% rename from libc/include/i386-linux-musl/bits/stdint.h rename to lib/libc/include/i386-linux-musl/bits/stdint.h diff --git a/libc/include/i386-linux-musl/bits/syscall.h b/lib/libc/include/i386-linux-musl/bits/syscall.h similarity index 100% rename from libc/include/i386-linux-musl/bits/syscall.h rename to lib/libc/include/i386-linux-musl/bits/syscall.h diff --git a/libc/include/i386-linux-musl/bits/user.h b/lib/libc/include/i386-linux-musl/bits/user.h similarity index 100% rename from libc/include/i386-linux-musl/bits/user.h rename to lib/libc/include/i386-linux-musl/bits/user.h diff --git a/libc/include/mips-linux-any/asm/auxvec.h b/lib/libc/include/mips-linux-any/asm/auxvec.h similarity index 100% rename from libc/include/mips-linux-any/asm/auxvec.h rename to lib/libc/include/mips-linux-any/asm/auxvec.h diff --git a/libc/include/mips-linux-any/asm/bitsperlong.h b/lib/libc/include/mips-linux-any/asm/bitsperlong.h similarity index 100% rename from libc/include/mips-linux-any/asm/bitsperlong.h rename to lib/libc/include/mips-linux-any/asm/bitsperlong.h diff --git a/libc/include/mips-linux-any/asm/byteorder.h b/lib/libc/include/mips-linux-any/asm/byteorder.h similarity index 100% rename from libc/include/mips-linux-any/asm/byteorder.h rename to lib/libc/include/mips-linux-any/asm/byteorder.h diff --git a/libc/include/mips-linux-any/asm/errno.h b/lib/libc/include/mips-linux-any/asm/errno.h similarity index 100% rename from libc/include/mips-linux-any/asm/errno.h rename to lib/libc/include/mips-linux-any/asm/errno.h diff --git a/libc/include/mips-linux-any/asm/fcntl.h b/lib/libc/include/mips-linux-any/asm/fcntl.h similarity index 100% rename from libc/include/mips-linux-any/asm/fcntl.h rename to lib/libc/include/mips-linux-any/asm/fcntl.h diff --git a/libc/include/mips-linux-any/asm/hwcap.h b/lib/libc/include/mips-linux-any/asm/hwcap.h similarity index 100% rename from libc/include/mips-linux-any/asm/hwcap.h rename to lib/libc/include/mips-linux-any/asm/hwcap.h diff --git a/libc/include/mips-linux-any/asm/ioctl.h b/lib/libc/include/mips-linux-any/asm/ioctl.h similarity index 100% rename from libc/include/mips-linux-any/asm/ioctl.h rename to lib/libc/include/mips-linux-any/asm/ioctl.h diff --git a/libc/include/mips-linux-any/asm/ioctls.h b/lib/libc/include/mips-linux-any/asm/ioctls.h similarity index 100% rename from libc/include/mips-linux-any/asm/ioctls.h rename to lib/libc/include/mips-linux-any/asm/ioctls.h diff --git a/libc/include/mips-linux-any/asm/kvm.h b/lib/libc/include/mips-linux-any/asm/kvm.h similarity index 100% rename from libc/include/mips-linux-any/asm/kvm.h rename to lib/libc/include/mips-linux-any/asm/kvm.h diff --git a/libc/include/mips-linux-any/asm/kvm_para.h b/lib/libc/include/mips-linux-any/asm/kvm_para.h similarity index 100% rename from libc/include/mips-linux-any/asm/kvm_para.h rename to lib/libc/include/mips-linux-any/asm/kvm_para.h diff --git a/libc/include/mips-linux-any/asm/mman.h b/lib/libc/include/mips-linux-any/asm/mman.h similarity index 100% rename from libc/include/mips-linux-any/asm/mman.h rename to lib/libc/include/mips-linux-any/asm/mman.h diff --git a/libc/include/mips-linux-any/asm/msgbuf.h b/lib/libc/include/mips-linux-any/asm/msgbuf.h similarity index 100% rename from libc/include/mips-linux-any/asm/msgbuf.h rename to lib/libc/include/mips-linux-any/asm/msgbuf.h diff --git a/libc/include/mips-linux-any/asm/param.h b/lib/libc/include/mips-linux-any/asm/param.h similarity index 100% rename from libc/include/mips-linux-any/asm/param.h rename to lib/libc/include/mips-linux-any/asm/param.h diff --git a/libc/include/mips-linux-any/asm/poll.h b/lib/libc/include/mips-linux-any/asm/poll.h similarity index 100% rename from libc/include/mips-linux-any/asm/poll.h rename to lib/libc/include/mips-linux-any/asm/poll.h diff --git a/libc/include/mips-linux-any/asm/posix_types.h b/lib/libc/include/mips-linux-any/asm/posix_types.h similarity index 100% rename from libc/include/mips-linux-any/asm/posix_types.h rename to lib/libc/include/mips-linux-any/asm/posix_types.h diff --git a/libc/include/mips-linux-any/asm/ptrace.h b/lib/libc/include/mips-linux-any/asm/ptrace.h similarity index 100% rename from libc/include/mips-linux-any/asm/ptrace.h rename to lib/libc/include/mips-linux-any/asm/ptrace.h diff --git a/libc/include/mips-linux-any/asm/resource.h b/lib/libc/include/mips-linux-any/asm/resource.h similarity index 100% rename from libc/include/mips-linux-any/asm/resource.h rename to lib/libc/include/mips-linux-any/asm/resource.h diff --git a/libc/include/mips-linux-any/asm/sembuf.h b/lib/libc/include/mips-linux-any/asm/sembuf.h similarity index 100% rename from libc/include/mips-linux-any/asm/sembuf.h rename to lib/libc/include/mips-linux-any/asm/sembuf.h diff --git a/libc/include/mips-linux-any/asm/setup.h b/lib/libc/include/mips-linux-any/asm/setup.h similarity index 100% rename from libc/include/mips-linux-any/asm/setup.h rename to lib/libc/include/mips-linux-any/asm/setup.h diff --git a/libc/include/mips-linux-any/asm/shmbuf.h b/lib/libc/include/mips-linux-any/asm/shmbuf.h similarity index 100% rename from libc/include/mips-linux-any/asm/shmbuf.h rename to lib/libc/include/mips-linux-any/asm/shmbuf.h diff --git a/libc/include/mips-linux-any/asm/sigcontext.h b/lib/libc/include/mips-linux-any/asm/sigcontext.h similarity index 100% rename from libc/include/mips-linux-any/asm/sigcontext.h rename to lib/libc/include/mips-linux-any/asm/sigcontext.h diff --git a/libc/include/mips-linux-any/asm/siginfo.h b/lib/libc/include/mips-linux-any/asm/siginfo.h similarity index 100% rename from libc/include/mips-linux-any/asm/siginfo.h rename to lib/libc/include/mips-linux-any/asm/siginfo.h diff --git a/libc/include/mips-linux-any/asm/signal.h b/lib/libc/include/mips-linux-any/asm/signal.h similarity index 100% rename from libc/include/mips-linux-any/asm/signal.h rename to lib/libc/include/mips-linux-any/asm/signal.h diff --git a/libc/include/mips-linux-any/asm/socket.h b/lib/libc/include/mips-linux-any/asm/socket.h similarity index 100% rename from libc/include/mips-linux-any/asm/socket.h rename to lib/libc/include/mips-linux-any/asm/socket.h diff --git a/libc/include/mips-linux-any/asm/sockios.h b/lib/libc/include/mips-linux-any/asm/sockios.h similarity index 100% rename from libc/include/mips-linux-any/asm/sockios.h rename to lib/libc/include/mips-linux-any/asm/sockios.h diff --git a/libc/include/mips-linux-any/asm/stat.h b/lib/libc/include/mips-linux-any/asm/stat.h similarity index 100% rename from libc/include/mips-linux-any/asm/stat.h rename to lib/libc/include/mips-linux-any/asm/stat.h diff --git a/libc/include/mips-linux-any/asm/statfs.h b/lib/libc/include/mips-linux-any/asm/statfs.h similarity index 100% rename from libc/include/mips-linux-any/asm/statfs.h rename to lib/libc/include/mips-linux-any/asm/statfs.h diff --git a/libc/include/mips-linux-any/asm/swab.h b/lib/libc/include/mips-linux-any/asm/swab.h similarity index 100% rename from libc/include/mips-linux-any/asm/swab.h rename to lib/libc/include/mips-linux-any/asm/swab.h diff --git a/libc/include/mips-linux-any/asm/termbits.h b/lib/libc/include/mips-linux-any/asm/termbits.h similarity index 100% rename from libc/include/mips-linux-any/asm/termbits.h rename to lib/libc/include/mips-linux-any/asm/termbits.h diff --git a/libc/include/mips-linux-any/asm/termios.h b/lib/libc/include/mips-linux-any/asm/termios.h similarity index 100% rename from libc/include/mips-linux-any/asm/termios.h rename to lib/libc/include/mips-linux-any/asm/termios.h diff --git a/libc/include/mips-linux-any/asm/types.h b/lib/libc/include/mips-linux-any/asm/types.h similarity index 100% rename from libc/include/mips-linux-any/asm/types.h rename to lib/libc/include/mips-linux-any/asm/types.h diff --git a/libc/include/mips-linux-any/asm/unistd.h b/lib/libc/include/mips-linux-any/asm/unistd.h similarity index 100% rename from libc/include/mips-linux-any/asm/unistd.h rename to lib/libc/include/mips-linux-any/asm/unistd.h diff --git a/libc/include/mips-linux-gnu/bits/dlfcn.h b/lib/libc/include/mips-linux-gnu/bits/dlfcn.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/dlfcn.h rename to lib/libc/include/mips-linux-gnu/bits/dlfcn.h diff --git a/libc/include/mips-linux-gnu/bits/errno.h b/lib/libc/include/mips-linux-gnu/bits/errno.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/errno.h rename to lib/libc/include/mips-linux-gnu/bits/errno.h diff --git a/libc/include/mips-linux-gnu/bits/eventfd.h b/lib/libc/include/mips-linux-gnu/bits/eventfd.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/eventfd.h rename to lib/libc/include/mips-linux-gnu/bits/eventfd.h diff --git a/libc/include/mips-linux-gnu/bits/inotify.h b/lib/libc/include/mips-linux-gnu/bits/inotify.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/inotify.h rename to lib/libc/include/mips-linux-gnu/bits/inotify.h diff --git a/libc/include/mips-linux-gnu/bits/ioctl-types.h b/lib/libc/include/mips-linux-gnu/bits/ioctl-types.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/ioctl-types.h rename to lib/libc/include/mips-linux-gnu/bits/ioctl-types.h diff --git a/libc/include/mips-linux-gnu/bits/ipc.h b/lib/libc/include/mips-linux-gnu/bits/ipc.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/ipc.h rename to lib/libc/include/mips-linux-gnu/bits/ipc.h diff --git a/libc/include/mips-linux-gnu/bits/ipctypes.h b/lib/libc/include/mips-linux-gnu/bits/ipctypes.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/ipctypes.h rename to lib/libc/include/mips-linux-gnu/bits/ipctypes.h diff --git a/libc/include/mips-linux-gnu/bits/local_lim.h b/lib/libc/include/mips-linux-gnu/bits/local_lim.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/local_lim.h rename to lib/libc/include/mips-linux-gnu/bits/local_lim.h diff --git a/libc/include/mips-linux-gnu/bits/mman.h b/lib/libc/include/mips-linux-gnu/bits/mman.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/mman.h rename to lib/libc/include/mips-linux-gnu/bits/mman.h diff --git a/libc/include/mips-linux-gnu/bits/msq-pad.h b/lib/libc/include/mips-linux-gnu/bits/msq-pad.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/msq-pad.h rename to lib/libc/include/mips-linux-gnu/bits/msq-pad.h diff --git a/libc/include/mips-linux-gnu/bits/poll.h b/lib/libc/include/mips-linux-gnu/bits/poll.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/poll.h rename to lib/libc/include/mips-linux-gnu/bits/poll.h diff --git a/libc/include/mips-linux-gnu/bits/resource.h b/lib/libc/include/mips-linux-gnu/bits/resource.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/resource.h rename to lib/libc/include/mips-linux-gnu/bits/resource.h diff --git a/libc/include/mips-linux-gnu/bits/sem-pad.h b/lib/libc/include/mips-linux-gnu/bits/sem-pad.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/sem-pad.h rename to lib/libc/include/mips-linux-gnu/bits/sem-pad.h diff --git a/libc/include/mips-linux-gnu/bits/shm-pad.h b/lib/libc/include/mips-linux-gnu/bits/shm-pad.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/shm-pad.h rename to lib/libc/include/mips-linux-gnu/bits/shm-pad.h diff --git a/libc/include/mips-linux-gnu/bits/shmlba.h b/lib/libc/include/mips-linux-gnu/bits/shmlba.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/shmlba.h rename to lib/libc/include/mips-linux-gnu/bits/shmlba.h diff --git a/libc/include/mips-linux-gnu/bits/sigaction.h b/lib/libc/include/mips-linux-gnu/bits/sigaction.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/sigaction.h rename to lib/libc/include/mips-linux-gnu/bits/sigaction.h diff --git a/libc/include/mips-linux-gnu/bits/sigcontext.h b/lib/libc/include/mips-linux-gnu/bits/sigcontext.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/sigcontext.h rename to lib/libc/include/mips-linux-gnu/bits/sigcontext.h diff --git a/libc/include/mips-linux-gnu/bits/siginfo-arch.h b/lib/libc/include/mips-linux-gnu/bits/siginfo-arch.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/siginfo-arch.h rename to lib/libc/include/mips-linux-gnu/bits/siginfo-arch.h diff --git a/libc/include/mips-linux-gnu/bits/signalfd.h b/lib/libc/include/mips-linux-gnu/bits/signalfd.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/signalfd.h rename to lib/libc/include/mips-linux-gnu/bits/signalfd.h diff --git a/libc/include/mips-linux-gnu/bits/signum.h b/lib/libc/include/mips-linux-gnu/bits/signum.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/signum.h rename to lib/libc/include/mips-linux-gnu/bits/signum.h diff --git a/libc/include/mips-linux-gnu/bits/socket_type.h b/lib/libc/include/mips-linux-gnu/bits/socket_type.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/socket_type.h rename to lib/libc/include/mips-linux-gnu/bits/socket_type.h diff --git a/libc/include/mips-linux-gnu/bits/statfs.h b/lib/libc/include/mips-linux-gnu/bits/statfs.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/statfs.h rename to lib/libc/include/mips-linux-gnu/bits/statfs.h diff --git a/libc/include/mips-linux-gnu/bits/termios-c_cc.h b/lib/libc/include/mips-linux-gnu/bits/termios-c_cc.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/termios-c_cc.h rename to lib/libc/include/mips-linux-gnu/bits/termios-c_cc.h diff --git a/libc/include/mips-linux-gnu/bits/termios-c_lflag.h b/lib/libc/include/mips-linux-gnu/bits/termios-c_lflag.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/termios-c_lflag.h rename to lib/libc/include/mips-linux-gnu/bits/termios-c_lflag.h diff --git a/libc/include/mips-linux-gnu/bits/termios-struct.h b/lib/libc/include/mips-linux-gnu/bits/termios-struct.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/termios-struct.h rename to lib/libc/include/mips-linux-gnu/bits/termios-struct.h diff --git a/libc/include/mips-linux-gnu/bits/termios-tcflow.h b/lib/libc/include/mips-linux-gnu/bits/termios-tcflow.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/termios-tcflow.h rename to lib/libc/include/mips-linux-gnu/bits/termios-tcflow.h diff --git a/libc/include/mips-linux-gnu/bits/timerfd.h b/lib/libc/include/mips-linux-gnu/bits/timerfd.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/timerfd.h rename to lib/libc/include/mips-linux-gnu/bits/timerfd.h diff --git a/libc/include/mips-linux-gnu/bits/types/stack_t.h b/lib/libc/include/mips-linux-gnu/bits/types/stack_t.h similarity index 100% rename from libc/include/mips-linux-gnu/bits/types/stack_t.h rename to lib/libc/include/mips-linux-gnu/bits/types/stack_t.h diff --git a/libc/include/mips-linux-gnu/ieee754.h b/lib/libc/include/mips-linux-gnu/ieee754.h similarity index 100% rename from libc/include/mips-linux-gnu/ieee754.h rename to lib/libc/include/mips-linux-gnu/ieee754.h diff --git a/libc/include/mips-linux-musl/bfd.h b/lib/libc/include/mips-linux-musl/bfd.h similarity index 100% rename from libc/include/mips-linux-musl/bfd.h rename to lib/libc/include/mips-linux-musl/bfd.h diff --git a/libc/include/mips-linux-musl/bfd_stdint.h b/lib/libc/include/mips-linux-musl/bfd_stdint.h similarity index 100% rename from libc/include/mips-linux-musl/bfd_stdint.h rename to lib/libc/include/mips-linux-musl/bfd_stdint.h diff --git a/libc/include/mips-linux-musl/bits/alltypes.h b/lib/libc/include/mips-linux-musl/bits/alltypes.h similarity index 100% rename from libc/include/mips-linux-musl/bits/alltypes.h rename to lib/libc/include/mips-linux-musl/bits/alltypes.h diff --git a/libc/include/mips-linux-musl/bits/endian.h b/lib/libc/include/mips-linux-musl/bits/endian.h similarity index 100% rename from libc/include/mips-linux-musl/bits/endian.h rename to lib/libc/include/mips-linux-musl/bits/endian.h diff --git a/libc/include/mips-linux-musl/bits/errno.h b/lib/libc/include/mips-linux-musl/bits/errno.h similarity index 100% rename from libc/include/mips-linux-musl/bits/errno.h rename to lib/libc/include/mips-linux-musl/bits/errno.h diff --git a/libc/include/mips-linux-musl/bits/fcntl.h b/lib/libc/include/mips-linux-musl/bits/fcntl.h similarity index 100% rename from libc/include/mips-linux-musl/bits/fcntl.h rename to lib/libc/include/mips-linux-musl/bits/fcntl.h diff --git a/libc/include/mips-linux-musl/bits/fenv.h b/lib/libc/include/mips-linux-musl/bits/fenv.h similarity index 100% rename from libc/include/mips-linux-musl/bits/fenv.h rename to lib/libc/include/mips-linux-musl/bits/fenv.h diff --git a/libc/include/mips-linux-musl/bits/hwcap.h b/lib/libc/include/mips-linux-musl/bits/hwcap.h similarity index 100% rename from libc/include/mips-linux-musl/bits/hwcap.h rename to lib/libc/include/mips-linux-musl/bits/hwcap.h diff --git a/libc/include/mips-linux-musl/bits/ioctl.h b/lib/libc/include/mips-linux-musl/bits/ioctl.h similarity index 100% rename from libc/include/mips-linux-musl/bits/ioctl.h rename to lib/libc/include/mips-linux-musl/bits/ioctl.h diff --git a/libc/include/mips-linux-musl/bits/mman.h b/lib/libc/include/mips-linux-musl/bits/mman.h similarity index 100% rename from libc/include/mips-linux-musl/bits/mman.h rename to lib/libc/include/mips-linux-musl/bits/mman.h diff --git a/libc/include/mips-linux-musl/bits/msg.h b/lib/libc/include/mips-linux-musl/bits/msg.h similarity index 100% rename from libc/include/mips-linux-musl/bits/msg.h rename to lib/libc/include/mips-linux-musl/bits/msg.h diff --git a/libc/include/mips-linux-musl/bits/poll.h b/lib/libc/include/mips-linux-musl/bits/poll.h similarity index 100% rename from libc/include/mips-linux-musl/bits/poll.h rename to lib/libc/include/mips-linux-musl/bits/poll.h diff --git a/libc/include/mips-linux-musl/bits/ptrace.h b/lib/libc/include/mips-linux-musl/bits/ptrace.h similarity index 100% rename from libc/include/mips-linux-musl/bits/ptrace.h rename to lib/libc/include/mips-linux-musl/bits/ptrace.h diff --git a/libc/include/mips-linux-musl/bits/reg.h b/lib/libc/include/mips-linux-musl/bits/reg.h similarity index 100% rename from libc/include/mips-linux-musl/bits/reg.h rename to lib/libc/include/mips-linux-musl/bits/reg.h diff --git a/libc/include/mips-linux-musl/bits/resource.h b/lib/libc/include/mips-linux-musl/bits/resource.h similarity index 100% rename from libc/include/mips-linux-musl/bits/resource.h rename to lib/libc/include/mips-linux-musl/bits/resource.h diff --git a/libc/include/mips-linux-musl/bits/sem.h b/lib/libc/include/mips-linux-musl/bits/sem.h similarity index 100% rename from libc/include/mips-linux-musl/bits/sem.h rename to lib/libc/include/mips-linux-musl/bits/sem.h diff --git a/libc/include/mips-linux-musl/bits/setjmp.h b/lib/libc/include/mips-linux-musl/bits/setjmp.h similarity index 100% rename from libc/include/mips-linux-musl/bits/setjmp.h rename to lib/libc/include/mips-linux-musl/bits/setjmp.h diff --git a/libc/include/mips-linux-musl/bits/signal.h b/lib/libc/include/mips-linux-musl/bits/signal.h similarity index 100% rename from libc/include/mips-linux-musl/bits/signal.h rename to lib/libc/include/mips-linux-musl/bits/signal.h diff --git a/libc/include/mips-linux-musl/bits/socket.h b/lib/libc/include/mips-linux-musl/bits/socket.h similarity index 100% rename from libc/include/mips-linux-musl/bits/socket.h rename to lib/libc/include/mips-linux-musl/bits/socket.h diff --git a/libc/include/mips-linux-musl/bits/stat.h b/lib/libc/include/mips-linux-musl/bits/stat.h similarity index 100% rename from libc/include/mips-linux-musl/bits/stat.h rename to lib/libc/include/mips-linux-musl/bits/stat.h diff --git a/libc/include/mips-linux-musl/bits/statfs.h b/lib/libc/include/mips-linux-musl/bits/statfs.h similarity index 100% rename from libc/include/mips-linux-musl/bits/statfs.h rename to lib/libc/include/mips-linux-musl/bits/statfs.h diff --git a/libc/include/mips-linux-musl/bits/stdint.h b/lib/libc/include/mips-linux-musl/bits/stdint.h similarity index 100% rename from libc/include/mips-linux-musl/bits/stdint.h rename to lib/libc/include/mips-linux-musl/bits/stdint.h diff --git a/libc/include/mips-linux-musl/bits/syscall.h b/lib/libc/include/mips-linux-musl/bits/syscall.h similarity index 100% rename from libc/include/mips-linux-musl/bits/syscall.h rename to lib/libc/include/mips-linux-musl/bits/syscall.h diff --git a/libc/include/mips-linux-musl/bits/termios.h b/lib/libc/include/mips-linux-musl/bits/termios.h similarity index 100% rename from libc/include/mips-linux-musl/bits/termios.h rename to lib/libc/include/mips-linux-musl/bits/termios.h diff --git a/libc/include/mips-linux-musl/bits/user.h b/lib/libc/include/mips-linux-musl/bits/user.h similarity index 100% rename from libc/include/mips-linux-musl/bits/user.h rename to lib/libc/include/mips-linux-musl/bits/user.h diff --git a/libc/include/mips64-linux-any/asm/auxvec.h b/lib/libc/include/mips64-linux-any/asm/auxvec.h similarity index 100% rename from libc/include/mips64-linux-any/asm/auxvec.h rename to lib/libc/include/mips64-linux-any/asm/auxvec.h diff --git a/libc/include/mips64-linux-any/asm/bitsperlong.h b/lib/libc/include/mips64-linux-any/asm/bitsperlong.h similarity index 100% rename from libc/include/mips64-linux-any/asm/bitsperlong.h rename to lib/libc/include/mips64-linux-any/asm/bitsperlong.h diff --git a/libc/include/mips64-linux-any/asm/byteorder.h b/lib/libc/include/mips64-linux-any/asm/byteorder.h similarity index 100% rename from libc/include/mips64-linux-any/asm/byteorder.h rename to lib/libc/include/mips64-linux-any/asm/byteorder.h diff --git a/libc/include/mips64-linux-any/asm/errno.h b/lib/libc/include/mips64-linux-any/asm/errno.h similarity index 100% rename from libc/include/mips64-linux-any/asm/errno.h rename to lib/libc/include/mips64-linux-any/asm/errno.h diff --git a/libc/include/mips64-linux-any/asm/fcntl.h b/lib/libc/include/mips64-linux-any/asm/fcntl.h similarity index 100% rename from libc/include/mips64-linux-any/asm/fcntl.h rename to lib/libc/include/mips64-linux-any/asm/fcntl.h diff --git a/libc/include/mips64-linux-any/asm/hwcap.h b/lib/libc/include/mips64-linux-any/asm/hwcap.h similarity index 100% rename from libc/include/mips64-linux-any/asm/hwcap.h rename to lib/libc/include/mips64-linux-any/asm/hwcap.h diff --git a/libc/include/mips64-linux-any/asm/ioctl.h b/lib/libc/include/mips64-linux-any/asm/ioctl.h similarity index 100% rename from libc/include/mips64-linux-any/asm/ioctl.h rename to lib/libc/include/mips64-linux-any/asm/ioctl.h diff --git a/libc/include/mips64-linux-any/asm/ioctls.h b/lib/libc/include/mips64-linux-any/asm/ioctls.h similarity index 100% rename from libc/include/mips64-linux-any/asm/ioctls.h rename to lib/libc/include/mips64-linux-any/asm/ioctls.h diff --git a/libc/include/mips64-linux-any/asm/kvm.h b/lib/libc/include/mips64-linux-any/asm/kvm.h similarity index 100% rename from libc/include/mips64-linux-any/asm/kvm.h rename to lib/libc/include/mips64-linux-any/asm/kvm.h diff --git a/libc/include/mips64-linux-any/asm/kvm_para.h b/lib/libc/include/mips64-linux-any/asm/kvm_para.h similarity index 100% rename from libc/include/mips64-linux-any/asm/kvm_para.h rename to lib/libc/include/mips64-linux-any/asm/kvm_para.h diff --git a/libc/include/mips64-linux-any/asm/mman.h b/lib/libc/include/mips64-linux-any/asm/mman.h similarity index 100% rename from libc/include/mips64-linux-any/asm/mman.h rename to lib/libc/include/mips64-linux-any/asm/mman.h diff --git a/libc/include/mips64-linux-any/asm/msgbuf.h b/lib/libc/include/mips64-linux-any/asm/msgbuf.h similarity index 100% rename from libc/include/mips64-linux-any/asm/msgbuf.h rename to lib/libc/include/mips64-linux-any/asm/msgbuf.h diff --git a/libc/include/mips64-linux-any/asm/param.h b/lib/libc/include/mips64-linux-any/asm/param.h similarity index 100% rename from libc/include/mips64-linux-any/asm/param.h rename to lib/libc/include/mips64-linux-any/asm/param.h diff --git a/libc/include/mips64-linux-any/asm/poll.h b/lib/libc/include/mips64-linux-any/asm/poll.h similarity index 100% rename from libc/include/mips64-linux-any/asm/poll.h rename to lib/libc/include/mips64-linux-any/asm/poll.h diff --git a/libc/include/mips64-linux-any/asm/posix_types.h b/lib/libc/include/mips64-linux-any/asm/posix_types.h similarity index 100% rename from libc/include/mips64-linux-any/asm/posix_types.h rename to lib/libc/include/mips64-linux-any/asm/posix_types.h diff --git a/libc/include/mips64-linux-any/asm/ptrace.h b/lib/libc/include/mips64-linux-any/asm/ptrace.h similarity index 100% rename from libc/include/mips64-linux-any/asm/ptrace.h rename to lib/libc/include/mips64-linux-any/asm/ptrace.h diff --git a/libc/include/mips64-linux-any/asm/resource.h b/lib/libc/include/mips64-linux-any/asm/resource.h similarity index 100% rename from libc/include/mips64-linux-any/asm/resource.h rename to lib/libc/include/mips64-linux-any/asm/resource.h diff --git a/libc/include/mips64-linux-any/asm/sembuf.h b/lib/libc/include/mips64-linux-any/asm/sembuf.h similarity index 100% rename from libc/include/mips64-linux-any/asm/sembuf.h rename to lib/libc/include/mips64-linux-any/asm/sembuf.h diff --git a/libc/include/mips64-linux-any/asm/setup.h b/lib/libc/include/mips64-linux-any/asm/setup.h similarity index 100% rename from libc/include/mips64-linux-any/asm/setup.h rename to lib/libc/include/mips64-linux-any/asm/setup.h diff --git a/libc/include/mips64-linux-any/asm/shmbuf.h b/lib/libc/include/mips64-linux-any/asm/shmbuf.h similarity index 100% rename from libc/include/mips64-linux-any/asm/shmbuf.h rename to lib/libc/include/mips64-linux-any/asm/shmbuf.h diff --git a/libc/include/mips64-linux-any/asm/sigcontext.h b/lib/libc/include/mips64-linux-any/asm/sigcontext.h similarity index 100% rename from libc/include/mips64-linux-any/asm/sigcontext.h rename to lib/libc/include/mips64-linux-any/asm/sigcontext.h diff --git a/libc/include/mips64-linux-any/asm/siginfo.h b/lib/libc/include/mips64-linux-any/asm/siginfo.h similarity index 100% rename from libc/include/mips64-linux-any/asm/siginfo.h rename to lib/libc/include/mips64-linux-any/asm/siginfo.h diff --git a/libc/include/mips64-linux-any/asm/signal.h b/lib/libc/include/mips64-linux-any/asm/signal.h similarity index 100% rename from libc/include/mips64-linux-any/asm/signal.h rename to lib/libc/include/mips64-linux-any/asm/signal.h diff --git a/libc/include/mips64-linux-any/asm/socket.h b/lib/libc/include/mips64-linux-any/asm/socket.h similarity index 100% rename from libc/include/mips64-linux-any/asm/socket.h rename to lib/libc/include/mips64-linux-any/asm/socket.h diff --git a/libc/include/mips64-linux-any/asm/sockios.h b/lib/libc/include/mips64-linux-any/asm/sockios.h similarity index 100% rename from libc/include/mips64-linux-any/asm/sockios.h rename to lib/libc/include/mips64-linux-any/asm/sockios.h diff --git a/libc/include/mips64-linux-any/asm/stat.h b/lib/libc/include/mips64-linux-any/asm/stat.h similarity index 100% rename from libc/include/mips64-linux-any/asm/stat.h rename to lib/libc/include/mips64-linux-any/asm/stat.h diff --git a/libc/include/mips64-linux-any/asm/statfs.h b/lib/libc/include/mips64-linux-any/asm/statfs.h similarity index 100% rename from libc/include/mips64-linux-any/asm/statfs.h rename to lib/libc/include/mips64-linux-any/asm/statfs.h diff --git a/libc/include/mips64-linux-any/asm/swab.h b/lib/libc/include/mips64-linux-any/asm/swab.h similarity index 100% rename from libc/include/mips64-linux-any/asm/swab.h rename to lib/libc/include/mips64-linux-any/asm/swab.h diff --git a/libc/include/mips64-linux-any/asm/termbits.h b/lib/libc/include/mips64-linux-any/asm/termbits.h similarity index 100% rename from libc/include/mips64-linux-any/asm/termbits.h rename to lib/libc/include/mips64-linux-any/asm/termbits.h diff --git a/libc/include/mips64-linux-any/asm/termios.h b/lib/libc/include/mips64-linux-any/asm/termios.h similarity index 100% rename from libc/include/mips64-linux-any/asm/termios.h rename to lib/libc/include/mips64-linux-any/asm/termios.h diff --git a/libc/include/mips64-linux-any/asm/types.h b/lib/libc/include/mips64-linux-any/asm/types.h similarity index 100% rename from libc/include/mips64-linux-any/asm/types.h rename to lib/libc/include/mips64-linux-any/asm/types.h diff --git a/libc/include/mips64-linux-any/asm/unistd.h b/lib/libc/include/mips64-linux-any/asm/unistd.h similarity index 100% rename from libc/include/mips64-linux-any/asm/unistd.h rename to lib/libc/include/mips64-linux-any/asm/unistd.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/dlfcn.h b/lib/libc/include/mips64-linux-gnuabi64/bits/dlfcn.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/dlfcn.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/dlfcn.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/errno.h b/lib/libc/include/mips64-linux-gnuabi64/bits/errno.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/errno.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/errno.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/eventfd.h b/lib/libc/include/mips64-linux-gnuabi64/bits/eventfd.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/eventfd.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/eventfd.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/inotify.h b/lib/libc/include/mips64-linux-gnuabi64/bits/inotify.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/inotify.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/inotify.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/ioctl-types.h b/lib/libc/include/mips64-linux-gnuabi64/bits/ioctl-types.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/ioctl-types.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/ioctl-types.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/ipc.h b/lib/libc/include/mips64-linux-gnuabi64/bits/ipc.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/ipc.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/ipc.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/ipctypes.h b/lib/libc/include/mips64-linux-gnuabi64/bits/ipctypes.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/ipctypes.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/ipctypes.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/local_lim.h b/lib/libc/include/mips64-linux-gnuabi64/bits/local_lim.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/local_lim.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/local_lim.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/mman.h b/lib/libc/include/mips64-linux-gnuabi64/bits/mman.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/mman.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/mman.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/msq-pad.h b/lib/libc/include/mips64-linux-gnuabi64/bits/msq-pad.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/msq-pad.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/msq-pad.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/poll.h b/lib/libc/include/mips64-linux-gnuabi64/bits/poll.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/poll.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/poll.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/resource.h b/lib/libc/include/mips64-linux-gnuabi64/bits/resource.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/resource.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/resource.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/sem-pad.h b/lib/libc/include/mips64-linux-gnuabi64/bits/sem-pad.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/sem-pad.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/sem-pad.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/shm-pad.h b/lib/libc/include/mips64-linux-gnuabi64/bits/shm-pad.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/shm-pad.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/shm-pad.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/shmlba.h b/lib/libc/include/mips64-linux-gnuabi64/bits/shmlba.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/shmlba.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/shmlba.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/sigaction.h b/lib/libc/include/mips64-linux-gnuabi64/bits/sigaction.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/sigaction.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/sigaction.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/sigcontext.h b/lib/libc/include/mips64-linux-gnuabi64/bits/sigcontext.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/sigcontext.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/sigcontext.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/siginfo-arch.h b/lib/libc/include/mips64-linux-gnuabi64/bits/siginfo-arch.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/siginfo-arch.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/siginfo-arch.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/signalfd.h b/lib/libc/include/mips64-linux-gnuabi64/bits/signalfd.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/signalfd.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/signalfd.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/signum.h b/lib/libc/include/mips64-linux-gnuabi64/bits/signum.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/signum.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/signum.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/socket_type.h b/lib/libc/include/mips64-linux-gnuabi64/bits/socket_type.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/socket_type.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/socket_type.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/statfs.h b/lib/libc/include/mips64-linux-gnuabi64/bits/statfs.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/statfs.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/statfs.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/termios-c_cc.h b/lib/libc/include/mips64-linux-gnuabi64/bits/termios-c_cc.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/termios-c_cc.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/termios-c_cc.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/termios-c_lflag.h b/lib/libc/include/mips64-linux-gnuabi64/bits/termios-c_lflag.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/termios-c_lflag.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/termios-c_lflag.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/termios-struct.h b/lib/libc/include/mips64-linux-gnuabi64/bits/termios-struct.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/termios-struct.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/termios-struct.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/termios-tcflow.h b/lib/libc/include/mips64-linux-gnuabi64/bits/termios-tcflow.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/termios-tcflow.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/termios-tcflow.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/timerfd.h b/lib/libc/include/mips64-linux-gnuabi64/bits/timerfd.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/timerfd.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/timerfd.h diff --git a/libc/include/mips64-linux-gnuabi64/bits/types/stack_t.h b/lib/libc/include/mips64-linux-gnuabi64/bits/types/stack_t.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/bits/types/stack_t.h rename to lib/libc/include/mips64-linux-gnuabi64/bits/types/stack_t.h diff --git a/libc/include/mips64-linux-gnuabi64/ieee754.h b/lib/libc/include/mips64-linux-gnuabi64/ieee754.h similarity index 100% rename from libc/include/mips64-linux-gnuabi64/ieee754.h rename to lib/libc/include/mips64-linux-gnuabi64/ieee754.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/dlfcn.h b/lib/libc/include/mips64-linux-gnuabin32/bits/dlfcn.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/dlfcn.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/dlfcn.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/errno.h b/lib/libc/include/mips64-linux-gnuabin32/bits/errno.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/errno.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/errno.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/eventfd.h b/lib/libc/include/mips64-linux-gnuabin32/bits/eventfd.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/eventfd.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/eventfd.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/inotify.h b/lib/libc/include/mips64-linux-gnuabin32/bits/inotify.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/inotify.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/inotify.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/ioctl-types.h b/lib/libc/include/mips64-linux-gnuabin32/bits/ioctl-types.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/ioctl-types.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/ioctl-types.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/ipc.h b/lib/libc/include/mips64-linux-gnuabin32/bits/ipc.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/ipc.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/ipc.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/ipctypes.h b/lib/libc/include/mips64-linux-gnuabin32/bits/ipctypes.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/ipctypes.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/ipctypes.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/local_lim.h b/lib/libc/include/mips64-linux-gnuabin32/bits/local_lim.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/local_lim.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/local_lim.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/mman.h b/lib/libc/include/mips64-linux-gnuabin32/bits/mman.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/mman.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/mman.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/msq-pad.h b/lib/libc/include/mips64-linux-gnuabin32/bits/msq-pad.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/msq-pad.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/msq-pad.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/poll.h b/lib/libc/include/mips64-linux-gnuabin32/bits/poll.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/poll.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/poll.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/resource.h b/lib/libc/include/mips64-linux-gnuabin32/bits/resource.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/resource.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/resource.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/sem-pad.h b/lib/libc/include/mips64-linux-gnuabin32/bits/sem-pad.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/sem-pad.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/sem-pad.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/shm-pad.h b/lib/libc/include/mips64-linux-gnuabin32/bits/shm-pad.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/shm-pad.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/shm-pad.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/shmlba.h b/lib/libc/include/mips64-linux-gnuabin32/bits/shmlba.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/shmlba.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/shmlba.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/sigaction.h b/lib/libc/include/mips64-linux-gnuabin32/bits/sigaction.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/sigaction.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/sigaction.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/sigcontext.h b/lib/libc/include/mips64-linux-gnuabin32/bits/sigcontext.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/sigcontext.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/sigcontext.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/siginfo-arch.h b/lib/libc/include/mips64-linux-gnuabin32/bits/siginfo-arch.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/siginfo-arch.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/siginfo-arch.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/signalfd.h b/lib/libc/include/mips64-linux-gnuabin32/bits/signalfd.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/signalfd.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/signalfd.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/signum.h b/lib/libc/include/mips64-linux-gnuabin32/bits/signum.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/signum.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/signum.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/socket_type.h b/lib/libc/include/mips64-linux-gnuabin32/bits/socket_type.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/socket_type.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/socket_type.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/statfs.h b/lib/libc/include/mips64-linux-gnuabin32/bits/statfs.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/statfs.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/statfs.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/termios-c_cc.h b/lib/libc/include/mips64-linux-gnuabin32/bits/termios-c_cc.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/termios-c_cc.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/termios-c_cc.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/termios-c_lflag.h b/lib/libc/include/mips64-linux-gnuabin32/bits/termios-c_lflag.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/termios-c_lflag.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/termios-c_lflag.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/termios-struct.h b/lib/libc/include/mips64-linux-gnuabin32/bits/termios-struct.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/termios-struct.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/termios-struct.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/termios-tcflow.h b/lib/libc/include/mips64-linux-gnuabin32/bits/termios-tcflow.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/termios-tcflow.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/termios-tcflow.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/timerfd.h b/lib/libc/include/mips64-linux-gnuabin32/bits/timerfd.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/timerfd.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/timerfd.h diff --git a/libc/include/mips64-linux-gnuabin32/bits/types/stack_t.h b/lib/libc/include/mips64-linux-gnuabin32/bits/types/stack_t.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/bits/types/stack_t.h rename to lib/libc/include/mips64-linux-gnuabin32/bits/types/stack_t.h diff --git a/libc/include/mips64-linux-gnuabin32/ieee754.h b/lib/libc/include/mips64-linux-gnuabin32/ieee754.h similarity index 100% rename from libc/include/mips64-linux-gnuabin32/ieee754.h rename to lib/libc/include/mips64-linux-gnuabin32/ieee754.h diff --git a/libc/include/mips64-linux-musl/bfd_stdint.h b/lib/libc/include/mips64-linux-musl/bfd_stdint.h similarity index 100% rename from libc/include/mips64-linux-musl/bfd_stdint.h rename to lib/libc/include/mips64-linux-musl/bfd_stdint.h diff --git a/libc/include/mips64-linux-musl/bits/alltypes.h b/lib/libc/include/mips64-linux-musl/bits/alltypes.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/alltypes.h rename to lib/libc/include/mips64-linux-musl/bits/alltypes.h diff --git a/libc/include/mips64-linux-musl/bits/endian.h b/lib/libc/include/mips64-linux-musl/bits/endian.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/endian.h rename to lib/libc/include/mips64-linux-musl/bits/endian.h diff --git a/libc/include/mips64-linux-musl/bits/errno.h b/lib/libc/include/mips64-linux-musl/bits/errno.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/errno.h rename to lib/libc/include/mips64-linux-musl/bits/errno.h diff --git a/libc/include/mips64-linux-musl/bits/fcntl.h b/lib/libc/include/mips64-linux-musl/bits/fcntl.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/fcntl.h rename to lib/libc/include/mips64-linux-musl/bits/fcntl.h diff --git a/libc/include/mips64-linux-musl/bits/fenv.h b/lib/libc/include/mips64-linux-musl/bits/fenv.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/fenv.h rename to lib/libc/include/mips64-linux-musl/bits/fenv.h diff --git a/libc/include/mips64-linux-musl/bits/float.h b/lib/libc/include/mips64-linux-musl/bits/float.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/float.h rename to lib/libc/include/mips64-linux-musl/bits/float.h diff --git a/libc/include/mips64-linux-musl/bits/hwcap.h b/lib/libc/include/mips64-linux-musl/bits/hwcap.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/hwcap.h rename to lib/libc/include/mips64-linux-musl/bits/hwcap.h diff --git a/libc/include/mips64-linux-musl/bits/ioctl.h b/lib/libc/include/mips64-linux-musl/bits/ioctl.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/ioctl.h rename to lib/libc/include/mips64-linux-musl/bits/ioctl.h diff --git a/libc/include/mips64-linux-musl/bits/ipc.h b/lib/libc/include/mips64-linux-musl/bits/ipc.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/ipc.h rename to lib/libc/include/mips64-linux-musl/bits/ipc.h diff --git a/libc/include/mips64-linux-musl/bits/limits.h b/lib/libc/include/mips64-linux-musl/bits/limits.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/limits.h rename to lib/libc/include/mips64-linux-musl/bits/limits.h diff --git a/libc/include/mips64-linux-musl/bits/mman.h b/lib/libc/include/mips64-linux-musl/bits/mman.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/mman.h rename to lib/libc/include/mips64-linux-musl/bits/mman.h diff --git a/libc/include/mips64-linux-musl/bits/poll.h b/lib/libc/include/mips64-linux-musl/bits/poll.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/poll.h rename to lib/libc/include/mips64-linux-musl/bits/poll.h diff --git a/libc/include/mips64-linux-musl/bits/posix.h b/lib/libc/include/mips64-linux-musl/bits/posix.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/posix.h rename to lib/libc/include/mips64-linux-musl/bits/posix.h diff --git a/libc/include/mips64-linux-musl/bits/ptrace.h b/lib/libc/include/mips64-linux-musl/bits/ptrace.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/ptrace.h rename to lib/libc/include/mips64-linux-musl/bits/ptrace.h diff --git a/libc/include/mips64-linux-musl/bits/reg.h b/lib/libc/include/mips64-linux-musl/bits/reg.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/reg.h rename to lib/libc/include/mips64-linux-musl/bits/reg.h diff --git a/libc/include/mips64-linux-musl/bits/resource.h b/lib/libc/include/mips64-linux-musl/bits/resource.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/resource.h rename to lib/libc/include/mips64-linux-musl/bits/resource.h diff --git a/libc/include/mips64-linux-musl/bits/sem.h b/lib/libc/include/mips64-linux-musl/bits/sem.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/sem.h rename to lib/libc/include/mips64-linux-musl/bits/sem.h diff --git a/libc/include/mips64-linux-musl/bits/setjmp.h b/lib/libc/include/mips64-linux-musl/bits/setjmp.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/setjmp.h rename to lib/libc/include/mips64-linux-musl/bits/setjmp.h diff --git a/libc/include/mips64-linux-musl/bits/signal.h b/lib/libc/include/mips64-linux-musl/bits/signal.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/signal.h rename to lib/libc/include/mips64-linux-musl/bits/signal.h diff --git a/libc/include/mips64-linux-musl/bits/socket.h b/lib/libc/include/mips64-linux-musl/bits/socket.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/socket.h rename to lib/libc/include/mips64-linux-musl/bits/socket.h diff --git a/libc/include/mips64-linux-musl/bits/stat.h b/lib/libc/include/mips64-linux-musl/bits/stat.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/stat.h rename to lib/libc/include/mips64-linux-musl/bits/stat.h diff --git a/libc/include/mips64-linux-musl/bits/statfs.h b/lib/libc/include/mips64-linux-musl/bits/statfs.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/statfs.h rename to lib/libc/include/mips64-linux-musl/bits/statfs.h diff --git a/libc/include/mips64-linux-musl/bits/syscall.h b/lib/libc/include/mips64-linux-musl/bits/syscall.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/syscall.h rename to lib/libc/include/mips64-linux-musl/bits/syscall.h diff --git a/libc/include/mips64-linux-musl/bits/termios.h b/lib/libc/include/mips64-linux-musl/bits/termios.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/termios.h rename to lib/libc/include/mips64-linux-musl/bits/termios.h diff --git a/libc/include/mips64-linux-musl/bits/user.h b/lib/libc/include/mips64-linux-musl/bits/user.h similarity index 100% rename from libc/include/mips64-linux-musl/bits/user.h rename to lib/libc/include/mips64-linux-musl/bits/user.h diff --git a/libc/include/mips64el-linux-any/asm/auxvec.h b/lib/libc/include/mips64el-linux-any/asm/auxvec.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/auxvec.h rename to lib/libc/include/mips64el-linux-any/asm/auxvec.h diff --git a/libc/include/mips64el-linux-any/asm/bitsperlong.h b/lib/libc/include/mips64el-linux-any/asm/bitsperlong.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/bitsperlong.h rename to lib/libc/include/mips64el-linux-any/asm/bitsperlong.h diff --git a/libc/include/mips64el-linux-any/asm/byteorder.h b/lib/libc/include/mips64el-linux-any/asm/byteorder.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/byteorder.h rename to lib/libc/include/mips64el-linux-any/asm/byteorder.h diff --git a/libc/include/mips64el-linux-any/asm/errno.h b/lib/libc/include/mips64el-linux-any/asm/errno.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/errno.h rename to lib/libc/include/mips64el-linux-any/asm/errno.h diff --git a/libc/include/mips64el-linux-any/asm/fcntl.h b/lib/libc/include/mips64el-linux-any/asm/fcntl.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/fcntl.h rename to lib/libc/include/mips64el-linux-any/asm/fcntl.h diff --git a/libc/include/mips64el-linux-any/asm/hwcap.h b/lib/libc/include/mips64el-linux-any/asm/hwcap.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/hwcap.h rename to lib/libc/include/mips64el-linux-any/asm/hwcap.h diff --git a/libc/include/mips64el-linux-any/asm/ioctl.h b/lib/libc/include/mips64el-linux-any/asm/ioctl.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/ioctl.h rename to lib/libc/include/mips64el-linux-any/asm/ioctl.h diff --git a/libc/include/mips64el-linux-any/asm/ioctls.h b/lib/libc/include/mips64el-linux-any/asm/ioctls.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/ioctls.h rename to lib/libc/include/mips64el-linux-any/asm/ioctls.h diff --git a/libc/include/mips64el-linux-any/asm/kvm.h b/lib/libc/include/mips64el-linux-any/asm/kvm.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/kvm.h rename to lib/libc/include/mips64el-linux-any/asm/kvm.h diff --git a/libc/include/mips64el-linux-any/asm/kvm_para.h b/lib/libc/include/mips64el-linux-any/asm/kvm_para.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/kvm_para.h rename to lib/libc/include/mips64el-linux-any/asm/kvm_para.h diff --git a/libc/include/mips64el-linux-any/asm/mman.h b/lib/libc/include/mips64el-linux-any/asm/mman.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/mman.h rename to lib/libc/include/mips64el-linux-any/asm/mman.h diff --git a/libc/include/mips64el-linux-any/asm/msgbuf.h b/lib/libc/include/mips64el-linux-any/asm/msgbuf.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/msgbuf.h rename to lib/libc/include/mips64el-linux-any/asm/msgbuf.h diff --git a/libc/include/mips64el-linux-any/asm/param.h b/lib/libc/include/mips64el-linux-any/asm/param.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/param.h rename to lib/libc/include/mips64el-linux-any/asm/param.h diff --git a/libc/include/mips64el-linux-any/asm/poll.h b/lib/libc/include/mips64el-linux-any/asm/poll.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/poll.h rename to lib/libc/include/mips64el-linux-any/asm/poll.h diff --git a/libc/include/mips64el-linux-any/asm/posix_types.h b/lib/libc/include/mips64el-linux-any/asm/posix_types.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/posix_types.h rename to lib/libc/include/mips64el-linux-any/asm/posix_types.h diff --git a/libc/include/mips64el-linux-any/asm/ptrace.h b/lib/libc/include/mips64el-linux-any/asm/ptrace.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/ptrace.h rename to lib/libc/include/mips64el-linux-any/asm/ptrace.h diff --git a/libc/include/mips64el-linux-any/asm/resource.h b/lib/libc/include/mips64el-linux-any/asm/resource.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/resource.h rename to lib/libc/include/mips64el-linux-any/asm/resource.h diff --git a/libc/include/mips64el-linux-any/asm/sembuf.h b/lib/libc/include/mips64el-linux-any/asm/sembuf.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/sembuf.h rename to lib/libc/include/mips64el-linux-any/asm/sembuf.h diff --git a/libc/include/mips64el-linux-any/asm/setup.h b/lib/libc/include/mips64el-linux-any/asm/setup.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/setup.h rename to lib/libc/include/mips64el-linux-any/asm/setup.h diff --git a/libc/include/mips64el-linux-any/asm/shmbuf.h b/lib/libc/include/mips64el-linux-any/asm/shmbuf.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/shmbuf.h rename to lib/libc/include/mips64el-linux-any/asm/shmbuf.h diff --git a/libc/include/mips64el-linux-any/asm/sigcontext.h b/lib/libc/include/mips64el-linux-any/asm/sigcontext.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/sigcontext.h rename to lib/libc/include/mips64el-linux-any/asm/sigcontext.h diff --git a/libc/include/mips64el-linux-any/asm/siginfo.h b/lib/libc/include/mips64el-linux-any/asm/siginfo.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/siginfo.h rename to lib/libc/include/mips64el-linux-any/asm/siginfo.h diff --git a/libc/include/mips64el-linux-any/asm/signal.h b/lib/libc/include/mips64el-linux-any/asm/signal.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/signal.h rename to lib/libc/include/mips64el-linux-any/asm/signal.h diff --git a/libc/include/mips64el-linux-any/asm/socket.h b/lib/libc/include/mips64el-linux-any/asm/socket.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/socket.h rename to lib/libc/include/mips64el-linux-any/asm/socket.h diff --git a/libc/include/mips64el-linux-any/asm/sockios.h b/lib/libc/include/mips64el-linux-any/asm/sockios.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/sockios.h rename to lib/libc/include/mips64el-linux-any/asm/sockios.h diff --git a/libc/include/mips64el-linux-any/asm/stat.h b/lib/libc/include/mips64el-linux-any/asm/stat.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/stat.h rename to lib/libc/include/mips64el-linux-any/asm/stat.h diff --git a/libc/include/mips64el-linux-any/asm/statfs.h b/lib/libc/include/mips64el-linux-any/asm/statfs.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/statfs.h rename to lib/libc/include/mips64el-linux-any/asm/statfs.h diff --git a/libc/include/mips64el-linux-any/asm/swab.h b/lib/libc/include/mips64el-linux-any/asm/swab.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/swab.h rename to lib/libc/include/mips64el-linux-any/asm/swab.h diff --git a/libc/include/mips64el-linux-any/asm/termbits.h b/lib/libc/include/mips64el-linux-any/asm/termbits.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/termbits.h rename to lib/libc/include/mips64el-linux-any/asm/termbits.h diff --git a/libc/include/mips64el-linux-any/asm/termios.h b/lib/libc/include/mips64el-linux-any/asm/termios.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/termios.h rename to lib/libc/include/mips64el-linux-any/asm/termios.h diff --git a/libc/include/mips64el-linux-any/asm/types.h b/lib/libc/include/mips64el-linux-any/asm/types.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/types.h rename to lib/libc/include/mips64el-linux-any/asm/types.h diff --git a/libc/include/mips64el-linux-any/asm/unistd.h b/lib/libc/include/mips64el-linux-any/asm/unistd.h similarity index 100% rename from libc/include/mips64el-linux-any/asm/unistd.h rename to lib/libc/include/mips64el-linux-any/asm/unistd.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/dlfcn.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/dlfcn.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/dlfcn.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/dlfcn.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/errno.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/errno.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/errno.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/errno.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/eventfd.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/eventfd.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/eventfd.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/eventfd.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/inotify.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/inotify.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/inotify.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/inotify.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/ioctl-types.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/ioctl-types.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/ioctl-types.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/ioctl-types.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/ipc.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/ipc.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/ipc.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/ipc.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/ipctypes.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/ipctypes.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/ipctypes.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/ipctypes.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/local_lim.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/local_lim.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/local_lim.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/local_lim.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/mman.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/mman.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/mman.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/mman.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/msq-pad.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/msq-pad.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/msq-pad.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/msq-pad.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/poll.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/poll.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/poll.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/poll.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/resource.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/resource.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/resource.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/resource.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/sem-pad.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/sem-pad.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/sem-pad.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/sem-pad.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/shm-pad.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/shm-pad.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/shm-pad.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/shm-pad.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/shmlba.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/shmlba.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/shmlba.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/shmlba.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/sigaction.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/sigaction.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/sigaction.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/sigaction.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/sigcontext.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/sigcontext.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/sigcontext.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/sigcontext.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/siginfo-arch.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/siginfo-arch.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/siginfo-arch.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/siginfo-arch.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/signalfd.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/signalfd.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/signalfd.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/signalfd.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/signum.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/signum.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/signum.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/signum.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/socket_type.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/socket_type.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/socket_type.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/socket_type.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/statfs.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/statfs.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/statfs.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/statfs.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/termios-c_cc.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/termios-c_cc.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/termios-c_cc.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/termios-c_cc.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/termios-c_lflag.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/termios-c_lflag.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/termios-c_lflag.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/termios-c_lflag.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/termios-struct.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/termios-struct.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/termios-struct.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/termios-struct.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/termios-tcflow.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/termios-tcflow.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/termios-tcflow.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/termios-tcflow.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/timerfd.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/timerfd.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/timerfd.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/timerfd.h diff --git a/libc/include/mips64el-linux-gnuabi64/bits/types/stack_t.h b/lib/libc/include/mips64el-linux-gnuabi64/bits/types/stack_t.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/bits/types/stack_t.h rename to lib/libc/include/mips64el-linux-gnuabi64/bits/types/stack_t.h diff --git a/libc/include/mips64el-linux-gnuabi64/ieee754.h b/lib/libc/include/mips64el-linux-gnuabi64/ieee754.h similarity index 100% rename from libc/include/mips64el-linux-gnuabi64/ieee754.h rename to lib/libc/include/mips64el-linux-gnuabi64/ieee754.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/dlfcn.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/dlfcn.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/dlfcn.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/dlfcn.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/errno.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/errno.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/errno.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/errno.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/eventfd.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/eventfd.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/eventfd.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/eventfd.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/inotify.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/inotify.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/inotify.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/inotify.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/ioctl-types.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/ioctl-types.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/ioctl-types.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/ioctl-types.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/ipc.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/ipc.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/ipc.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/ipc.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/ipctypes.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/ipctypes.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/ipctypes.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/ipctypes.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/local_lim.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/local_lim.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/local_lim.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/local_lim.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/mman.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/mman.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/mman.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/mman.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/msq-pad.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/msq-pad.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/msq-pad.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/msq-pad.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/poll.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/poll.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/poll.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/poll.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/resource.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/resource.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/resource.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/resource.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/sem-pad.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/sem-pad.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/sem-pad.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/sem-pad.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/shm-pad.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/shm-pad.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/shm-pad.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/shm-pad.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/shmlba.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/shmlba.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/shmlba.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/shmlba.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/sigaction.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/sigaction.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/sigaction.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/sigaction.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/sigcontext.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/sigcontext.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/sigcontext.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/sigcontext.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/siginfo-arch.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/siginfo-arch.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/siginfo-arch.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/siginfo-arch.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/signalfd.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/signalfd.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/signalfd.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/signalfd.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/signum.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/signum.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/signum.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/signum.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/socket_type.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/socket_type.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/socket_type.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/socket_type.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/statfs.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/statfs.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/statfs.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/statfs.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/termios-c_cc.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/termios-c_cc.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/termios-c_cc.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/termios-c_cc.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/termios-c_lflag.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/termios-c_lflag.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/termios-c_lflag.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/termios-c_lflag.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/termios-struct.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/termios-struct.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/termios-struct.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/termios-struct.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/termios-tcflow.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/termios-tcflow.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/termios-tcflow.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/termios-tcflow.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/timerfd.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/timerfd.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/timerfd.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/timerfd.h diff --git a/libc/include/mips64el-linux-gnuabin32/bits/types/stack_t.h b/lib/libc/include/mips64el-linux-gnuabin32/bits/types/stack_t.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/bits/types/stack_t.h rename to lib/libc/include/mips64el-linux-gnuabin32/bits/types/stack_t.h diff --git a/libc/include/mips64el-linux-gnuabin32/ieee754.h b/lib/libc/include/mips64el-linux-gnuabin32/ieee754.h similarity index 100% rename from libc/include/mips64el-linux-gnuabin32/ieee754.h rename to lib/libc/include/mips64el-linux-gnuabin32/ieee754.h diff --git a/libc/include/mips64el-linux-musl/bfd_stdint.h b/lib/libc/include/mips64el-linux-musl/bfd_stdint.h similarity index 100% rename from libc/include/mips64el-linux-musl/bfd_stdint.h rename to lib/libc/include/mips64el-linux-musl/bfd_stdint.h diff --git a/libc/include/mips64el-linux-musl/bits/alltypes.h b/lib/libc/include/mips64el-linux-musl/bits/alltypes.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/alltypes.h rename to lib/libc/include/mips64el-linux-musl/bits/alltypes.h diff --git a/libc/include/mips64el-linux-musl/bits/endian.h b/lib/libc/include/mips64el-linux-musl/bits/endian.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/endian.h rename to lib/libc/include/mips64el-linux-musl/bits/endian.h diff --git a/libc/include/mips64el-linux-musl/bits/errno.h b/lib/libc/include/mips64el-linux-musl/bits/errno.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/errno.h rename to lib/libc/include/mips64el-linux-musl/bits/errno.h diff --git a/libc/include/mips64el-linux-musl/bits/fcntl.h b/lib/libc/include/mips64el-linux-musl/bits/fcntl.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/fcntl.h rename to lib/libc/include/mips64el-linux-musl/bits/fcntl.h diff --git a/libc/include/mips64el-linux-musl/bits/fenv.h b/lib/libc/include/mips64el-linux-musl/bits/fenv.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/fenv.h rename to lib/libc/include/mips64el-linux-musl/bits/fenv.h diff --git a/libc/include/mips64el-linux-musl/bits/float.h b/lib/libc/include/mips64el-linux-musl/bits/float.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/float.h rename to lib/libc/include/mips64el-linux-musl/bits/float.h diff --git a/libc/include/mips64el-linux-musl/bits/hwcap.h b/lib/libc/include/mips64el-linux-musl/bits/hwcap.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/hwcap.h rename to lib/libc/include/mips64el-linux-musl/bits/hwcap.h diff --git a/libc/include/mips64el-linux-musl/bits/ioctl.h b/lib/libc/include/mips64el-linux-musl/bits/ioctl.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/ioctl.h rename to lib/libc/include/mips64el-linux-musl/bits/ioctl.h diff --git a/libc/include/mips64el-linux-musl/bits/ipc.h b/lib/libc/include/mips64el-linux-musl/bits/ipc.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/ipc.h rename to lib/libc/include/mips64el-linux-musl/bits/ipc.h diff --git a/libc/include/mips64el-linux-musl/bits/limits.h b/lib/libc/include/mips64el-linux-musl/bits/limits.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/limits.h rename to lib/libc/include/mips64el-linux-musl/bits/limits.h diff --git a/libc/include/mips64el-linux-musl/bits/mman.h b/lib/libc/include/mips64el-linux-musl/bits/mman.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/mman.h rename to lib/libc/include/mips64el-linux-musl/bits/mman.h diff --git a/libc/include/mips64el-linux-musl/bits/poll.h b/lib/libc/include/mips64el-linux-musl/bits/poll.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/poll.h rename to lib/libc/include/mips64el-linux-musl/bits/poll.h diff --git a/libc/include/mips64el-linux-musl/bits/posix.h b/lib/libc/include/mips64el-linux-musl/bits/posix.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/posix.h rename to lib/libc/include/mips64el-linux-musl/bits/posix.h diff --git a/libc/include/mips64el-linux-musl/bits/ptrace.h b/lib/libc/include/mips64el-linux-musl/bits/ptrace.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/ptrace.h rename to lib/libc/include/mips64el-linux-musl/bits/ptrace.h diff --git a/libc/include/mips64el-linux-musl/bits/reg.h b/lib/libc/include/mips64el-linux-musl/bits/reg.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/reg.h rename to lib/libc/include/mips64el-linux-musl/bits/reg.h diff --git a/libc/include/mips64el-linux-musl/bits/resource.h b/lib/libc/include/mips64el-linux-musl/bits/resource.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/resource.h rename to lib/libc/include/mips64el-linux-musl/bits/resource.h diff --git a/libc/include/mips64el-linux-musl/bits/sem.h b/lib/libc/include/mips64el-linux-musl/bits/sem.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/sem.h rename to lib/libc/include/mips64el-linux-musl/bits/sem.h diff --git a/libc/include/mips64el-linux-musl/bits/setjmp.h b/lib/libc/include/mips64el-linux-musl/bits/setjmp.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/setjmp.h rename to lib/libc/include/mips64el-linux-musl/bits/setjmp.h diff --git a/libc/include/mips64el-linux-musl/bits/signal.h b/lib/libc/include/mips64el-linux-musl/bits/signal.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/signal.h rename to lib/libc/include/mips64el-linux-musl/bits/signal.h diff --git a/libc/include/mips64el-linux-musl/bits/socket.h b/lib/libc/include/mips64el-linux-musl/bits/socket.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/socket.h rename to lib/libc/include/mips64el-linux-musl/bits/socket.h diff --git a/libc/include/mips64el-linux-musl/bits/stat.h b/lib/libc/include/mips64el-linux-musl/bits/stat.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/stat.h rename to lib/libc/include/mips64el-linux-musl/bits/stat.h diff --git a/libc/include/mips64el-linux-musl/bits/statfs.h b/lib/libc/include/mips64el-linux-musl/bits/statfs.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/statfs.h rename to lib/libc/include/mips64el-linux-musl/bits/statfs.h diff --git a/libc/include/mips64el-linux-musl/bits/syscall.h b/lib/libc/include/mips64el-linux-musl/bits/syscall.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/syscall.h rename to lib/libc/include/mips64el-linux-musl/bits/syscall.h diff --git a/libc/include/mips64el-linux-musl/bits/termios.h b/lib/libc/include/mips64el-linux-musl/bits/termios.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/termios.h rename to lib/libc/include/mips64el-linux-musl/bits/termios.h diff --git a/libc/include/mips64el-linux-musl/bits/user.h b/lib/libc/include/mips64el-linux-musl/bits/user.h similarity index 100% rename from libc/include/mips64el-linux-musl/bits/user.h rename to lib/libc/include/mips64el-linux-musl/bits/user.h diff --git a/libc/include/mipsel-linux-any/asm/auxvec.h b/lib/libc/include/mipsel-linux-any/asm/auxvec.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/auxvec.h rename to lib/libc/include/mipsel-linux-any/asm/auxvec.h diff --git a/libc/include/mipsel-linux-any/asm/bitsperlong.h b/lib/libc/include/mipsel-linux-any/asm/bitsperlong.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/bitsperlong.h rename to lib/libc/include/mipsel-linux-any/asm/bitsperlong.h diff --git a/libc/include/mipsel-linux-any/asm/byteorder.h b/lib/libc/include/mipsel-linux-any/asm/byteorder.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/byteorder.h rename to lib/libc/include/mipsel-linux-any/asm/byteorder.h diff --git a/libc/include/mipsel-linux-any/asm/errno.h b/lib/libc/include/mipsel-linux-any/asm/errno.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/errno.h rename to lib/libc/include/mipsel-linux-any/asm/errno.h diff --git a/libc/include/mipsel-linux-any/asm/fcntl.h b/lib/libc/include/mipsel-linux-any/asm/fcntl.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/fcntl.h rename to lib/libc/include/mipsel-linux-any/asm/fcntl.h diff --git a/libc/include/mipsel-linux-any/asm/hwcap.h b/lib/libc/include/mipsel-linux-any/asm/hwcap.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/hwcap.h rename to lib/libc/include/mipsel-linux-any/asm/hwcap.h diff --git a/libc/include/mipsel-linux-any/asm/ioctl.h b/lib/libc/include/mipsel-linux-any/asm/ioctl.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/ioctl.h rename to lib/libc/include/mipsel-linux-any/asm/ioctl.h diff --git a/libc/include/mipsel-linux-any/asm/ioctls.h b/lib/libc/include/mipsel-linux-any/asm/ioctls.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/ioctls.h rename to lib/libc/include/mipsel-linux-any/asm/ioctls.h diff --git a/libc/include/mipsel-linux-any/asm/kvm.h b/lib/libc/include/mipsel-linux-any/asm/kvm.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/kvm.h rename to lib/libc/include/mipsel-linux-any/asm/kvm.h diff --git a/libc/include/mipsel-linux-any/asm/kvm_para.h b/lib/libc/include/mipsel-linux-any/asm/kvm_para.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/kvm_para.h rename to lib/libc/include/mipsel-linux-any/asm/kvm_para.h diff --git a/libc/include/mipsel-linux-any/asm/mman.h b/lib/libc/include/mipsel-linux-any/asm/mman.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/mman.h rename to lib/libc/include/mipsel-linux-any/asm/mman.h diff --git a/libc/include/mipsel-linux-any/asm/msgbuf.h b/lib/libc/include/mipsel-linux-any/asm/msgbuf.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/msgbuf.h rename to lib/libc/include/mipsel-linux-any/asm/msgbuf.h diff --git a/libc/include/mipsel-linux-any/asm/param.h b/lib/libc/include/mipsel-linux-any/asm/param.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/param.h rename to lib/libc/include/mipsel-linux-any/asm/param.h diff --git a/libc/include/mipsel-linux-any/asm/poll.h b/lib/libc/include/mipsel-linux-any/asm/poll.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/poll.h rename to lib/libc/include/mipsel-linux-any/asm/poll.h diff --git a/libc/include/mipsel-linux-any/asm/posix_types.h b/lib/libc/include/mipsel-linux-any/asm/posix_types.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/posix_types.h rename to lib/libc/include/mipsel-linux-any/asm/posix_types.h diff --git a/libc/include/mipsel-linux-any/asm/ptrace.h b/lib/libc/include/mipsel-linux-any/asm/ptrace.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/ptrace.h rename to lib/libc/include/mipsel-linux-any/asm/ptrace.h diff --git a/libc/include/mipsel-linux-any/asm/resource.h b/lib/libc/include/mipsel-linux-any/asm/resource.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/resource.h rename to lib/libc/include/mipsel-linux-any/asm/resource.h diff --git a/libc/include/mipsel-linux-any/asm/sembuf.h b/lib/libc/include/mipsel-linux-any/asm/sembuf.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/sembuf.h rename to lib/libc/include/mipsel-linux-any/asm/sembuf.h diff --git a/libc/include/mipsel-linux-any/asm/setup.h b/lib/libc/include/mipsel-linux-any/asm/setup.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/setup.h rename to lib/libc/include/mipsel-linux-any/asm/setup.h diff --git a/libc/include/mipsel-linux-any/asm/shmbuf.h b/lib/libc/include/mipsel-linux-any/asm/shmbuf.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/shmbuf.h rename to lib/libc/include/mipsel-linux-any/asm/shmbuf.h diff --git a/libc/include/mipsel-linux-any/asm/sigcontext.h b/lib/libc/include/mipsel-linux-any/asm/sigcontext.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/sigcontext.h rename to lib/libc/include/mipsel-linux-any/asm/sigcontext.h diff --git a/libc/include/mipsel-linux-any/asm/siginfo.h b/lib/libc/include/mipsel-linux-any/asm/siginfo.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/siginfo.h rename to lib/libc/include/mipsel-linux-any/asm/siginfo.h diff --git a/libc/include/mipsel-linux-any/asm/signal.h b/lib/libc/include/mipsel-linux-any/asm/signal.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/signal.h rename to lib/libc/include/mipsel-linux-any/asm/signal.h diff --git a/libc/include/mipsel-linux-any/asm/socket.h b/lib/libc/include/mipsel-linux-any/asm/socket.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/socket.h rename to lib/libc/include/mipsel-linux-any/asm/socket.h diff --git a/libc/include/mipsel-linux-any/asm/sockios.h b/lib/libc/include/mipsel-linux-any/asm/sockios.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/sockios.h rename to lib/libc/include/mipsel-linux-any/asm/sockios.h diff --git a/libc/include/mipsel-linux-any/asm/stat.h b/lib/libc/include/mipsel-linux-any/asm/stat.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/stat.h rename to lib/libc/include/mipsel-linux-any/asm/stat.h diff --git a/libc/include/mipsel-linux-any/asm/statfs.h b/lib/libc/include/mipsel-linux-any/asm/statfs.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/statfs.h rename to lib/libc/include/mipsel-linux-any/asm/statfs.h diff --git a/libc/include/mipsel-linux-any/asm/swab.h b/lib/libc/include/mipsel-linux-any/asm/swab.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/swab.h rename to lib/libc/include/mipsel-linux-any/asm/swab.h diff --git a/libc/include/mipsel-linux-any/asm/termbits.h b/lib/libc/include/mipsel-linux-any/asm/termbits.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/termbits.h rename to lib/libc/include/mipsel-linux-any/asm/termbits.h diff --git a/libc/include/mipsel-linux-any/asm/termios.h b/lib/libc/include/mipsel-linux-any/asm/termios.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/termios.h rename to lib/libc/include/mipsel-linux-any/asm/termios.h diff --git a/libc/include/mipsel-linux-any/asm/types.h b/lib/libc/include/mipsel-linux-any/asm/types.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/types.h rename to lib/libc/include/mipsel-linux-any/asm/types.h diff --git a/libc/include/mipsel-linux-any/asm/unistd.h b/lib/libc/include/mipsel-linux-any/asm/unistd.h similarity index 100% rename from libc/include/mipsel-linux-any/asm/unistd.h rename to lib/libc/include/mipsel-linux-any/asm/unistd.h diff --git a/libc/include/mipsel-linux-gnu/bits/dlfcn.h b/lib/libc/include/mipsel-linux-gnu/bits/dlfcn.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/dlfcn.h rename to lib/libc/include/mipsel-linux-gnu/bits/dlfcn.h diff --git a/libc/include/mipsel-linux-gnu/bits/errno.h b/lib/libc/include/mipsel-linux-gnu/bits/errno.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/errno.h rename to lib/libc/include/mipsel-linux-gnu/bits/errno.h diff --git a/libc/include/mipsel-linux-gnu/bits/eventfd.h b/lib/libc/include/mipsel-linux-gnu/bits/eventfd.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/eventfd.h rename to lib/libc/include/mipsel-linux-gnu/bits/eventfd.h diff --git a/libc/include/mipsel-linux-gnu/bits/inotify.h b/lib/libc/include/mipsel-linux-gnu/bits/inotify.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/inotify.h rename to lib/libc/include/mipsel-linux-gnu/bits/inotify.h diff --git a/libc/include/mipsel-linux-gnu/bits/ioctl-types.h b/lib/libc/include/mipsel-linux-gnu/bits/ioctl-types.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/ioctl-types.h rename to lib/libc/include/mipsel-linux-gnu/bits/ioctl-types.h diff --git a/libc/include/mipsel-linux-gnu/bits/ipc.h b/lib/libc/include/mipsel-linux-gnu/bits/ipc.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/ipc.h rename to lib/libc/include/mipsel-linux-gnu/bits/ipc.h diff --git a/libc/include/mipsel-linux-gnu/bits/ipctypes.h b/lib/libc/include/mipsel-linux-gnu/bits/ipctypes.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/ipctypes.h rename to lib/libc/include/mipsel-linux-gnu/bits/ipctypes.h diff --git a/libc/include/mipsel-linux-gnu/bits/local_lim.h b/lib/libc/include/mipsel-linux-gnu/bits/local_lim.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/local_lim.h rename to lib/libc/include/mipsel-linux-gnu/bits/local_lim.h diff --git a/libc/include/mipsel-linux-gnu/bits/mman.h b/lib/libc/include/mipsel-linux-gnu/bits/mman.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/mman.h rename to lib/libc/include/mipsel-linux-gnu/bits/mman.h diff --git a/libc/include/mipsel-linux-gnu/bits/msq-pad.h b/lib/libc/include/mipsel-linux-gnu/bits/msq-pad.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/msq-pad.h rename to lib/libc/include/mipsel-linux-gnu/bits/msq-pad.h diff --git a/libc/include/mipsel-linux-gnu/bits/poll.h b/lib/libc/include/mipsel-linux-gnu/bits/poll.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/poll.h rename to lib/libc/include/mipsel-linux-gnu/bits/poll.h diff --git a/libc/include/mipsel-linux-gnu/bits/resource.h b/lib/libc/include/mipsel-linux-gnu/bits/resource.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/resource.h rename to lib/libc/include/mipsel-linux-gnu/bits/resource.h diff --git a/libc/include/mipsel-linux-gnu/bits/sem-pad.h b/lib/libc/include/mipsel-linux-gnu/bits/sem-pad.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/sem-pad.h rename to lib/libc/include/mipsel-linux-gnu/bits/sem-pad.h diff --git a/libc/include/mipsel-linux-gnu/bits/shm-pad.h b/lib/libc/include/mipsel-linux-gnu/bits/shm-pad.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/shm-pad.h rename to lib/libc/include/mipsel-linux-gnu/bits/shm-pad.h diff --git a/libc/include/mipsel-linux-gnu/bits/shmlba.h b/lib/libc/include/mipsel-linux-gnu/bits/shmlba.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/shmlba.h rename to lib/libc/include/mipsel-linux-gnu/bits/shmlba.h diff --git a/libc/include/mipsel-linux-gnu/bits/sigaction.h b/lib/libc/include/mipsel-linux-gnu/bits/sigaction.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/sigaction.h rename to lib/libc/include/mipsel-linux-gnu/bits/sigaction.h diff --git a/libc/include/mipsel-linux-gnu/bits/sigcontext.h b/lib/libc/include/mipsel-linux-gnu/bits/sigcontext.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/sigcontext.h rename to lib/libc/include/mipsel-linux-gnu/bits/sigcontext.h diff --git a/libc/include/mipsel-linux-gnu/bits/siginfo-arch.h b/lib/libc/include/mipsel-linux-gnu/bits/siginfo-arch.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/siginfo-arch.h rename to lib/libc/include/mipsel-linux-gnu/bits/siginfo-arch.h diff --git a/libc/include/mipsel-linux-gnu/bits/signalfd.h b/lib/libc/include/mipsel-linux-gnu/bits/signalfd.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/signalfd.h rename to lib/libc/include/mipsel-linux-gnu/bits/signalfd.h diff --git a/libc/include/mipsel-linux-gnu/bits/signum.h b/lib/libc/include/mipsel-linux-gnu/bits/signum.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/signum.h rename to lib/libc/include/mipsel-linux-gnu/bits/signum.h diff --git a/libc/include/mipsel-linux-gnu/bits/socket_type.h b/lib/libc/include/mipsel-linux-gnu/bits/socket_type.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/socket_type.h rename to lib/libc/include/mipsel-linux-gnu/bits/socket_type.h diff --git a/libc/include/mipsel-linux-gnu/bits/statfs.h b/lib/libc/include/mipsel-linux-gnu/bits/statfs.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/statfs.h rename to lib/libc/include/mipsel-linux-gnu/bits/statfs.h diff --git a/libc/include/mipsel-linux-gnu/bits/termios-c_cc.h b/lib/libc/include/mipsel-linux-gnu/bits/termios-c_cc.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/termios-c_cc.h rename to lib/libc/include/mipsel-linux-gnu/bits/termios-c_cc.h diff --git a/libc/include/mipsel-linux-gnu/bits/termios-c_lflag.h b/lib/libc/include/mipsel-linux-gnu/bits/termios-c_lflag.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/termios-c_lflag.h rename to lib/libc/include/mipsel-linux-gnu/bits/termios-c_lflag.h diff --git a/libc/include/mipsel-linux-gnu/bits/termios-struct.h b/lib/libc/include/mipsel-linux-gnu/bits/termios-struct.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/termios-struct.h rename to lib/libc/include/mipsel-linux-gnu/bits/termios-struct.h diff --git a/libc/include/mipsel-linux-gnu/bits/termios-tcflow.h b/lib/libc/include/mipsel-linux-gnu/bits/termios-tcflow.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/termios-tcflow.h rename to lib/libc/include/mipsel-linux-gnu/bits/termios-tcflow.h diff --git a/libc/include/mipsel-linux-gnu/bits/timerfd.h b/lib/libc/include/mipsel-linux-gnu/bits/timerfd.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/timerfd.h rename to lib/libc/include/mipsel-linux-gnu/bits/timerfd.h diff --git a/libc/include/mipsel-linux-gnu/bits/types/stack_t.h b/lib/libc/include/mipsel-linux-gnu/bits/types/stack_t.h similarity index 100% rename from libc/include/mipsel-linux-gnu/bits/types/stack_t.h rename to lib/libc/include/mipsel-linux-gnu/bits/types/stack_t.h diff --git a/libc/include/mipsel-linux-gnu/ieee754.h b/lib/libc/include/mipsel-linux-gnu/ieee754.h similarity index 100% rename from libc/include/mipsel-linux-gnu/ieee754.h rename to lib/libc/include/mipsel-linux-gnu/ieee754.h diff --git a/libc/include/mipsel-linux-musl/bfd.h b/lib/libc/include/mipsel-linux-musl/bfd.h similarity index 100% rename from libc/include/mipsel-linux-musl/bfd.h rename to lib/libc/include/mipsel-linux-musl/bfd.h diff --git a/libc/include/mipsel-linux-musl/bfd_stdint.h b/lib/libc/include/mipsel-linux-musl/bfd_stdint.h similarity index 100% rename from libc/include/mipsel-linux-musl/bfd_stdint.h rename to lib/libc/include/mipsel-linux-musl/bfd_stdint.h diff --git a/libc/include/mipsel-linux-musl/bits/alltypes.h b/lib/libc/include/mipsel-linux-musl/bits/alltypes.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/alltypes.h rename to lib/libc/include/mipsel-linux-musl/bits/alltypes.h diff --git a/libc/include/mipsel-linux-musl/bits/endian.h b/lib/libc/include/mipsel-linux-musl/bits/endian.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/endian.h rename to lib/libc/include/mipsel-linux-musl/bits/endian.h diff --git a/libc/include/mipsel-linux-musl/bits/errno.h b/lib/libc/include/mipsel-linux-musl/bits/errno.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/errno.h rename to lib/libc/include/mipsel-linux-musl/bits/errno.h diff --git a/libc/include/mipsel-linux-musl/bits/fcntl.h b/lib/libc/include/mipsel-linux-musl/bits/fcntl.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/fcntl.h rename to lib/libc/include/mipsel-linux-musl/bits/fcntl.h diff --git a/libc/include/mipsel-linux-musl/bits/fenv.h b/lib/libc/include/mipsel-linux-musl/bits/fenv.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/fenv.h rename to lib/libc/include/mipsel-linux-musl/bits/fenv.h diff --git a/libc/include/mipsel-linux-musl/bits/hwcap.h b/lib/libc/include/mipsel-linux-musl/bits/hwcap.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/hwcap.h rename to lib/libc/include/mipsel-linux-musl/bits/hwcap.h diff --git a/libc/include/mipsel-linux-musl/bits/ioctl.h b/lib/libc/include/mipsel-linux-musl/bits/ioctl.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/ioctl.h rename to lib/libc/include/mipsel-linux-musl/bits/ioctl.h diff --git a/libc/include/mipsel-linux-musl/bits/mman.h b/lib/libc/include/mipsel-linux-musl/bits/mman.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/mman.h rename to lib/libc/include/mipsel-linux-musl/bits/mman.h diff --git a/libc/include/mipsel-linux-musl/bits/msg.h b/lib/libc/include/mipsel-linux-musl/bits/msg.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/msg.h rename to lib/libc/include/mipsel-linux-musl/bits/msg.h diff --git a/libc/include/mipsel-linux-musl/bits/poll.h b/lib/libc/include/mipsel-linux-musl/bits/poll.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/poll.h rename to lib/libc/include/mipsel-linux-musl/bits/poll.h diff --git a/libc/include/mipsel-linux-musl/bits/ptrace.h b/lib/libc/include/mipsel-linux-musl/bits/ptrace.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/ptrace.h rename to lib/libc/include/mipsel-linux-musl/bits/ptrace.h diff --git a/libc/include/mipsel-linux-musl/bits/reg.h b/lib/libc/include/mipsel-linux-musl/bits/reg.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/reg.h rename to lib/libc/include/mipsel-linux-musl/bits/reg.h diff --git a/libc/include/mipsel-linux-musl/bits/resource.h b/lib/libc/include/mipsel-linux-musl/bits/resource.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/resource.h rename to lib/libc/include/mipsel-linux-musl/bits/resource.h diff --git a/libc/include/mipsel-linux-musl/bits/sem.h b/lib/libc/include/mipsel-linux-musl/bits/sem.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/sem.h rename to lib/libc/include/mipsel-linux-musl/bits/sem.h diff --git a/libc/include/mipsel-linux-musl/bits/setjmp.h b/lib/libc/include/mipsel-linux-musl/bits/setjmp.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/setjmp.h rename to lib/libc/include/mipsel-linux-musl/bits/setjmp.h diff --git a/libc/include/mipsel-linux-musl/bits/signal.h b/lib/libc/include/mipsel-linux-musl/bits/signal.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/signal.h rename to lib/libc/include/mipsel-linux-musl/bits/signal.h diff --git a/libc/include/mipsel-linux-musl/bits/socket.h b/lib/libc/include/mipsel-linux-musl/bits/socket.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/socket.h rename to lib/libc/include/mipsel-linux-musl/bits/socket.h diff --git a/libc/include/mipsel-linux-musl/bits/stat.h b/lib/libc/include/mipsel-linux-musl/bits/stat.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/stat.h rename to lib/libc/include/mipsel-linux-musl/bits/stat.h diff --git a/libc/include/mipsel-linux-musl/bits/statfs.h b/lib/libc/include/mipsel-linux-musl/bits/statfs.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/statfs.h rename to lib/libc/include/mipsel-linux-musl/bits/statfs.h diff --git a/libc/include/mipsel-linux-musl/bits/stdint.h b/lib/libc/include/mipsel-linux-musl/bits/stdint.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/stdint.h rename to lib/libc/include/mipsel-linux-musl/bits/stdint.h diff --git a/libc/include/mipsel-linux-musl/bits/syscall.h b/lib/libc/include/mipsel-linux-musl/bits/syscall.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/syscall.h rename to lib/libc/include/mipsel-linux-musl/bits/syscall.h diff --git a/libc/include/mipsel-linux-musl/bits/termios.h b/lib/libc/include/mipsel-linux-musl/bits/termios.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/termios.h rename to lib/libc/include/mipsel-linux-musl/bits/termios.h diff --git a/libc/include/mipsel-linux-musl/bits/user.h b/lib/libc/include/mipsel-linux-musl/bits/user.h similarity index 100% rename from libc/include/mipsel-linux-musl/bits/user.h rename to lib/libc/include/mipsel-linux-musl/bits/user.h diff --git a/libc/include/powerpc-linux-any/asm/auxvec.h b/lib/libc/include/powerpc-linux-any/asm/auxvec.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/auxvec.h rename to lib/libc/include/powerpc-linux-any/asm/auxvec.h diff --git a/libc/include/powerpc-linux-any/asm/bitsperlong.h b/lib/libc/include/powerpc-linux-any/asm/bitsperlong.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/bitsperlong.h rename to lib/libc/include/powerpc-linux-any/asm/bitsperlong.h diff --git a/libc/include/powerpc-linux-any/asm/byteorder.h b/lib/libc/include/powerpc-linux-any/asm/byteorder.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/byteorder.h rename to lib/libc/include/powerpc-linux-any/asm/byteorder.h diff --git a/libc/include/powerpc-linux-any/asm/errno.h b/lib/libc/include/powerpc-linux-any/asm/errno.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/errno.h rename to lib/libc/include/powerpc-linux-any/asm/errno.h diff --git a/libc/include/powerpc-linux-any/asm/fcntl.h b/lib/libc/include/powerpc-linux-any/asm/fcntl.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/fcntl.h rename to lib/libc/include/powerpc-linux-any/asm/fcntl.h diff --git a/libc/include/powerpc-linux-any/asm/ioctl.h b/lib/libc/include/powerpc-linux-any/asm/ioctl.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/ioctl.h rename to lib/libc/include/powerpc-linux-any/asm/ioctl.h diff --git a/libc/include/powerpc-linux-any/asm/ioctls.h b/lib/libc/include/powerpc-linux-any/asm/ioctls.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/ioctls.h rename to lib/libc/include/powerpc-linux-any/asm/ioctls.h diff --git a/libc/include/powerpc-linux-any/asm/ipcbuf.h b/lib/libc/include/powerpc-linux-any/asm/ipcbuf.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/ipcbuf.h rename to lib/libc/include/powerpc-linux-any/asm/ipcbuf.h diff --git a/libc/include/powerpc-linux-any/asm/kvm.h b/lib/libc/include/powerpc-linux-any/asm/kvm.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/kvm.h rename to lib/libc/include/powerpc-linux-any/asm/kvm.h diff --git a/libc/include/powerpc-linux-any/asm/kvm_para.h b/lib/libc/include/powerpc-linux-any/asm/kvm_para.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/kvm_para.h rename to lib/libc/include/powerpc-linux-any/asm/kvm_para.h diff --git a/libc/include/powerpc-linux-any/asm/mman.h b/lib/libc/include/powerpc-linux-any/asm/mman.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/mman.h rename to lib/libc/include/powerpc-linux-any/asm/mman.h diff --git a/libc/include/powerpc-linux-any/asm/msgbuf.h b/lib/libc/include/powerpc-linux-any/asm/msgbuf.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/msgbuf.h rename to lib/libc/include/powerpc-linux-any/asm/msgbuf.h diff --git a/libc/include/powerpc-linux-any/asm/perf_regs.h b/lib/libc/include/powerpc-linux-any/asm/perf_regs.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/perf_regs.h rename to lib/libc/include/powerpc-linux-any/asm/perf_regs.h diff --git a/libc/include/powerpc-linux-any/asm/posix_types.h b/lib/libc/include/powerpc-linux-any/asm/posix_types.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/posix_types.h rename to lib/libc/include/powerpc-linux-any/asm/posix_types.h diff --git a/libc/include/powerpc-linux-any/asm/ptrace.h b/lib/libc/include/powerpc-linux-any/asm/ptrace.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/ptrace.h rename to lib/libc/include/powerpc-linux-any/asm/ptrace.h diff --git a/libc/include/powerpc-linux-any/asm/sembuf.h b/lib/libc/include/powerpc-linux-any/asm/sembuf.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/sembuf.h rename to lib/libc/include/powerpc-linux-any/asm/sembuf.h diff --git a/libc/include/powerpc-linux-any/asm/setup.h b/lib/libc/include/powerpc-linux-any/asm/setup.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/setup.h rename to lib/libc/include/powerpc-linux-any/asm/setup.h diff --git a/libc/include/powerpc-linux-any/asm/shmbuf.h b/lib/libc/include/powerpc-linux-any/asm/shmbuf.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/shmbuf.h rename to lib/libc/include/powerpc-linux-any/asm/shmbuf.h diff --git a/libc/include/powerpc-linux-any/asm/sigcontext.h b/lib/libc/include/powerpc-linux-any/asm/sigcontext.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/sigcontext.h rename to lib/libc/include/powerpc-linux-any/asm/sigcontext.h diff --git a/libc/include/powerpc-linux-any/asm/siginfo.h b/lib/libc/include/powerpc-linux-any/asm/siginfo.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/siginfo.h rename to lib/libc/include/powerpc-linux-any/asm/siginfo.h diff --git a/libc/include/powerpc-linux-any/asm/signal.h b/lib/libc/include/powerpc-linux-any/asm/signal.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/signal.h rename to lib/libc/include/powerpc-linux-any/asm/signal.h diff --git a/libc/include/powerpc-linux-any/asm/socket.h b/lib/libc/include/powerpc-linux-any/asm/socket.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/socket.h rename to lib/libc/include/powerpc-linux-any/asm/socket.h diff --git a/libc/include/powerpc-linux-any/asm/stat.h b/lib/libc/include/powerpc-linux-any/asm/stat.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/stat.h rename to lib/libc/include/powerpc-linux-any/asm/stat.h diff --git a/libc/include/powerpc-linux-any/asm/swab.h b/lib/libc/include/powerpc-linux-any/asm/swab.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/swab.h rename to lib/libc/include/powerpc-linux-any/asm/swab.h diff --git a/libc/include/powerpc-linux-any/asm/termbits.h b/lib/libc/include/powerpc-linux-any/asm/termbits.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/termbits.h rename to lib/libc/include/powerpc-linux-any/asm/termbits.h diff --git a/libc/include/powerpc-linux-any/asm/termios.h b/lib/libc/include/powerpc-linux-any/asm/termios.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/termios.h rename to lib/libc/include/powerpc-linux-any/asm/termios.h diff --git a/libc/include/powerpc-linux-any/asm/types.h b/lib/libc/include/powerpc-linux-any/asm/types.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/types.h rename to lib/libc/include/powerpc-linux-any/asm/types.h diff --git a/libc/include/powerpc-linux-any/asm/ucontext.h b/lib/libc/include/powerpc-linux-any/asm/ucontext.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/ucontext.h rename to lib/libc/include/powerpc-linux-any/asm/ucontext.h diff --git a/libc/include/powerpc-linux-any/asm/unistd.h b/lib/libc/include/powerpc-linux-any/asm/unistd.h similarity index 100% rename from libc/include/powerpc-linux-any/asm/unistd.h rename to lib/libc/include/powerpc-linux-any/asm/unistd.h diff --git a/libc/include/powerpc-linux-gnu/bits/endian.h b/lib/libc/include/powerpc-linux-gnu/bits/endian.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/endian.h rename to lib/libc/include/powerpc-linux-gnu/bits/endian.h diff --git a/libc/include/powerpc-linux-gnu/bits/environments.h b/lib/libc/include/powerpc-linux-gnu/bits/environments.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/environments.h rename to lib/libc/include/powerpc-linux-gnu/bits/environments.h diff --git a/libc/include/powerpc-linux-gnu/bits/fcntl.h b/lib/libc/include/powerpc-linux-gnu/bits/fcntl.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/fcntl.h rename to lib/libc/include/powerpc-linux-gnu/bits/fcntl.h diff --git a/libc/include/powerpc-linux-gnu/bits/fenv.h b/lib/libc/include/powerpc-linux-gnu/bits/fenv.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/fenv.h rename to lib/libc/include/powerpc-linux-gnu/bits/fenv.h diff --git a/libc/include/powerpc-linux-gnu/bits/fenvinline.h b/lib/libc/include/powerpc-linux-gnu/bits/fenvinline.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/fenvinline.h rename to lib/libc/include/powerpc-linux-gnu/bits/fenvinline.h diff --git a/libc/include/powerpc-linux-gnu/bits/floatn.h b/lib/libc/include/powerpc-linux-gnu/bits/floatn.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/floatn.h rename to lib/libc/include/powerpc-linux-gnu/bits/floatn.h diff --git a/libc/include/powerpc-linux-gnu/bits/fp-fast.h b/lib/libc/include/powerpc-linux-gnu/bits/fp-fast.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/fp-fast.h rename to lib/libc/include/powerpc-linux-gnu/bits/fp-fast.h diff --git a/libc/include/powerpc-linux-gnu/bits/hwcap.h b/lib/libc/include/powerpc-linux-gnu/bits/hwcap.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/hwcap.h rename to lib/libc/include/powerpc-linux-gnu/bits/hwcap.h diff --git a/libc/include/powerpc-linux-gnu/bits/ioctl-types.h b/lib/libc/include/powerpc-linux-gnu/bits/ioctl-types.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/ioctl-types.h rename to lib/libc/include/powerpc-linux-gnu/bits/ioctl-types.h diff --git a/libc/include/powerpc-linux-gnu/bits/ipc.h b/lib/libc/include/powerpc-linux-gnu/bits/ipc.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/ipc.h rename to lib/libc/include/powerpc-linux-gnu/bits/ipc.h diff --git a/libc/include/powerpc-linux-gnu/bits/iscanonical.h b/lib/libc/include/powerpc-linux-gnu/bits/iscanonical.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/iscanonical.h rename to lib/libc/include/powerpc-linux-gnu/bits/iscanonical.h diff --git a/libc/include/powerpc-linux-gnu/bits/link.h b/lib/libc/include/powerpc-linux-gnu/bits/link.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/link.h rename to lib/libc/include/powerpc-linux-gnu/bits/link.h diff --git a/libc/include/powerpc-linux-gnu/bits/local_lim.h b/lib/libc/include/powerpc-linux-gnu/bits/local_lim.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/local_lim.h rename to lib/libc/include/powerpc-linux-gnu/bits/local_lim.h diff --git a/libc/include/powerpc-linux-gnu/bits/long-double.h b/lib/libc/include/powerpc-linux-gnu/bits/long-double.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/long-double.h rename to lib/libc/include/powerpc-linux-gnu/bits/long-double.h diff --git a/libc/include/powerpc-linux-gnu/bits/mman.h b/lib/libc/include/powerpc-linux-gnu/bits/mman.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/mman.h rename to lib/libc/include/powerpc-linux-gnu/bits/mman.h diff --git a/libc/include/powerpc-linux-gnu/bits/msq-pad.h b/lib/libc/include/powerpc-linux-gnu/bits/msq-pad.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/msq-pad.h rename to lib/libc/include/powerpc-linux-gnu/bits/msq-pad.h diff --git a/libc/include/powerpc-linux-gnu/bits/procfs.h b/lib/libc/include/powerpc-linux-gnu/bits/procfs.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/procfs.h rename to lib/libc/include/powerpc-linux-gnu/bits/procfs.h diff --git a/libc/include/powerpc-linux-gnu/bits/pthreadtypes-arch.h b/lib/libc/include/powerpc-linux-gnu/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/pthreadtypes-arch.h rename to lib/libc/include/powerpc-linux-gnu/bits/pthreadtypes-arch.h diff --git a/libc/include/powerpc-linux-gnu/bits/sem-pad.h b/lib/libc/include/powerpc-linux-gnu/bits/sem-pad.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/sem-pad.h rename to lib/libc/include/powerpc-linux-gnu/bits/sem-pad.h diff --git a/libc/include/powerpc-linux-gnu/bits/semaphore.h b/lib/libc/include/powerpc-linux-gnu/bits/semaphore.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/semaphore.h rename to lib/libc/include/powerpc-linux-gnu/bits/semaphore.h diff --git a/libc/include/powerpc-linux-gnu/bits/setjmp.h b/lib/libc/include/powerpc-linux-gnu/bits/setjmp.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/setjmp.h rename to lib/libc/include/powerpc-linux-gnu/bits/setjmp.h diff --git a/libc/include/powerpc-linux-gnu/bits/shm-pad.h b/lib/libc/include/powerpc-linux-gnu/bits/shm-pad.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/shm-pad.h rename to lib/libc/include/powerpc-linux-gnu/bits/shm-pad.h diff --git a/libc/include/powerpc-linux-gnu/bits/sigstack.h b/lib/libc/include/powerpc-linux-gnu/bits/sigstack.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/sigstack.h rename to lib/libc/include/powerpc-linux-gnu/bits/sigstack.h diff --git a/libc/include/powerpc-linux-gnu/bits/stat.h b/lib/libc/include/powerpc-linux-gnu/bits/stat.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/stat.h rename to lib/libc/include/powerpc-linux-gnu/bits/stat.h diff --git a/libc/include/powerpc-linux-gnu/bits/termios-baud.h b/lib/libc/include/powerpc-linux-gnu/bits/termios-baud.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/termios-baud.h rename to lib/libc/include/powerpc-linux-gnu/bits/termios-baud.h diff --git a/libc/include/powerpc-linux-gnu/bits/termios-c_cc.h b/lib/libc/include/powerpc-linux-gnu/bits/termios-c_cc.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/termios-c_cc.h rename to lib/libc/include/powerpc-linux-gnu/bits/termios-c_cc.h diff --git a/libc/include/powerpc-linux-gnu/bits/termios-c_cflag.h b/lib/libc/include/powerpc-linux-gnu/bits/termios-c_cflag.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/termios-c_cflag.h rename to lib/libc/include/powerpc-linux-gnu/bits/termios-c_cflag.h diff --git a/libc/include/powerpc-linux-gnu/bits/termios-c_iflag.h b/lib/libc/include/powerpc-linux-gnu/bits/termios-c_iflag.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/termios-c_iflag.h rename to lib/libc/include/powerpc-linux-gnu/bits/termios-c_iflag.h diff --git a/libc/include/powerpc-linux-gnu/bits/termios-c_lflag.h b/lib/libc/include/powerpc-linux-gnu/bits/termios-c_lflag.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/termios-c_lflag.h rename to lib/libc/include/powerpc-linux-gnu/bits/termios-c_lflag.h diff --git a/libc/include/powerpc-linux-gnu/bits/termios-c_oflag.h b/lib/libc/include/powerpc-linux-gnu/bits/termios-c_oflag.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/termios-c_oflag.h rename to lib/libc/include/powerpc-linux-gnu/bits/termios-c_oflag.h diff --git a/libc/include/powerpc-linux-gnu/bits/termios-misc.h b/lib/libc/include/powerpc-linux-gnu/bits/termios-misc.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/termios-misc.h rename to lib/libc/include/powerpc-linux-gnu/bits/termios-misc.h diff --git a/libc/include/powerpc-linux-gnu/bits/wordsize.h b/lib/libc/include/powerpc-linux-gnu/bits/wordsize.h similarity index 100% rename from libc/include/powerpc-linux-gnu/bits/wordsize.h rename to lib/libc/include/powerpc-linux-gnu/bits/wordsize.h diff --git a/libc/include/powerpc-linux-gnu/fpu_control.h b/lib/libc/include/powerpc-linux-gnu/fpu_control.h similarity index 100% rename from libc/include/powerpc-linux-gnu/fpu_control.h rename to lib/libc/include/powerpc-linux-gnu/fpu_control.h diff --git a/libc/include/powerpc-linux-gnu/gnu/lib-names-32.h b/lib/libc/include/powerpc-linux-gnu/gnu/lib-names-32.h similarity index 100% rename from libc/include/powerpc-linux-gnu/gnu/lib-names-32.h rename to lib/libc/include/powerpc-linux-gnu/gnu/lib-names-32.h diff --git a/libc/include/powerpc-linux-gnu/gnu/lib-names.h b/lib/libc/include/powerpc-linux-gnu/gnu/lib-names.h similarity index 100% rename from libc/include/powerpc-linux-gnu/gnu/lib-names.h rename to lib/libc/include/powerpc-linux-gnu/gnu/lib-names.h diff --git a/libc/include/powerpc-linux-gnu/gnu/stubs.h b/lib/libc/include/powerpc-linux-gnu/gnu/stubs.h similarity index 100% rename from libc/include/powerpc-linux-gnu/gnu/stubs.h rename to lib/libc/include/powerpc-linux-gnu/gnu/stubs.h diff --git a/libc/include/powerpc-linux-gnu/ieee754.h b/lib/libc/include/powerpc-linux-gnu/ieee754.h similarity index 100% rename from libc/include/powerpc-linux-gnu/ieee754.h rename to lib/libc/include/powerpc-linux-gnu/ieee754.h diff --git a/libc/include/powerpc-linux-gnu/sys/ptrace.h b/lib/libc/include/powerpc-linux-gnu/sys/ptrace.h similarity index 100% rename from libc/include/powerpc-linux-gnu/sys/ptrace.h rename to lib/libc/include/powerpc-linux-gnu/sys/ptrace.h diff --git a/libc/include/powerpc-linux-gnu/sys/ucontext.h b/lib/libc/include/powerpc-linux-gnu/sys/ucontext.h similarity index 100% rename from libc/include/powerpc-linux-gnu/sys/ucontext.h rename to lib/libc/include/powerpc-linux-gnu/sys/ucontext.h diff --git a/libc/include/powerpc-linux-gnu/sys/user.h b/lib/libc/include/powerpc-linux-gnu/sys/user.h similarity index 100% rename from libc/include/powerpc-linux-gnu/sys/user.h rename to lib/libc/include/powerpc-linux-gnu/sys/user.h diff --git a/libc/include/powerpc-linux-musl/bfd.h b/lib/libc/include/powerpc-linux-musl/bfd.h similarity index 100% rename from libc/include/powerpc-linux-musl/bfd.h rename to lib/libc/include/powerpc-linux-musl/bfd.h diff --git a/libc/include/powerpc-linux-musl/bfd_stdint.h b/lib/libc/include/powerpc-linux-musl/bfd_stdint.h similarity index 100% rename from libc/include/powerpc-linux-musl/bfd_stdint.h rename to lib/libc/include/powerpc-linux-musl/bfd_stdint.h diff --git a/libc/include/powerpc-linux-musl/bits/alltypes.h b/lib/libc/include/powerpc-linux-musl/bits/alltypes.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/alltypes.h rename to lib/libc/include/powerpc-linux-musl/bits/alltypes.h diff --git a/libc/include/powerpc-linux-musl/bits/endian.h b/lib/libc/include/powerpc-linux-musl/bits/endian.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/endian.h rename to lib/libc/include/powerpc-linux-musl/bits/endian.h diff --git a/libc/include/powerpc-linux-musl/bits/errno.h b/lib/libc/include/powerpc-linux-musl/bits/errno.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/errno.h rename to lib/libc/include/powerpc-linux-musl/bits/errno.h diff --git a/libc/include/powerpc-linux-musl/bits/fcntl.h b/lib/libc/include/powerpc-linux-musl/bits/fcntl.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/fcntl.h rename to lib/libc/include/powerpc-linux-musl/bits/fcntl.h diff --git a/libc/include/powerpc-linux-musl/bits/fenv.h b/lib/libc/include/powerpc-linux-musl/bits/fenv.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/fenv.h rename to lib/libc/include/powerpc-linux-musl/bits/fenv.h diff --git a/libc/include/powerpc-linux-musl/bits/hwcap.h b/lib/libc/include/powerpc-linux-musl/bits/hwcap.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/hwcap.h rename to lib/libc/include/powerpc-linux-musl/bits/hwcap.h diff --git a/libc/include/powerpc-linux-musl/bits/ioctl.h b/lib/libc/include/powerpc-linux-musl/bits/ioctl.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/ioctl.h rename to lib/libc/include/powerpc-linux-musl/bits/ioctl.h diff --git a/libc/include/powerpc-linux-musl/bits/ipc.h b/lib/libc/include/powerpc-linux-musl/bits/ipc.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/ipc.h rename to lib/libc/include/powerpc-linux-musl/bits/ipc.h diff --git a/libc/include/powerpc-linux-musl/bits/mman.h b/lib/libc/include/powerpc-linux-musl/bits/mman.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/mman.h rename to lib/libc/include/powerpc-linux-musl/bits/mman.h diff --git a/libc/include/powerpc-linux-musl/bits/msg.h b/lib/libc/include/powerpc-linux-musl/bits/msg.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/msg.h rename to lib/libc/include/powerpc-linux-musl/bits/msg.h diff --git a/libc/include/powerpc-linux-musl/bits/ptrace.h b/lib/libc/include/powerpc-linux-musl/bits/ptrace.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/ptrace.h rename to lib/libc/include/powerpc-linux-musl/bits/ptrace.h diff --git a/libc/include/powerpc-linux-musl/bits/sem.h b/lib/libc/include/powerpc-linux-musl/bits/sem.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/sem.h rename to lib/libc/include/powerpc-linux-musl/bits/sem.h diff --git a/libc/include/powerpc-linux-musl/bits/setjmp.h b/lib/libc/include/powerpc-linux-musl/bits/setjmp.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/setjmp.h rename to lib/libc/include/powerpc-linux-musl/bits/setjmp.h diff --git a/libc/include/powerpc-linux-musl/bits/shm.h b/lib/libc/include/powerpc-linux-musl/bits/shm.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/shm.h rename to lib/libc/include/powerpc-linux-musl/bits/shm.h diff --git a/libc/include/powerpc-linux-musl/bits/signal.h b/lib/libc/include/powerpc-linux-musl/bits/signal.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/signal.h rename to lib/libc/include/powerpc-linux-musl/bits/signal.h diff --git a/libc/include/powerpc-linux-musl/bits/socket.h b/lib/libc/include/powerpc-linux-musl/bits/socket.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/socket.h rename to lib/libc/include/powerpc-linux-musl/bits/socket.h diff --git a/libc/include/powerpc-linux-musl/bits/stat.h b/lib/libc/include/powerpc-linux-musl/bits/stat.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/stat.h rename to lib/libc/include/powerpc-linux-musl/bits/stat.h diff --git a/libc/include/powerpc-linux-musl/bits/stdint.h b/lib/libc/include/powerpc-linux-musl/bits/stdint.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/stdint.h rename to lib/libc/include/powerpc-linux-musl/bits/stdint.h diff --git a/libc/include/powerpc-linux-musl/bits/syscall.h b/lib/libc/include/powerpc-linux-musl/bits/syscall.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/syscall.h rename to lib/libc/include/powerpc-linux-musl/bits/syscall.h diff --git a/libc/include/powerpc-linux-musl/bits/termios.h b/lib/libc/include/powerpc-linux-musl/bits/termios.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/termios.h rename to lib/libc/include/powerpc-linux-musl/bits/termios.h diff --git a/libc/include/powerpc-linux-musl/bits/user.h b/lib/libc/include/powerpc-linux-musl/bits/user.h similarity index 100% rename from libc/include/powerpc-linux-musl/bits/user.h rename to lib/libc/include/powerpc-linux-musl/bits/user.h diff --git a/libc/include/powerpc64-linux-any/asm/auxvec.h b/lib/libc/include/powerpc64-linux-any/asm/auxvec.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/auxvec.h rename to lib/libc/include/powerpc64-linux-any/asm/auxvec.h diff --git a/libc/include/powerpc64-linux-any/asm/bitsperlong.h b/lib/libc/include/powerpc64-linux-any/asm/bitsperlong.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/bitsperlong.h rename to lib/libc/include/powerpc64-linux-any/asm/bitsperlong.h diff --git a/libc/include/powerpc64-linux-any/asm/byteorder.h b/lib/libc/include/powerpc64-linux-any/asm/byteorder.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/byteorder.h rename to lib/libc/include/powerpc64-linux-any/asm/byteorder.h diff --git a/libc/include/powerpc64-linux-any/asm/errno.h b/lib/libc/include/powerpc64-linux-any/asm/errno.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/errno.h rename to lib/libc/include/powerpc64-linux-any/asm/errno.h diff --git a/libc/include/powerpc64-linux-any/asm/fcntl.h b/lib/libc/include/powerpc64-linux-any/asm/fcntl.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/fcntl.h rename to lib/libc/include/powerpc64-linux-any/asm/fcntl.h diff --git a/libc/include/powerpc64-linux-any/asm/ioctl.h b/lib/libc/include/powerpc64-linux-any/asm/ioctl.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/ioctl.h rename to lib/libc/include/powerpc64-linux-any/asm/ioctl.h diff --git a/libc/include/powerpc64-linux-any/asm/ioctls.h b/lib/libc/include/powerpc64-linux-any/asm/ioctls.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/ioctls.h rename to lib/libc/include/powerpc64-linux-any/asm/ioctls.h diff --git a/libc/include/powerpc64-linux-any/asm/ipcbuf.h b/lib/libc/include/powerpc64-linux-any/asm/ipcbuf.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/ipcbuf.h rename to lib/libc/include/powerpc64-linux-any/asm/ipcbuf.h diff --git a/libc/include/powerpc64-linux-any/asm/kvm.h b/lib/libc/include/powerpc64-linux-any/asm/kvm.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/kvm.h rename to lib/libc/include/powerpc64-linux-any/asm/kvm.h diff --git a/libc/include/powerpc64-linux-any/asm/kvm_para.h b/lib/libc/include/powerpc64-linux-any/asm/kvm_para.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/kvm_para.h rename to lib/libc/include/powerpc64-linux-any/asm/kvm_para.h diff --git a/libc/include/powerpc64-linux-any/asm/mman.h b/lib/libc/include/powerpc64-linux-any/asm/mman.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/mman.h rename to lib/libc/include/powerpc64-linux-any/asm/mman.h diff --git a/libc/include/powerpc64-linux-any/asm/msgbuf.h b/lib/libc/include/powerpc64-linux-any/asm/msgbuf.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/msgbuf.h rename to lib/libc/include/powerpc64-linux-any/asm/msgbuf.h diff --git a/libc/include/powerpc64-linux-any/asm/perf_regs.h b/lib/libc/include/powerpc64-linux-any/asm/perf_regs.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/perf_regs.h rename to lib/libc/include/powerpc64-linux-any/asm/perf_regs.h diff --git a/libc/include/powerpc64-linux-any/asm/posix_types.h b/lib/libc/include/powerpc64-linux-any/asm/posix_types.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/posix_types.h rename to lib/libc/include/powerpc64-linux-any/asm/posix_types.h diff --git a/libc/include/powerpc64-linux-any/asm/ptrace.h b/lib/libc/include/powerpc64-linux-any/asm/ptrace.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/ptrace.h rename to lib/libc/include/powerpc64-linux-any/asm/ptrace.h diff --git a/libc/include/powerpc64-linux-any/asm/sembuf.h b/lib/libc/include/powerpc64-linux-any/asm/sembuf.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/sembuf.h rename to lib/libc/include/powerpc64-linux-any/asm/sembuf.h diff --git a/libc/include/powerpc64-linux-any/asm/setup.h b/lib/libc/include/powerpc64-linux-any/asm/setup.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/setup.h rename to lib/libc/include/powerpc64-linux-any/asm/setup.h diff --git a/libc/include/powerpc64-linux-any/asm/shmbuf.h b/lib/libc/include/powerpc64-linux-any/asm/shmbuf.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/shmbuf.h rename to lib/libc/include/powerpc64-linux-any/asm/shmbuf.h diff --git a/libc/include/powerpc64-linux-any/asm/sigcontext.h b/lib/libc/include/powerpc64-linux-any/asm/sigcontext.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/sigcontext.h rename to lib/libc/include/powerpc64-linux-any/asm/sigcontext.h diff --git a/libc/include/powerpc64-linux-any/asm/siginfo.h b/lib/libc/include/powerpc64-linux-any/asm/siginfo.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/siginfo.h rename to lib/libc/include/powerpc64-linux-any/asm/siginfo.h diff --git a/libc/include/powerpc64-linux-any/asm/signal.h b/lib/libc/include/powerpc64-linux-any/asm/signal.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/signal.h rename to lib/libc/include/powerpc64-linux-any/asm/signal.h diff --git a/libc/include/powerpc64-linux-any/asm/socket.h b/lib/libc/include/powerpc64-linux-any/asm/socket.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/socket.h rename to lib/libc/include/powerpc64-linux-any/asm/socket.h diff --git a/libc/include/powerpc64-linux-any/asm/stat.h b/lib/libc/include/powerpc64-linux-any/asm/stat.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/stat.h rename to lib/libc/include/powerpc64-linux-any/asm/stat.h diff --git a/libc/include/powerpc64-linux-any/asm/swab.h b/lib/libc/include/powerpc64-linux-any/asm/swab.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/swab.h rename to lib/libc/include/powerpc64-linux-any/asm/swab.h diff --git a/libc/include/powerpc64-linux-any/asm/termbits.h b/lib/libc/include/powerpc64-linux-any/asm/termbits.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/termbits.h rename to lib/libc/include/powerpc64-linux-any/asm/termbits.h diff --git a/libc/include/powerpc64-linux-any/asm/termios.h b/lib/libc/include/powerpc64-linux-any/asm/termios.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/termios.h rename to lib/libc/include/powerpc64-linux-any/asm/termios.h diff --git a/libc/include/powerpc64-linux-any/asm/types.h b/lib/libc/include/powerpc64-linux-any/asm/types.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/types.h rename to lib/libc/include/powerpc64-linux-any/asm/types.h diff --git a/libc/include/powerpc64-linux-any/asm/ucontext.h b/lib/libc/include/powerpc64-linux-any/asm/ucontext.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/ucontext.h rename to lib/libc/include/powerpc64-linux-any/asm/ucontext.h diff --git a/libc/include/powerpc64-linux-any/asm/unistd.h b/lib/libc/include/powerpc64-linux-any/asm/unistd.h similarity index 100% rename from libc/include/powerpc64-linux-any/asm/unistd.h rename to lib/libc/include/powerpc64-linux-any/asm/unistd.h diff --git a/libc/include/powerpc64-linux-gnu/bits/endian.h b/lib/libc/include/powerpc64-linux-gnu/bits/endian.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/endian.h rename to lib/libc/include/powerpc64-linux-gnu/bits/endian.h diff --git a/libc/include/powerpc64-linux-gnu/bits/environments.h b/lib/libc/include/powerpc64-linux-gnu/bits/environments.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/environments.h rename to lib/libc/include/powerpc64-linux-gnu/bits/environments.h diff --git a/libc/include/powerpc64-linux-gnu/bits/fcntl.h b/lib/libc/include/powerpc64-linux-gnu/bits/fcntl.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/fcntl.h rename to lib/libc/include/powerpc64-linux-gnu/bits/fcntl.h diff --git a/libc/include/powerpc64-linux-gnu/bits/fenv.h b/lib/libc/include/powerpc64-linux-gnu/bits/fenv.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/fenv.h rename to lib/libc/include/powerpc64-linux-gnu/bits/fenv.h diff --git a/libc/include/powerpc64-linux-gnu/bits/fenvinline.h b/lib/libc/include/powerpc64-linux-gnu/bits/fenvinline.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/fenvinline.h rename to lib/libc/include/powerpc64-linux-gnu/bits/fenvinline.h diff --git a/libc/include/powerpc64-linux-gnu/bits/floatn.h b/lib/libc/include/powerpc64-linux-gnu/bits/floatn.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/floatn.h rename to lib/libc/include/powerpc64-linux-gnu/bits/floatn.h diff --git a/libc/include/powerpc64-linux-gnu/bits/fp-fast.h b/lib/libc/include/powerpc64-linux-gnu/bits/fp-fast.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/fp-fast.h rename to lib/libc/include/powerpc64-linux-gnu/bits/fp-fast.h diff --git a/libc/include/powerpc64-linux-gnu/bits/hwcap.h b/lib/libc/include/powerpc64-linux-gnu/bits/hwcap.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/hwcap.h rename to lib/libc/include/powerpc64-linux-gnu/bits/hwcap.h diff --git a/libc/include/powerpc64-linux-gnu/bits/ioctl-types.h b/lib/libc/include/powerpc64-linux-gnu/bits/ioctl-types.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/ioctl-types.h rename to lib/libc/include/powerpc64-linux-gnu/bits/ioctl-types.h diff --git a/libc/include/powerpc64-linux-gnu/bits/ipc.h b/lib/libc/include/powerpc64-linux-gnu/bits/ipc.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/ipc.h rename to lib/libc/include/powerpc64-linux-gnu/bits/ipc.h diff --git a/libc/include/powerpc64-linux-gnu/bits/iscanonical.h b/lib/libc/include/powerpc64-linux-gnu/bits/iscanonical.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/iscanonical.h rename to lib/libc/include/powerpc64-linux-gnu/bits/iscanonical.h diff --git a/libc/include/powerpc64-linux-gnu/bits/link.h b/lib/libc/include/powerpc64-linux-gnu/bits/link.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/link.h rename to lib/libc/include/powerpc64-linux-gnu/bits/link.h diff --git a/libc/include/powerpc64-linux-gnu/bits/local_lim.h b/lib/libc/include/powerpc64-linux-gnu/bits/local_lim.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/local_lim.h rename to lib/libc/include/powerpc64-linux-gnu/bits/local_lim.h diff --git a/libc/include/powerpc64-linux-gnu/bits/long-double.h b/lib/libc/include/powerpc64-linux-gnu/bits/long-double.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/long-double.h rename to lib/libc/include/powerpc64-linux-gnu/bits/long-double.h diff --git a/libc/include/powerpc64-linux-gnu/bits/mman.h b/lib/libc/include/powerpc64-linux-gnu/bits/mman.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/mman.h rename to lib/libc/include/powerpc64-linux-gnu/bits/mman.h diff --git a/libc/include/powerpc64-linux-gnu/bits/msq-pad.h b/lib/libc/include/powerpc64-linux-gnu/bits/msq-pad.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/msq-pad.h rename to lib/libc/include/powerpc64-linux-gnu/bits/msq-pad.h diff --git a/libc/include/powerpc64-linux-gnu/bits/procfs.h b/lib/libc/include/powerpc64-linux-gnu/bits/procfs.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/procfs.h rename to lib/libc/include/powerpc64-linux-gnu/bits/procfs.h diff --git a/libc/include/powerpc64-linux-gnu/bits/pthreadtypes-arch.h b/lib/libc/include/powerpc64-linux-gnu/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/pthreadtypes-arch.h rename to lib/libc/include/powerpc64-linux-gnu/bits/pthreadtypes-arch.h diff --git a/libc/include/powerpc64-linux-gnu/bits/sem-pad.h b/lib/libc/include/powerpc64-linux-gnu/bits/sem-pad.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/sem-pad.h rename to lib/libc/include/powerpc64-linux-gnu/bits/sem-pad.h diff --git a/libc/include/powerpc64-linux-gnu/bits/semaphore.h b/lib/libc/include/powerpc64-linux-gnu/bits/semaphore.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/semaphore.h rename to lib/libc/include/powerpc64-linux-gnu/bits/semaphore.h diff --git a/libc/include/powerpc64-linux-gnu/bits/setjmp.h b/lib/libc/include/powerpc64-linux-gnu/bits/setjmp.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/setjmp.h rename to lib/libc/include/powerpc64-linux-gnu/bits/setjmp.h diff --git a/libc/include/powerpc64-linux-gnu/bits/shm-pad.h b/lib/libc/include/powerpc64-linux-gnu/bits/shm-pad.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/shm-pad.h rename to lib/libc/include/powerpc64-linux-gnu/bits/shm-pad.h diff --git a/libc/include/powerpc64-linux-gnu/bits/sigstack.h b/lib/libc/include/powerpc64-linux-gnu/bits/sigstack.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/sigstack.h rename to lib/libc/include/powerpc64-linux-gnu/bits/sigstack.h diff --git a/libc/include/powerpc64-linux-gnu/bits/stat.h b/lib/libc/include/powerpc64-linux-gnu/bits/stat.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/stat.h rename to lib/libc/include/powerpc64-linux-gnu/bits/stat.h diff --git a/libc/include/powerpc64-linux-gnu/bits/termios-baud.h b/lib/libc/include/powerpc64-linux-gnu/bits/termios-baud.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/termios-baud.h rename to lib/libc/include/powerpc64-linux-gnu/bits/termios-baud.h diff --git a/libc/include/powerpc64-linux-gnu/bits/termios-c_cc.h b/lib/libc/include/powerpc64-linux-gnu/bits/termios-c_cc.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/termios-c_cc.h rename to lib/libc/include/powerpc64-linux-gnu/bits/termios-c_cc.h diff --git a/libc/include/powerpc64-linux-gnu/bits/termios-c_cflag.h b/lib/libc/include/powerpc64-linux-gnu/bits/termios-c_cflag.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/termios-c_cflag.h rename to lib/libc/include/powerpc64-linux-gnu/bits/termios-c_cflag.h diff --git a/libc/include/powerpc64-linux-gnu/bits/termios-c_iflag.h b/lib/libc/include/powerpc64-linux-gnu/bits/termios-c_iflag.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/termios-c_iflag.h rename to lib/libc/include/powerpc64-linux-gnu/bits/termios-c_iflag.h diff --git a/libc/include/powerpc64-linux-gnu/bits/termios-c_lflag.h b/lib/libc/include/powerpc64-linux-gnu/bits/termios-c_lflag.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/termios-c_lflag.h rename to lib/libc/include/powerpc64-linux-gnu/bits/termios-c_lflag.h diff --git a/libc/include/powerpc64-linux-gnu/bits/termios-c_oflag.h b/lib/libc/include/powerpc64-linux-gnu/bits/termios-c_oflag.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/termios-c_oflag.h rename to lib/libc/include/powerpc64-linux-gnu/bits/termios-c_oflag.h diff --git a/libc/include/powerpc64-linux-gnu/bits/termios-misc.h b/lib/libc/include/powerpc64-linux-gnu/bits/termios-misc.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/termios-misc.h rename to lib/libc/include/powerpc64-linux-gnu/bits/termios-misc.h diff --git a/libc/include/powerpc64-linux-gnu/bits/wordsize.h b/lib/libc/include/powerpc64-linux-gnu/bits/wordsize.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/bits/wordsize.h rename to lib/libc/include/powerpc64-linux-gnu/bits/wordsize.h diff --git a/libc/include/powerpc64-linux-gnu/fpu_control.h b/lib/libc/include/powerpc64-linux-gnu/fpu_control.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/fpu_control.h rename to lib/libc/include/powerpc64-linux-gnu/fpu_control.h diff --git a/libc/include/powerpc64-linux-gnu/gnu/lib-names-64-v1.h b/lib/libc/include/powerpc64-linux-gnu/gnu/lib-names-64-v1.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/gnu/lib-names-64-v1.h rename to lib/libc/include/powerpc64-linux-gnu/gnu/lib-names-64-v1.h diff --git a/libc/include/powerpc64-linux-gnu/gnu/lib-names.h b/lib/libc/include/powerpc64-linux-gnu/gnu/lib-names.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/gnu/lib-names.h rename to lib/libc/include/powerpc64-linux-gnu/gnu/lib-names.h diff --git a/libc/include/powerpc64-linux-gnu/gnu/stubs-64-v1.h b/lib/libc/include/powerpc64-linux-gnu/gnu/stubs-64-v1.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/gnu/stubs-64-v1.h rename to lib/libc/include/powerpc64-linux-gnu/gnu/stubs-64-v1.h diff --git a/libc/include/powerpc64-linux-gnu/gnu/stubs.h b/lib/libc/include/powerpc64-linux-gnu/gnu/stubs.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/gnu/stubs.h rename to lib/libc/include/powerpc64-linux-gnu/gnu/stubs.h diff --git a/libc/include/powerpc64-linux-gnu/ieee754.h b/lib/libc/include/powerpc64-linux-gnu/ieee754.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/ieee754.h rename to lib/libc/include/powerpc64-linux-gnu/ieee754.h diff --git a/libc/include/powerpc64-linux-gnu/sys/ptrace.h b/lib/libc/include/powerpc64-linux-gnu/sys/ptrace.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/sys/ptrace.h rename to lib/libc/include/powerpc64-linux-gnu/sys/ptrace.h diff --git a/libc/include/powerpc64-linux-gnu/sys/ucontext.h b/lib/libc/include/powerpc64-linux-gnu/sys/ucontext.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/sys/ucontext.h rename to lib/libc/include/powerpc64-linux-gnu/sys/ucontext.h diff --git a/libc/include/powerpc64-linux-gnu/sys/user.h b/lib/libc/include/powerpc64-linux-gnu/sys/user.h similarity index 100% rename from libc/include/powerpc64-linux-gnu/sys/user.h rename to lib/libc/include/powerpc64-linux-gnu/sys/user.h diff --git a/libc/include/powerpc64-linux-musl/bfd_stdint.h b/lib/libc/include/powerpc64-linux-musl/bfd_stdint.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bfd_stdint.h rename to lib/libc/include/powerpc64-linux-musl/bfd_stdint.h diff --git a/libc/include/powerpc64-linux-musl/bits/alltypes.h b/lib/libc/include/powerpc64-linux-musl/bits/alltypes.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/alltypes.h rename to lib/libc/include/powerpc64-linux-musl/bits/alltypes.h diff --git a/libc/include/powerpc64-linux-musl/bits/endian.h b/lib/libc/include/powerpc64-linux-musl/bits/endian.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/endian.h rename to lib/libc/include/powerpc64-linux-musl/bits/endian.h diff --git a/libc/include/powerpc64-linux-musl/bits/errno.h b/lib/libc/include/powerpc64-linux-musl/bits/errno.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/errno.h rename to lib/libc/include/powerpc64-linux-musl/bits/errno.h diff --git a/libc/include/powerpc64-linux-musl/bits/fcntl.h b/lib/libc/include/powerpc64-linux-musl/bits/fcntl.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/fcntl.h rename to lib/libc/include/powerpc64-linux-musl/bits/fcntl.h diff --git a/libc/include/powerpc64-linux-musl/bits/fenv.h b/lib/libc/include/powerpc64-linux-musl/bits/fenv.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/fenv.h rename to lib/libc/include/powerpc64-linux-musl/bits/fenv.h diff --git a/libc/include/powerpc64-linux-musl/bits/hwcap.h b/lib/libc/include/powerpc64-linux-musl/bits/hwcap.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/hwcap.h rename to lib/libc/include/powerpc64-linux-musl/bits/hwcap.h diff --git a/libc/include/powerpc64-linux-musl/bits/ioctl.h b/lib/libc/include/powerpc64-linux-musl/bits/ioctl.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/ioctl.h rename to lib/libc/include/powerpc64-linux-musl/bits/ioctl.h diff --git a/libc/include/powerpc64-linux-musl/bits/ipc.h b/lib/libc/include/powerpc64-linux-musl/bits/ipc.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/ipc.h rename to lib/libc/include/powerpc64-linux-musl/bits/ipc.h diff --git a/libc/include/powerpc64-linux-musl/bits/limits.h b/lib/libc/include/powerpc64-linux-musl/bits/limits.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/limits.h rename to lib/libc/include/powerpc64-linux-musl/bits/limits.h diff --git a/libc/include/powerpc64-linux-musl/bits/mman.h b/lib/libc/include/powerpc64-linux-musl/bits/mman.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/mman.h rename to lib/libc/include/powerpc64-linux-musl/bits/mman.h diff --git a/libc/include/powerpc64-linux-musl/bits/msg.h b/lib/libc/include/powerpc64-linux-musl/bits/msg.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/msg.h rename to lib/libc/include/powerpc64-linux-musl/bits/msg.h diff --git a/libc/include/powerpc64-linux-musl/bits/posix.h b/lib/libc/include/powerpc64-linux-musl/bits/posix.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/posix.h rename to lib/libc/include/powerpc64-linux-musl/bits/posix.h diff --git a/libc/include/powerpc64-linux-musl/bits/ptrace.h b/lib/libc/include/powerpc64-linux-musl/bits/ptrace.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/ptrace.h rename to lib/libc/include/powerpc64-linux-musl/bits/ptrace.h diff --git a/libc/include/powerpc64-linux-musl/bits/reg.h b/lib/libc/include/powerpc64-linux-musl/bits/reg.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/reg.h rename to lib/libc/include/powerpc64-linux-musl/bits/reg.h diff --git a/libc/include/powerpc64-linux-musl/bits/sem.h b/lib/libc/include/powerpc64-linux-musl/bits/sem.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/sem.h rename to lib/libc/include/powerpc64-linux-musl/bits/sem.h diff --git a/libc/include/powerpc64-linux-musl/bits/setjmp.h b/lib/libc/include/powerpc64-linux-musl/bits/setjmp.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/setjmp.h rename to lib/libc/include/powerpc64-linux-musl/bits/setjmp.h diff --git a/libc/include/powerpc64-linux-musl/bits/shm.h b/lib/libc/include/powerpc64-linux-musl/bits/shm.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/shm.h rename to lib/libc/include/powerpc64-linux-musl/bits/shm.h diff --git a/libc/include/powerpc64-linux-musl/bits/signal.h b/lib/libc/include/powerpc64-linux-musl/bits/signal.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/signal.h rename to lib/libc/include/powerpc64-linux-musl/bits/signal.h diff --git a/libc/include/powerpc64-linux-musl/bits/socket.h b/lib/libc/include/powerpc64-linux-musl/bits/socket.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/socket.h rename to lib/libc/include/powerpc64-linux-musl/bits/socket.h diff --git a/libc/include/powerpc64-linux-musl/bits/stat.h b/lib/libc/include/powerpc64-linux-musl/bits/stat.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/stat.h rename to lib/libc/include/powerpc64-linux-musl/bits/stat.h diff --git a/libc/include/powerpc64-linux-musl/bits/syscall.h b/lib/libc/include/powerpc64-linux-musl/bits/syscall.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/syscall.h rename to lib/libc/include/powerpc64-linux-musl/bits/syscall.h diff --git a/libc/include/powerpc64-linux-musl/bits/termios.h b/lib/libc/include/powerpc64-linux-musl/bits/termios.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/termios.h rename to lib/libc/include/powerpc64-linux-musl/bits/termios.h diff --git a/libc/include/powerpc64-linux-musl/bits/user.h b/lib/libc/include/powerpc64-linux-musl/bits/user.h similarity index 100% rename from libc/include/powerpc64-linux-musl/bits/user.h rename to lib/libc/include/powerpc64-linux-musl/bits/user.h diff --git a/libc/include/powerpc64le-linux-any/asm/auxvec.h b/lib/libc/include/powerpc64le-linux-any/asm/auxvec.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/auxvec.h rename to lib/libc/include/powerpc64le-linux-any/asm/auxvec.h diff --git a/libc/include/powerpc64le-linux-any/asm/bitsperlong.h b/lib/libc/include/powerpc64le-linux-any/asm/bitsperlong.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/bitsperlong.h rename to lib/libc/include/powerpc64le-linux-any/asm/bitsperlong.h diff --git a/libc/include/powerpc64le-linux-any/asm/byteorder.h b/lib/libc/include/powerpc64le-linux-any/asm/byteorder.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/byteorder.h rename to lib/libc/include/powerpc64le-linux-any/asm/byteorder.h diff --git a/libc/include/powerpc64le-linux-any/asm/errno.h b/lib/libc/include/powerpc64le-linux-any/asm/errno.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/errno.h rename to lib/libc/include/powerpc64le-linux-any/asm/errno.h diff --git a/libc/include/powerpc64le-linux-any/asm/fcntl.h b/lib/libc/include/powerpc64le-linux-any/asm/fcntl.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/fcntl.h rename to lib/libc/include/powerpc64le-linux-any/asm/fcntl.h diff --git a/libc/include/powerpc64le-linux-any/asm/ioctl.h b/lib/libc/include/powerpc64le-linux-any/asm/ioctl.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/ioctl.h rename to lib/libc/include/powerpc64le-linux-any/asm/ioctl.h diff --git a/libc/include/powerpc64le-linux-any/asm/ioctls.h b/lib/libc/include/powerpc64le-linux-any/asm/ioctls.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/ioctls.h rename to lib/libc/include/powerpc64le-linux-any/asm/ioctls.h diff --git a/libc/include/powerpc64le-linux-any/asm/ipcbuf.h b/lib/libc/include/powerpc64le-linux-any/asm/ipcbuf.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/ipcbuf.h rename to lib/libc/include/powerpc64le-linux-any/asm/ipcbuf.h diff --git a/libc/include/powerpc64le-linux-any/asm/kvm.h b/lib/libc/include/powerpc64le-linux-any/asm/kvm.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/kvm.h rename to lib/libc/include/powerpc64le-linux-any/asm/kvm.h diff --git a/libc/include/powerpc64le-linux-any/asm/kvm_para.h b/lib/libc/include/powerpc64le-linux-any/asm/kvm_para.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/kvm_para.h rename to lib/libc/include/powerpc64le-linux-any/asm/kvm_para.h diff --git a/libc/include/powerpc64le-linux-any/asm/mman.h b/lib/libc/include/powerpc64le-linux-any/asm/mman.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/mman.h rename to lib/libc/include/powerpc64le-linux-any/asm/mman.h diff --git a/libc/include/powerpc64le-linux-any/asm/msgbuf.h b/lib/libc/include/powerpc64le-linux-any/asm/msgbuf.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/msgbuf.h rename to lib/libc/include/powerpc64le-linux-any/asm/msgbuf.h diff --git a/libc/include/powerpc64le-linux-any/asm/perf_regs.h b/lib/libc/include/powerpc64le-linux-any/asm/perf_regs.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/perf_regs.h rename to lib/libc/include/powerpc64le-linux-any/asm/perf_regs.h diff --git a/libc/include/powerpc64le-linux-any/asm/posix_types.h b/lib/libc/include/powerpc64le-linux-any/asm/posix_types.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/posix_types.h rename to lib/libc/include/powerpc64le-linux-any/asm/posix_types.h diff --git a/libc/include/powerpc64le-linux-any/asm/ptrace.h b/lib/libc/include/powerpc64le-linux-any/asm/ptrace.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/ptrace.h rename to lib/libc/include/powerpc64le-linux-any/asm/ptrace.h diff --git a/libc/include/powerpc64le-linux-any/asm/sembuf.h b/lib/libc/include/powerpc64le-linux-any/asm/sembuf.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/sembuf.h rename to lib/libc/include/powerpc64le-linux-any/asm/sembuf.h diff --git a/libc/include/powerpc64le-linux-any/asm/setup.h b/lib/libc/include/powerpc64le-linux-any/asm/setup.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/setup.h rename to lib/libc/include/powerpc64le-linux-any/asm/setup.h diff --git a/libc/include/powerpc64le-linux-any/asm/shmbuf.h b/lib/libc/include/powerpc64le-linux-any/asm/shmbuf.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/shmbuf.h rename to lib/libc/include/powerpc64le-linux-any/asm/shmbuf.h diff --git a/libc/include/powerpc64le-linux-any/asm/sigcontext.h b/lib/libc/include/powerpc64le-linux-any/asm/sigcontext.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/sigcontext.h rename to lib/libc/include/powerpc64le-linux-any/asm/sigcontext.h diff --git a/libc/include/powerpc64le-linux-any/asm/siginfo.h b/lib/libc/include/powerpc64le-linux-any/asm/siginfo.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/siginfo.h rename to lib/libc/include/powerpc64le-linux-any/asm/siginfo.h diff --git a/libc/include/powerpc64le-linux-any/asm/signal.h b/lib/libc/include/powerpc64le-linux-any/asm/signal.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/signal.h rename to lib/libc/include/powerpc64le-linux-any/asm/signal.h diff --git a/libc/include/powerpc64le-linux-any/asm/socket.h b/lib/libc/include/powerpc64le-linux-any/asm/socket.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/socket.h rename to lib/libc/include/powerpc64le-linux-any/asm/socket.h diff --git a/libc/include/powerpc64le-linux-any/asm/stat.h b/lib/libc/include/powerpc64le-linux-any/asm/stat.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/stat.h rename to lib/libc/include/powerpc64le-linux-any/asm/stat.h diff --git a/libc/include/powerpc64le-linux-any/asm/swab.h b/lib/libc/include/powerpc64le-linux-any/asm/swab.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/swab.h rename to lib/libc/include/powerpc64le-linux-any/asm/swab.h diff --git a/libc/include/powerpc64le-linux-any/asm/termbits.h b/lib/libc/include/powerpc64le-linux-any/asm/termbits.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/termbits.h rename to lib/libc/include/powerpc64le-linux-any/asm/termbits.h diff --git a/libc/include/powerpc64le-linux-any/asm/termios.h b/lib/libc/include/powerpc64le-linux-any/asm/termios.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/termios.h rename to lib/libc/include/powerpc64le-linux-any/asm/termios.h diff --git a/libc/include/powerpc64le-linux-any/asm/types.h b/lib/libc/include/powerpc64le-linux-any/asm/types.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/types.h rename to lib/libc/include/powerpc64le-linux-any/asm/types.h diff --git a/libc/include/powerpc64le-linux-any/asm/ucontext.h b/lib/libc/include/powerpc64le-linux-any/asm/ucontext.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/ucontext.h rename to lib/libc/include/powerpc64le-linux-any/asm/ucontext.h diff --git a/libc/include/powerpc64le-linux-any/asm/unistd.h b/lib/libc/include/powerpc64le-linux-any/asm/unistd.h similarity index 100% rename from libc/include/powerpc64le-linux-any/asm/unistd.h rename to lib/libc/include/powerpc64le-linux-any/asm/unistd.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/endian.h b/lib/libc/include/powerpc64le-linux-gnu/bits/endian.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/endian.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/endian.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/environments.h b/lib/libc/include/powerpc64le-linux-gnu/bits/environments.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/environments.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/environments.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/fcntl.h b/lib/libc/include/powerpc64le-linux-gnu/bits/fcntl.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/fcntl.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/fcntl.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/fenv.h b/lib/libc/include/powerpc64le-linux-gnu/bits/fenv.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/fenv.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/fenv.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/fenvinline.h b/lib/libc/include/powerpc64le-linux-gnu/bits/fenvinline.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/fenvinline.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/fenvinline.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/floatn.h b/lib/libc/include/powerpc64le-linux-gnu/bits/floatn.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/floatn.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/floatn.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/fp-fast.h b/lib/libc/include/powerpc64le-linux-gnu/bits/fp-fast.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/fp-fast.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/fp-fast.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/hwcap.h b/lib/libc/include/powerpc64le-linux-gnu/bits/hwcap.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/hwcap.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/hwcap.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/ioctl-types.h b/lib/libc/include/powerpc64le-linux-gnu/bits/ioctl-types.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/ioctl-types.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/ioctl-types.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/ipc.h b/lib/libc/include/powerpc64le-linux-gnu/bits/ipc.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/ipc.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/ipc.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/iscanonical.h b/lib/libc/include/powerpc64le-linux-gnu/bits/iscanonical.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/iscanonical.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/iscanonical.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/link.h b/lib/libc/include/powerpc64le-linux-gnu/bits/link.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/link.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/link.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/local_lim.h b/lib/libc/include/powerpc64le-linux-gnu/bits/local_lim.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/local_lim.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/local_lim.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/long-double.h b/lib/libc/include/powerpc64le-linux-gnu/bits/long-double.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/long-double.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/long-double.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/mman.h b/lib/libc/include/powerpc64le-linux-gnu/bits/mman.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/mman.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/mman.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/msq-pad.h b/lib/libc/include/powerpc64le-linux-gnu/bits/msq-pad.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/msq-pad.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/msq-pad.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/procfs.h b/lib/libc/include/powerpc64le-linux-gnu/bits/procfs.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/procfs.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/procfs.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/pthreadtypes-arch.h b/lib/libc/include/powerpc64le-linux-gnu/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/pthreadtypes-arch.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/pthreadtypes-arch.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/sem-pad.h b/lib/libc/include/powerpc64le-linux-gnu/bits/sem-pad.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/sem-pad.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/sem-pad.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/semaphore.h b/lib/libc/include/powerpc64le-linux-gnu/bits/semaphore.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/semaphore.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/semaphore.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/setjmp.h b/lib/libc/include/powerpc64le-linux-gnu/bits/setjmp.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/setjmp.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/setjmp.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/shm-pad.h b/lib/libc/include/powerpc64le-linux-gnu/bits/shm-pad.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/shm-pad.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/shm-pad.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/sigstack.h b/lib/libc/include/powerpc64le-linux-gnu/bits/sigstack.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/sigstack.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/sigstack.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/stat.h b/lib/libc/include/powerpc64le-linux-gnu/bits/stat.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/stat.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/stat.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/termios-baud.h b/lib/libc/include/powerpc64le-linux-gnu/bits/termios-baud.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/termios-baud.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/termios-baud.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/termios-c_cc.h b/lib/libc/include/powerpc64le-linux-gnu/bits/termios-c_cc.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/termios-c_cc.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/termios-c_cc.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/termios-c_cflag.h b/lib/libc/include/powerpc64le-linux-gnu/bits/termios-c_cflag.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/termios-c_cflag.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/termios-c_cflag.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/termios-c_iflag.h b/lib/libc/include/powerpc64le-linux-gnu/bits/termios-c_iflag.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/termios-c_iflag.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/termios-c_iflag.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/termios-c_lflag.h b/lib/libc/include/powerpc64le-linux-gnu/bits/termios-c_lflag.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/termios-c_lflag.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/termios-c_lflag.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/termios-c_oflag.h b/lib/libc/include/powerpc64le-linux-gnu/bits/termios-c_oflag.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/termios-c_oflag.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/termios-c_oflag.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/termios-misc.h b/lib/libc/include/powerpc64le-linux-gnu/bits/termios-misc.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/termios-misc.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/termios-misc.h diff --git a/libc/include/powerpc64le-linux-gnu/bits/wordsize.h b/lib/libc/include/powerpc64le-linux-gnu/bits/wordsize.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/bits/wordsize.h rename to lib/libc/include/powerpc64le-linux-gnu/bits/wordsize.h diff --git a/libc/include/powerpc64le-linux-gnu/fpu_control.h b/lib/libc/include/powerpc64le-linux-gnu/fpu_control.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/fpu_control.h rename to lib/libc/include/powerpc64le-linux-gnu/fpu_control.h diff --git a/libc/include/powerpc64le-linux-gnu/gnu/lib-names-64-v2.h b/lib/libc/include/powerpc64le-linux-gnu/gnu/lib-names-64-v2.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/gnu/lib-names-64-v2.h rename to lib/libc/include/powerpc64le-linux-gnu/gnu/lib-names-64-v2.h diff --git a/libc/include/powerpc64le-linux-gnu/gnu/lib-names.h b/lib/libc/include/powerpc64le-linux-gnu/gnu/lib-names.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/gnu/lib-names.h rename to lib/libc/include/powerpc64le-linux-gnu/gnu/lib-names.h diff --git a/libc/include/powerpc64le-linux-gnu/gnu/stubs-64-v2.h b/lib/libc/include/powerpc64le-linux-gnu/gnu/stubs-64-v2.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/gnu/stubs-64-v2.h rename to lib/libc/include/powerpc64le-linux-gnu/gnu/stubs-64-v2.h diff --git a/libc/include/powerpc64le-linux-gnu/gnu/stubs.h b/lib/libc/include/powerpc64le-linux-gnu/gnu/stubs.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/gnu/stubs.h rename to lib/libc/include/powerpc64le-linux-gnu/gnu/stubs.h diff --git a/libc/include/powerpc64le-linux-gnu/ieee754.h b/lib/libc/include/powerpc64le-linux-gnu/ieee754.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/ieee754.h rename to lib/libc/include/powerpc64le-linux-gnu/ieee754.h diff --git a/libc/include/powerpc64le-linux-gnu/sys/ptrace.h b/lib/libc/include/powerpc64le-linux-gnu/sys/ptrace.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/sys/ptrace.h rename to lib/libc/include/powerpc64le-linux-gnu/sys/ptrace.h diff --git a/libc/include/powerpc64le-linux-gnu/sys/ucontext.h b/lib/libc/include/powerpc64le-linux-gnu/sys/ucontext.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/sys/ucontext.h rename to lib/libc/include/powerpc64le-linux-gnu/sys/ucontext.h diff --git a/libc/include/powerpc64le-linux-gnu/sys/user.h b/lib/libc/include/powerpc64le-linux-gnu/sys/user.h similarity index 100% rename from libc/include/powerpc64le-linux-gnu/sys/user.h rename to lib/libc/include/powerpc64le-linux-gnu/sys/user.h diff --git a/libc/include/powerpc64le-linux-musl/bfd_stdint.h b/lib/libc/include/powerpc64le-linux-musl/bfd_stdint.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bfd_stdint.h rename to lib/libc/include/powerpc64le-linux-musl/bfd_stdint.h diff --git a/libc/include/powerpc64le-linux-musl/bits/alltypes.h b/lib/libc/include/powerpc64le-linux-musl/bits/alltypes.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/alltypes.h rename to lib/libc/include/powerpc64le-linux-musl/bits/alltypes.h diff --git a/libc/include/powerpc64le-linux-musl/bits/endian.h b/lib/libc/include/powerpc64le-linux-musl/bits/endian.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/endian.h rename to lib/libc/include/powerpc64le-linux-musl/bits/endian.h diff --git a/libc/include/powerpc64le-linux-musl/bits/errno.h b/lib/libc/include/powerpc64le-linux-musl/bits/errno.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/errno.h rename to lib/libc/include/powerpc64le-linux-musl/bits/errno.h diff --git a/libc/include/powerpc64le-linux-musl/bits/fcntl.h b/lib/libc/include/powerpc64le-linux-musl/bits/fcntl.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/fcntl.h rename to lib/libc/include/powerpc64le-linux-musl/bits/fcntl.h diff --git a/libc/include/powerpc64le-linux-musl/bits/fenv.h b/lib/libc/include/powerpc64le-linux-musl/bits/fenv.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/fenv.h rename to lib/libc/include/powerpc64le-linux-musl/bits/fenv.h diff --git a/libc/include/powerpc64le-linux-musl/bits/hwcap.h b/lib/libc/include/powerpc64le-linux-musl/bits/hwcap.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/hwcap.h rename to lib/libc/include/powerpc64le-linux-musl/bits/hwcap.h diff --git a/libc/include/powerpc64le-linux-musl/bits/ioctl.h b/lib/libc/include/powerpc64le-linux-musl/bits/ioctl.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/ioctl.h rename to lib/libc/include/powerpc64le-linux-musl/bits/ioctl.h diff --git a/libc/include/powerpc64le-linux-musl/bits/ipc.h b/lib/libc/include/powerpc64le-linux-musl/bits/ipc.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/ipc.h rename to lib/libc/include/powerpc64le-linux-musl/bits/ipc.h diff --git a/libc/include/powerpc64le-linux-musl/bits/limits.h b/lib/libc/include/powerpc64le-linux-musl/bits/limits.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/limits.h rename to lib/libc/include/powerpc64le-linux-musl/bits/limits.h diff --git a/libc/include/powerpc64le-linux-musl/bits/mman.h b/lib/libc/include/powerpc64le-linux-musl/bits/mman.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/mman.h rename to lib/libc/include/powerpc64le-linux-musl/bits/mman.h diff --git a/libc/include/powerpc64le-linux-musl/bits/msg.h b/lib/libc/include/powerpc64le-linux-musl/bits/msg.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/msg.h rename to lib/libc/include/powerpc64le-linux-musl/bits/msg.h diff --git a/libc/include/powerpc64le-linux-musl/bits/posix.h b/lib/libc/include/powerpc64le-linux-musl/bits/posix.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/posix.h rename to lib/libc/include/powerpc64le-linux-musl/bits/posix.h diff --git a/libc/include/powerpc64le-linux-musl/bits/ptrace.h b/lib/libc/include/powerpc64le-linux-musl/bits/ptrace.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/ptrace.h rename to lib/libc/include/powerpc64le-linux-musl/bits/ptrace.h diff --git a/libc/include/powerpc64le-linux-musl/bits/reg.h b/lib/libc/include/powerpc64le-linux-musl/bits/reg.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/reg.h rename to lib/libc/include/powerpc64le-linux-musl/bits/reg.h diff --git a/libc/include/powerpc64le-linux-musl/bits/sem.h b/lib/libc/include/powerpc64le-linux-musl/bits/sem.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/sem.h rename to lib/libc/include/powerpc64le-linux-musl/bits/sem.h diff --git a/libc/include/powerpc64le-linux-musl/bits/setjmp.h b/lib/libc/include/powerpc64le-linux-musl/bits/setjmp.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/setjmp.h rename to lib/libc/include/powerpc64le-linux-musl/bits/setjmp.h diff --git a/libc/include/powerpc64le-linux-musl/bits/shm.h b/lib/libc/include/powerpc64le-linux-musl/bits/shm.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/shm.h rename to lib/libc/include/powerpc64le-linux-musl/bits/shm.h diff --git a/libc/include/powerpc64le-linux-musl/bits/signal.h b/lib/libc/include/powerpc64le-linux-musl/bits/signal.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/signal.h rename to lib/libc/include/powerpc64le-linux-musl/bits/signal.h diff --git a/libc/include/powerpc64le-linux-musl/bits/socket.h b/lib/libc/include/powerpc64le-linux-musl/bits/socket.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/socket.h rename to lib/libc/include/powerpc64le-linux-musl/bits/socket.h diff --git a/libc/include/powerpc64le-linux-musl/bits/stat.h b/lib/libc/include/powerpc64le-linux-musl/bits/stat.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/stat.h rename to lib/libc/include/powerpc64le-linux-musl/bits/stat.h diff --git a/libc/include/powerpc64le-linux-musl/bits/syscall.h b/lib/libc/include/powerpc64le-linux-musl/bits/syscall.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/syscall.h rename to lib/libc/include/powerpc64le-linux-musl/bits/syscall.h diff --git a/libc/include/powerpc64le-linux-musl/bits/termios.h b/lib/libc/include/powerpc64le-linux-musl/bits/termios.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/termios.h rename to lib/libc/include/powerpc64le-linux-musl/bits/termios.h diff --git a/libc/include/powerpc64le-linux-musl/bits/user.h b/lib/libc/include/powerpc64le-linux-musl/bits/user.h similarity index 100% rename from libc/include/powerpc64le-linux-musl/bits/user.h rename to lib/libc/include/powerpc64le-linux-musl/bits/user.h diff --git a/libc/include/riscv32-linux-any/asm/auxvec.h b/lib/libc/include/riscv32-linux-any/asm/auxvec.h similarity index 100% rename from libc/include/riscv32-linux-any/asm/auxvec.h rename to lib/libc/include/riscv32-linux-any/asm/auxvec.h diff --git a/libc/include/riscv32-linux-any/asm/bitsperlong.h b/lib/libc/include/riscv32-linux-any/asm/bitsperlong.h similarity index 100% rename from libc/include/riscv32-linux-any/asm/bitsperlong.h rename to lib/libc/include/riscv32-linux-any/asm/bitsperlong.h diff --git a/libc/include/riscv32-linux-any/asm/byteorder.h b/lib/libc/include/riscv32-linux-any/asm/byteorder.h similarity index 100% rename from libc/include/riscv32-linux-any/asm/byteorder.h rename to lib/libc/include/riscv32-linux-any/asm/byteorder.h diff --git a/libc/include/riscv32-linux-any/asm/elf.h b/lib/libc/include/riscv32-linux-any/asm/elf.h similarity index 100% rename from libc/include/riscv32-linux-any/asm/elf.h rename to lib/libc/include/riscv32-linux-any/asm/elf.h diff --git a/libc/include/riscv32-linux-any/asm/hwcap.h b/lib/libc/include/riscv32-linux-any/asm/hwcap.h similarity index 100% rename from libc/include/riscv32-linux-any/asm/hwcap.h rename to lib/libc/include/riscv32-linux-any/asm/hwcap.h diff --git a/libc/include/riscv32-linux-any/asm/posix_types.h b/lib/libc/include/riscv32-linux-any/asm/posix_types.h similarity index 100% rename from libc/include/riscv32-linux-any/asm/posix_types.h rename to lib/libc/include/riscv32-linux-any/asm/posix_types.h diff --git a/libc/include/riscv32-linux-any/asm/ptrace.h b/lib/libc/include/riscv32-linux-any/asm/ptrace.h similarity index 100% rename from libc/include/riscv32-linux-any/asm/ptrace.h rename to lib/libc/include/riscv32-linux-any/asm/ptrace.h diff --git a/libc/include/riscv32-linux-any/asm/setup.h b/lib/libc/include/riscv32-linux-any/asm/setup.h similarity index 100% rename from libc/include/riscv32-linux-any/asm/setup.h rename to lib/libc/include/riscv32-linux-any/asm/setup.h diff --git a/libc/include/riscv32-linux-any/asm/sigcontext.h b/lib/libc/include/riscv32-linux-any/asm/sigcontext.h similarity index 100% rename from libc/include/riscv32-linux-any/asm/sigcontext.h rename to lib/libc/include/riscv32-linux-any/asm/sigcontext.h diff --git a/libc/include/riscv32-linux-any/asm/siginfo.h b/lib/libc/include/riscv32-linux-any/asm/siginfo.h similarity index 100% rename from libc/include/riscv32-linux-any/asm/siginfo.h rename to lib/libc/include/riscv32-linux-any/asm/siginfo.h diff --git a/libc/include/riscv32-linux-any/asm/signal.h b/lib/libc/include/riscv32-linux-any/asm/signal.h similarity index 100% rename from libc/include/riscv32-linux-any/asm/signal.h rename to lib/libc/include/riscv32-linux-any/asm/signal.h diff --git a/libc/include/riscv32-linux-any/asm/stat.h b/lib/libc/include/riscv32-linux-any/asm/stat.h similarity index 100% rename from libc/include/riscv32-linux-any/asm/stat.h rename to lib/libc/include/riscv32-linux-any/asm/stat.h diff --git a/libc/include/riscv32-linux-any/asm/ucontext.h b/lib/libc/include/riscv32-linux-any/asm/ucontext.h similarity index 100% rename from libc/include/riscv32-linux-any/asm/ucontext.h rename to lib/libc/include/riscv32-linux-any/asm/ucontext.h diff --git a/libc/include/riscv32-linux-any/asm/unistd.h b/lib/libc/include/riscv32-linux-any/asm/unistd.h similarity index 100% rename from libc/include/riscv32-linux-any/asm/unistd.h rename to lib/libc/include/riscv32-linux-any/asm/unistd.h diff --git a/libc/include/riscv32-linux-musl/bfd.h b/lib/libc/include/riscv32-linux-musl/bfd.h similarity index 100% rename from libc/include/riscv32-linux-musl/bfd.h rename to lib/libc/include/riscv32-linux-musl/bfd.h diff --git a/libc/include/riscv32-linux-musl/bfd_stdint.h b/lib/libc/include/riscv32-linux-musl/bfd_stdint.h similarity index 100% rename from libc/include/riscv32-linux-musl/bfd_stdint.h rename to lib/libc/include/riscv32-linux-musl/bfd_stdint.h diff --git a/libc/include/riscv32-linux-musl/bits/alltypes.h b/lib/libc/include/riscv32-linux-musl/bits/alltypes.h similarity index 100% rename from libc/include/riscv32-linux-musl/bits/alltypes.h rename to lib/libc/include/riscv32-linux-musl/bits/alltypes.h diff --git a/libc/include/riscv32-linux-musl/bits/endian.h b/lib/libc/include/riscv32-linux-musl/bits/endian.h similarity index 100% rename from libc/include/riscv32-linux-musl/bits/endian.h rename to lib/libc/include/riscv32-linux-musl/bits/endian.h diff --git a/libc/include/riscv32-linux-musl/bits/fenv.h b/lib/libc/include/riscv32-linux-musl/bits/fenv.h similarity index 100% rename from libc/include/riscv32-linux-musl/bits/fenv.h rename to lib/libc/include/riscv32-linux-musl/bits/fenv.h diff --git a/libc/include/riscv32-linux-musl/bits/float.h b/lib/libc/include/riscv32-linux-musl/bits/float.h similarity index 100% rename from libc/include/riscv32-linux-musl/bits/float.h rename to lib/libc/include/riscv32-linux-musl/bits/float.h diff --git a/libc/include/riscv32-linux-musl/bits/ipc.h b/lib/libc/include/riscv32-linux-musl/bits/ipc.h similarity index 100% rename from libc/include/riscv32-linux-musl/bits/ipc.h rename to lib/libc/include/riscv32-linux-musl/bits/ipc.h diff --git a/libc/include/riscv32-linux-musl/bits/posix.h b/lib/libc/include/riscv32-linux-musl/bits/posix.h similarity index 100% rename from libc/include/riscv32-linux-musl/bits/posix.h rename to lib/libc/include/riscv32-linux-musl/bits/posix.h diff --git a/libc/include/riscv32-linux-musl/bits/reg.h b/lib/libc/include/riscv32-linux-musl/bits/reg.h similarity index 100% rename from libc/include/riscv32-linux-musl/bits/reg.h rename to lib/libc/include/riscv32-linux-musl/bits/reg.h diff --git a/libc/include/riscv32-linux-musl/bits/sem.h b/lib/libc/include/riscv32-linux-musl/bits/sem.h similarity index 100% rename from libc/include/riscv32-linux-musl/bits/sem.h rename to lib/libc/include/riscv32-linux-musl/bits/sem.h diff --git a/libc/include/riscv32-linux-musl/bits/setjmp.h b/lib/libc/include/riscv32-linux-musl/bits/setjmp.h similarity index 100% rename from libc/include/riscv32-linux-musl/bits/setjmp.h rename to lib/libc/include/riscv32-linux-musl/bits/setjmp.h diff --git a/libc/include/riscv32-linux-musl/bits/shm.h b/lib/libc/include/riscv32-linux-musl/bits/shm.h similarity index 100% rename from libc/include/riscv32-linux-musl/bits/shm.h rename to lib/libc/include/riscv32-linux-musl/bits/shm.h diff --git a/libc/include/riscv32-linux-musl/bits/signal.h b/lib/libc/include/riscv32-linux-musl/bits/signal.h similarity index 100% rename from libc/include/riscv32-linux-musl/bits/signal.h rename to lib/libc/include/riscv32-linux-musl/bits/signal.h diff --git a/libc/include/riscv32-linux-musl/bits/socket.h b/lib/libc/include/riscv32-linux-musl/bits/socket.h similarity index 100% rename from libc/include/riscv32-linux-musl/bits/socket.h rename to lib/libc/include/riscv32-linux-musl/bits/socket.h diff --git a/libc/include/riscv32-linux-musl/bits/stat.h b/lib/libc/include/riscv32-linux-musl/bits/stat.h similarity index 100% rename from libc/include/riscv32-linux-musl/bits/stat.h rename to lib/libc/include/riscv32-linux-musl/bits/stat.h diff --git a/libc/include/riscv32-linux-musl/bits/stdint.h b/lib/libc/include/riscv32-linux-musl/bits/stdint.h similarity index 100% rename from libc/include/riscv32-linux-musl/bits/stdint.h rename to lib/libc/include/riscv32-linux-musl/bits/stdint.h diff --git a/libc/include/riscv32-linux-musl/bits/syscall.h b/lib/libc/include/riscv32-linux-musl/bits/syscall.h similarity index 100% rename from libc/include/riscv32-linux-musl/bits/syscall.h rename to lib/libc/include/riscv32-linux-musl/bits/syscall.h diff --git a/libc/include/riscv32-linux-musl/bits/user.h b/lib/libc/include/riscv32-linux-musl/bits/user.h similarity index 100% rename from libc/include/riscv32-linux-musl/bits/user.h rename to lib/libc/include/riscv32-linux-musl/bits/user.h diff --git a/libc/include/riscv32-linux-musl/elf.h b/lib/libc/include/riscv32-linux-musl/elf.h similarity index 100% rename from libc/include/riscv32-linux-musl/elf.h rename to lib/libc/include/riscv32-linux-musl/elf.h diff --git a/libc/include/riscv32-linux-musl/netinet/tcp.h b/lib/libc/include/riscv32-linux-musl/netinet/tcp.h similarity index 100% rename from libc/include/riscv32-linux-musl/netinet/tcp.h rename to lib/libc/include/riscv32-linux-musl/netinet/tcp.h diff --git a/libc/include/riscv32-linux-musl/netinet/udp.h b/lib/libc/include/riscv32-linux-musl/netinet/udp.h similarity index 100% rename from libc/include/riscv32-linux-musl/netinet/udp.h rename to lib/libc/include/riscv32-linux-musl/netinet/udp.h diff --git a/libc/include/riscv32-linux-musl/signal.h b/lib/libc/include/riscv32-linux-musl/signal.h similarity index 100% rename from libc/include/riscv32-linux-musl/signal.h rename to lib/libc/include/riscv32-linux-musl/signal.h diff --git a/libc/include/riscv32-linux-musl/sys/signalfd.h b/lib/libc/include/riscv32-linux-musl/sys/signalfd.h similarity index 100% rename from libc/include/riscv32-linux-musl/sys/signalfd.h rename to lib/libc/include/riscv32-linux-musl/sys/signalfd.h diff --git a/libc/include/riscv32-linux-musl/sys/socket.h b/lib/libc/include/riscv32-linux-musl/sys/socket.h similarity index 100% rename from libc/include/riscv32-linux-musl/sys/socket.h rename to lib/libc/include/riscv32-linux-musl/sys/socket.h diff --git a/libc/include/riscv64-linux-any/asm/auxvec.h b/lib/libc/include/riscv64-linux-any/asm/auxvec.h similarity index 100% rename from libc/include/riscv64-linux-any/asm/auxvec.h rename to lib/libc/include/riscv64-linux-any/asm/auxvec.h diff --git a/libc/include/riscv64-linux-any/asm/bitsperlong.h b/lib/libc/include/riscv64-linux-any/asm/bitsperlong.h similarity index 100% rename from libc/include/riscv64-linux-any/asm/bitsperlong.h rename to lib/libc/include/riscv64-linux-any/asm/bitsperlong.h diff --git a/libc/include/riscv64-linux-any/asm/byteorder.h b/lib/libc/include/riscv64-linux-any/asm/byteorder.h similarity index 100% rename from libc/include/riscv64-linux-any/asm/byteorder.h rename to lib/libc/include/riscv64-linux-any/asm/byteorder.h diff --git a/libc/include/riscv64-linux-any/asm/elf.h b/lib/libc/include/riscv64-linux-any/asm/elf.h similarity index 100% rename from libc/include/riscv64-linux-any/asm/elf.h rename to lib/libc/include/riscv64-linux-any/asm/elf.h diff --git a/libc/include/riscv64-linux-any/asm/hwcap.h b/lib/libc/include/riscv64-linux-any/asm/hwcap.h similarity index 100% rename from libc/include/riscv64-linux-any/asm/hwcap.h rename to lib/libc/include/riscv64-linux-any/asm/hwcap.h diff --git a/libc/include/riscv64-linux-any/asm/posix_types.h b/lib/libc/include/riscv64-linux-any/asm/posix_types.h similarity index 100% rename from libc/include/riscv64-linux-any/asm/posix_types.h rename to lib/libc/include/riscv64-linux-any/asm/posix_types.h diff --git a/libc/include/riscv64-linux-any/asm/ptrace.h b/lib/libc/include/riscv64-linux-any/asm/ptrace.h similarity index 100% rename from libc/include/riscv64-linux-any/asm/ptrace.h rename to lib/libc/include/riscv64-linux-any/asm/ptrace.h diff --git a/libc/include/riscv64-linux-any/asm/setup.h b/lib/libc/include/riscv64-linux-any/asm/setup.h similarity index 100% rename from libc/include/riscv64-linux-any/asm/setup.h rename to lib/libc/include/riscv64-linux-any/asm/setup.h diff --git a/libc/include/riscv64-linux-any/asm/sigcontext.h b/lib/libc/include/riscv64-linux-any/asm/sigcontext.h similarity index 100% rename from libc/include/riscv64-linux-any/asm/sigcontext.h rename to lib/libc/include/riscv64-linux-any/asm/sigcontext.h diff --git a/libc/include/riscv64-linux-any/asm/siginfo.h b/lib/libc/include/riscv64-linux-any/asm/siginfo.h similarity index 100% rename from libc/include/riscv64-linux-any/asm/siginfo.h rename to lib/libc/include/riscv64-linux-any/asm/siginfo.h diff --git a/libc/include/riscv64-linux-any/asm/signal.h b/lib/libc/include/riscv64-linux-any/asm/signal.h similarity index 100% rename from libc/include/riscv64-linux-any/asm/signal.h rename to lib/libc/include/riscv64-linux-any/asm/signal.h diff --git a/libc/include/riscv64-linux-any/asm/stat.h b/lib/libc/include/riscv64-linux-any/asm/stat.h similarity index 100% rename from libc/include/riscv64-linux-any/asm/stat.h rename to lib/libc/include/riscv64-linux-any/asm/stat.h diff --git a/libc/include/riscv64-linux-any/asm/ucontext.h b/lib/libc/include/riscv64-linux-any/asm/ucontext.h similarity index 100% rename from libc/include/riscv64-linux-any/asm/ucontext.h rename to lib/libc/include/riscv64-linux-any/asm/ucontext.h diff --git a/libc/include/riscv64-linux-any/asm/unistd.h b/lib/libc/include/riscv64-linux-any/asm/unistd.h similarity index 100% rename from libc/include/riscv64-linux-any/asm/unistd.h rename to lib/libc/include/riscv64-linux-any/asm/unistd.h diff --git a/libc/include/riscv64-linux-gnu/bits/endian.h b/lib/libc/include/riscv64-linux-gnu/bits/endian.h similarity index 100% rename from libc/include/riscv64-linux-gnu/bits/endian.h rename to lib/libc/include/riscv64-linux-gnu/bits/endian.h diff --git a/libc/include/riscv64-linux-gnu/bits/fcntl.h b/lib/libc/include/riscv64-linux-gnu/bits/fcntl.h similarity index 100% rename from libc/include/riscv64-linux-gnu/bits/fcntl.h rename to lib/libc/include/riscv64-linux-gnu/bits/fcntl.h diff --git a/libc/include/riscv64-linux-gnu/bits/fenv.h b/lib/libc/include/riscv64-linux-gnu/bits/fenv.h similarity index 100% rename from libc/include/riscv64-linux-gnu/bits/fenv.h rename to lib/libc/include/riscv64-linux-gnu/bits/fenv.h diff --git a/libc/include/riscv64-linux-gnu/bits/floatn.h b/lib/libc/include/riscv64-linux-gnu/bits/floatn.h similarity index 100% rename from libc/include/riscv64-linux-gnu/bits/floatn.h rename to lib/libc/include/riscv64-linux-gnu/bits/floatn.h diff --git a/libc/include/riscv64-linux-gnu/bits/link.h b/lib/libc/include/riscv64-linux-gnu/bits/link.h similarity index 100% rename from libc/include/riscv64-linux-gnu/bits/link.h rename to lib/libc/include/riscv64-linux-gnu/bits/link.h diff --git a/libc/include/riscv64-linux-gnu/bits/long-double.h b/lib/libc/include/riscv64-linux-gnu/bits/long-double.h similarity index 100% rename from libc/include/riscv64-linux-gnu/bits/long-double.h rename to lib/libc/include/riscv64-linux-gnu/bits/long-double.h diff --git a/libc/include/riscv64-linux-gnu/bits/procfs.h b/lib/libc/include/riscv64-linux-gnu/bits/procfs.h similarity index 100% rename from libc/include/riscv64-linux-gnu/bits/procfs.h rename to lib/libc/include/riscv64-linux-gnu/bits/procfs.h diff --git a/libc/include/riscv64-linux-gnu/bits/pthreadtypes-arch.h b/lib/libc/include/riscv64-linux-gnu/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/riscv64-linux-gnu/bits/pthreadtypes-arch.h rename to lib/libc/include/riscv64-linux-gnu/bits/pthreadtypes-arch.h diff --git a/libc/include/riscv64-linux-gnu/bits/semaphore.h b/lib/libc/include/riscv64-linux-gnu/bits/semaphore.h similarity index 100% rename from libc/include/riscv64-linux-gnu/bits/semaphore.h rename to lib/libc/include/riscv64-linux-gnu/bits/semaphore.h diff --git a/libc/include/riscv64-linux-gnu/bits/setjmp.h b/lib/libc/include/riscv64-linux-gnu/bits/setjmp.h similarity index 100% rename from libc/include/riscv64-linux-gnu/bits/setjmp.h rename to lib/libc/include/riscv64-linux-gnu/bits/setjmp.h diff --git a/libc/include/riscv64-linux-gnu/bits/sigcontext.h b/lib/libc/include/riscv64-linux-gnu/bits/sigcontext.h similarity index 100% rename from libc/include/riscv64-linux-gnu/bits/sigcontext.h rename to lib/libc/include/riscv64-linux-gnu/bits/sigcontext.h diff --git a/libc/include/riscv64-linux-gnu/bits/stat.h b/lib/libc/include/riscv64-linux-gnu/bits/stat.h similarity index 100% rename from libc/include/riscv64-linux-gnu/bits/stat.h rename to lib/libc/include/riscv64-linux-gnu/bits/stat.h diff --git a/libc/include/riscv64-linux-gnu/bits/statfs.h b/lib/libc/include/riscv64-linux-gnu/bits/statfs.h similarity index 100% rename from libc/include/riscv64-linux-gnu/bits/statfs.h rename to lib/libc/include/riscv64-linux-gnu/bits/statfs.h diff --git a/libc/include/riscv64-linux-gnu/bits/typesizes.h b/lib/libc/include/riscv64-linux-gnu/bits/typesizes.h similarity index 100% rename from libc/include/riscv64-linux-gnu/bits/typesizes.h rename to lib/libc/include/riscv64-linux-gnu/bits/typesizes.h diff --git a/libc/include/riscv64-linux-gnu/bits/wordsize.h b/lib/libc/include/riscv64-linux-gnu/bits/wordsize.h similarity index 100% rename from libc/include/riscv64-linux-gnu/bits/wordsize.h rename to lib/libc/include/riscv64-linux-gnu/bits/wordsize.h diff --git a/libc/include/riscv64-linux-gnu/fpu_control.h b/lib/libc/include/riscv64-linux-gnu/fpu_control.h similarity index 100% rename from libc/include/riscv64-linux-gnu/fpu_control.h rename to lib/libc/include/riscv64-linux-gnu/fpu_control.h diff --git a/libc/include/riscv64-linux-gnu/gnu/lib-names-lp64.h b/lib/libc/include/riscv64-linux-gnu/gnu/lib-names-lp64.h similarity index 100% rename from libc/include/riscv64-linux-gnu/gnu/lib-names-lp64.h rename to lib/libc/include/riscv64-linux-gnu/gnu/lib-names-lp64.h diff --git a/libc/include/riscv64-linux-gnu/gnu/lib-names.h b/lib/libc/include/riscv64-linux-gnu/gnu/lib-names.h similarity index 100% rename from libc/include/riscv64-linux-gnu/gnu/lib-names.h rename to lib/libc/include/riscv64-linux-gnu/gnu/lib-names.h diff --git a/libc/include/riscv64-linux-gnu/gnu/stubs-lp64.h b/lib/libc/include/riscv64-linux-gnu/gnu/stubs-lp64.h similarity index 100% rename from libc/include/riscv64-linux-gnu/gnu/stubs-lp64.h rename to lib/libc/include/riscv64-linux-gnu/gnu/stubs-lp64.h diff --git a/libc/include/riscv64-linux-gnu/gnu/stubs.h b/lib/libc/include/riscv64-linux-gnu/gnu/stubs.h similarity index 100% rename from libc/include/riscv64-linux-gnu/gnu/stubs.h rename to lib/libc/include/riscv64-linux-gnu/gnu/stubs.h diff --git a/libc/include/riscv64-linux-gnu/ieee754.h b/lib/libc/include/riscv64-linux-gnu/ieee754.h similarity index 100% rename from libc/include/riscv64-linux-gnu/ieee754.h rename to lib/libc/include/riscv64-linux-gnu/ieee754.h diff --git a/libc/include/riscv64-linux-gnu/sys/asm.h b/lib/libc/include/riscv64-linux-gnu/sys/asm.h similarity index 100% rename from libc/include/riscv64-linux-gnu/sys/asm.h rename to lib/libc/include/riscv64-linux-gnu/sys/asm.h diff --git a/libc/include/riscv64-linux-gnu/sys/cachectl.h b/lib/libc/include/riscv64-linux-gnu/sys/cachectl.h similarity index 100% rename from libc/include/riscv64-linux-gnu/sys/cachectl.h rename to lib/libc/include/riscv64-linux-gnu/sys/cachectl.h diff --git a/libc/include/riscv64-linux-gnu/sys/ucontext.h b/lib/libc/include/riscv64-linux-gnu/sys/ucontext.h similarity index 100% rename from libc/include/riscv64-linux-gnu/sys/ucontext.h rename to lib/libc/include/riscv64-linux-gnu/sys/ucontext.h diff --git a/libc/include/riscv64-linux-gnu/sys/user.h b/lib/libc/include/riscv64-linux-gnu/sys/user.h similarity index 100% rename from libc/include/riscv64-linux-gnu/sys/user.h rename to lib/libc/include/riscv64-linux-gnu/sys/user.h diff --git a/libc/include/riscv64-linux-musl/bfd_stdint.h b/lib/libc/include/riscv64-linux-musl/bfd_stdint.h similarity index 100% rename from libc/include/riscv64-linux-musl/bfd_stdint.h rename to lib/libc/include/riscv64-linux-musl/bfd_stdint.h diff --git a/libc/include/riscv64-linux-musl/bits/alltypes.h b/lib/libc/include/riscv64-linux-musl/bits/alltypes.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/alltypes.h rename to lib/libc/include/riscv64-linux-musl/bits/alltypes.h diff --git a/libc/include/riscv64-linux-musl/bits/endian.h b/lib/libc/include/riscv64-linux-musl/bits/endian.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/endian.h rename to lib/libc/include/riscv64-linux-musl/bits/endian.h diff --git a/libc/include/riscv64-linux-musl/bits/fenv.h b/lib/libc/include/riscv64-linux-musl/bits/fenv.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/fenv.h rename to lib/libc/include/riscv64-linux-musl/bits/fenv.h diff --git a/libc/include/riscv64-linux-musl/bits/float.h b/lib/libc/include/riscv64-linux-musl/bits/float.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/float.h rename to lib/libc/include/riscv64-linux-musl/bits/float.h diff --git a/libc/include/riscv64-linux-musl/bits/ipc.h b/lib/libc/include/riscv64-linux-musl/bits/ipc.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/ipc.h rename to lib/libc/include/riscv64-linux-musl/bits/ipc.h diff --git a/libc/include/riscv64-linux-musl/bits/limits.h b/lib/libc/include/riscv64-linux-musl/bits/limits.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/limits.h rename to lib/libc/include/riscv64-linux-musl/bits/limits.h diff --git a/libc/include/riscv64-linux-musl/bits/mman.h b/lib/libc/include/riscv64-linux-musl/bits/mman.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/mman.h rename to lib/libc/include/riscv64-linux-musl/bits/mman.h diff --git a/libc/include/riscv64-linux-musl/bits/posix.h b/lib/libc/include/riscv64-linux-musl/bits/posix.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/posix.h rename to lib/libc/include/riscv64-linux-musl/bits/posix.h diff --git a/libc/include/riscv64-linux-musl/bits/reg.h b/lib/libc/include/riscv64-linux-musl/bits/reg.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/reg.h rename to lib/libc/include/riscv64-linux-musl/bits/reg.h diff --git a/libc/include/riscv64-linux-musl/bits/sem.h b/lib/libc/include/riscv64-linux-musl/bits/sem.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/sem.h rename to lib/libc/include/riscv64-linux-musl/bits/sem.h diff --git a/libc/include/riscv64-linux-musl/bits/setjmp.h b/lib/libc/include/riscv64-linux-musl/bits/setjmp.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/setjmp.h rename to lib/libc/include/riscv64-linux-musl/bits/setjmp.h diff --git a/libc/include/riscv64-linux-musl/bits/shm.h b/lib/libc/include/riscv64-linux-musl/bits/shm.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/shm.h rename to lib/libc/include/riscv64-linux-musl/bits/shm.h diff --git a/libc/include/riscv64-linux-musl/bits/signal.h b/lib/libc/include/riscv64-linux-musl/bits/signal.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/signal.h rename to lib/libc/include/riscv64-linux-musl/bits/signal.h diff --git a/libc/include/riscv64-linux-musl/bits/socket.h b/lib/libc/include/riscv64-linux-musl/bits/socket.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/socket.h rename to lib/libc/include/riscv64-linux-musl/bits/socket.h diff --git a/libc/include/riscv64-linux-musl/bits/stat.h b/lib/libc/include/riscv64-linux-musl/bits/stat.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/stat.h rename to lib/libc/include/riscv64-linux-musl/bits/stat.h diff --git a/libc/include/riscv64-linux-musl/bits/syscall.h b/lib/libc/include/riscv64-linux-musl/bits/syscall.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/syscall.h rename to lib/libc/include/riscv64-linux-musl/bits/syscall.h diff --git a/libc/include/riscv64-linux-musl/bits/user.h b/lib/libc/include/riscv64-linux-musl/bits/user.h similarity index 100% rename from libc/include/riscv64-linux-musl/bits/user.h rename to lib/libc/include/riscv64-linux-musl/bits/user.h diff --git a/libc/include/riscv64-linux-musl/elf.h b/lib/libc/include/riscv64-linux-musl/elf.h similarity index 100% rename from libc/include/riscv64-linux-musl/elf.h rename to lib/libc/include/riscv64-linux-musl/elf.h diff --git a/libc/include/riscv64-linux-musl/netinet/tcp.h b/lib/libc/include/riscv64-linux-musl/netinet/tcp.h similarity index 100% rename from libc/include/riscv64-linux-musl/netinet/tcp.h rename to lib/libc/include/riscv64-linux-musl/netinet/tcp.h diff --git a/libc/include/riscv64-linux-musl/netinet/udp.h b/lib/libc/include/riscv64-linux-musl/netinet/udp.h similarity index 100% rename from libc/include/riscv64-linux-musl/netinet/udp.h rename to lib/libc/include/riscv64-linux-musl/netinet/udp.h diff --git a/libc/include/riscv64-linux-musl/signal.h b/lib/libc/include/riscv64-linux-musl/signal.h similarity index 100% rename from libc/include/riscv64-linux-musl/signal.h rename to lib/libc/include/riscv64-linux-musl/signal.h diff --git a/libc/include/riscv64-linux-musl/sys/signalfd.h b/lib/libc/include/riscv64-linux-musl/sys/signalfd.h similarity index 100% rename from libc/include/riscv64-linux-musl/sys/signalfd.h rename to lib/libc/include/riscv64-linux-musl/sys/signalfd.h diff --git a/libc/include/riscv64-linux-musl/sys/socket.h b/lib/libc/include/riscv64-linux-musl/sys/socket.h similarity index 100% rename from libc/include/riscv64-linux-musl/sys/socket.h rename to lib/libc/include/riscv64-linux-musl/sys/socket.h diff --git a/libc/include/s390x-linux-any/asm/auxvec.h b/lib/libc/include/s390x-linux-any/asm/auxvec.h similarity index 100% rename from libc/include/s390x-linux-any/asm/auxvec.h rename to lib/libc/include/s390x-linux-any/asm/auxvec.h diff --git a/libc/include/s390x-linux-any/asm/bitsperlong.h b/lib/libc/include/s390x-linux-any/asm/bitsperlong.h similarity index 100% rename from libc/include/s390x-linux-any/asm/bitsperlong.h rename to lib/libc/include/s390x-linux-any/asm/bitsperlong.h diff --git a/libc/include/s390x-linux-any/asm/bpf_perf_event.h b/lib/libc/include/s390x-linux-any/asm/bpf_perf_event.h similarity index 100% rename from libc/include/s390x-linux-any/asm/bpf_perf_event.h rename to lib/libc/include/s390x-linux-any/asm/bpf_perf_event.h diff --git a/libc/include/s390x-linux-any/asm/byteorder.h b/lib/libc/include/s390x-linux-any/asm/byteorder.h similarity index 100% rename from libc/include/s390x-linux-any/asm/byteorder.h rename to lib/libc/include/s390x-linux-any/asm/byteorder.h diff --git a/libc/include/s390x-linux-any/asm/chpid.h b/lib/libc/include/s390x-linux-any/asm/chpid.h similarity index 100% rename from libc/include/s390x-linux-any/asm/chpid.h rename to lib/libc/include/s390x-linux-any/asm/chpid.h diff --git a/libc/include/s390x-linux-any/asm/chsc.h b/lib/libc/include/s390x-linux-any/asm/chsc.h similarity index 100% rename from libc/include/s390x-linux-any/asm/chsc.h rename to lib/libc/include/s390x-linux-any/asm/chsc.h diff --git a/libc/include/s390x-linux-any/asm/clp.h b/lib/libc/include/s390x-linux-any/asm/clp.h similarity index 100% rename from libc/include/s390x-linux-any/asm/clp.h rename to lib/libc/include/s390x-linux-any/asm/clp.h diff --git a/libc/include/s390x-linux-any/asm/cmb.h b/lib/libc/include/s390x-linux-any/asm/cmb.h similarity index 100% rename from libc/include/s390x-linux-any/asm/cmb.h rename to lib/libc/include/s390x-linux-any/asm/cmb.h diff --git a/libc/include/s390x-linux-any/asm/dasd.h b/lib/libc/include/s390x-linux-any/asm/dasd.h similarity index 100% rename from libc/include/s390x-linux-any/asm/dasd.h rename to lib/libc/include/s390x-linux-any/asm/dasd.h diff --git a/libc/include/s390x-linux-any/asm/debug.h b/lib/libc/include/s390x-linux-any/asm/debug.h similarity index 100% rename from libc/include/s390x-linux-any/asm/debug.h rename to lib/libc/include/s390x-linux-any/asm/debug.h diff --git a/libc/include/s390x-linux-any/asm/guarded_storage.h b/lib/libc/include/s390x-linux-any/asm/guarded_storage.h similarity index 100% rename from libc/include/s390x-linux-any/asm/guarded_storage.h rename to lib/libc/include/s390x-linux-any/asm/guarded_storage.h diff --git a/libc/include/s390x-linux-any/asm/hypfs.h b/lib/libc/include/s390x-linux-any/asm/hypfs.h similarity index 100% rename from libc/include/s390x-linux-any/asm/hypfs.h rename to lib/libc/include/s390x-linux-any/asm/hypfs.h diff --git a/libc/include/s390x-linux-any/asm/ioctls.h b/lib/libc/include/s390x-linux-any/asm/ioctls.h similarity index 100% rename from libc/include/s390x-linux-any/asm/ioctls.h rename to lib/libc/include/s390x-linux-any/asm/ioctls.h diff --git a/libc/include/s390x-linux-any/asm/ipcbuf.h b/lib/libc/include/s390x-linux-any/asm/ipcbuf.h similarity index 100% rename from libc/include/s390x-linux-any/asm/ipcbuf.h rename to lib/libc/include/s390x-linux-any/asm/ipcbuf.h diff --git a/libc/include/s390x-linux-any/asm/kvm.h b/lib/libc/include/s390x-linux-any/asm/kvm.h similarity index 100% rename from libc/include/s390x-linux-any/asm/kvm.h rename to lib/libc/include/s390x-linux-any/asm/kvm.h diff --git a/libc/include/s390x-linux-any/asm/kvm_para.h b/lib/libc/include/s390x-linux-any/asm/kvm_para.h similarity index 100% rename from libc/include/s390x-linux-any/asm/kvm_para.h rename to lib/libc/include/s390x-linux-any/asm/kvm_para.h diff --git a/libc/include/s390x-linux-any/asm/kvm_perf.h b/lib/libc/include/s390x-linux-any/asm/kvm_perf.h similarity index 100% rename from libc/include/s390x-linux-any/asm/kvm_perf.h rename to lib/libc/include/s390x-linux-any/asm/kvm_perf.h diff --git a/libc/include/s390x-linux-any/asm/monwriter.h b/lib/libc/include/s390x-linux-any/asm/monwriter.h similarity index 100% rename from libc/include/s390x-linux-any/asm/monwriter.h rename to lib/libc/include/s390x-linux-any/asm/monwriter.h diff --git a/libc/include/s390x-linux-any/asm/perf_regs.h b/lib/libc/include/s390x-linux-any/asm/perf_regs.h similarity index 100% rename from libc/include/s390x-linux-any/asm/perf_regs.h rename to lib/libc/include/s390x-linux-any/asm/perf_regs.h diff --git a/libc/include/s390x-linux-any/asm/pkey.h b/lib/libc/include/s390x-linux-any/asm/pkey.h similarity index 100% rename from libc/include/s390x-linux-any/asm/pkey.h rename to lib/libc/include/s390x-linux-any/asm/pkey.h diff --git a/libc/include/s390x-linux-any/asm/posix_types.h b/lib/libc/include/s390x-linux-any/asm/posix_types.h similarity index 100% rename from libc/include/s390x-linux-any/asm/posix_types.h rename to lib/libc/include/s390x-linux-any/asm/posix_types.h diff --git a/libc/include/s390x-linux-any/asm/ptrace.h b/lib/libc/include/s390x-linux-any/asm/ptrace.h similarity index 100% rename from libc/include/s390x-linux-any/asm/ptrace.h rename to lib/libc/include/s390x-linux-any/asm/ptrace.h diff --git a/libc/include/s390x-linux-any/asm/qeth.h b/lib/libc/include/s390x-linux-any/asm/qeth.h similarity index 100% rename from libc/include/s390x-linux-any/asm/qeth.h rename to lib/libc/include/s390x-linux-any/asm/qeth.h diff --git a/libc/include/s390x-linux-any/asm/runtime_instr.h b/lib/libc/include/s390x-linux-any/asm/runtime_instr.h similarity index 100% rename from libc/include/s390x-linux-any/asm/runtime_instr.h rename to lib/libc/include/s390x-linux-any/asm/runtime_instr.h diff --git a/libc/include/s390x-linux-any/asm/schid.h b/lib/libc/include/s390x-linux-any/asm/schid.h similarity index 100% rename from libc/include/s390x-linux-any/asm/schid.h rename to lib/libc/include/s390x-linux-any/asm/schid.h diff --git a/libc/include/s390x-linux-any/asm/sclp_ctl.h b/lib/libc/include/s390x-linux-any/asm/sclp_ctl.h similarity index 100% rename from libc/include/s390x-linux-any/asm/sclp_ctl.h rename to lib/libc/include/s390x-linux-any/asm/sclp_ctl.h diff --git a/libc/include/s390x-linux-any/asm/setup.h b/lib/libc/include/s390x-linux-any/asm/setup.h similarity index 100% rename from libc/include/s390x-linux-any/asm/setup.h rename to lib/libc/include/s390x-linux-any/asm/setup.h diff --git a/libc/include/s390x-linux-any/asm/sie.h b/lib/libc/include/s390x-linux-any/asm/sie.h similarity index 100% rename from libc/include/s390x-linux-any/asm/sie.h rename to lib/libc/include/s390x-linux-any/asm/sie.h diff --git a/libc/include/s390x-linux-any/asm/sigcontext.h b/lib/libc/include/s390x-linux-any/asm/sigcontext.h similarity index 100% rename from libc/include/s390x-linux-any/asm/sigcontext.h rename to lib/libc/include/s390x-linux-any/asm/sigcontext.h diff --git a/libc/include/s390x-linux-any/asm/siginfo.h b/lib/libc/include/s390x-linux-any/asm/siginfo.h similarity index 100% rename from libc/include/s390x-linux-any/asm/siginfo.h rename to lib/libc/include/s390x-linux-any/asm/siginfo.h diff --git a/libc/include/s390x-linux-any/asm/signal.h b/lib/libc/include/s390x-linux-any/asm/signal.h similarity index 100% rename from libc/include/s390x-linux-any/asm/signal.h rename to lib/libc/include/s390x-linux-any/asm/signal.h diff --git a/libc/include/s390x-linux-any/asm/socket.h b/lib/libc/include/s390x-linux-any/asm/socket.h similarity index 100% rename from libc/include/s390x-linux-any/asm/socket.h rename to lib/libc/include/s390x-linux-any/asm/socket.h diff --git a/libc/include/s390x-linux-any/asm/stat.h b/lib/libc/include/s390x-linux-any/asm/stat.h similarity index 100% rename from libc/include/s390x-linux-any/asm/stat.h rename to lib/libc/include/s390x-linux-any/asm/stat.h diff --git a/libc/include/s390x-linux-any/asm/statfs.h b/lib/libc/include/s390x-linux-any/asm/statfs.h similarity index 100% rename from libc/include/s390x-linux-any/asm/statfs.h rename to lib/libc/include/s390x-linux-any/asm/statfs.h diff --git a/libc/include/s390x-linux-any/asm/sthyi.h b/lib/libc/include/s390x-linux-any/asm/sthyi.h similarity index 100% rename from libc/include/s390x-linux-any/asm/sthyi.h rename to lib/libc/include/s390x-linux-any/asm/sthyi.h diff --git a/libc/include/s390x-linux-any/asm/tape390.h b/lib/libc/include/s390x-linux-any/asm/tape390.h similarity index 100% rename from libc/include/s390x-linux-any/asm/tape390.h rename to lib/libc/include/s390x-linux-any/asm/tape390.h diff --git a/libc/include/s390x-linux-any/asm/termios.h b/lib/libc/include/s390x-linux-any/asm/termios.h similarity index 100% rename from libc/include/s390x-linux-any/asm/termios.h rename to lib/libc/include/s390x-linux-any/asm/termios.h diff --git a/libc/include/s390x-linux-any/asm/types.h b/lib/libc/include/s390x-linux-any/asm/types.h similarity index 100% rename from libc/include/s390x-linux-any/asm/types.h rename to lib/libc/include/s390x-linux-any/asm/types.h diff --git a/libc/include/s390x-linux-any/asm/ucontext.h b/lib/libc/include/s390x-linux-any/asm/ucontext.h similarity index 100% rename from libc/include/s390x-linux-any/asm/ucontext.h rename to lib/libc/include/s390x-linux-any/asm/ucontext.h diff --git a/libc/include/s390x-linux-any/asm/unistd.h b/lib/libc/include/s390x-linux-any/asm/unistd.h similarity index 100% rename from libc/include/s390x-linux-any/asm/unistd.h rename to lib/libc/include/s390x-linux-any/asm/unistd.h diff --git a/libc/include/s390x-linux-any/asm/unistd_32.h b/lib/libc/include/s390x-linux-any/asm/unistd_32.h similarity index 100% rename from libc/include/s390x-linux-any/asm/unistd_32.h rename to lib/libc/include/s390x-linux-any/asm/unistd_32.h diff --git a/libc/include/s390x-linux-any/asm/unistd_64.h b/lib/libc/include/s390x-linux-any/asm/unistd_64.h similarity index 100% rename from libc/include/s390x-linux-any/asm/unistd_64.h rename to lib/libc/include/s390x-linux-any/asm/unistd_64.h diff --git a/libc/include/s390x-linux-any/asm/virtio-ccw.h b/lib/libc/include/s390x-linux-any/asm/virtio-ccw.h similarity index 100% rename from libc/include/s390x-linux-any/asm/virtio-ccw.h rename to lib/libc/include/s390x-linux-any/asm/virtio-ccw.h diff --git a/libc/include/s390x-linux-any/asm/vmcp.h b/lib/libc/include/s390x-linux-any/asm/vmcp.h similarity index 100% rename from libc/include/s390x-linux-any/asm/vmcp.h rename to lib/libc/include/s390x-linux-any/asm/vmcp.h diff --git a/libc/include/s390x-linux-any/asm/vtoc.h b/lib/libc/include/s390x-linux-any/asm/vtoc.h similarity index 100% rename from libc/include/s390x-linux-any/asm/vtoc.h rename to lib/libc/include/s390x-linux-any/asm/vtoc.h diff --git a/libc/include/s390x-linux-any/asm/zcrypt.h b/lib/libc/include/s390x-linux-any/asm/zcrypt.h similarity index 100% rename from libc/include/s390x-linux-any/asm/zcrypt.h rename to lib/libc/include/s390x-linux-any/asm/zcrypt.h diff --git a/libc/include/s390x-linux-gnu/bits/elfclass.h b/lib/libc/include/s390x-linux-gnu/bits/elfclass.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/elfclass.h rename to lib/libc/include/s390x-linux-gnu/bits/elfclass.h diff --git a/libc/include/s390x-linux-gnu/bits/endian.h b/lib/libc/include/s390x-linux-gnu/bits/endian.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/endian.h rename to lib/libc/include/s390x-linux-gnu/bits/endian.h diff --git a/libc/include/s390x-linux-gnu/bits/environments.h b/lib/libc/include/s390x-linux-gnu/bits/environments.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/environments.h rename to lib/libc/include/s390x-linux-gnu/bits/environments.h diff --git a/libc/include/s390x-linux-gnu/bits/fcntl.h b/lib/libc/include/s390x-linux-gnu/bits/fcntl.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/fcntl.h rename to lib/libc/include/s390x-linux-gnu/bits/fcntl.h diff --git a/libc/include/s390x-linux-gnu/bits/fenv.h b/lib/libc/include/s390x-linux-gnu/bits/fenv.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/fenv.h rename to lib/libc/include/s390x-linux-gnu/bits/fenv.h diff --git a/libc/include/s390x-linux-gnu/bits/floatn.h b/lib/libc/include/s390x-linux-gnu/bits/floatn.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/floatn.h rename to lib/libc/include/s390x-linux-gnu/bits/floatn.h diff --git a/libc/include/s390x-linux-gnu/bits/flt-eval-method.h b/lib/libc/include/s390x-linux-gnu/bits/flt-eval-method.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/flt-eval-method.h rename to lib/libc/include/s390x-linux-gnu/bits/flt-eval-method.h diff --git a/libc/include/s390x-linux-gnu/bits/hwcap.h b/lib/libc/include/s390x-linux-gnu/bits/hwcap.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/hwcap.h rename to lib/libc/include/s390x-linux-gnu/bits/hwcap.h diff --git a/libc/include/s390x-linux-gnu/bits/ipc.h b/lib/libc/include/s390x-linux-gnu/bits/ipc.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/ipc.h rename to lib/libc/include/s390x-linux-gnu/bits/ipc.h diff --git a/libc/include/s390x-linux-gnu/bits/link.h b/lib/libc/include/s390x-linux-gnu/bits/link.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/link.h rename to lib/libc/include/s390x-linux-gnu/bits/link.h diff --git a/libc/include/s390x-linux-gnu/bits/long-double.h b/lib/libc/include/s390x-linux-gnu/bits/long-double.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/long-double.h rename to lib/libc/include/s390x-linux-gnu/bits/long-double.h diff --git a/libc/include/s390x-linux-gnu/bits/procfs-extra.h b/lib/libc/include/s390x-linux-gnu/bits/procfs-extra.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/procfs-extra.h rename to lib/libc/include/s390x-linux-gnu/bits/procfs-extra.h diff --git a/libc/include/s390x-linux-gnu/bits/procfs-id.h b/lib/libc/include/s390x-linux-gnu/bits/procfs-id.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/procfs-id.h rename to lib/libc/include/s390x-linux-gnu/bits/procfs-id.h diff --git a/libc/include/s390x-linux-gnu/bits/procfs.h b/lib/libc/include/s390x-linux-gnu/bits/procfs.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/procfs.h rename to lib/libc/include/s390x-linux-gnu/bits/procfs.h diff --git a/libc/include/s390x-linux-gnu/bits/pthreadtypes-arch.h b/lib/libc/include/s390x-linux-gnu/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/pthreadtypes-arch.h rename to lib/libc/include/s390x-linux-gnu/bits/pthreadtypes-arch.h diff --git a/libc/include/s390x-linux-gnu/bits/semaphore.h b/lib/libc/include/s390x-linux-gnu/bits/semaphore.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/semaphore.h rename to lib/libc/include/s390x-linux-gnu/bits/semaphore.h diff --git a/libc/include/s390x-linux-gnu/bits/setjmp.h b/lib/libc/include/s390x-linux-gnu/bits/setjmp.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/setjmp.h rename to lib/libc/include/s390x-linux-gnu/bits/setjmp.h diff --git a/libc/include/s390x-linux-gnu/bits/sigaction.h b/lib/libc/include/s390x-linux-gnu/bits/sigaction.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/sigaction.h rename to lib/libc/include/s390x-linux-gnu/bits/sigaction.h diff --git a/libc/include/s390x-linux-gnu/bits/stat.h b/lib/libc/include/s390x-linux-gnu/bits/stat.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/stat.h rename to lib/libc/include/s390x-linux-gnu/bits/stat.h diff --git a/libc/include/s390x-linux-gnu/bits/statfs.h b/lib/libc/include/s390x-linux-gnu/bits/statfs.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/statfs.h rename to lib/libc/include/s390x-linux-gnu/bits/statfs.h diff --git a/libc/include/s390x-linux-gnu/bits/typesizes.h b/lib/libc/include/s390x-linux-gnu/bits/typesizes.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/typesizes.h rename to lib/libc/include/s390x-linux-gnu/bits/typesizes.h diff --git a/libc/include/s390x-linux-gnu/bits/utmp.h b/lib/libc/include/s390x-linux-gnu/bits/utmp.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/utmp.h rename to lib/libc/include/s390x-linux-gnu/bits/utmp.h diff --git a/libc/include/s390x-linux-gnu/bits/utmpx.h b/lib/libc/include/s390x-linux-gnu/bits/utmpx.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/utmpx.h rename to lib/libc/include/s390x-linux-gnu/bits/utmpx.h diff --git a/libc/include/s390x-linux-gnu/bits/wordsize.h b/lib/libc/include/s390x-linux-gnu/bits/wordsize.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/wordsize.h rename to lib/libc/include/s390x-linux-gnu/bits/wordsize.h diff --git a/libc/include/s390x-linux-gnu/bits/xtitypes.h b/lib/libc/include/s390x-linux-gnu/bits/xtitypes.h similarity index 100% rename from libc/include/s390x-linux-gnu/bits/xtitypes.h rename to lib/libc/include/s390x-linux-gnu/bits/xtitypes.h diff --git a/libc/include/s390x-linux-gnu/fpu_control.h b/lib/libc/include/s390x-linux-gnu/fpu_control.h similarity index 100% rename from libc/include/s390x-linux-gnu/fpu_control.h rename to lib/libc/include/s390x-linux-gnu/fpu_control.h diff --git a/libc/include/s390x-linux-gnu/gnu/lib-names-64.h b/lib/libc/include/s390x-linux-gnu/gnu/lib-names-64.h similarity index 100% rename from libc/include/s390x-linux-gnu/gnu/lib-names-64.h rename to lib/libc/include/s390x-linux-gnu/gnu/lib-names-64.h diff --git a/libc/include/s390x-linux-gnu/gnu/lib-names.h b/lib/libc/include/s390x-linux-gnu/gnu/lib-names.h similarity index 100% rename from libc/include/s390x-linux-gnu/gnu/lib-names.h rename to lib/libc/include/s390x-linux-gnu/gnu/lib-names.h diff --git a/libc/include/s390x-linux-gnu/gnu/stubs-64.h b/lib/libc/include/s390x-linux-gnu/gnu/stubs-64.h similarity index 100% rename from libc/include/s390x-linux-gnu/gnu/stubs-64.h rename to lib/libc/include/s390x-linux-gnu/gnu/stubs-64.h diff --git a/libc/include/s390x-linux-gnu/gnu/stubs.h b/lib/libc/include/s390x-linux-gnu/gnu/stubs.h similarity index 100% rename from libc/include/s390x-linux-gnu/gnu/stubs.h rename to lib/libc/include/s390x-linux-gnu/gnu/stubs.h diff --git a/libc/include/s390x-linux-gnu/ieee754.h b/lib/libc/include/s390x-linux-gnu/ieee754.h similarity index 100% rename from libc/include/s390x-linux-gnu/ieee754.h rename to lib/libc/include/s390x-linux-gnu/ieee754.h diff --git a/libc/include/s390x-linux-gnu/sys/elf.h b/lib/libc/include/s390x-linux-gnu/sys/elf.h similarity index 100% rename from libc/include/s390x-linux-gnu/sys/elf.h rename to lib/libc/include/s390x-linux-gnu/sys/elf.h diff --git a/libc/include/s390x-linux-gnu/sys/ptrace.h b/lib/libc/include/s390x-linux-gnu/sys/ptrace.h similarity index 100% rename from libc/include/s390x-linux-gnu/sys/ptrace.h rename to lib/libc/include/s390x-linux-gnu/sys/ptrace.h diff --git a/libc/include/s390x-linux-gnu/sys/ucontext.h b/lib/libc/include/s390x-linux-gnu/sys/ucontext.h similarity index 100% rename from libc/include/s390x-linux-gnu/sys/ucontext.h rename to lib/libc/include/s390x-linux-gnu/sys/ucontext.h diff --git a/libc/include/s390x-linux-gnu/sys/user.h b/lib/libc/include/s390x-linux-gnu/sys/user.h similarity index 100% rename from libc/include/s390x-linux-gnu/sys/user.h rename to lib/libc/include/s390x-linux-gnu/sys/user.h diff --git a/libc/include/s390x-linux-musl/bfd_stdint.h b/lib/libc/include/s390x-linux-musl/bfd_stdint.h similarity index 100% rename from libc/include/s390x-linux-musl/bfd_stdint.h rename to lib/libc/include/s390x-linux-musl/bfd_stdint.h diff --git a/libc/include/s390x-linux-musl/bits/alltypes.h b/lib/libc/include/s390x-linux-musl/bits/alltypes.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/alltypes.h rename to lib/libc/include/s390x-linux-musl/bits/alltypes.h diff --git a/libc/include/s390x-linux-musl/bits/endian.h b/lib/libc/include/s390x-linux-musl/bits/endian.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/endian.h rename to lib/libc/include/s390x-linux-musl/bits/endian.h diff --git a/libc/include/s390x-linux-musl/bits/fcntl.h b/lib/libc/include/s390x-linux-musl/bits/fcntl.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/fcntl.h rename to lib/libc/include/s390x-linux-musl/bits/fcntl.h diff --git a/libc/include/s390x-linux-musl/bits/fenv.h b/lib/libc/include/s390x-linux-musl/bits/fenv.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/fenv.h rename to lib/libc/include/s390x-linux-musl/bits/fenv.h diff --git a/libc/include/s390x-linux-musl/bits/float.h b/lib/libc/include/s390x-linux-musl/bits/float.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/float.h rename to lib/libc/include/s390x-linux-musl/bits/float.h diff --git a/libc/include/s390x-linux-musl/bits/hwcap.h b/lib/libc/include/s390x-linux-musl/bits/hwcap.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/hwcap.h rename to lib/libc/include/s390x-linux-musl/bits/hwcap.h diff --git a/libc/include/s390x-linux-musl/bits/ioctl_fix.h b/lib/libc/include/s390x-linux-musl/bits/ioctl_fix.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/ioctl_fix.h rename to lib/libc/include/s390x-linux-musl/bits/ioctl_fix.h diff --git a/libc/include/s390x-linux-musl/bits/ipc.h b/lib/libc/include/s390x-linux-musl/bits/ipc.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/ipc.h rename to lib/libc/include/s390x-linux-musl/bits/ipc.h diff --git a/libc/include/s390x-linux-musl/bits/limits.h b/lib/libc/include/s390x-linux-musl/bits/limits.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/limits.h rename to lib/libc/include/s390x-linux-musl/bits/limits.h diff --git a/libc/include/s390x-linux-musl/bits/link.h b/lib/libc/include/s390x-linux-musl/bits/link.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/link.h rename to lib/libc/include/s390x-linux-musl/bits/link.h diff --git a/libc/include/s390x-linux-musl/bits/msg.h b/lib/libc/include/s390x-linux-musl/bits/msg.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/msg.h rename to lib/libc/include/s390x-linux-musl/bits/msg.h diff --git a/libc/include/s390x-linux-musl/bits/posix.h b/lib/libc/include/s390x-linux-musl/bits/posix.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/posix.h rename to lib/libc/include/s390x-linux-musl/bits/posix.h diff --git a/libc/include/s390x-linux-musl/bits/ptrace.h b/lib/libc/include/s390x-linux-musl/bits/ptrace.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/ptrace.h rename to lib/libc/include/s390x-linux-musl/bits/ptrace.h diff --git a/libc/include/s390x-linux-musl/bits/reg.h b/lib/libc/include/s390x-linux-musl/bits/reg.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/reg.h rename to lib/libc/include/s390x-linux-musl/bits/reg.h diff --git a/libc/include/s390x-linux-musl/bits/sem.h b/lib/libc/include/s390x-linux-musl/bits/sem.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/sem.h rename to lib/libc/include/s390x-linux-musl/bits/sem.h diff --git a/libc/include/s390x-linux-musl/bits/setjmp.h b/lib/libc/include/s390x-linux-musl/bits/setjmp.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/setjmp.h rename to lib/libc/include/s390x-linux-musl/bits/setjmp.h diff --git a/libc/include/s390x-linux-musl/bits/signal.h b/lib/libc/include/s390x-linux-musl/bits/signal.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/signal.h rename to lib/libc/include/s390x-linux-musl/bits/signal.h diff --git a/libc/include/s390x-linux-musl/bits/socket.h b/lib/libc/include/s390x-linux-musl/bits/socket.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/socket.h rename to lib/libc/include/s390x-linux-musl/bits/socket.h diff --git a/libc/include/s390x-linux-musl/bits/stat.h b/lib/libc/include/s390x-linux-musl/bits/stat.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/stat.h rename to lib/libc/include/s390x-linux-musl/bits/stat.h diff --git a/libc/include/s390x-linux-musl/bits/statfs.h b/lib/libc/include/s390x-linux-musl/bits/statfs.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/statfs.h rename to lib/libc/include/s390x-linux-musl/bits/statfs.h diff --git a/libc/include/s390x-linux-musl/bits/syscall.h b/lib/libc/include/s390x-linux-musl/bits/syscall.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/syscall.h rename to lib/libc/include/s390x-linux-musl/bits/syscall.h diff --git a/libc/include/s390x-linux-musl/bits/user.h b/lib/libc/include/s390x-linux-musl/bits/user.h similarity index 100% rename from libc/include/s390x-linux-musl/bits/user.h rename to lib/libc/include/s390x-linux-musl/bits/user.h diff --git a/libc/include/sparc-linux-gnu/a.out.h b/lib/libc/include/sparc-linux-gnu/a.out.h similarity index 100% rename from libc/include/sparc-linux-gnu/a.out.h rename to lib/libc/include/sparc-linux-gnu/a.out.h diff --git a/libc/include/sparc-linux-gnu/bits/a.out.h b/lib/libc/include/sparc-linux-gnu/bits/a.out.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/a.out.h rename to lib/libc/include/sparc-linux-gnu/bits/a.out.h diff --git a/libc/include/sparc-linux-gnu/bits/endian.h b/lib/libc/include/sparc-linux-gnu/bits/endian.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/endian.h rename to lib/libc/include/sparc-linux-gnu/bits/endian.h diff --git a/libc/include/sparc-linux-gnu/bits/environments.h b/lib/libc/include/sparc-linux-gnu/bits/environments.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/environments.h rename to lib/libc/include/sparc-linux-gnu/bits/environments.h diff --git a/libc/include/sparc-linux-gnu/bits/epoll.h b/lib/libc/include/sparc-linux-gnu/bits/epoll.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/epoll.h rename to lib/libc/include/sparc-linux-gnu/bits/epoll.h diff --git a/libc/include/sparc-linux-gnu/bits/errno.h b/lib/libc/include/sparc-linux-gnu/bits/errno.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/errno.h rename to lib/libc/include/sparc-linux-gnu/bits/errno.h diff --git a/libc/include/sparc-linux-gnu/bits/eventfd.h b/lib/libc/include/sparc-linux-gnu/bits/eventfd.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/eventfd.h rename to lib/libc/include/sparc-linux-gnu/bits/eventfd.h diff --git a/libc/include/sparc-linux-gnu/bits/fcntl.h b/lib/libc/include/sparc-linux-gnu/bits/fcntl.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/fcntl.h rename to lib/libc/include/sparc-linux-gnu/bits/fcntl.h diff --git a/libc/include/sparc-linux-gnu/bits/fenv.h b/lib/libc/include/sparc-linux-gnu/bits/fenv.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/fenv.h rename to lib/libc/include/sparc-linux-gnu/bits/fenv.h diff --git a/libc/include/sparc-linux-gnu/bits/floatn.h b/lib/libc/include/sparc-linux-gnu/bits/floatn.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/floatn.h rename to lib/libc/include/sparc-linux-gnu/bits/floatn.h diff --git a/libc/include/sparc-linux-gnu/bits/hwcap.h b/lib/libc/include/sparc-linux-gnu/bits/hwcap.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/hwcap.h rename to lib/libc/include/sparc-linux-gnu/bits/hwcap.h diff --git a/libc/include/sparc-linux-gnu/bits/inotify.h b/lib/libc/include/sparc-linux-gnu/bits/inotify.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/inotify.h rename to lib/libc/include/sparc-linux-gnu/bits/inotify.h diff --git a/libc/include/sparc-linux-gnu/bits/ioctls.h b/lib/libc/include/sparc-linux-gnu/bits/ioctls.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/ioctls.h rename to lib/libc/include/sparc-linux-gnu/bits/ioctls.h diff --git a/libc/include/sparc-linux-gnu/bits/ipc.h b/lib/libc/include/sparc-linux-gnu/bits/ipc.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/ipc.h rename to lib/libc/include/sparc-linux-gnu/bits/ipc.h diff --git a/libc/include/sparc-linux-gnu/bits/link.h b/lib/libc/include/sparc-linux-gnu/bits/link.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/link.h rename to lib/libc/include/sparc-linux-gnu/bits/link.h diff --git a/libc/include/sparc-linux-gnu/bits/local_lim.h b/lib/libc/include/sparc-linux-gnu/bits/local_lim.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/local_lim.h rename to lib/libc/include/sparc-linux-gnu/bits/local_lim.h diff --git a/libc/include/sparc-linux-gnu/bits/long-double.h b/lib/libc/include/sparc-linux-gnu/bits/long-double.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/long-double.h rename to lib/libc/include/sparc-linux-gnu/bits/long-double.h diff --git a/libc/include/sparc-linux-gnu/bits/mman.h b/lib/libc/include/sparc-linux-gnu/bits/mman.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/mman.h rename to lib/libc/include/sparc-linux-gnu/bits/mman.h diff --git a/libc/include/sparc-linux-gnu/bits/msq-pad.h b/lib/libc/include/sparc-linux-gnu/bits/msq-pad.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/msq-pad.h rename to lib/libc/include/sparc-linux-gnu/bits/msq-pad.h diff --git a/libc/include/sparc-linux-gnu/bits/poll.h b/lib/libc/include/sparc-linux-gnu/bits/poll.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/poll.h rename to lib/libc/include/sparc-linux-gnu/bits/poll.h diff --git a/libc/include/sparc-linux-gnu/bits/procfs-extra.h b/lib/libc/include/sparc-linux-gnu/bits/procfs-extra.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/procfs-extra.h rename to lib/libc/include/sparc-linux-gnu/bits/procfs-extra.h diff --git a/libc/include/sparc-linux-gnu/bits/procfs-id.h b/lib/libc/include/sparc-linux-gnu/bits/procfs-id.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/procfs-id.h rename to lib/libc/include/sparc-linux-gnu/bits/procfs-id.h diff --git a/libc/include/sparc-linux-gnu/bits/procfs.h b/lib/libc/include/sparc-linux-gnu/bits/procfs.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/procfs.h rename to lib/libc/include/sparc-linux-gnu/bits/procfs.h diff --git a/libc/include/sparc-linux-gnu/bits/pthreadtypes-arch.h b/lib/libc/include/sparc-linux-gnu/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/pthreadtypes-arch.h rename to lib/libc/include/sparc-linux-gnu/bits/pthreadtypes-arch.h diff --git a/libc/include/sparc-linux-gnu/bits/resource.h b/lib/libc/include/sparc-linux-gnu/bits/resource.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/resource.h rename to lib/libc/include/sparc-linux-gnu/bits/resource.h diff --git a/libc/include/sparc-linux-gnu/bits/sem-pad.h b/lib/libc/include/sparc-linux-gnu/bits/sem-pad.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/sem-pad.h rename to lib/libc/include/sparc-linux-gnu/bits/sem-pad.h diff --git a/libc/include/sparc-linux-gnu/bits/semaphore.h b/lib/libc/include/sparc-linux-gnu/bits/semaphore.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/semaphore.h rename to lib/libc/include/sparc-linux-gnu/bits/semaphore.h diff --git a/libc/include/sparc-linux-gnu/bits/setjmp.h b/lib/libc/include/sparc-linux-gnu/bits/setjmp.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/setjmp.h rename to lib/libc/include/sparc-linux-gnu/bits/setjmp.h diff --git a/libc/include/sparc-linux-gnu/bits/shm-pad.h b/lib/libc/include/sparc-linux-gnu/bits/shm-pad.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/shm-pad.h rename to lib/libc/include/sparc-linux-gnu/bits/shm-pad.h diff --git a/libc/include/sparc-linux-gnu/bits/shmlba.h b/lib/libc/include/sparc-linux-gnu/bits/shmlba.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/shmlba.h rename to lib/libc/include/sparc-linux-gnu/bits/shmlba.h diff --git a/libc/include/sparc-linux-gnu/bits/sigaction.h b/lib/libc/include/sparc-linux-gnu/bits/sigaction.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/sigaction.h rename to lib/libc/include/sparc-linux-gnu/bits/sigaction.h diff --git a/libc/include/sparc-linux-gnu/bits/sigcontext.h b/lib/libc/include/sparc-linux-gnu/bits/sigcontext.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/sigcontext.h rename to lib/libc/include/sparc-linux-gnu/bits/sigcontext.h diff --git a/libc/include/sparc-linux-gnu/bits/siginfo-arch.h b/lib/libc/include/sparc-linux-gnu/bits/siginfo-arch.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/siginfo-arch.h rename to lib/libc/include/sparc-linux-gnu/bits/siginfo-arch.h diff --git a/libc/include/sparc-linux-gnu/bits/siginfo-consts-arch.h b/lib/libc/include/sparc-linux-gnu/bits/siginfo-consts-arch.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/siginfo-consts-arch.h rename to lib/libc/include/sparc-linux-gnu/bits/siginfo-consts-arch.h diff --git a/libc/include/sparc-linux-gnu/bits/signalfd.h b/lib/libc/include/sparc-linux-gnu/bits/signalfd.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/signalfd.h rename to lib/libc/include/sparc-linux-gnu/bits/signalfd.h diff --git a/libc/include/sparc-linux-gnu/bits/signum.h b/lib/libc/include/sparc-linux-gnu/bits/signum.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/signum.h rename to lib/libc/include/sparc-linux-gnu/bits/signum.h diff --git a/libc/include/sparc-linux-gnu/bits/sigstack.h b/lib/libc/include/sparc-linux-gnu/bits/sigstack.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/sigstack.h rename to lib/libc/include/sparc-linux-gnu/bits/sigstack.h diff --git a/libc/include/sparc-linux-gnu/bits/socket_type.h b/lib/libc/include/sparc-linux-gnu/bits/socket_type.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/socket_type.h rename to lib/libc/include/sparc-linux-gnu/bits/socket_type.h diff --git a/libc/include/sparc-linux-gnu/bits/stat.h b/lib/libc/include/sparc-linux-gnu/bits/stat.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/stat.h rename to lib/libc/include/sparc-linux-gnu/bits/stat.h diff --git a/libc/include/sparc-linux-gnu/bits/termios-baud.h b/lib/libc/include/sparc-linux-gnu/bits/termios-baud.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/termios-baud.h rename to lib/libc/include/sparc-linux-gnu/bits/termios-baud.h diff --git a/libc/include/sparc-linux-gnu/bits/termios-c_cc.h b/lib/libc/include/sparc-linux-gnu/bits/termios-c_cc.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/termios-c_cc.h rename to lib/libc/include/sparc-linux-gnu/bits/termios-c_cc.h diff --git a/libc/include/sparc-linux-gnu/bits/termios-c_oflag.h b/lib/libc/include/sparc-linux-gnu/bits/termios-c_oflag.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/termios-c_oflag.h rename to lib/libc/include/sparc-linux-gnu/bits/termios-c_oflag.h diff --git a/libc/include/sparc-linux-gnu/bits/termios-struct.h b/lib/libc/include/sparc-linux-gnu/bits/termios-struct.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/termios-struct.h rename to lib/libc/include/sparc-linux-gnu/bits/termios-struct.h diff --git a/libc/include/sparc-linux-gnu/bits/timerfd.h b/lib/libc/include/sparc-linux-gnu/bits/timerfd.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/timerfd.h rename to lib/libc/include/sparc-linux-gnu/bits/timerfd.h diff --git a/libc/include/sparc-linux-gnu/bits/typesizes.h b/lib/libc/include/sparc-linux-gnu/bits/typesizes.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/typesizes.h rename to lib/libc/include/sparc-linux-gnu/bits/typesizes.h diff --git a/libc/include/sparc-linux-gnu/bits/wordsize.h b/lib/libc/include/sparc-linux-gnu/bits/wordsize.h similarity index 100% rename from libc/include/sparc-linux-gnu/bits/wordsize.h rename to lib/libc/include/sparc-linux-gnu/bits/wordsize.h diff --git a/libc/include/sparc-linux-gnu/fpu_control.h b/lib/libc/include/sparc-linux-gnu/fpu_control.h similarity index 100% rename from libc/include/sparc-linux-gnu/fpu_control.h rename to lib/libc/include/sparc-linux-gnu/fpu_control.h diff --git a/libc/include/sparc-linux-gnu/gnu/lib-names-64.h b/lib/libc/include/sparc-linux-gnu/gnu/lib-names-64.h similarity index 100% rename from libc/include/sparc-linux-gnu/gnu/lib-names-64.h rename to lib/libc/include/sparc-linux-gnu/gnu/lib-names-64.h diff --git a/libc/include/sparc-linux-gnu/gnu/lib-names.h b/lib/libc/include/sparc-linux-gnu/gnu/lib-names.h similarity index 100% rename from libc/include/sparc-linux-gnu/gnu/lib-names.h rename to lib/libc/include/sparc-linux-gnu/gnu/lib-names.h diff --git a/libc/include/sparc-linux-gnu/gnu/stubs-64.h b/lib/libc/include/sparc-linux-gnu/gnu/stubs-64.h similarity index 100% rename from libc/include/sparc-linux-gnu/gnu/stubs-64.h rename to lib/libc/include/sparc-linux-gnu/gnu/stubs-64.h diff --git a/libc/include/sparc-linux-gnu/gnu/stubs.h b/lib/libc/include/sparc-linux-gnu/gnu/stubs.h similarity index 100% rename from libc/include/sparc-linux-gnu/gnu/stubs.h rename to lib/libc/include/sparc-linux-gnu/gnu/stubs.h diff --git a/libc/include/sparc-linux-gnu/ieee754.h b/lib/libc/include/sparc-linux-gnu/ieee754.h similarity index 100% rename from libc/include/sparc-linux-gnu/ieee754.h rename to lib/libc/include/sparc-linux-gnu/ieee754.h diff --git a/libc/include/sparc-linux-gnu/sys/ptrace.h b/lib/libc/include/sparc-linux-gnu/sys/ptrace.h similarity index 100% rename from libc/include/sparc-linux-gnu/sys/ptrace.h rename to lib/libc/include/sparc-linux-gnu/sys/ptrace.h diff --git a/libc/include/sparc-linux-gnu/sys/ucontext.h b/lib/libc/include/sparc-linux-gnu/sys/ucontext.h similarity index 100% rename from libc/include/sparc-linux-gnu/sys/ucontext.h rename to lib/libc/include/sparc-linux-gnu/sys/ucontext.h diff --git a/libc/include/sparc-linux-gnu/sys/user.h b/lib/libc/include/sparc-linux-gnu/sys/user.h similarity index 100% rename from libc/include/sparc-linux-gnu/sys/user.h rename to lib/libc/include/sparc-linux-gnu/sys/user.h diff --git a/libc/include/sparcv9-linux-gnu/a.out.h b/lib/libc/include/sparcv9-linux-gnu/a.out.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/a.out.h rename to lib/libc/include/sparcv9-linux-gnu/a.out.h diff --git a/libc/include/sparcv9-linux-gnu/bits/a.out.h b/lib/libc/include/sparcv9-linux-gnu/bits/a.out.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/a.out.h rename to lib/libc/include/sparcv9-linux-gnu/bits/a.out.h diff --git a/libc/include/sparcv9-linux-gnu/bits/endian.h b/lib/libc/include/sparcv9-linux-gnu/bits/endian.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/endian.h rename to lib/libc/include/sparcv9-linux-gnu/bits/endian.h diff --git a/libc/include/sparcv9-linux-gnu/bits/environments.h b/lib/libc/include/sparcv9-linux-gnu/bits/environments.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/environments.h rename to lib/libc/include/sparcv9-linux-gnu/bits/environments.h diff --git a/libc/include/sparcv9-linux-gnu/bits/epoll.h b/lib/libc/include/sparcv9-linux-gnu/bits/epoll.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/epoll.h rename to lib/libc/include/sparcv9-linux-gnu/bits/epoll.h diff --git a/libc/include/sparcv9-linux-gnu/bits/errno.h b/lib/libc/include/sparcv9-linux-gnu/bits/errno.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/errno.h rename to lib/libc/include/sparcv9-linux-gnu/bits/errno.h diff --git a/libc/include/sparcv9-linux-gnu/bits/eventfd.h b/lib/libc/include/sparcv9-linux-gnu/bits/eventfd.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/eventfd.h rename to lib/libc/include/sparcv9-linux-gnu/bits/eventfd.h diff --git a/libc/include/sparcv9-linux-gnu/bits/fcntl.h b/lib/libc/include/sparcv9-linux-gnu/bits/fcntl.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/fcntl.h rename to lib/libc/include/sparcv9-linux-gnu/bits/fcntl.h diff --git a/libc/include/sparcv9-linux-gnu/bits/fenv.h b/lib/libc/include/sparcv9-linux-gnu/bits/fenv.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/fenv.h rename to lib/libc/include/sparcv9-linux-gnu/bits/fenv.h diff --git a/libc/include/sparcv9-linux-gnu/bits/floatn.h b/lib/libc/include/sparcv9-linux-gnu/bits/floatn.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/floatn.h rename to lib/libc/include/sparcv9-linux-gnu/bits/floatn.h diff --git a/libc/include/sparcv9-linux-gnu/bits/hwcap.h b/lib/libc/include/sparcv9-linux-gnu/bits/hwcap.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/hwcap.h rename to lib/libc/include/sparcv9-linux-gnu/bits/hwcap.h diff --git a/libc/include/sparcv9-linux-gnu/bits/inotify.h b/lib/libc/include/sparcv9-linux-gnu/bits/inotify.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/inotify.h rename to lib/libc/include/sparcv9-linux-gnu/bits/inotify.h diff --git a/libc/include/sparcv9-linux-gnu/bits/ioctls.h b/lib/libc/include/sparcv9-linux-gnu/bits/ioctls.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/ioctls.h rename to lib/libc/include/sparcv9-linux-gnu/bits/ioctls.h diff --git a/libc/include/sparcv9-linux-gnu/bits/ipc.h b/lib/libc/include/sparcv9-linux-gnu/bits/ipc.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/ipc.h rename to lib/libc/include/sparcv9-linux-gnu/bits/ipc.h diff --git a/libc/include/sparcv9-linux-gnu/bits/link.h b/lib/libc/include/sparcv9-linux-gnu/bits/link.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/link.h rename to lib/libc/include/sparcv9-linux-gnu/bits/link.h diff --git a/libc/include/sparcv9-linux-gnu/bits/local_lim.h b/lib/libc/include/sparcv9-linux-gnu/bits/local_lim.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/local_lim.h rename to lib/libc/include/sparcv9-linux-gnu/bits/local_lim.h diff --git a/libc/include/sparcv9-linux-gnu/bits/long-double.h b/lib/libc/include/sparcv9-linux-gnu/bits/long-double.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/long-double.h rename to lib/libc/include/sparcv9-linux-gnu/bits/long-double.h diff --git a/libc/include/sparcv9-linux-gnu/bits/mman.h b/lib/libc/include/sparcv9-linux-gnu/bits/mman.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/mman.h rename to lib/libc/include/sparcv9-linux-gnu/bits/mman.h diff --git a/libc/include/sparcv9-linux-gnu/bits/msq-pad.h b/lib/libc/include/sparcv9-linux-gnu/bits/msq-pad.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/msq-pad.h rename to lib/libc/include/sparcv9-linux-gnu/bits/msq-pad.h diff --git a/libc/include/sparcv9-linux-gnu/bits/poll.h b/lib/libc/include/sparcv9-linux-gnu/bits/poll.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/poll.h rename to lib/libc/include/sparcv9-linux-gnu/bits/poll.h diff --git a/libc/include/sparcv9-linux-gnu/bits/procfs-extra.h b/lib/libc/include/sparcv9-linux-gnu/bits/procfs-extra.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/procfs-extra.h rename to lib/libc/include/sparcv9-linux-gnu/bits/procfs-extra.h diff --git a/libc/include/sparcv9-linux-gnu/bits/procfs-id.h b/lib/libc/include/sparcv9-linux-gnu/bits/procfs-id.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/procfs-id.h rename to lib/libc/include/sparcv9-linux-gnu/bits/procfs-id.h diff --git a/libc/include/sparcv9-linux-gnu/bits/procfs.h b/lib/libc/include/sparcv9-linux-gnu/bits/procfs.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/procfs.h rename to lib/libc/include/sparcv9-linux-gnu/bits/procfs.h diff --git a/libc/include/sparcv9-linux-gnu/bits/pthreadtypes-arch.h b/lib/libc/include/sparcv9-linux-gnu/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/pthreadtypes-arch.h rename to lib/libc/include/sparcv9-linux-gnu/bits/pthreadtypes-arch.h diff --git a/libc/include/sparcv9-linux-gnu/bits/resource.h b/lib/libc/include/sparcv9-linux-gnu/bits/resource.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/resource.h rename to lib/libc/include/sparcv9-linux-gnu/bits/resource.h diff --git a/libc/include/sparcv9-linux-gnu/bits/sem-pad.h b/lib/libc/include/sparcv9-linux-gnu/bits/sem-pad.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/sem-pad.h rename to lib/libc/include/sparcv9-linux-gnu/bits/sem-pad.h diff --git a/libc/include/sparcv9-linux-gnu/bits/semaphore.h b/lib/libc/include/sparcv9-linux-gnu/bits/semaphore.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/semaphore.h rename to lib/libc/include/sparcv9-linux-gnu/bits/semaphore.h diff --git a/libc/include/sparcv9-linux-gnu/bits/setjmp.h b/lib/libc/include/sparcv9-linux-gnu/bits/setjmp.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/setjmp.h rename to lib/libc/include/sparcv9-linux-gnu/bits/setjmp.h diff --git a/libc/include/sparcv9-linux-gnu/bits/shm-pad.h b/lib/libc/include/sparcv9-linux-gnu/bits/shm-pad.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/shm-pad.h rename to lib/libc/include/sparcv9-linux-gnu/bits/shm-pad.h diff --git a/libc/include/sparcv9-linux-gnu/bits/shmlba.h b/lib/libc/include/sparcv9-linux-gnu/bits/shmlba.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/shmlba.h rename to lib/libc/include/sparcv9-linux-gnu/bits/shmlba.h diff --git a/libc/include/sparcv9-linux-gnu/bits/sigaction.h b/lib/libc/include/sparcv9-linux-gnu/bits/sigaction.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/sigaction.h rename to lib/libc/include/sparcv9-linux-gnu/bits/sigaction.h diff --git a/libc/include/sparcv9-linux-gnu/bits/sigcontext.h b/lib/libc/include/sparcv9-linux-gnu/bits/sigcontext.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/sigcontext.h rename to lib/libc/include/sparcv9-linux-gnu/bits/sigcontext.h diff --git a/libc/include/sparcv9-linux-gnu/bits/siginfo-arch.h b/lib/libc/include/sparcv9-linux-gnu/bits/siginfo-arch.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/siginfo-arch.h rename to lib/libc/include/sparcv9-linux-gnu/bits/siginfo-arch.h diff --git a/libc/include/sparcv9-linux-gnu/bits/siginfo-consts-arch.h b/lib/libc/include/sparcv9-linux-gnu/bits/siginfo-consts-arch.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/siginfo-consts-arch.h rename to lib/libc/include/sparcv9-linux-gnu/bits/siginfo-consts-arch.h diff --git a/libc/include/sparcv9-linux-gnu/bits/signalfd.h b/lib/libc/include/sparcv9-linux-gnu/bits/signalfd.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/signalfd.h rename to lib/libc/include/sparcv9-linux-gnu/bits/signalfd.h diff --git a/libc/include/sparcv9-linux-gnu/bits/signum.h b/lib/libc/include/sparcv9-linux-gnu/bits/signum.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/signum.h rename to lib/libc/include/sparcv9-linux-gnu/bits/signum.h diff --git a/libc/include/sparcv9-linux-gnu/bits/sigstack.h b/lib/libc/include/sparcv9-linux-gnu/bits/sigstack.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/sigstack.h rename to lib/libc/include/sparcv9-linux-gnu/bits/sigstack.h diff --git a/libc/include/sparcv9-linux-gnu/bits/socket_type.h b/lib/libc/include/sparcv9-linux-gnu/bits/socket_type.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/socket_type.h rename to lib/libc/include/sparcv9-linux-gnu/bits/socket_type.h diff --git a/libc/include/sparcv9-linux-gnu/bits/stat.h b/lib/libc/include/sparcv9-linux-gnu/bits/stat.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/stat.h rename to lib/libc/include/sparcv9-linux-gnu/bits/stat.h diff --git a/libc/include/sparcv9-linux-gnu/bits/termios-baud.h b/lib/libc/include/sparcv9-linux-gnu/bits/termios-baud.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/termios-baud.h rename to lib/libc/include/sparcv9-linux-gnu/bits/termios-baud.h diff --git a/libc/include/sparcv9-linux-gnu/bits/termios-c_cc.h b/lib/libc/include/sparcv9-linux-gnu/bits/termios-c_cc.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/termios-c_cc.h rename to lib/libc/include/sparcv9-linux-gnu/bits/termios-c_cc.h diff --git a/libc/include/sparcv9-linux-gnu/bits/termios-c_oflag.h b/lib/libc/include/sparcv9-linux-gnu/bits/termios-c_oflag.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/termios-c_oflag.h rename to lib/libc/include/sparcv9-linux-gnu/bits/termios-c_oflag.h diff --git a/libc/include/sparcv9-linux-gnu/bits/termios-struct.h b/lib/libc/include/sparcv9-linux-gnu/bits/termios-struct.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/termios-struct.h rename to lib/libc/include/sparcv9-linux-gnu/bits/termios-struct.h diff --git a/libc/include/sparcv9-linux-gnu/bits/timerfd.h b/lib/libc/include/sparcv9-linux-gnu/bits/timerfd.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/timerfd.h rename to lib/libc/include/sparcv9-linux-gnu/bits/timerfd.h diff --git a/libc/include/sparcv9-linux-gnu/bits/typesizes.h b/lib/libc/include/sparcv9-linux-gnu/bits/typesizes.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/typesizes.h rename to lib/libc/include/sparcv9-linux-gnu/bits/typesizes.h diff --git a/libc/include/sparcv9-linux-gnu/bits/wordsize.h b/lib/libc/include/sparcv9-linux-gnu/bits/wordsize.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/bits/wordsize.h rename to lib/libc/include/sparcv9-linux-gnu/bits/wordsize.h diff --git a/libc/include/sparcv9-linux-gnu/fpu_control.h b/lib/libc/include/sparcv9-linux-gnu/fpu_control.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/fpu_control.h rename to lib/libc/include/sparcv9-linux-gnu/fpu_control.h diff --git a/libc/include/sparcv9-linux-gnu/gnu/lib-names.h b/lib/libc/include/sparcv9-linux-gnu/gnu/lib-names.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/gnu/lib-names.h rename to lib/libc/include/sparcv9-linux-gnu/gnu/lib-names.h diff --git a/libc/include/sparcv9-linux-gnu/gnu/stubs-32.h b/lib/libc/include/sparcv9-linux-gnu/gnu/stubs-32.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/gnu/stubs-32.h rename to lib/libc/include/sparcv9-linux-gnu/gnu/stubs-32.h diff --git a/libc/include/sparcv9-linux-gnu/gnu/stubs.h b/lib/libc/include/sparcv9-linux-gnu/gnu/stubs.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/gnu/stubs.h rename to lib/libc/include/sparcv9-linux-gnu/gnu/stubs.h diff --git a/libc/include/sparcv9-linux-gnu/ieee754.h b/lib/libc/include/sparcv9-linux-gnu/ieee754.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/ieee754.h rename to lib/libc/include/sparcv9-linux-gnu/ieee754.h diff --git a/libc/include/sparcv9-linux-gnu/sys/ptrace.h b/lib/libc/include/sparcv9-linux-gnu/sys/ptrace.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/sys/ptrace.h rename to lib/libc/include/sparcv9-linux-gnu/sys/ptrace.h diff --git a/libc/include/sparcv9-linux-gnu/sys/ucontext.h b/lib/libc/include/sparcv9-linux-gnu/sys/ucontext.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/sys/ucontext.h rename to lib/libc/include/sparcv9-linux-gnu/sys/ucontext.h diff --git a/libc/include/sparcv9-linux-gnu/sys/user.h b/lib/libc/include/sparcv9-linux-gnu/sys/user.h similarity index 100% rename from libc/include/sparcv9-linux-gnu/sys/user.h rename to lib/libc/include/sparcv9-linux-gnu/sys/user.h diff --git a/libc/include/wasm32-freestanding-musl/bits/alltypes.h b/lib/libc/include/wasm32-freestanding-musl/bits/alltypes.h similarity index 100% rename from libc/include/wasm32-freestanding-musl/bits/alltypes.h rename to lib/libc/include/wasm32-freestanding-musl/bits/alltypes.h diff --git a/libc/include/wasm32-freestanding-musl/errno.h b/lib/libc/include/wasm32-freestanding-musl/errno.h similarity index 100% rename from libc/include/wasm32-freestanding-musl/errno.h rename to lib/libc/include/wasm32-freestanding-musl/errno.h diff --git a/libc/include/x86_64-linux-any/asm/auxvec.h b/lib/libc/include/x86_64-linux-any/asm/auxvec.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/auxvec.h rename to lib/libc/include/x86_64-linux-any/asm/auxvec.h diff --git a/libc/include/x86_64-linux-any/asm/bitsperlong.h b/lib/libc/include/x86_64-linux-any/asm/bitsperlong.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/bitsperlong.h rename to lib/libc/include/x86_64-linux-any/asm/bitsperlong.h diff --git a/libc/include/x86_64-linux-any/asm/byteorder.h b/lib/libc/include/x86_64-linux-any/asm/byteorder.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/byteorder.h rename to lib/libc/include/x86_64-linux-any/asm/byteorder.h diff --git a/libc/include/x86_64-linux-any/asm/kvm.h b/lib/libc/include/x86_64-linux-any/asm/kvm.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/kvm.h rename to lib/libc/include/x86_64-linux-any/asm/kvm.h diff --git a/libc/include/x86_64-linux-any/asm/kvm_para.h b/lib/libc/include/x86_64-linux-any/asm/kvm_para.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/kvm_para.h rename to lib/libc/include/x86_64-linux-any/asm/kvm_para.h diff --git a/libc/include/x86_64-linux-any/asm/mman.h b/lib/libc/include/x86_64-linux-any/asm/mman.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/mman.h rename to lib/libc/include/x86_64-linux-any/asm/mman.h diff --git a/libc/include/x86_64-linux-any/asm/msgbuf.h b/lib/libc/include/x86_64-linux-any/asm/msgbuf.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/msgbuf.h rename to lib/libc/include/x86_64-linux-any/asm/msgbuf.h diff --git a/libc/include/x86_64-linux-any/asm/perf_regs.h b/lib/libc/include/x86_64-linux-any/asm/perf_regs.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/perf_regs.h rename to lib/libc/include/x86_64-linux-any/asm/perf_regs.h diff --git a/libc/include/x86_64-linux-any/asm/posix_types.h b/lib/libc/include/x86_64-linux-any/asm/posix_types.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/posix_types.h rename to lib/libc/include/x86_64-linux-any/asm/posix_types.h diff --git a/libc/include/x86_64-linux-any/asm/ptrace.h b/lib/libc/include/x86_64-linux-any/asm/ptrace.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/ptrace.h rename to lib/libc/include/x86_64-linux-any/asm/ptrace.h diff --git a/libc/include/x86_64-linux-any/asm/sembuf.h b/lib/libc/include/x86_64-linux-any/asm/sembuf.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/sembuf.h rename to lib/libc/include/x86_64-linux-any/asm/sembuf.h diff --git a/libc/include/x86_64-linux-any/asm/setup.h b/lib/libc/include/x86_64-linux-any/asm/setup.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/setup.h rename to lib/libc/include/x86_64-linux-any/asm/setup.h diff --git a/libc/include/x86_64-linux-any/asm/shmbuf.h b/lib/libc/include/x86_64-linux-any/asm/shmbuf.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/shmbuf.h rename to lib/libc/include/x86_64-linux-any/asm/shmbuf.h diff --git a/libc/include/x86_64-linux-any/asm/sigcontext.h b/lib/libc/include/x86_64-linux-any/asm/sigcontext.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/sigcontext.h rename to lib/libc/include/x86_64-linux-any/asm/sigcontext.h diff --git a/libc/include/x86_64-linux-any/asm/siginfo.h b/lib/libc/include/x86_64-linux-any/asm/siginfo.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/siginfo.h rename to lib/libc/include/x86_64-linux-any/asm/siginfo.h diff --git a/libc/include/x86_64-linux-any/asm/signal.h b/lib/libc/include/x86_64-linux-any/asm/signal.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/signal.h rename to lib/libc/include/x86_64-linux-any/asm/signal.h diff --git a/libc/include/x86_64-linux-any/asm/stat.h b/lib/libc/include/x86_64-linux-any/asm/stat.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/stat.h rename to lib/libc/include/x86_64-linux-any/asm/stat.h diff --git a/libc/include/x86_64-linux-any/asm/statfs.h b/lib/libc/include/x86_64-linux-any/asm/statfs.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/statfs.h rename to lib/libc/include/x86_64-linux-any/asm/statfs.h diff --git a/libc/include/x86_64-linux-any/asm/swab.h b/lib/libc/include/x86_64-linux-any/asm/swab.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/swab.h rename to lib/libc/include/x86_64-linux-any/asm/swab.h diff --git a/libc/include/x86_64-linux-any/asm/types.h b/lib/libc/include/x86_64-linux-any/asm/types.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/types.h rename to lib/libc/include/x86_64-linux-any/asm/types.h diff --git a/libc/include/x86_64-linux-any/asm/ucontext.h b/lib/libc/include/x86_64-linux-any/asm/ucontext.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/ucontext.h rename to lib/libc/include/x86_64-linux-any/asm/ucontext.h diff --git a/libc/include/x86_64-linux-any/asm/unistd.h b/lib/libc/include/x86_64-linux-any/asm/unistd.h similarity index 100% rename from libc/include/x86_64-linux-any/asm/unistd.h rename to lib/libc/include/x86_64-linux-any/asm/unistd.h diff --git a/libc/include/x86_64-linux-gnu/bits/a.out.h b/lib/libc/include/x86_64-linux-gnu/bits/a.out.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/a.out.h rename to lib/libc/include/x86_64-linux-gnu/bits/a.out.h diff --git a/libc/include/x86_64-linux-gnu/bits/endian.h b/lib/libc/include/x86_64-linux-gnu/bits/endian.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/endian.h rename to lib/libc/include/x86_64-linux-gnu/bits/endian.h diff --git a/libc/include/x86_64-linux-gnu/bits/environments.h b/lib/libc/include/x86_64-linux-gnu/bits/environments.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/environments.h rename to lib/libc/include/x86_64-linux-gnu/bits/environments.h diff --git a/libc/include/x86_64-linux-gnu/bits/epoll.h b/lib/libc/include/x86_64-linux-gnu/bits/epoll.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/epoll.h rename to lib/libc/include/x86_64-linux-gnu/bits/epoll.h diff --git a/libc/include/x86_64-linux-gnu/bits/fcntl.h b/lib/libc/include/x86_64-linux-gnu/bits/fcntl.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/fcntl.h rename to lib/libc/include/x86_64-linux-gnu/bits/fcntl.h diff --git a/libc/include/x86_64-linux-gnu/bits/fenv.h b/lib/libc/include/x86_64-linux-gnu/bits/fenv.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/fenv.h rename to lib/libc/include/x86_64-linux-gnu/bits/fenv.h diff --git a/libc/include/x86_64-linux-gnu/bits/floatn.h b/lib/libc/include/x86_64-linux-gnu/bits/floatn.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/floatn.h rename to lib/libc/include/x86_64-linux-gnu/bits/floatn.h diff --git a/libc/include/x86_64-linux-gnu/bits/flt-eval-method.h b/lib/libc/include/x86_64-linux-gnu/bits/flt-eval-method.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/flt-eval-method.h rename to lib/libc/include/x86_64-linux-gnu/bits/flt-eval-method.h diff --git a/libc/include/x86_64-linux-gnu/bits/fp-logb.h b/lib/libc/include/x86_64-linux-gnu/bits/fp-logb.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/fp-logb.h rename to lib/libc/include/x86_64-linux-gnu/bits/fp-logb.h diff --git a/libc/include/x86_64-linux-gnu/bits/indirect-return.h b/lib/libc/include/x86_64-linux-gnu/bits/indirect-return.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/indirect-return.h rename to lib/libc/include/x86_64-linux-gnu/bits/indirect-return.h diff --git a/libc/include/x86_64-linux-gnu/bits/ipctypes.h b/lib/libc/include/x86_64-linux-gnu/bits/ipctypes.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/ipctypes.h rename to lib/libc/include/x86_64-linux-gnu/bits/ipctypes.h diff --git a/libc/include/x86_64-linux-gnu/bits/iscanonical.h b/lib/libc/include/x86_64-linux-gnu/bits/iscanonical.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/iscanonical.h rename to lib/libc/include/x86_64-linux-gnu/bits/iscanonical.h diff --git a/libc/include/x86_64-linux-gnu/bits/link.h b/lib/libc/include/x86_64-linux-gnu/bits/link.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/link.h rename to lib/libc/include/x86_64-linux-gnu/bits/link.h diff --git a/libc/include/x86_64-linux-gnu/bits/long-double.h b/lib/libc/include/x86_64-linux-gnu/bits/long-double.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/long-double.h rename to lib/libc/include/x86_64-linux-gnu/bits/long-double.h diff --git a/libc/include/x86_64-linux-gnu/bits/math-vector-fortran.h b/lib/libc/include/x86_64-linux-gnu/bits/math-vector-fortran.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/math-vector-fortran.h rename to lib/libc/include/x86_64-linux-gnu/bits/math-vector-fortran.h diff --git a/libc/include/x86_64-linux-gnu/bits/math-vector.h b/lib/libc/include/x86_64-linux-gnu/bits/math-vector.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/math-vector.h rename to lib/libc/include/x86_64-linux-gnu/bits/math-vector.h diff --git a/libc/include/x86_64-linux-gnu/bits/mman.h b/lib/libc/include/x86_64-linux-gnu/bits/mman.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/mman.h rename to lib/libc/include/x86_64-linux-gnu/bits/mman.h diff --git a/libc/include/x86_64-linux-gnu/bits/procfs-id.h b/lib/libc/include/x86_64-linux-gnu/bits/procfs-id.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/procfs-id.h rename to lib/libc/include/x86_64-linux-gnu/bits/procfs-id.h diff --git a/libc/include/x86_64-linux-gnu/bits/procfs.h b/lib/libc/include/x86_64-linux-gnu/bits/procfs.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/procfs.h rename to lib/libc/include/x86_64-linux-gnu/bits/procfs.h diff --git a/libc/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h b/lib/libc/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h rename to lib/libc/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h diff --git a/libc/include/x86_64-linux-gnu/bits/select.h b/lib/libc/include/x86_64-linux-gnu/bits/select.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/select.h rename to lib/libc/include/x86_64-linux-gnu/bits/select.h diff --git a/libc/include/x86_64-linux-gnu/bits/sem-pad.h b/lib/libc/include/x86_64-linux-gnu/bits/sem-pad.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/sem-pad.h rename to lib/libc/include/x86_64-linux-gnu/bits/sem-pad.h diff --git a/libc/include/x86_64-linux-gnu/bits/semaphore.h b/lib/libc/include/x86_64-linux-gnu/bits/semaphore.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/semaphore.h rename to lib/libc/include/x86_64-linux-gnu/bits/semaphore.h diff --git a/libc/include/x86_64-linux-gnu/bits/setjmp.h b/lib/libc/include/x86_64-linux-gnu/bits/setjmp.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/setjmp.h rename to lib/libc/include/x86_64-linux-gnu/bits/setjmp.h diff --git a/libc/include/x86_64-linux-gnu/bits/sigcontext.h b/lib/libc/include/x86_64-linux-gnu/bits/sigcontext.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/sigcontext.h rename to lib/libc/include/x86_64-linux-gnu/bits/sigcontext.h diff --git a/libc/include/x86_64-linux-gnu/bits/siginfo-arch.h b/lib/libc/include/x86_64-linux-gnu/bits/siginfo-arch.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/siginfo-arch.h rename to lib/libc/include/x86_64-linux-gnu/bits/siginfo-arch.h diff --git a/libc/include/x86_64-linux-gnu/bits/stat.h b/lib/libc/include/x86_64-linux-gnu/bits/stat.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/stat.h rename to lib/libc/include/x86_64-linux-gnu/bits/stat.h diff --git a/libc/include/x86_64-linux-gnu/bits/sysctl.h b/lib/libc/include/x86_64-linux-gnu/bits/sysctl.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/sysctl.h rename to lib/libc/include/x86_64-linux-gnu/bits/sysctl.h diff --git a/libc/include/x86_64-linux-gnu/bits/timesize.h b/lib/libc/include/x86_64-linux-gnu/bits/timesize.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/timesize.h rename to lib/libc/include/x86_64-linux-gnu/bits/timesize.h diff --git a/libc/include/x86_64-linux-gnu/bits/typesizes.h b/lib/libc/include/x86_64-linux-gnu/bits/typesizes.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/typesizes.h rename to lib/libc/include/x86_64-linux-gnu/bits/typesizes.h diff --git a/libc/include/x86_64-linux-gnu/bits/wordsize.h b/lib/libc/include/x86_64-linux-gnu/bits/wordsize.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/wordsize.h rename to lib/libc/include/x86_64-linux-gnu/bits/wordsize.h diff --git a/libc/include/x86_64-linux-gnu/bits/xtitypes.h b/lib/libc/include/x86_64-linux-gnu/bits/xtitypes.h similarity index 100% rename from libc/include/x86_64-linux-gnu/bits/xtitypes.h rename to lib/libc/include/x86_64-linux-gnu/bits/xtitypes.h diff --git a/libc/include/x86_64-linux-gnu/fpu_control.h b/lib/libc/include/x86_64-linux-gnu/fpu_control.h similarity index 100% rename from libc/include/x86_64-linux-gnu/fpu_control.h rename to lib/libc/include/x86_64-linux-gnu/fpu_control.h diff --git a/libc/include/x86_64-linux-gnu/gnu/lib-names-64.h b/lib/libc/include/x86_64-linux-gnu/gnu/lib-names-64.h similarity index 100% rename from libc/include/x86_64-linux-gnu/gnu/lib-names-64.h rename to lib/libc/include/x86_64-linux-gnu/gnu/lib-names-64.h diff --git a/libc/include/x86_64-linux-gnu/gnu/lib-names.h b/lib/libc/include/x86_64-linux-gnu/gnu/lib-names.h similarity index 100% rename from libc/include/x86_64-linux-gnu/gnu/lib-names.h rename to lib/libc/include/x86_64-linux-gnu/gnu/lib-names.h diff --git a/libc/include/x86_64-linux-gnu/gnu/stubs-64.h b/lib/libc/include/x86_64-linux-gnu/gnu/stubs-64.h similarity index 100% rename from libc/include/x86_64-linux-gnu/gnu/stubs-64.h rename to lib/libc/include/x86_64-linux-gnu/gnu/stubs-64.h diff --git a/libc/include/x86_64-linux-gnu/gnu/stubs.h b/lib/libc/include/x86_64-linux-gnu/gnu/stubs.h similarity index 100% rename from libc/include/x86_64-linux-gnu/gnu/stubs.h rename to lib/libc/include/x86_64-linux-gnu/gnu/stubs.h diff --git a/libc/include/x86_64-linux-gnu/sys/elf.h b/lib/libc/include/x86_64-linux-gnu/sys/elf.h similarity index 100% rename from libc/include/x86_64-linux-gnu/sys/elf.h rename to lib/libc/include/x86_64-linux-gnu/sys/elf.h diff --git a/libc/include/x86_64-linux-gnu/sys/io.h b/lib/libc/include/x86_64-linux-gnu/sys/io.h similarity index 100% rename from libc/include/x86_64-linux-gnu/sys/io.h rename to lib/libc/include/x86_64-linux-gnu/sys/io.h diff --git a/libc/include/x86_64-linux-gnu/sys/ptrace.h b/lib/libc/include/x86_64-linux-gnu/sys/ptrace.h similarity index 100% rename from libc/include/x86_64-linux-gnu/sys/ptrace.h rename to lib/libc/include/x86_64-linux-gnu/sys/ptrace.h diff --git a/libc/include/x86_64-linux-gnu/sys/ucontext.h b/lib/libc/include/x86_64-linux-gnu/sys/ucontext.h similarity index 100% rename from libc/include/x86_64-linux-gnu/sys/ucontext.h rename to lib/libc/include/x86_64-linux-gnu/sys/ucontext.h diff --git a/libc/include/x86_64-linux-gnu/sys/user.h b/lib/libc/include/x86_64-linux-gnu/sys/user.h similarity index 100% rename from libc/include/x86_64-linux-gnu/sys/user.h rename to lib/libc/include/x86_64-linux-gnu/sys/user.h diff --git a/libc/include/x86_64-linux-gnux32/bits/a.out.h b/lib/libc/include/x86_64-linux-gnux32/bits/a.out.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/a.out.h rename to lib/libc/include/x86_64-linux-gnux32/bits/a.out.h diff --git a/libc/include/x86_64-linux-gnux32/bits/endian.h b/lib/libc/include/x86_64-linux-gnux32/bits/endian.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/endian.h rename to lib/libc/include/x86_64-linux-gnux32/bits/endian.h diff --git a/libc/include/x86_64-linux-gnux32/bits/environments.h b/lib/libc/include/x86_64-linux-gnux32/bits/environments.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/environments.h rename to lib/libc/include/x86_64-linux-gnux32/bits/environments.h diff --git a/libc/include/x86_64-linux-gnux32/bits/epoll.h b/lib/libc/include/x86_64-linux-gnux32/bits/epoll.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/epoll.h rename to lib/libc/include/x86_64-linux-gnux32/bits/epoll.h diff --git a/libc/include/x86_64-linux-gnux32/bits/fcntl.h b/lib/libc/include/x86_64-linux-gnux32/bits/fcntl.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/fcntl.h rename to lib/libc/include/x86_64-linux-gnux32/bits/fcntl.h diff --git a/libc/include/x86_64-linux-gnux32/bits/fenv.h b/lib/libc/include/x86_64-linux-gnux32/bits/fenv.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/fenv.h rename to lib/libc/include/x86_64-linux-gnux32/bits/fenv.h diff --git a/libc/include/x86_64-linux-gnux32/bits/floatn.h b/lib/libc/include/x86_64-linux-gnux32/bits/floatn.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/floatn.h rename to lib/libc/include/x86_64-linux-gnux32/bits/floatn.h diff --git a/libc/include/x86_64-linux-gnux32/bits/flt-eval-method.h b/lib/libc/include/x86_64-linux-gnux32/bits/flt-eval-method.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/flt-eval-method.h rename to lib/libc/include/x86_64-linux-gnux32/bits/flt-eval-method.h diff --git a/libc/include/x86_64-linux-gnux32/bits/fp-logb.h b/lib/libc/include/x86_64-linux-gnux32/bits/fp-logb.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/fp-logb.h rename to lib/libc/include/x86_64-linux-gnux32/bits/fp-logb.h diff --git a/libc/include/x86_64-linux-gnux32/bits/indirect-return.h b/lib/libc/include/x86_64-linux-gnux32/bits/indirect-return.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/indirect-return.h rename to lib/libc/include/x86_64-linux-gnux32/bits/indirect-return.h diff --git a/libc/include/x86_64-linux-gnux32/bits/ipctypes.h b/lib/libc/include/x86_64-linux-gnux32/bits/ipctypes.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/ipctypes.h rename to lib/libc/include/x86_64-linux-gnux32/bits/ipctypes.h diff --git a/libc/include/x86_64-linux-gnux32/bits/iscanonical.h b/lib/libc/include/x86_64-linux-gnux32/bits/iscanonical.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/iscanonical.h rename to lib/libc/include/x86_64-linux-gnux32/bits/iscanonical.h diff --git a/libc/include/x86_64-linux-gnux32/bits/link.h b/lib/libc/include/x86_64-linux-gnux32/bits/link.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/link.h rename to lib/libc/include/x86_64-linux-gnux32/bits/link.h diff --git a/libc/include/x86_64-linux-gnux32/bits/long-double.h b/lib/libc/include/x86_64-linux-gnux32/bits/long-double.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/long-double.h rename to lib/libc/include/x86_64-linux-gnux32/bits/long-double.h diff --git a/libc/include/x86_64-linux-gnux32/bits/math-vector-fortran.h b/lib/libc/include/x86_64-linux-gnux32/bits/math-vector-fortran.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/math-vector-fortran.h rename to lib/libc/include/x86_64-linux-gnux32/bits/math-vector-fortran.h diff --git a/libc/include/x86_64-linux-gnux32/bits/math-vector.h b/lib/libc/include/x86_64-linux-gnux32/bits/math-vector.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/math-vector.h rename to lib/libc/include/x86_64-linux-gnux32/bits/math-vector.h diff --git a/libc/include/x86_64-linux-gnux32/bits/mman.h b/lib/libc/include/x86_64-linux-gnux32/bits/mman.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/mman.h rename to lib/libc/include/x86_64-linux-gnux32/bits/mman.h diff --git a/libc/include/x86_64-linux-gnux32/bits/procfs-id.h b/lib/libc/include/x86_64-linux-gnux32/bits/procfs-id.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/procfs-id.h rename to lib/libc/include/x86_64-linux-gnux32/bits/procfs-id.h diff --git a/libc/include/x86_64-linux-gnux32/bits/procfs.h b/lib/libc/include/x86_64-linux-gnux32/bits/procfs.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/procfs.h rename to lib/libc/include/x86_64-linux-gnux32/bits/procfs.h diff --git a/libc/include/x86_64-linux-gnux32/bits/pthreadtypes-arch.h b/lib/libc/include/x86_64-linux-gnux32/bits/pthreadtypes-arch.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/pthreadtypes-arch.h rename to lib/libc/include/x86_64-linux-gnux32/bits/pthreadtypes-arch.h diff --git a/libc/include/x86_64-linux-gnux32/bits/select.h b/lib/libc/include/x86_64-linux-gnux32/bits/select.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/select.h rename to lib/libc/include/x86_64-linux-gnux32/bits/select.h diff --git a/libc/include/x86_64-linux-gnux32/bits/sem-pad.h b/lib/libc/include/x86_64-linux-gnux32/bits/sem-pad.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/sem-pad.h rename to lib/libc/include/x86_64-linux-gnux32/bits/sem-pad.h diff --git a/libc/include/x86_64-linux-gnux32/bits/semaphore.h b/lib/libc/include/x86_64-linux-gnux32/bits/semaphore.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/semaphore.h rename to lib/libc/include/x86_64-linux-gnux32/bits/semaphore.h diff --git a/libc/include/x86_64-linux-gnux32/bits/setjmp.h b/lib/libc/include/x86_64-linux-gnux32/bits/setjmp.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/setjmp.h rename to lib/libc/include/x86_64-linux-gnux32/bits/setjmp.h diff --git a/libc/include/x86_64-linux-gnux32/bits/sigcontext.h b/lib/libc/include/x86_64-linux-gnux32/bits/sigcontext.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/sigcontext.h rename to lib/libc/include/x86_64-linux-gnux32/bits/sigcontext.h diff --git a/libc/include/x86_64-linux-gnux32/bits/siginfo-arch.h b/lib/libc/include/x86_64-linux-gnux32/bits/siginfo-arch.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/siginfo-arch.h rename to lib/libc/include/x86_64-linux-gnux32/bits/siginfo-arch.h diff --git a/libc/include/x86_64-linux-gnux32/bits/stat.h b/lib/libc/include/x86_64-linux-gnux32/bits/stat.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/stat.h rename to lib/libc/include/x86_64-linux-gnux32/bits/stat.h diff --git a/libc/include/x86_64-linux-gnux32/bits/sysctl.h b/lib/libc/include/x86_64-linux-gnux32/bits/sysctl.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/sysctl.h rename to lib/libc/include/x86_64-linux-gnux32/bits/sysctl.h diff --git a/libc/include/x86_64-linux-gnux32/bits/timesize.h b/lib/libc/include/x86_64-linux-gnux32/bits/timesize.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/timesize.h rename to lib/libc/include/x86_64-linux-gnux32/bits/timesize.h diff --git a/libc/include/x86_64-linux-gnux32/bits/typesizes.h b/lib/libc/include/x86_64-linux-gnux32/bits/typesizes.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/typesizes.h rename to lib/libc/include/x86_64-linux-gnux32/bits/typesizes.h diff --git a/libc/include/x86_64-linux-gnux32/bits/wordsize.h b/lib/libc/include/x86_64-linux-gnux32/bits/wordsize.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/wordsize.h rename to lib/libc/include/x86_64-linux-gnux32/bits/wordsize.h diff --git a/libc/include/x86_64-linux-gnux32/bits/xtitypes.h b/lib/libc/include/x86_64-linux-gnux32/bits/xtitypes.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/bits/xtitypes.h rename to lib/libc/include/x86_64-linux-gnux32/bits/xtitypes.h diff --git a/libc/include/x86_64-linux-gnux32/fpu_control.h b/lib/libc/include/x86_64-linux-gnux32/fpu_control.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/fpu_control.h rename to lib/libc/include/x86_64-linux-gnux32/fpu_control.h diff --git a/libc/include/x86_64-linux-gnux32/gnu/lib-names-x32.h b/lib/libc/include/x86_64-linux-gnux32/gnu/lib-names-x32.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/gnu/lib-names-x32.h rename to lib/libc/include/x86_64-linux-gnux32/gnu/lib-names-x32.h diff --git a/libc/include/x86_64-linux-gnux32/gnu/lib-names.h b/lib/libc/include/x86_64-linux-gnux32/gnu/lib-names.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/gnu/lib-names.h rename to lib/libc/include/x86_64-linux-gnux32/gnu/lib-names.h diff --git a/libc/include/x86_64-linux-gnux32/gnu/stubs-x32.h b/lib/libc/include/x86_64-linux-gnux32/gnu/stubs-x32.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/gnu/stubs-x32.h rename to lib/libc/include/x86_64-linux-gnux32/gnu/stubs-x32.h diff --git a/libc/include/x86_64-linux-gnux32/gnu/stubs.h b/lib/libc/include/x86_64-linux-gnux32/gnu/stubs.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/gnu/stubs.h rename to lib/libc/include/x86_64-linux-gnux32/gnu/stubs.h diff --git a/libc/include/x86_64-linux-gnux32/sys/elf.h b/lib/libc/include/x86_64-linux-gnux32/sys/elf.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/sys/elf.h rename to lib/libc/include/x86_64-linux-gnux32/sys/elf.h diff --git a/libc/include/x86_64-linux-gnux32/sys/io.h b/lib/libc/include/x86_64-linux-gnux32/sys/io.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/sys/io.h rename to lib/libc/include/x86_64-linux-gnux32/sys/io.h diff --git a/libc/include/x86_64-linux-gnux32/sys/ptrace.h b/lib/libc/include/x86_64-linux-gnux32/sys/ptrace.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/sys/ptrace.h rename to lib/libc/include/x86_64-linux-gnux32/sys/ptrace.h diff --git a/libc/include/x86_64-linux-gnux32/sys/ucontext.h b/lib/libc/include/x86_64-linux-gnux32/sys/ucontext.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/sys/ucontext.h rename to lib/libc/include/x86_64-linux-gnux32/sys/ucontext.h diff --git a/libc/include/x86_64-linux-gnux32/sys/user.h b/lib/libc/include/x86_64-linux-gnux32/sys/user.h similarity index 100% rename from libc/include/x86_64-linux-gnux32/sys/user.h rename to lib/libc/include/x86_64-linux-gnux32/sys/user.h diff --git a/libc/include/x86_64-linux-musl/bfd_stdint.h b/lib/libc/include/x86_64-linux-musl/bfd_stdint.h similarity index 100% rename from libc/include/x86_64-linux-musl/bfd_stdint.h rename to lib/libc/include/x86_64-linux-musl/bfd_stdint.h diff --git a/libc/include/x86_64-linux-musl/bits/alltypes.h b/lib/libc/include/x86_64-linux-musl/bits/alltypes.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/alltypes.h rename to lib/libc/include/x86_64-linux-musl/bits/alltypes.h diff --git a/libc/include/x86_64-linux-musl/bits/endian.h b/lib/libc/include/x86_64-linux-musl/bits/endian.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/endian.h rename to lib/libc/include/x86_64-linux-musl/bits/endian.h diff --git a/libc/include/x86_64-linux-musl/bits/fcntl.h b/lib/libc/include/x86_64-linux-musl/bits/fcntl.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/fcntl.h rename to lib/libc/include/x86_64-linux-musl/bits/fcntl.h diff --git a/libc/include/x86_64-linux-musl/bits/fenv.h b/lib/libc/include/x86_64-linux-musl/bits/fenv.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/fenv.h rename to lib/libc/include/x86_64-linux-musl/bits/fenv.h diff --git a/libc/include/x86_64-linux-musl/bits/float.h b/lib/libc/include/x86_64-linux-musl/bits/float.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/float.h rename to lib/libc/include/x86_64-linux-musl/bits/float.h diff --git a/libc/include/x86_64-linux-musl/bits/io.h b/lib/libc/include/x86_64-linux-musl/bits/io.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/io.h rename to lib/libc/include/x86_64-linux-musl/bits/io.h diff --git a/libc/include/x86_64-linux-musl/bits/ipc.h b/lib/libc/include/x86_64-linux-musl/bits/ipc.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/ipc.h rename to lib/libc/include/x86_64-linux-musl/bits/ipc.h diff --git a/libc/include/x86_64-linux-musl/bits/limits.h b/lib/libc/include/x86_64-linux-musl/bits/limits.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/limits.h rename to lib/libc/include/x86_64-linux-musl/bits/limits.h diff --git a/libc/include/x86_64-linux-musl/bits/mman.h b/lib/libc/include/x86_64-linux-musl/bits/mman.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/mman.h rename to lib/libc/include/x86_64-linux-musl/bits/mman.h diff --git a/libc/include/x86_64-linux-musl/bits/msg.h b/lib/libc/include/x86_64-linux-musl/bits/msg.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/msg.h rename to lib/libc/include/x86_64-linux-musl/bits/msg.h diff --git a/libc/include/x86_64-linux-musl/bits/posix.h b/lib/libc/include/x86_64-linux-musl/bits/posix.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/posix.h rename to lib/libc/include/x86_64-linux-musl/bits/posix.h diff --git a/libc/include/x86_64-linux-musl/bits/ptrace.h b/lib/libc/include/x86_64-linux-musl/bits/ptrace.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/ptrace.h rename to lib/libc/include/x86_64-linux-musl/bits/ptrace.h diff --git a/libc/include/x86_64-linux-musl/bits/reg.h b/lib/libc/include/x86_64-linux-musl/bits/reg.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/reg.h rename to lib/libc/include/x86_64-linux-musl/bits/reg.h diff --git a/libc/include/x86_64-linux-musl/bits/setjmp.h b/lib/libc/include/x86_64-linux-musl/bits/setjmp.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/setjmp.h rename to lib/libc/include/x86_64-linux-musl/bits/setjmp.h diff --git a/libc/include/x86_64-linux-musl/bits/signal.h b/lib/libc/include/x86_64-linux-musl/bits/signal.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/signal.h rename to lib/libc/include/x86_64-linux-musl/bits/signal.h diff --git a/libc/include/x86_64-linux-musl/bits/socket.h b/lib/libc/include/x86_64-linux-musl/bits/socket.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/socket.h rename to lib/libc/include/x86_64-linux-musl/bits/socket.h diff --git a/libc/include/x86_64-linux-musl/bits/stat.h b/lib/libc/include/x86_64-linux-musl/bits/stat.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/stat.h rename to lib/libc/include/x86_64-linux-musl/bits/stat.h diff --git a/libc/include/x86_64-linux-musl/bits/syscall.h b/lib/libc/include/x86_64-linux-musl/bits/syscall.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/syscall.h rename to lib/libc/include/x86_64-linux-musl/bits/syscall.h diff --git a/libc/include/x86_64-linux-musl/bits/user.h b/lib/libc/include/x86_64-linux-musl/bits/user.h similarity index 100% rename from libc/include/x86_64-linux-musl/bits/user.h rename to lib/libc/include/x86_64-linux-musl/bits/user.h diff --git a/libc/mingw/complex/_cabs.c b/lib/libc/mingw/complex/_cabs.c similarity index 100% rename from libc/mingw/complex/_cabs.c rename to lib/libc/mingw/complex/_cabs.c diff --git a/libc/mingw/complex/cabs.c b/lib/libc/mingw/complex/cabs.c similarity index 100% rename from libc/mingw/complex/cabs.c rename to lib/libc/mingw/complex/cabs.c diff --git a/libc/mingw/complex/cabs.def.h b/lib/libc/mingw/complex/cabs.def.h similarity index 100% rename from libc/mingw/complex/cabs.def.h rename to lib/libc/mingw/complex/cabs.def.h diff --git a/libc/mingw/complex/cabsf.c b/lib/libc/mingw/complex/cabsf.c similarity index 100% rename from libc/mingw/complex/cabsf.c rename to lib/libc/mingw/complex/cabsf.c diff --git a/libc/mingw/complex/cabsl.c b/lib/libc/mingw/complex/cabsl.c similarity index 100% rename from libc/mingw/complex/cabsl.c rename to lib/libc/mingw/complex/cabsl.c diff --git a/libc/mingw/complex/cacos.c b/lib/libc/mingw/complex/cacos.c similarity index 100% rename from libc/mingw/complex/cacos.c rename to lib/libc/mingw/complex/cacos.c diff --git a/libc/mingw/complex/cacos.def.h b/lib/libc/mingw/complex/cacos.def.h similarity index 100% rename from libc/mingw/complex/cacos.def.h rename to lib/libc/mingw/complex/cacos.def.h diff --git a/libc/mingw/complex/cacosf.c b/lib/libc/mingw/complex/cacosf.c similarity index 100% rename from libc/mingw/complex/cacosf.c rename to lib/libc/mingw/complex/cacosf.c diff --git a/libc/mingw/complex/cacosh.def.h b/lib/libc/mingw/complex/cacosh.def.h similarity index 100% rename from libc/mingw/complex/cacosh.def.h rename to lib/libc/mingw/complex/cacosh.def.h diff --git a/libc/mingw/complex/cacosl.c b/lib/libc/mingw/complex/cacosl.c similarity index 100% rename from libc/mingw/complex/cacosl.c rename to lib/libc/mingw/complex/cacosl.c diff --git a/libc/mingw/complex/carg.c b/lib/libc/mingw/complex/carg.c similarity index 100% rename from libc/mingw/complex/carg.c rename to lib/libc/mingw/complex/carg.c diff --git a/libc/mingw/complex/carg.def.h b/lib/libc/mingw/complex/carg.def.h similarity index 100% rename from libc/mingw/complex/carg.def.h rename to lib/libc/mingw/complex/carg.def.h diff --git a/libc/mingw/complex/cargf.c b/lib/libc/mingw/complex/cargf.c similarity index 100% rename from libc/mingw/complex/cargf.c rename to lib/libc/mingw/complex/cargf.c diff --git a/libc/mingw/complex/cargl.c b/lib/libc/mingw/complex/cargl.c similarity index 100% rename from libc/mingw/complex/cargl.c rename to lib/libc/mingw/complex/cargl.c diff --git a/libc/mingw/complex/casin.c b/lib/libc/mingw/complex/casin.c similarity index 100% rename from libc/mingw/complex/casin.c rename to lib/libc/mingw/complex/casin.c diff --git a/libc/mingw/complex/casin.def.h b/lib/libc/mingw/complex/casin.def.h similarity index 100% rename from libc/mingw/complex/casin.def.h rename to lib/libc/mingw/complex/casin.def.h diff --git a/libc/mingw/complex/casinf.c b/lib/libc/mingw/complex/casinf.c similarity index 100% rename from libc/mingw/complex/casinf.c rename to lib/libc/mingw/complex/casinf.c diff --git a/libc/mingw/complex/casinh.def.h b/lib/libc/mingw/complex/casinh.def.h similarity index 100% rename from libc/mingw/complex/casinh.def.h rename to lib/libc/mingw/complex/casinh.def.h diff --git a/libc/mingw/complex/casinl.c b/lib/libc/mingw/complex/casinl.c similarity index 100% rename from libc/mingw/complex/casinl.c rename to lib/libc/mingw/complex/casinl.c diff --git a/libc/mingw/complex/catan.c b/lib/libc/mingw/complex/catan.c similarity index 100% rename from libc/mingw/complex/catan.c rename to lib/libc/mingw/complex/catan.c diff --git a/libc/mingw/complex/catan.def.h b/lib/libc/mingw/complex/catan.def.h similarity index 100% rename from libc/mingw/complex/catan.def.h rename to lib/libc/mingw/complex/catan.def.h diff --git a/libc/mingw/complex/catanf.c b/lib/libc/mingw/complex/catanf.c similarity index 100% rename from libc/mingw/complex/catanf.c rename to lib/libc/mingw/complex/catanf.c diff --git a/libc/mingw/complex/catanh.def.h b/lib/libc/mingw/complex/catanh.def.h similarity index 100% rename from libc/mingw/complex/catanh.def.h rename to lib/libc/mingw/complex/catanh.def.h diff --git a/libc/mingw/complex/catanl.c b/lib/libc/mingw/complex/catanl.c similarity index 100% rename from libc/mingw/complex/catanl.c rename to lib/libc/mingw/complex/catanl.c diff --git a/libc/mingw/complex/ccos.c b/lib/libc/mingw/complex/ccos.c similarity index 100% rename from libc/mingw/complex/ccos.c rename to lib/libc/mingw/complex/ccos.c diff --git a/libc/mingw/complex/ccos.def.h b/lib/libc/mingw/complex/ccos.def.h similarity index 100% rename from libc/mingw/complex/ccos.def.h rename to lib/libc/mingw/complex/ccos.def.h diff --git a/libc/mingw/complex/ccosf.c b/lib/libc/mingw/complex/ccosf.c similarity index 100% rename from libc/mingw/complex/ccosf.c rename to lib/libc/mingw/complex/ccosf.c diff --git a/libc/mingw/complex/ccosh.def.h b/lib/libc/mingw/complex/ccosh.def.h similarity index 100% rename from libc/mingw/complex/ccosh.def.h rename to lib/libc/mingw/complex/ccosh.def.h diff --git a/libc/mingw/complex/ccosl.c b/lib/libc/mingw/complex/ccosl.c similarity index 100% rename from libc/mingw/complex/ccosl.c rename to lib/libc/mingw/complex/ccosl.c diff --git a/libc/mingw/complex/cexp.c b/lib/libc/mingw/complex/cexp.c similarity index 100% rename from libc/mingw/complex/cexp.c rename to lib/libc/mingw/complex/cexp.c diff --git a/libc/mingw/complex/cexp.def.h b/lib/libc/mingw/complex/cexp.def.h similarity index 100% rename from libc/mingw/complex/cexp.def.h rename to lib/libc/mingw/complex/cexp.def.h diff --git a/libc/mingw/complex/cexpf.c b/lib/libc/mingw/complex/cexpf.c similarity index 100% rename from libc/mingw/complex/cexpf.c rename to lib/libc/mingw/complex/cexpf.c diff --git a/libc/mingw/complex/cexpl.c b/lib/libc/mingw/complex/cexpl.c similarity index 100% rename from libc/mingw/complex/cexpl.c rename to lib/libc/mingw/complex/cexpl.c diff --git a/libc/mingw/complex/cimag.c b/lib/libc/mingw/complex/cimag.c similarity index 100% rename from libc/mingw/complex/cimag.c rename to lib/libc/mingw/complex/cimag.c diff --git a/libc/mingw/complex/cimag.def.h b/lib/libc/mingw/complex/cimag.def.h similarity index 100% rename from libc/mingw/complex/cimag.def.h rename to lib/libc/mingw/complex/cimag.def.h diff --git a/libc/mingw/complex/cimagf.c b/lib/libc/mingw/complex/cimagf.c similarity index 100% rename from libc/mingw/complex/cimagf.c rename to lib/libc/mingw/complex/cimagf.c diff --git a/libc/mingw/complex/cimagl.c b/lib/libc/mingw/complex/cimagl.c similarity index 100% rename from libc/mingw/complex/cimagl.c rename to lib/libc/mingw/complex/cimagl.c diff --git a/libc/mingw/complex/clog.c b/lib/libc/mingw/complex/clog.c similarity index 100% rename from libc/mingw/complex/clog.c rename to lib/libc/mingw/complex/clog.c diff --git a/libc/mingw/complex/clog.def.h b/lib/libc/mingw/complex/clog.def.h similarity index 100% rename from libc/mingw/complex/clog.def.h rename to lib/libc/mingw/complex/clog.def.h diff --git a/libc/mingw/complex/clog10.c b/lib/libc/mingw/complex/clog10.c similarity index 100% rename from libc/mingw/complex/clog10.c rename to lib/libc/mingw/complex/clog10.c diff --git a/libc/mingw/complex/clog10.def.h b/lib/libc/mingw/complex/clog10.def.h similarity index 100% rename from libc/mingw/complex/clog10.def.h rename to lib/libc/mingw/complex/clog10.def.h diff --git a/libc/mingw/complex/clog10f.c b/lib/libc/mingw/complex/clog10f.c similarity index 100% rename from libc/mingw/complex/clog10f.c rename to lib/libc/mingw/complex/clog10f.c diff --git a/libc/mingw/complex/clog10l.c b/lib/libc/mingw/complex/clog10l.c similarity index 100% rename from libc/mingw/complex/clog10l.c rename to lib/libc/mingw/complex/clog10l.c diff --git a/libc/mingw/complex/clogf.c b/lib/libc/mingw/complex/clogf.c similarity index 100% rename from libc/mingw/complex/clogf.c rename to lib/libc/mingw/complex/clogf.c diff --git a/libc/mingw/complex/clogl.c b/lib/libc/mingw/complex/clogl.c similarity index 100% rename from libc/mingw/complex/clogl.c rename to lib/libc/mingw/complex/clogl.c diff --git a/libc/mingw/complex/complex_internal.h b/lib/libc/mingw/complex/complex_internal.h similarity index 100% rename from libc/mingw/complex/complex_internal.h rename to lib/libc/mingw/complex/complex_internal.h diff --git a/libc/mingw/complex/conj.c b/lib/libc/mingw/complex/conj.c similarity index 100% rename from libc/mingw/complex/conj.c rename to lib/libc/mingw/complex/conj.c diff --git a/libc/mingw/complex/conj.def.h b/lib/libc/mingw/complex/conj.def.h similarity index 100% rename from libc/mingw/complex/conj.def.h rename to lib/libc/mingw/complex/conj.def.h diff --git a/libc/mingw/complex/conjf.c b/lib/libc/mingw/complex/conjf.c similarity index 100% rename from libc/mingw/complex/conjf.c rename to lib/libc/mingw/complex/conjf.c diff --git a/libc/mingw/complex/conjl.c b/lib/libc/mingw/complex/conjl.c similarity index 100% rename from libc/mingw/complex/conjl.c rename to lib/libc/mingw/complex/conjl.c diff --git a/libc/mingw/complex/cpow.c b/lib/libc/mingw/complex/cpow.c similarity index 100% rename from libc/mingw/complex/cpow.c rename to lib/libc/mingw/complex/cpow.c diff --git a/libc/mingw/complex/cpow.def.h b/lib/libc/mingw/complex/cpow.def.h similarity index 100% rename from libc/mingw/complex/cpow.def.h rename to lib/libc/mingw/complex/cpow.def.h diff --git a/libc/mingw/complex/cpowf.c b/lib/libc/mingw/complex/cpowf.c similarity index 100% rename from libc/mingw/complex/cpowf.c rename to lib/libc/mingw/complex/cpowf.c diff --git a/libc/mingw/complex/cpowl.c b/lib/libc/mingw/complex/cpowl.c similarity index 100% rename from libc/mingw/complex/cpowl.c rename to lib/libc/mingw/complex/cpowl.c diff --git a/libc/mingw/complex/cproj.c b/lib/libc/mingw/complex/cproj.c similarity index 100% rename from libc/mingw/complex/cproj.c rename to lib/libc/mingw/complex/cproj.c diff --git a/libc/mingw/complex/cproj.def.h b/lib/libc/mingw/complex/cproj.def.h similarity index 100% rename from libc/mingw/complex/cproj.def.h rename to lib/libc/mingw/complex/cproj.def.h diff --git a/libc/mingw/complex/cprojf.c b/lib/libc/mingw/complex/cprojf.c similarity index 100% rename from libc/mingw/complex/cprojf.c rename to lib/libc/mingw/complex/cprojf.c diff --git a/libc/mingw/complex/cprojl.c b/lib/libc/mingw/complex/cprojl.c similarity index 100% rename from libc/mingw/complex/cprojl.c rename to lib/libc/mingw/complex/cprojl.c diff --git a/libc/mingw/complex/creal.c b/lib/libc/mingw/complex/creal.c similarity index 100% rename from libc/mingw/complex/creal.c rename to lib/libc/mingw/complex/creal.c diff --git a/libc/mingw/complex/creal.def.h b/lib/libc/mingw/complex/creal.def.h similarity index 100% rename from libc/mingw/complex/creal.def.h rename to lib/libc/mingw/complex/creal.def.h diff --git a/libc/mingw/complex/crealf.c b/lib/libc/mingw/complex/crealf.c similarity index 100% rename from libc/mingw/complex/crealf.c rename to lib/libc/mingw/complex/crealf.c diff --git a/libc/mingw/complex/creall.c b/lib/libc/mingw/complex/creall.c similarity index 100% rename from libc/mingw/complex/creall.c rename to lib/libc/mingw/complex/creall.c diff --git a/libc/mingw/complex/csin.c b/lib/libc/mingw/complex/csin.c similarity index 100% rename from libc/mingw/complex/csin.c rename to lib/libc/mingw/complex/csin.c diff --git a/libc/mingw/complex/csin.def.h b/lib/libc/mingw/complex/csin.def.h similarity index 100% rename from libc/mingw/complex/csin.def.h rename to lib/libc/mingw/complex/csin.def.h diff --git a/libc/mingw/complex/csinf.c b/lib/libc/mingw/complex/csinf.c similarity index 100% rename from libc/mingw/complex/csinf.c rename to lib/libc/mingw/complex/csinf.c diff --git a/libc/mingw/complex/csinh.def.h b/lib/libc/mingw/complex/csinh.def.h similarity index 100% rename from libc/mingw/complex/csinh.def.h rename to lib/libc/mingw/complex/csinh.def.h diff --git a/libc/mingw/complex/csinl.c b/lib/libc/mingw/complex/csinl.c similarity index 100% rename from libc/mingw/complex/csinl.c rename to lib/libc/mingw/complex/csinl.c diff --git a/libc/mingw/complex/csqrt.c b/lib/libc/mingw/complex/csqrt.c similarity index 100% rename from libc/mingw/complex/csqrt.c rename to lib/libc/mingw/complex/csqrt.c diff --git a/libc/mingw/complex/csqrt.def.h b/lib/libc/mingw/complex/csqrt.def.h similarity index 100% rename from libc/mingw/complex/csqrt.def.h rename to lib/libc/mingw/complex/csqrt.def.h diff --git a/libc/mingw/complex/csqrtf.c b/lib/libc/mingw/complex/csqrtf.c similarity index 100% rename from libc/mingw/complex/csqrtf.c rename to lib/libc/mingw/complex/csqrtf.c diff --git a/libc/mingw/complex/csqrtl.c b/lib/libc/mingw/complex/csqrtl.c similarity index 100% rename from libc/mingw/complex/csqrtl.c rename to lib/libc/mingw/complex/csqrtl.c diff --git a/libc/mingw/complex/ctan.c b/lib/libc/mingw/complex/ctan.c similarity index 100% rename from libc/mingw/complex/ctan.c rename to lib/libc/mingw/complex/ctan.c diff --git a/libc/mingw/complex/ctan.def.h b/lib/libc/mingw/complex/ctan.def.h similarity index 100% rename from libc/mingw/complex/ctan.def.h rename to lib/libc/mingw/complex/ctan.def.h diff --git a/libc/mingw/complex/ctanf.c b/lib/libc/mingw/complex/ctanf.c similarity index 100% rename from libc/mingw/complex/ctanf.c rename to lib/libc/mingw/complex/ctanf.c diff --git a/libc/mingw/complex/ctanh.def.h b/lib/libc/mingw/complex/ctanh.def.h similarity index 100% rename from libc/mingw/complex/ctanh.def.h rename to lib/libc/mingw/complex/ctanh.def.h diff --git a/libc/mingw/complex/ctanl.c b/lib/libc/mingw/complex/ctanl.c similarity index 100% rename from libc/mingw/complex/ctanl.c rename to lib/libc/mingw/complex/ctanl.c diff --git a/libc/mingw/crt/CRT_fp10.c b/lib/libc/mingw/crt/CRT_fp10.c similarity index 100% rename from libc/mingw/crt/CRT_fp10.c rename to lib/libc/mingw/crt/CRT_fp10.c diff --git a/libc/mingw/crt/_newmode.c b/lib/libc/mingw/crt/_newmode.c similarity index 100% rename from libc/mingw/crt/_newmode.c rename to lib/libc/mingw/crt/_newmode.c diff --git a/libc/mingw/crt/charmax.c b/lib/libc/mingw/crt/charmax.c similarity index 100% rename from libc/mingw/crt/charmax.c rename to lib/libc/mingw/crt/charmax.c diff --git a/libc/mingw/crt/cinitexe.c b/lib/libc/mingw/crt/cinitexe.c similarity index 100% rename from libc/mingw/crt/cinitexe.c rename to lib/libc/mingw/crt/cinitexe.c diff --git a/libc/mingw/crt/crt0_c.c b/lib/libc/mingw/crt/crt0_c.c similarity index 100% rename from libc/mingw/crt/crt0_c.c rename to lib/libc/mingw/crt/crt0_c.c diff --git a/libc/mingw/crt/crt0_w.c b/lib/libc/mingw/crt/crt0_w.c similarity index 100% rename from libc/mingw/crt/crt0_w.c rename to lib/libc/mingw/crt/crt0_w.c diff --git a/libc/mingw/crt/crt_handler.c b/lib/libc/mingw/crt/crt_handler.c similarity index 100% rename from libc/mingw/crt/crt_handler.c rename to lib/libc/mingw/crt/crt_handler.c diff --git a/libc/mingw/crt/crtdll.c b/lib/libc/mingw/crt/crtdll.c similarity index 100% rename from libc/mingw/crt/crtdll.c rename to lib/libc/mingw/crt/crtdll.c diff --git a/libc/mingw/crt/crtexe.c b/lib/libc/mingw/crt/crtexe.c similarity index 100% rename from libc/mingw/crt/crtexe.c rename to lib/libc/mingw/crt/crtexe.c diff --git a/libc/mingw/crt/cxa_atexit.c b/lib/libc/mingw/crt/cxa_atexit.c similarity index 100% rename from libc/mingw/crt/cxa_atexit.c rename to lib/libc/mingw/crt/cxa_atexit.c diff --git a/libc/mingw/crt/dll_argv.c b/lib/libc/mingw/crt/dll_argv.c similarity index 100% rename from libc/mingw/crt/dll_argv.c rename to lib/libc/mingw/crt/dll_argv.c diff --git a/libc/mingw/crt/dllargv.c b/lib/libc/mingw/crt/dllargv.c similarity index 100% rename from libc/mingw/crt/dllargv.c rename to lib/libc/mingw/crt/dllargv.c diff --git a/libc/mingw/crt/dllentry.c b/lib/libc/mingw/crt/dllentry.c similarity index 100% rename from libc/mingw/crt/dllentry.c rename to lib/libc/mingw/crt/dllentry.c diff --git a/libc/mingw/crt/dllmain.c b/lib/libc/mingw/crt/dllmain.c similarity index 100% rename from libc/mingw/crt/dllmain.c rename to lib/libc/mingw/crt/dllmain.c diff --git a/libc/mingw/crt/gccmain.c b/lib/libc/mingw/crt/gccmain.c similarity index 100% rename from libc/mingw/crt/gccmain.c rename to lib/libc/mingw/crt/gccmain.c diff --git a/libc/mingw/crt/gs_support.c b/lib/libc/mingw/crt/gs_support.c similarity index 100% rename from libc/mingw/crt/gs_support.c rename to lib/libc/mingw/crt/gs_support.c diff --git a/libc/mingw/crt/merr.c b/lib/libc/mingw/crt/merr.c similarity index 100% rename from libc/mingw/crt/merr.c rename to lib/libc/mingw/crt/merr.c diff --git a/libc/mingw/crt/mingw_helpers.c b/lib/libc/mingw/crt/mingw_helpers.c similarity index 100% rename from libc/mingw/crt/mingw_helpers.c rename to lib/libc/mingw/crt/mingw_helpers.c diff --git a/libc/mingw/crt/natstart.c b/lib/libc/mingw/crt/natstart.c similarity index 100% rename from libc/mingw/crt/natstart.c rename to lib/libc/mingw/crt/natstart.c diff --git a/libc/mingw/crt/pesect.c b/lib/libc/mingw/crt/pesect.c similarity index 100% rename from libc/mingw/crt/pesect.c rename to lib/libc/mingw/crt/pesect.c diff --git a/libc/mingw/crt/pseudo-reloc-list.c b/lib/libc/mingw/crt/pseudo-reloc-list.c similarity index 100% rename from libc/mingw/crt/pseudo-reloc-list.c rename to lib/libc/mingw/crt/pseudo-reloc-list.c diff --git a/libc/mingw/crt/pseudo-reloc.c b/lib/libc/mingw/crt/pseudo-reloc.c similarity index 100% rename from libc/mingw/crt/pseudo-reloc.c rename to lib/libc/mingw/crt/pseudo-reloc.c diff --git a/libc/mingw/crt/tlsmcrt.c b/lib/libc/mingw/crt/tlsmcrt.c similarity index 100% rename from libc/mingw/crt/tlsmcrt.c rename to lib/libc/mingw/crt/tlsmcrt.c diff --git a/libc/mingw/crt/tlsmthread.c b/lib/libc/mingw/crt/tlsmthread.c similarity index 100% rename from libc/mingw/crt/tlsmthread.c rename to lib/libc/mingw/crt/tlsmthread.c diff --git a/libc/mingw/crt/tlssup.c b/lib/libc/mingw/crt/tlssup.c similarity index 100% rename from libc/mingw/crt/tlssup.c rename to lib/libc/mingw/crt/tlssup.c diff --git a/libc/mingw/crt/tlsthrd.c b/lib/libc/mingw/crt/tlsthrd.c similarity index 100% rename from libc/mingw/crt/tlsthrd.c rename to lib/libc/mingw/crt/tlsthrd.c diff --git a/libc/mingw/crt/udll_argv.c b/lib/libc/mingw/crt/udll_argv.c similarity index 100% rename from libc/mingw/crt/udll_argv.c rename to lib/libc/mingw/crt/udll_argv.c diff --git a/libc/mingw/crt/udllargc.c b/lib/libc/mingw/crt/udllargc.c similarity index 100% rename from libc/mingw/crt/udllargc.c rename to lib/libc/mingw/crt/udllargc.c diff --git a/libc/mingw/crt/wildcard.c b/lib/libc/mingw/crt/wildcard.c similarity index 100% rename from libc/mingw/crt/wildcard.c rename to lib/libc/mingw/crt/wildcard.c diff --git a/libc/mingw/crt/xncommod.c b/lib/libc/mingw/crt/xncommod.c similarity index 100% rename from libc/mingw/crt/xncommod.c rename to lib/libc/mingw/crt/xncommod.c diff --git a/libc/mingw/crt/xthdloc.c b/lib/libc/mingw/crt/xthdloc.c similarity index 100% rename from libc/mingw/crt/xthdloc.c rename to lib/libc/mingw/crt/xthdloc.c diff --git a/libc/mingw/crt/xtxtmode.c b/lib/libc/mingw/crt/xtxtmode.c similarity index 100% rename from libc/mingw/crt/xtxtmode.c rename to lib/libc/mingw/crt/xtxtmode.c diff --git a/libc/mingw/def-include/func.def.in b/lib/libc/mingw/def-include/func.def.in similarity index 100% rename from libc/mingw/def-include/func.def.in rename to lib/libc/mingw/def-include/func.def.in diff --git a/libc/mingw/def-include/msvcrt-common.def.in b/lib/libc/mingw/def-include/msvcrt-common.def.in similarity index 100% rename from libc/mingw/def-include/msvcrt-common.def.in rename to lib/libc/mingw/def-include/msvcrt-common.def.in diff --git a/libc/mingw/gdtoa/arithchk.c b/lib/libc/mingw/gdtoa/arithchk.c similarity index 100% rename from libc/mingw/gdtoa/arithchk.c rename to lib/libc/mingw/gdtoa/arithchk.c diff --git a/libc/mingw/gdtoa/dmisc.c b/lib/libc/mingw/gdtoa/dmisc.c similarity index 100% rename from libc/mingw/gdtoa/dmisc.c rename to lib/libc/mingw/gdtoa/dmisc.c diff --git a/libc/mingw/gdtoa/dtoa.c b/lib/libc/mingw/gdtoa/dtoa.c similarity index 100% rename from libc/mingw/gdtoa/dtoa.c rename to lib/libc/mingw/gdtoa/dtoa.c diff --git a/libc/mingw/gdtoa/g__fmt.c b/lib/libc/mingw/gdtoa/g__fmt.c similarity index 100% rename from libc/mingw/gdtoa/g__fmt.c rename to lib/libc/mingw/gdtoa/g__fmt.c diff --git a/libc/mingw/gdtoa/g_dfmt.c b/lib/libc/mingw/gdtoa/g_dfmt.c similarity index 100% rename from libc/mingw/gdtoa/g_dfmt.c rename to lib/libc/mingw/gdtoa/g_dfmt.c diff --git a/libc/mingw/gdtoa/g_ffmt.c b/lib/libc/mingw/gdtoa/g_ffmt.c similarity index 100% rename from libc/mingw/gdtoa/g_ffmt.c rename to lib/libc/mingw/gdtoa/g_ffmt.c diff --git a/libc/mingw/gdtoa/g_xfmt.c b/lib/libc/mingw/gdtoa/g_xfmt.c similarity index 100% rename from libc/mingw/gdtoa/g_xfmt.c rename to lib/libc/mingw/gdtoa/g_xfmt.c diff --git a/libc/mingw/gdtoa/gd_arith.h b/lib/libc/mingw/gdtoa/gd_arith.h similarity index 100% rename from libc/mingw/gdtoa/gd_arith.h rename to lib/libc/mingw/gdtoa/gd_arith.h diff --git a/libc/mingw/gdtoa/gd_qnan.h b/lib/libc/mingw/gdtoa/gd_qnan.h similarity index 100% rename from libc/mingw/gdtoa/gd_qnan.h rename to lib/libc/mingw/gdtoa/gd_qnan.h diff --git a/libc/mingw/gdtoa/gdtoa.c b/lib/libc/mingw/gdtoa/gdtoa.c similarity index 100% rename from libc/mingw/gdtoa/gdtoa.c rename to lib/libc/mingw/gdtoa/gdtoa.c diff --git a/libc/mingw/gdtoa/gdtoa.h b/lib/libc/mingw/gdtoa/gdtoa.h similarity index 100% rename from libc/mingw/gdtoa/gdtoa.h rename to lib/libc/mingw/gdtoa/gdtoa.h diff --git a/libc/mingw/gdtoa/gdtoaimp.h b/lib/libc/mingw/gdtoa/gdtoaimp.h similarity index 100% rename from libc/mingw/gdtoa/gdtoaimp.h rename to lib/libc/mingw/gdtoa/gdtoaimp.h diff --git a/libc/mingw/gdtoa/gethex.c b/lib/libc/mingw/gdtoa/gethex.c similarity index 100% rename from libc/mingw/gdtoa/gethex.c rename to lib/libc/mingw/gdtoa/gethex.c diff --git a/libc/mingw/gdtoa/gmisc.c b/lib/libc/mingw/gdtoa/gmisc.c similarity index 100% rename from libc/mingw/gdtoa/gmisc.c rename to lib/libc/mingw/gdtoa/gmisc.c diff --git a/libc/mingw/gdtoa/hd_init.c b/lib/libc/mingw/gdtoa/hd_init.c similarity index 100% rename from libc/mingw/gdtoa/hd_init.c rename to lib/libc/mingw/gdtoa/hd_init.c diff --git a/libc/mingw/gdtoa/hexnan.c b/lib/libc/mingw/gdtoa/hexnan.c similarity index 100% rename from libc/mingw/gdtoa/hexnan.c rename to lib/libc/mingw/gdtoa/hexnan.c diff --git a/libc/mingw/gdtoa/misc.c b/lib/libc/mingw/gdtoa/misc.c similarity index 100% rename from libc/mingw/gdtoa/misc.c rename to lib/libc/mingw/gdtoa/misc.c diff --git a/libc/mingw/gdtoa/qnan.c b/lib/libc/mingw/gdtoa/qnan.c similarity index 100% rename from libc/mingw/gdtoa/qnan.c rename to lib/libc/mingw/gdtoa/qnan.c diff --git a/libc/mingw/gdtoa/smisc.c b/lib/libc/mingw/gdtoa/smisc.c similarity index 100% rename from libc/mingw/gdtoa/smisc.c rename to lib/libc/mingw/gdtoa/smisc.c diff --git a/libc/mingw/gdtoa/strtodg.c b/lib/libc/mingw/gdtoa/strtodg.c similarity index 100% rename from libc/mingw/gdtoa/strtodg.c rename to lib/libc/mingw/gdtoa/strtodg.c diff --git a/libc/mingw/gdtoa/strtodnrp.c b/lib/libc/mingw/gdtoa/strtodnrp.c similarity index 100% rename from libc/mingw/gdtoa/strtodnrp.c rename to lib/libc/mingw/gdtoa/strtodnrp.c diff --git a/libc/mingw/gdtoa/strtof.c b/lib/libc/mingw/gdtoa/strtof.c similarity index 100% rename from libc/mingw/gdtoa/strtof.c rename to lib/libc/mingw/gdtoa/strtof.c diff --git a/libc/mingw/gdtoa/strtopx.c b/lib/libc/mingw/gdtoa/strtopx.c similarity index 100% rename from libc/mingw/gdtoa/strtopx.c rename to lib/libc/mingw/gdtoa/strtopx.c diff --git a/libc/mingw/gdtoa/sum.c b/lib/libc/mingw/gdtoa/sum.c similarity index 100% rename from libc/mingw/gdtoa/sum.c rename to lib/libc/mingw/gdtoa/sum.c diff --git a/libc/mingw/gdtoa/ulp.c b/lib/libc/mingw/gdtoa/ulp.c similarity index 100% rename from libc/mingw/gdtoa/ulp.c rename to lib/libc/mingw/gdtoa/ulp.c diff --git a/libc/mingw/include/config.h b/lib/libc/mingw/include/config.h similarity index 100% rename from libc/mingw/include/config.h rename to lib/libc/mingw/include/config.h diff --git a/libc/mingw/include/internal.h b/lib/libc/mingw/include/internal.h similarity index 100% rename from libc/mingw/include/internal.h rename to lib/libc/mingw/include/internal.h diff --git a/libc/mingw/include/msvcrt.h b/lib/libc/mingw/include/msvcrt.h similarity index 100% rename from libc/mingw/include/msvcrt.h rename to lib/libc/mingw/include/msvcrt.h diff --git a/libc/mingw/include/oscalls.h b/lib/libc/mingw/include/oscalls.h similarity index 100% rename from libc/mingw/include/oscalls.h rename to lib/libc/mingw/include/oscalls.h diff --git a/libc/mingw/include/sect_attribs.h b/lib/libc/mingw/include/sect_attribs.h similarity index 100% rename from libc/mingw/include/sect_attribs.h rename to lib/libc/mingw/include/sect_attribs.h diff --git a/libc/mingw/lib-common/advapi32.def.in b/lib/libc/mingw/lib-common/advapi32.def.in similarity index 100% rename from libc/mingw/lib-common/advapi32.def.in rename to lib/libc/mingw/lib-common/advapi32.def.in diff --git a/libc/mingw/lib-common/gdi32.def b/lib/libc/mingw/lib-common/gdi32.def similarity index 100% rename from libc/mingw/lib-common/gdi32.def rename to lib/libc/mingw/lib-common/gdi32.def diff --git a/libc/mingw/lib-common/imm32.def b/lib/libc/mingw/lib-common/imm32.def similarity index 100% rename from libc/mingw/lib-common/imm32.def rename to lib/libc/mingw/lib-common/imm32.def diff --git a/libc/mingw/lib-common/kernel32.def.in b/lib/libc/mingw/lib-common/kernel32.def.in similarity index 100% rename from libc/mingw/lib-common/kernel32.def.in rename to lib/libc/mingw/lib-common/kernel32.def.in diff --git a/libc/mingw/lib-common/msvcrt.def.in b/lib/libc/mingw/lib-common/msvcrt.def.in similarity index 100% rename from libc/mingw/lib-common/msvcrt.def.in rename to lib/libc/mingw/lib-common/msvcrt.def.in diff --git a/libc/mingw/lib-common/ole32.def.in b/lib/libc/mingw/lib-common/ole32.def.in similarity index 100% rename from libc/mingw/lib-common/ole32.def.in rename to lib/libc/mingw/lib-common/ole32.def.in diff --git a/libc/mingw/lib-common/oleaut32.def.in b/lib/libc/mingw/lib-common/oleaut32.def.in similarity index 100% rename from libc/mingw/lib-common/oleaut32.def.in rename to lib/libc/mingw/lib-common/oleaut32.def.in diff --git a/libc/mingw/lib-common/shell32.def b/lib/libc/mingw/lib-common/shell32.def similarity index 100% rename from libc/mingw/lib-common/shell32.def rename to lib/libc/mingw/lib-common/shell32.def diff --git a/libc/mingw/lib-common/user32.def.in b/lib/libc/mingw/lib-common/user32.def.in similarity index 100% rename from libc/mingw/lib-common/user32.def.in rename to lib/libc/mingw/lib-common/user32.def.in diff --git a/libc/mingw/lib-common/version.def b/lib/libc/mingw/lib-common/version.def similarity index 100% rename from libc/mingw/lib-common/version.def rename to lib/libc/mingw/lib-common/version.def diff --git a/libc/mingw/lib-common/winmm.def b/lib/libc/mingw/lib-common/winmm.def similarity index 100% rename from libc/mingw/lib-common/winmm.def rename to lib/libc/mingw/lib-common/winmm.def diff --git a/libc/mingw/lib32/setupapi.def b/lib/libc/mingw/lib32/setupapi.def similarity index 100% rename from libc/mingw/lib32/setupapi.def rename to lib/libc/mingw/lib32/setupapi.def diff --git a/libc/mingw/lib64/setupapi.def b/lib/libc/mingw/lib64/setupapi.def similarity index 100% rename from libc/mingw/lib64/setupapi.def rename to lib/libc/mingw/lib64/setupapi.def diff --git a/libc/mingw/libarm32/setupapi.def b/lib/libc/mingw/libarm32/setupapi.def similarity index 100% rename from libc/mingw/libarm32/setupapi.def rename to lib/libc/mingw/libarm32/setupapi.def diff --git a/libc/mingw/math/abs64.c b/lib/libc/mingw/math/abs64.c similarity index 100% rename from libc/mingw/math/abs64.c rename to lib/libc/mingw/math/abs64.c diff --git a/libc/mingw/math/arm/_chgsignl.S b/lib/libc/mingw/math/arm/_chgsignl.S similarity index 100% rename from libc/mingw/math/arm/_chgsignl.S rename to lib/libc/mingw/math/arm/_chgsignl.S diff --git a/libc/mingw/math/arm/ceil.S b/lib/libc/mingw/math/arm/ceil.S similarity index 100% rename from libc/mingw/math/arm/ceil.S rename to lib/libc/mingw/math/arm/ceil.S diff --git a/libc/mingw/math/arm/ceilf.S b/lib/libc/mingw/math/arm/ceilf.S similarity index 100% rename from libc/mingw/math/arm/ceilf.S rename to lib/libc/mingw/math/arm/ceilf.S diff --git a/libc/mingw/math/arm/ceill.S b/lib/libc/mingw/math/arm/ceill.S similarity index 100% rename from libc/mingw/math/arm/ceill.S rename to lib/libc/mingw/math/arm/ceill.S diff --git a/libc/mingw/math/arm/copysignl.c b/lib/libc/mingw/math/arm/copysignl.c similarity index 100% rename from libc/mingw/math/arm/copysignl.c rename to lib/libc/mingw/math/arm/copysignl.c diff --git a/libc/mingw/math/arm/exp2.c b/lib/libc/mingw/math/arm/exp2.c similarity index 100% rename from libc/mingw/math/arm/exp2.c rename to lib/libc/mingw/math/arm/exp2.c diff --git a/libc/mingw/math/arm/floor.S b/lib/libc/mingw/math/arm/floor.S similarity index 100% rename from libc/mingw/math/arm/floor.S rename to lib/libc/mingw/math/arm/floor.S diff --git a/libc/mingw/math/arm/floorf.S b/lib/libc/mingw/math/arm/floorf.S similarity index 100% rename from libc/mingw/math/arm/floorf.S rename to lib/libc/mingw/math/arm/floorf.S diff --git a/libc/mingw/math/arm/floorl.S b/lib/libc/mingw/math/arm/floorl.S similarity index 100% rename from libc/mingw/math/arm/floorl.S rename to lib/libc/mingw/math/arm/floorl.S diff --git a/libc/mingw/math/arm/ldexpl.c b/lib/libc/mingw/math/arm/ldexpl.c similarity index 100% rename from libc/mingw/math/arm/ldexpl.c rename to lib/libc/mingw/math/arm/ldexpl.c diff --git a/libc/mingw/math/arm/log2.c b/lib/libc/mingw/math/arm/log2.c similarity index 100% rename from libc/mingw/math/arm/log2.c rename to lib/libc/mingw/math/arm/log2.c diff --git a/libc/mingw/math/arm/nearbyint.S b/lib/libc/mingw/math/arm/nearbyint.S similarity index 100% rename from libc/mingw/math/arm/nearbyint.S rename to lib/libc/mingw/math/arm/nearbyint.S diff --git a/libc/mingw/math/arm/nearbyintf.S b/lib/libc/mingw/math/arm/nearbyintf.S similarity index 100% rename from libc/mingw/math/arm/nearbyintf.S rename to lib/libc/mingw/math/arm/nearbyintf.S diff --git a/libc/mingw/math/arm/nearbyintl.S b/lib/libc/mingw/math/arm/nearbyintl.S similarity index 100% rename from libc/mingw/math/arm/nearbyintl.S rename to lib/libc/mingw/math/arm/nearbyintl.S diff --git a/libc/mingw/math/arm/scalbn.c b/lib/libc/mingw/math/arm/scalbn.c similarity index 100% rename from libc/mingw/math/arm/scalbn.c rename to lib/libc/mingw/math/arm/scalbn.c diff --git a/libc/mingw/math/arm/sincos.c b/lib/libc/mingw/math/arm/sincos.c similarity index 100% rename from libc/mingw/math/arm/sincos.c rename to lib/libc/mingw/math/arm/sincos.c diff --git a/libc/mingw/math/arm/trunc.S b/lib/libc/mingw/math/arm/trunc.S similarity index 100% rename from libc/mingw/math/arm/trunc.S rename to lib/libc/mingw/math/arm/trunc.S diff --git a/libc/mingw/math/arm/truncf.S b/lib/libc/mingw/math/arm/truncf.S similarity index 100% rename from libc/mingw/math/arm/truncf.S rename to lib/libc/mingw/math/arm/truncf.S diff --git a/libc/mingw/math/arm64/_chgsignl.S b/lib/libc/mingw/math/arm64/_chgsignl.S similarity index 100% rename from libc/mingw/math/arm64/_chgsignl.S rename to lib/libc/mingw/math/arm64/_chgsignl.S diff --git a/libc/mingw/math/arm64/ceil.S b/lib/libc/mingw/math/arm64/ceil.S similarity index 100% rename from libc/mingw/math/arm64/ceil.S rename to lib/libc/mingw/math/arm64/ceil.S diff --git a/libc/mingw/math/arm64/ceilf.S b/lib/libc/mingw/math/arm64/ceilf.S similarity index 100% rename from libc/mingw/math/arm64/ceilf.S rename to lib/libc/mingw/math/arm64/ceilf.S diff --git a/libc/mingw/math/arm64/ceill.S b/lib/libc/mingw/math/arm64/ceill.S similarity index 100% rename from libc/mingw/math/arm64/ceill.S rename to lib/libc/mingw/math/arm64/ceill.S diff --git a/libc/mingw/math/arm64/copysignl.c b/lib/libc/mingw/math/arm64/copysignl.c similarity index 100% rename from libc/mingw/math/arm64/copysignl.c rename to lib/libc/mingw/math/arm64/copysignl.c diff --git a/libc/mingw/math/arm64/exp2.S b/lib/libc/mingw/math/arm64/exp2.S similarity index 100% rename from libc/mingw/math/arm64/exp2.S rename to lib/libc/mingw/math/arm64/exp2.S diff --git a/libc/mingw/math/arm64/exp2f.S b/lib/libc/mingw/math/arm64/exp2f.S similarity index 100% rename from libc/mingw/math/arm64/exp2f.S rename to lib/libc/mingw/math/arm64/exp2f.S diff --git a/libc/mingw/math/arm64/floor.S b/lib/libc/mingw/math/arm64/floor.S similarity index 100% rename from libc/mingw/math/arm64/floor.S rename to lib/libc/mingw/math/arm64/floor.S diff --git a/libc/mingw/math/arm64/floorf.S b/lib/libc/mingw/math/arm64/floorf.S similarity index 100% rename from libc/mingw/math/arm64/floorf.S rename to lib/libc/mingw/math/arm64/floorf.S diff --git a/libc/mingw/math/arm64/floorl.S b/lib/libc/mingw/math/arm64/floorl.S similarity index 100% rename from libc/mingw/math/arm64/floorl.S rename to lib/libc/mingw/math/arm64/floorl.S diff --git a/libc/mingw/math/arm64/ldexpl.c b/lib/libc/mingw/math/arm64/ldexpl.c similarity index 100% rename from libc/mingw/math/arm64/ldexpl.c rename to lib/libc/mingw/math/arm64/ldexpl.c diff --git a/libc/mingw/math/arm64/log2.c b/lib/libc/mingw/math/arm64/log2.c similarity index 100% rename from libc/mingw/math/arm64/log2.c rename to lib/libc/mingw/math/arm64/log2.c diff --git a/libc/mingw/math/arm64/nearbyint.S b/lib/libc/mingw/math/arm64/nearbyint.S similarity index 100% rename from libc/mingw/math/arm64/nearbyint.S rename to lib/libc/mingw/math/arm64/nearbyint.S diff --git a/libc/mingw/math/arm64/nearbyintf.S b/lib/libc/mingw/math/arm64/nearbyintf.S similarity index 100% rename from libc/mingw/math/arm64/nearbyintf.S rename to lib/libc/mingw/math/arm64/nearbyintf.S diff --git a/libc/mingw/math/arm64/nearbyintl.S b/lib/libc/mingw/math/arm64/nearbyintl.S similarity index 100% rename from libc/mingw/math/arm64/nearbyintl.S rename to lib/libc/mingw/math/arm64/nearbyintl.S diff --git a/libc/mingw/math/arm64/scalbn.c b/lib/libc/mingw/math/arm64/scalbn.c similarity index 100% rename from libc/mingw/math/arm64/scalbn.c rename to lib/libc/mingw/math/arm64/scalbn.c diff --git a/libc/mingw/math/arm64/sincos.c b/lib/libc/mingw/math/arm64/sincos.c similarity index 100% rename from libc/mingw/math/arm64/sincos.c rename to lib/libc/mingw/math/arm64/sincos.c diff --git a/libc/mingw/math/arm64/trunc.S b/lib/libc/mingw/math/arm64/trunc.S similarity index 100% rename from libc/mingw/math/arm64/trunc.S rename to lib/libc/mingw/math/arm64/trunc.S diff --git a/libc/mingw/math/arm64/truncf.S b/lib/libc/mingw/math/arm64/truncf.S similarity index 100% rename from libc/mingw/math/arm64/truncf.S rename to lib/libc/mingw/math/arm64/truncf.S diff --git a/libc/mingw/math/cbrt.c b/lib/libc/mingw/math/cbrt.c similarity index 100% rename from libc/mingw/math/cbrt.c rename to lib/libc/mingw/math/cbrt.c diff --git a/libc/mingw/math/cbrtf.c b/lib/libc/mingw/math/cbrtf.c similarity index 100% rename from libc/mingw/math/cbrtf.c rename to lib/libc/mingw/math/cbrtf.c diff --git a/libc/mingw/math/cbrtl.c b/lib/libc/mingw/math/cbrtl.c similarity index 100% rename from libc/mingw/math/cbrtl.c rename to lib/libc/mingw/math/cbrtl.c diff --git a/libc/mingw/math/cephes_emath.c b/lib/libc/mingw/math/cephes_emath.c similarity index 100% rename from libc/mingw/math/cephes_emath.c rename to lib/libc/mingw/math/cephes_emath.c diff --git a/libc/mingw/math/cephes_emath.h b/lib/libc/mingw/math/cephes_emath.h similarity index 100% rename from libc/mingw/math/cephes_emath.h rename to lib/libc/mingw/math/cephes_emath.h diff --git a/libc/mingw/math/cephes_mconf.h b/lib/libc/mingw/math/cephes_mconf.h similarity index 100% rename from libc/mingw/math/cephes_mconf.h rename to lib/libc/mingw/math/cephes_mconf.h diff --git a/libc/mingw/math/copysign.c b/lib/libc/mingw/math/copysign.c similarity index 100% rename from libc/mingw/math/copysign.c rename to lib/libc/mingw/math/copysign.c diff --git a/libc/mingw/math/copysignf.c b/lib/libc/mingw/math/copysignf.c similarity index 100% rename from libc/mingw/math/copysignf.c rename to lib/libc/mingw/math/copysignf.c diff --git a/libc/mingw/math/coshf.c b/lib/libc/mingw/math/coshf.c similarity index 100% rename from libc/mingw/math/coshf.c rename to lib/libc/mingw/math/coshf.c diff --git a/libc/mingw/math/coshl.c b/lib/libc/mingw/math/coshl.c similarity index 100% rename from libc/mingw/math/coshl.c rename to lib/libc/mingw/math/coshl.c diff --git a/libc/mingw/math/erfl.c b/lib/libc/mingw/math/erfl.c similarity index 100% rename from libc/mingw/math/erfl.c rename to lib/libc/mingw/math/erfl.c diff --git a/libc/mingw/math/expf.c b/lib/libc/mingw/math/expf.c similarity index 100% rename from libc/mingw/math/expf.c rename to lib/libc/mingw/math/expf.c diff --git a/libc/mingw/math/fabs.c b/lib/libc/mingw/math/fabs.c similarity index 100% rename from libc/mingw/math/fabs.c rename to lib/libc/mingw/math/fabs.c diff --git a/libc/mingw/math/fabsf.c b/lib/libc/mingw/math/fabsf.c similarity index 100% rename from libc/mingw/math/fabsf.c rename to lib/libc/mingw/math/fabsf.c diff --git a/libc/mingw/math/fabsl.c b/lib/libc/mingw/math/fabsl.c similarity index 100% rename from libc/mingw/math/fabsl.c rename to lib/libc/mingw/math/fabsl.c diff --git a/libc/mingw/math/fdim.c b/lib/libc/mingw/math/fdim.c similarity index 100% rename from libc/mingw/math/fdim.c rename to lib/libc/mingw/math/fdim.c diff --git a/libc/mingw/math/fdimf.c b/lib/libc/mingw/math/fdimf.c similarity index 100% rename from libc/mingw/math/fdimf.c rename to lib/libc/mingw/math/fdimf.c diff --git a/libc/mingw/math/fdiml.c b/lib/libc/mingw/math/fdiml.c similarity index 100% rename from libc/mingw/math/fdiml.c rename to lib/libc/mingw/math/fdiml.c diff --git a/libc/mingw/math/fma.c b/lib/libc/mingw/math/fma.c similarity index 100% rename from libc/mingw/math/fma.c rename to lib/libc/mingw/math/fma.c diff --git a/libc/mingw/math/fmaf.c b/lib/libc/mingw/math/fmaf.c similarity index 100% rename from libc/mingw/math/fmaf.c rename to lib/libc/mingw/math/fmaf.c diff --git a/libc/mingw/math/fmal.c b/lib/libc/mingw/math/fmal.c similarity index 100% rename from libc/mingw/math/fmal.c rename to lib/libc/mingw/math/fmal.c diff --git a/libc/mingw/math/fmax.c b/lib/libc/mingw/math/fmax.c similarity index 100% rename from libc/mingw/math/fmax.c rename to lib/libc/mingw/math/fmax.c diff --git a/libc/mingw/math/fmaxf.c b/lib/libc/mingw/math/fmaxf.c similarity index 100% rename from libc/mingw/math/fmaxf.c rename to lib/libc/mingw/math/fmaxf.c diff --git a/libc/mingw/math/fmaxl.c b/lib/libc/mingw/math/fmaxl.c similarity index 100% rename from libc/mingw/math/fmaxl.c rename to lib/libc/mingw/math/fmaxl.c diff --git a/libc/mingw/math/fmin.c b/lib/libc/mingw/math/fmin.c similarity index 100% rename from libc/mingw/math/fmin.c rename to lib/libc/mingw/math/fmin.c diff --git a/libc/mingw/math/fminf.c b/lib/libc/mingw/math/fminf.c similarity index 100% rename from libc/mingw/math/fminf.c rename to lib/libc/mingw/math/fminf.c diff --git a/libc/mingw/math/fminl.c b/lib/libc/mingw/math/fminl.c similarity index 100% rename from libc/mingw/math/fminl.c rename to lib/libc/mingw/math/fminl.c diff --git a/libc/mingw/math/fp_consts.c b/lib/libc/mingw/math/fp_consts.c similarity index 100% rename from libc/mingw/math/fp_consts.c rename to lib/libc/mingw/math/fp_consts.c diff --git a/libc/mingw/math/fp_consts.h b/lib/libc/mingw/math/fp_consts.h similarity index 100% rename from libc/mingw/math/fp_consts.h rename to lib/libc/mingw/math/fp_consts.h diff --git a/libc/mingw/math/fp_constsf.c b/lib/libc/mingw/math/fp_constsf.c similarity index 100% rename from libc/mingw/math/fp_constsf.c rename to lib/libc/mingw/math/fp_constsf.c diff --git a/libc/mingw/math/fp_constsl.c b/lib/libc/mingw/math/fp_constsl.c similarity index 100% rename from libc/mingw/math/fp_constsl.c rename to lib/libc/mingw/math/fp_constsl.c diff --git a/libc/mingw/math/fpclassify.c b/lib/libc/mingw/math/fpclassify.c similarity index 100% rename from libc/mingw/math/fpclassify.c rename to lib/libc/mingw/math/fpclassify.c diff --git a/libc/mingw/math/fpclassifyf.c b/lib/libc/mingw/math/fpclassifyf.c similarity index 100% rename from libc/mingw/math/fpclassifyf.c rename to lib/libc/mingw/math/fpclassifyf.c diff --git a/libc/mingw/math/fpclassifyl.c b/lib/libc/mingw/math/fpclassifyl.c similarity index 100% rename from libc/mingw/math/fpclassifyl.c rename to lib/libc/mingw/math/fpclassifyl.c diff --git a/libc/mingw/math/frexpf.c b/lib/libc/mingw/math/frexpf.c similarity index 100% rename from libc/mingw/math/frexpf.c rename to lib/libc/mingw/math/frexpf.c diff --git a/libc/mingw/math/hypot.c b/lib/libc/mingw/math/hypot.c similarity index 100% rename from libc/mingw/math/hypot.c rename to lib/libc/mingw/math/hypot.c diff --git a/libc/mingw/math/hypotf.c b/lib/libc/mingw/math/hypotf.c similarity index 100% rename from libc/mingw/math/hypotf.c rename to lib/libc/mingw/math/hypotf.c diff --git a/libc/mingw/math/hypotl.c b/lib/libc/mingw/math/hypotl.c similarity index 100% rename from libc/mingw/math/hypotl.c rename to lib/libc/mingw/math/hypotl.c diff --git a/libc/mingw/math/isnan.c b/lib/libc/mingw/math/isnan.c similarity index 100% rename from libc/mingw/math/isnan.c rename to lib/libc/mingw/math/isnan.c diff --git a/libc/mingw/math/isnanf.c b/lib/libc/mingw/math/isnanf.c similarity index 100% rename from libc/mingw/math/isnanf.c rename to lib/libc/mingw/math/isnanf.c diff --git a/libc/mingw/math/isnanl.c b/lib/libc/mingw/math/isnanl.c similarity index 100% rename from libc/mingw/math/isnanl.c rename to lib/libc/mingw/math/isnanl.c diff --git a/libc/mingw/math/ldexpf.c b/lib/libc/mingw/math/ldexpf.c similarity index 100% rename from libc/mingw/math/ldexpf.c rename to lib/libc/mingw/math/ldexpf.c diff --git a/libc/mingw/math/lgamma.c b/lib/libc/mingw/math/lgamma.c similarity index 100% rename from libc/mingw/math/lgamma.c rename to lib/libc/mingw/math/lgamma.c diff --git a/libc/mingw/math/lgammaf.c b/lib/libc/mingw/math/lgammaf.c similarity index 100% rename from libc/mingw/math/lgammaf.c rename to lib/libc/mingw/math/lgammaf.c diff --git a/libc/mingw/math/lgammal.c b/lib/libc/mingw/math/lgammal.c similarity index 100% rename from libc/mingw/math/lgammal.c rename to lib/libc/mingw/math/lgammal.c diff --git a/libc/mingw/math/llrint.c b/lib/libc/mingw/math/llrint.c similarity index 100% rename from libc/mingw/math/llrint.c rename to lib/libc/mingw/math/llrint.c diff --git a/libc/mingw/math/llrintf.c b/lib/libc/mingw/math/llrintf.c similarity index 100% rename from libc/mingw/math/llrintf.c rename to lib/libc/mingw/math/llrintf.c diff --git a/libc/mingw/math/llrintl.c b/lib/libc/mingw/math/llrintl.c similarity index 100% rename from libc/mingw/math/llrintl.c rename to lib/libc/mingw/math/llrintl.c diff --git a/libc/mingw/math/llround.c b/lib/libc/mingw/math/llround.c similarity index 100% rename from libc/mingw/math/llround.c rename to lib/libc/mingw/math/llround.c diff --git a/libc/mingw/math/llroundf.c b/lib/libc/mingw/math/llroundf.c similarity index 100% rename from libc/mingw/math/llroundf.c rename to lib/libc/mingw/math/llroundf.c diff --git a/libc/mingw/math/llroundl.c b/lib/libc/mingw/math/llroundl.c similarity index 100% rename from libc/mingw/math/llroundl.c rename to lib/libc/mingw/math/llroundl.c diff --git a/libc/mingw/math/log10f.c b/lib/libc/mingw/math/log10f.c similarity index 100% rename from libc/mingw/math/log10f.c rename to lib/libc/mingw/math/log10f.c diff --git a/libc/mingw/math/logf.c b/lib/libc/mingw/math/logf.c similarity index 100% rename from libc/mingw/math/logf.c rename to lib/libc/mingw/math/logf.c diff --git a/libc/mingw/math/lrint.c b/lib/libc/mingw/math/lrint.c similarity index 100% rename from libc/mingw/math/lrint.c rename to lib/libc/mingw/math/lrint.c diff --git a/libc/mingw/math/lrintf.c b/lib/libc/mingw/math/lrintf.c similarity index 100% rename from libc/mingw/math/lrintf.c rename to lib/libc/mingw/math/lrintf.c diff --git a/libc/mingw/math/lrintl.c b/lib/libc/mingw/math/lrintl.c similarity index 100% rename from libc/mingw/math/lrintl.c rename to lib/libc/mingw/math/lrintl.c diff --git a/libc/mingw/math/lround.c b/lib/libc/mingw/math/lround.c similarity index 100% rename from libc/mingw/math/lround.c rename to lib/libc/mingw/math/lround.c diff --git a/libc/mingw/math/lroundf.c b/lib/libc/mingw/math/lroundf.c similarity index 100% rename from libc/mingw/math/lroundf.c rename to lib/libc/mingw/math/lroundf.c diff --git a/libc/mingw/math/lroundl.c b/lib/libc/mingw/math/lroundl.c similarity index 100% rename from libc/mingw/math/lroundl.c rename to lib/libc/mingw/math/lroundl.c diff --git a/libc/mingw/math/modf.c b/lib/libc/mingw/math/modf.c similarity index 100% rename from libc/mingw/math/modf.c rename to lib/libc/mingw/math/modf.c diff --git a/libc/mingw/math/modff.c b/lib/libc/mingw/math/modff.c similarity index 100% rename from libc/mingw/math/modff.c rename to lib/libc/mingw/math/modff.c diff --git a/libc/mingw/math/modfl.c b/lib/libc/mingw/math/modfl.c similarity index 100% rename from libc/mingw/math/modfl.c rename to lib/libc/mingw/math/modfl.c diff --git a/libc/mingw/math/nextafterf.c b/lib/libc/mingw/math/nextafterf.c similarity index 100% rename from libc/mingw/math/nextafterf.c rename to lib/libc/mingw/math/nextafterf.c diff --git a/libc/mingw/math/nextafterl.c b/lib/libc/mingw/math/nextafterl.c similarity index 100% rename from libc/mingw/math/nextafterl.c rename to lib/libc/mingw/math/nextafterl.c diff --git a/libc/mingw/math/nexttoward.c b/lib/libc/mingw/math/nexttoward.c similarity index 100% rename from libc/mingw/math/nexttoward.c rename to lib/libc/mingw/math/nexttoward.c diff --git a/libc/mingw/math/nexttowardf.c b/lib/libc/mingw/math/nexttowardf.c similarity index 100% rename from libc/mingw/math/nexttowardf.c rename to lib/libc/mingw/math/nexttowardf.c diff --git a/libc/mingw/math/powf.c b/lib/libc/mingw/math/powf.c similarity index 100% rename from libc/mingw/math/powf.c rename to lib/libc/mingw/math/powf.c diff --git a/libc/mingw/math/powi.c b/lib/libc/mingw/math/powi.c similarity index 100% rename from libc/mingw/math/powi.c rename to lib/libc/mingw/math/powi.c diff --git a/libc/mingw/math/powi.def.h b/lib/libc/mingw/math/powi.def.h similarity index 100% rename from libc/mingw/math/powi.def.h rename to lib/libc/mingw/math/powi.def.h diff --git a/libc/mingw/math/powif.c b/lib/libc/mingw/math/powif.c similarity index 100% rename from libc/mingw/math/powif.c rename to lib/libc/mingw/math/powif.c diff --git a/libc/mingw/math/powil.c b/lib/libc/mingw/math/powil.c similarity index 100% rename from libc/mingw/math/powil.c rename to lib/libc/mingw/math/powil.c diff --git a/libc/mingw/math/rint.c b/lib/libc/mingw/math/rint.c similarity index 100% rename from libc/mingw/math/rint.c rename to lib/libc/mingw/math/rint.c diff --git a/libc/mingw/math/rintf.c b/lib/libc/mingw/math/rintf.c similarity index 100% rename from libc/mingw/math/rintf.c rename to lib/libc/mingw/math/rintf.c diff --git a/libc/mingw/math/rintl.c b/lib/libc/mingw/math/rintl.c similarity index 100% rename from libc/mingw/math/rintl.c rename to lib/libc/mingw/math/rintl.c diff --git a/libc/mingw/math/round.c b/lib/libc/mingw/math/round.c similarity index 100% rename from libc/mingw/math/round.c rename to lib/libc/mingw/math/round.c diff --git a/libc/mingw/math/roundf.c b/lib/libc/mingw/math/roundf.c similarity index 100% rename from libc/mingw/math/roundf.c rename to lib/libc/mingw/math/roundf.c diff --git a/libc/mingw/math/roundl.c b/lib/libc/mingw/math/roundl.c similarity index 100% rename from libc/mingw/math/roundl.c rename to lib/libc/mingw/math/roundl.c diff --git a/libc/mingw/math/s_erf.c b/lib/libc/mingw/math/s_erf.c similarity index 100% rename from libc/mingw/math/s_erf.c rename to lib/libc/mingw/math/s_erf.c diff --git a/libc/mingw/math/sf_erf.c b/lib/libc/mingw/math/sf_erf.c similarity index 100% rename from libc/mingw/math/sf_erf.c rename to lib/libc/mingw/math/sf_erf.c diff --git a/libc/mingw/math/signbit.c b/lib/libc/mingw/math/signbit.c similarity index 100% rename from libc/mingw/math/signbit.c rename to lib/libc/mingw/math/signbit.c diff --git a/libc/mingw/math/signbitf.c b/lib/libc/mingw/math/signbitf.c similarity index 100% rename from libc/mingw/math/signbitf.c rename to lib/libc/mingw/math/signbitf.c diff --git a/libc/mingw/math/signbitl.c b/lib/libc/mingw/math/signbitl.c similarity index 100% rename from libc/mingw/math/signbitl.c rename to lib/libc/mingw/math/signbitl.c diff --git a/libc/mingw/math/signgam.c b/lib/libc/mingw/math/signgam.c similarity index 100% rename from libc/mingw/math/signgam.c rename to lib/libc/mingw/math/signgam.c diff --git a/libc/mingw/math/sinhf.c b/lib/libc/mingw/math/sinhf.c similarity index 100% rename from libc/mingw/math/sinhf.c rename to lib/libc/mingw/math/sinhf.c diff --git a/libc/mingw/math/sinhl.c b/lib/libc/mingw/math/sinhl.c similarity index 100% rename from libc/mingw/math/sinhl.c rename to lib/libc/mingw/math/sinhl.c diff --git a/libc/mingw/math/sqrt.c b/lib/libc/mingw/math/sqrt.c similarity index 100% rename from libc/mingw/math/sqrt.c rename to lib/libc/mingw/math/sqrt.c diff --git a/libc/mingw/math/sqrt.def.h b/lib/libc/mingw/math/sqrt.def.h similarity index 100% rename from libc/mingw/math/sqrt.def.h rename to lib/libc/mingw/math/sqrt.def.h diff --git a/libc/mingw/math/sqrtf.c b/lib/libc/mingw/math/sqrtf.c similarity index 100% rename from libc/mingw/math/sqrtf.c rename to lib/libc/mingw/math/sqrtf.c diff --git a/libc/mingw/math/sqrtl.c b/lib/libc/mingw/math/sqrtl.c similarity index 100% rename from libc/mingw/math/sqrtl.c rename to lib/libc/mingw/math/sqrtl.c diff --git a/libc/mingw/math/tanhf.c b/lib/libc/mingw/math/tanhf.c similarity index 100% rename from libc/mingw/math/tanhf.c rename to lib/libc/mingw/math/tanhf.c diff --git a/libc/mingw/math/tanhl.c b/lib/libc/mingw/math/tanhl.c similarity index 100% rename from libc/mingw/math/tanhl.c rename to lib/libc/mingw/math/tanhl.c diff --git a/libc/mingw/math/tgamma.c b/lib/libc/mingw/math/tgamma.c similarity index 100% rename from libc/mingw/math/tgamma.c rename to lib/libc/mingw/math/tgamma.c diff --git a/libc/mingw/math/tgammaf.c b/lib/libc/mingw/math/tgammaf.c similarity index 100% rename from libc/mingw/math/tgammaf.c rename to lib/libc/mingw/math/tgammaf.c diff --git a/libc/mingw/math/tgammal.c b/lib/libc/mingw/math/tgammal.c similarity index 100% rename from libc/mingw/math/tgammal.c rename to lib/libc/mingw/math/tgammal.c diff --git a/libc/mingw/math/truncl.c b/lib/libc/mingw/math/truncl.c similarity index 100% rename from libc/mingw/math/truncl.c rename to lib/libc/mingw/math/truncl.c diff --git a/libc/mingw/math/x86/_chgsignl.S b/lib/libc/mingw/math/x86/_chgsignl.S similarity index 100% rename from libc/mingw/math/x86/_chgsignl.S rename to lib/libc/mingw/math/x86/_chgsignl.S diff --git a/libc/mingw/math/x86/acosf.c b/lib/libc/mingw/math/x86/acosf.c similarity index 100% rename from libc/mingw/math/x86/acosf.c rename to lib/libc/mingw/math/x86/acosf.c diff --git a/libc/mingw/math/x86/acosh.c b/lib/libc/mingw/math/x86/acosh.c similarity index 100% rename from libc/mingw/math/x86/acosh.c rename to lib/libc/mingw/math/x86/acosh.c diff --git a/libc/mingw/math/x86/acosh.def.h b/lib/libc/mingw/math/x86/acosh.def.h similarity index 100% rename from libc/mingw/math/x86/acosh.def.h rename to lib/libc/mingw/math/x86/acosh.def.h diff --git a/libc/mingw/math/x86/acoshf.c b/lib/libc/mingw/math/x86/acoshf.c similarity index 100% rename from libc/mingw/math/x86/acoshf.c rename to lib/libc/mingw/math/x86/acoshf.c diff --git a/libc/mingw/math/x86/acoshl.c b/lib/libc/mingw/math/x86/acoshl.c similarity index 100% rename from libc/mingw/math/x86/acoshl.c rename to lib/libc/mingw/math/x86/acoshl.c diff --git a/libc/mingw/math/x86/acosl.c b/lib/libc/mingw/math/x86/acosl.c similarity index 100% rename from libc/mingw/math/x86/acosl.c rename to lib/libc/mingw/math/x86/acosl.c diff --git a/libc/mingw/math/x86/asinf.c b/lib/libc/mingw/math/x86/asinf.c similarity index 100% rename from libc/mingw/math/x86/asinf.c rename to lib/libc/mingw/math/x86/asinf.c diff --git a/libc/mingw/math/x86/asinh.c b/lib/libc/mingw/math/x86/asinh.c similarity index 100% rename from libc/mingw/math/x86/asinh.c rename to lib/libc/mingw/math/x86/asinh.c diff --git a/libc/mingw/math/x86/asinhf.c b/lib/libc/mingw/math/x86/asinhf.c similarity index 100% rename from libc/mingw/math/x86/asinhf.c rename to lib/libc/mingw/math/x86/asinhf.c diff --git a/libc/mingw/math/x86/asinhl.c b/lib/libc/mingw/math/x86/asinhl.c similarity index 100% rename from libc/mingw/math/x86/asinhl.c rename to lib/libc/mingw/math/x86/asinhl.c diff --git a/libc/mingw/math/x86/asinl.c b/lib/libc/mingw/math/x86/asinl.c similarity index 100% rename from libc/mingw/math/x86/asinl.c rename to lib/libc/mingw/math/x86/asinl.c diff --git a/libc/mingw/math/x86/atan2.c b/lib/libc/mingw/math/x86/atan2.c similarity index 100% rename from libc/mingw/math/x86/atan2.c rename to lib/libc/mingw/math/x86/atan2.c diff --git a/libc/mingw/math/x86/atan2f.c b/lib/libc/mingw/math/x86/atan2f.c similarity index 100% rename from libc/mingw/math/x86/atan2f.c rename to lib/libc/mingw/math/x86/atan2f.c diff --git a/libc/mingw/math/x86/atan2l.c b/lib/libc/mingw/math/x86/atan2l.c similarity index 100% rename from libc/mingw/math/x86/atan2l.c rename to lib/libc/mingw/math/x86/atan2l.c diff --git a/libc/mingw/math/x86/atanf.c b/lib/libc/mingw/math/x86/atanf.c similarity index 100% rename from libc/mingw/math/x86/atanf.c rename to lib/libc/mingw/math/x86/atanf.c diff --git a/libc/mingw/math/x86/atanh.c b/lib/libc/mingw/math/x86/atanh.c similarity index 100% rename from libc/mingw/math/x86/atanh.c rename to lib/libc/mingw/math/x86/atanh.c diff --git a/libc/mingw/math/x86/atanhf.c b/lib/libc/mingw/math/x86/atanhf.c similarity index 100% rename from libc/mingw/math/x86/atanhf.c rename to lib/libc/mingw/math/x86/atanhf.c diff --git a/libc/mingw/math/x86/atanhl.c b/lib/libc/mingw/math/x86/atanhl.c similarity index 100% rename from libc/mingw/math/x86/atanhl.c rename to lib/libc/mingw/math/x86/atanhl.c diff --git a/libc/mingw/math/x86/atanl.c b/lib/libc/mingw/math/x86/atanl.c similarity index 100% rename from libc/mingw/math/x86/atanl.c rename to lib/libc/mingw/math/x86/atanl.c diff --git a/libc/mingw/math/x86/ceil.S b/lib/libc/mingw/math/x86/ceil.S similarity index 100% rename from libc/mingw/math/x86/ceil.S rename to lib/libc/mingw/math/x86/ceil.S diff --git a/libc/mingw/math/x86/ceilf.S b/lib/libc/mingw/math/x86/ceilf.S similarity index 100% rename from libc/mingw/math/x86/ceilf.S rename to lib/libc/mingw/math/x86/ceilf.S diff --git a/libc/mingw/math/x86/ceill.S b/lib/libc/mingw/math/x86/ceill.S similarity index 100% rename from libc/mingw/math/x86/ceill.S rename to lib/libc/mingw/math/x86/ceill.S diff --git a/libc/mingw/math/x86/copysignl.S b/lib/libc/mingw/math/x86/copysignl.S similarity index 100% rename from libc/mingw/math/x86/copysignl.S rename to lib/libc/mingw/math/x86/copysignl.S diff --git a/libc/mingw/math/x86/cos.c b/lib/libc/mingw/math/x86/cos.c similarity index 100% rename from libc/mingw/math/x86/cos.c rename to lib/libc/mingw/math/x86/cos.c diff --git a/libc/mingw/math/x86/cos.def.h b/lib/libc/mingw/math/x86/cos.def.h similarity index 100% rename from libc/mingw/math/x86/cos.def.h rename to lib/libc/mingw/math/x86/cos.def.h diff --git a/libc/mingw/math/x86/cosf.c b/lib/libc/mingw/math/x86/cosf.c similarity index 100% rename from libc/mingw/math/x86/cosf.c rename to lib/libc/mingw/math/x86/cosf.c diff --git a/libc/mingw/math/x86/cosl.c b/lib/libc/mingw/math/x86/cosl.c similarity index 100% rename from libc/mingw/math/x86/cosl.c rename to lib/libc/mingw/math/x86/cosl.c diff --git a/libc/mingw/math/x86/cosl_internal.S b/lib/libc/mingw/math/x86/cosl_internal.S similarity index 100% rename from libc/mingw/math/x86/cosl_internal.S rename to lib/libc/mingw/math/x86/cosl_internal.S diff --git a/libc/mingw/math/x86/cossin.c b/lib/libc/mingw/math/x86/cossin.c similarity index 100% rename from libc/mingw/math/x86/cossin.c rename to lib/libc/mingw/math/x86/cossin.c diff --git a/libc/mingw/math/x86/exp.c b/lib/libc/mingw/math/x86/exp.c similarity index 100% rename from libc/mingw/math/x86/exp.c rename to lib/libc/mingw/math/x86/exp.c diff --git a/libc/mingw/math/x86/exp.def.h b/lib/libc/mingw/math/x86/exp.def.h similarity index 100% rename from libc/mingw/math/x86/exp.def.h rename to lib/libc/mingw/math/x86/exp.def.h diff --git a/libc/mingw/math/x86/exp2.S b/lib/libc/mingw/math/x86/exp2.S similarity index 100% rename from libc/mingw/math/x86/exp2.S rename to lib/libc/mingw/math/x86/exp2.S diff --git a/libc/mingw/math/x86/exp2f.S b/lib/libc/mingw/math/x86/exp2f.S similarity index 100% rename from libc/mingw/math/x86/exp2f.S rename to lib/libc/mingw/math/x86/exp2f.S diff --git a/libc/mingw/math/x86/exp2l.S b/lib/libc/mingw/math/x86/exp2l.S similarity index 100% rename from libc/mingw/math/x86/exp2l.S rename to lib/libc/mingw/math/x86/exp2l.S diff --git a/libc/mingw/math/x86/expl.c b/lib/libc/mingw/math/x86/expl.c similarity index 100% rename from libc/mingw/math/x86/expl.c rename to lib/libc/mingw/math/x86/expl.c diff --git a/libc/mingw/math/x86/expm1.c b/lib/libc/mingw/math/x86/expm1.c similarity index 100% rename from libc/mingw/math/x86/expm1.c rename to lib/libc/mingw/math/x86/expm1.c diff --git a/libc/mingw/math/x86/expm1.def.h b/lib/libc/mingw/math/x86/expm1.def.h similarity index 100% rename from libc/mingw/math/x86/expm1.def.h rename to lib/libc/mingw/math/x86/expm1.def.h diff --git a/libc/mingw/math/x86/expm1f.c b/lib/libc/mingw/math/x86/expm1f.c similarity index 100% rename from libc/mingw/math/x86/expm1f.c rename to lib/libc/mingw/math/x86/expm1f.c diff --git a/libc/mingw/math/x86/expm1l.c b/lib/libc/mingw/math/x86/expm1l.c similarity index 100% rename from libc/mingw/math/x86/expm1l.c rename to lib/libc/mingw/math/x86/expm1l.c diff --git a/libc/mingw/math/x86/fastmath.h b/lib/libc/mingw/math/x86/fastmath.h similarity index 100% rename from libc/mingw/math/x86/fastmath.h rename to lib/libc/mingw/math/x86/fastmath.h diff --git a/libc/mingw/math/x86/floor.S b/lib/libc/mingw/math/x86/floor.S similarity index 100% rename from libc/mingw/math/x86/floor.S rename to lib/libc/mingw/math/x86/floor.S diff --git a/libc/mingw/math/x86/floorf.S b/lib/libc/mingw/math/x86/floorf.S similarity index 100% rename from libc/mingw/math/x86/floorf.S rename to lib/libc/mingw/math/x86/floorf.S diff --git a/libc/mingw/math/x86/floorl.S b/lib/libc/mingw/math/x86/floorl.S similarity index 100% rename from libc/mingw/math/x86/floorl.S rename to lib/libc/mingw/math/x86/floorl.S diff --git a/libc/mingw/math/x86/fmod.c b/lib/libc/mingw/math/x86/fmod.c similarity index 100% rename from libc/mingw/math/x86/fmod.c rename to lib/libc/mingw/math/x86/fmod.c diff --git a/libc/mingw/math/x86/fmodf.c b/lib/libc/mingw/math/x86/fmodf.c similarity index 100% rename from libc/mingw/math/x86/fmodf.c rename to lib/libc/mingw/math/x86/fmodf.c diff --git a/libc/mingw/math/x86/fmodl.c b/lib/libc/mingw/math/x86/fmodl.c similarity index 100% rename from libc/mingw/math/x86/fmodl.c rename to lib/libc/mingw/math/x86/fmodl.c diff --git a/libc/mingw/math/x86/frexpl.S b/lib/libc/mingw/math/x86/frexpl.S similarity index 100% rename from libc/mingw/math/x86/frexpl.S rename to lib/libc/mingw/math/x86/frexpl.S diff --git a/libc/mingw/math/x86/fucom.c b/lib/libc/mingw/math/x86/fucom.c similarity index 100% rename from libc/mingw/math/x86/fucom.c rename to lib/libc/mingw/math/x86/fucom.c diff --git a/libc/mingw/math/x86/ilogb.S b/lib/libc/mingw/math/x86/ilogb.S similarity index 100% rename from libc/mingw/math/x86/ilogb.S rename to lib/libc/mingw/math/x86/ilogb.S diff --git a/libc/mingw/math/x86/ilogbf.S b/lib/libc/mingw/math/x86/ilogbf.S similarity index 100% rename from libc/mingw/math/x86/ilogbf.S rename to lib/libc/mingw/math/x86/ilogbf.S diff --git a/libc/mingw/math/x86/ilogbl.S b/lib/libc/mingw/math/x86/ilogbl.S similarity index 100% rename from libc/mingw/math/x86/ilogbl.S rename to lib/libc/mingw/math/x86/ilogbl.S diff --git a/libc/mingw/math/x86/internal_logl.S b/lib/libc/mingw/math/x86/internal_logl.S similarity index 100% rename from libc/mingw/math/x86/internal_logl.S rename to lib/libc/mingw/math/x86/internal_logl.S diff --git a/libc/mingw/math/x86/ldexp.c b/lib/libc/mingw/math/x86/ldexp.c similarity index 100% rename from libc/mingw/math/x86/ldexp.c rename to lib/libc/mingw/math/x86/ldexp.c diff --git a/libc/mingw/math/x86/ldexpl.c b/lib/libc/mingw/math/x86/ldexpl.c similarity index 100% rename from libc/mingw/math/x86/ldexpl.c rename to lib/libc/mingw/math/x86/ldexpl.c diff --git a/libc/mingw/math/x86/log.c b/lib/libc/mingw/math/x86/log.c similarity index 100% rename from libc/mingw/math/x86/log.c rename to lib/libc/mingw/math/x86/log.c diff --git a/libc/mingw/math/x86/log.def.h b/lib/libc/mingw/math/x86/log.def.h similarity index 100% rename from libc/mingw/math/x86/log.def.h rename to lib/libc/mingw/math/x86/log.def.h diff --git a/libc/mingw/math/x86/log10l.S b/lib/libc/mingw/math/x86/log10l.S similarity index 100% rename from libc/mingw/math/x86/log10l.S rename to lib/libc/mingw/math/x86/log10l.S diff --git a/libc/mingw/math/x86/log1p.S b/lib/libc/mingw/math/x86/log1p.S similarity index 100% rename from libc/mingw/math/x86/log1p.S rename to lib/libc/mingw/math/x86/log1p.S diff --git a/libc/mingw/math/x86/log1pf.S b/lib/libc/mingw/math/x86/log1pf.S similarity index 100% rename from libc/mingw/math/x86/log1pf.S rename to lib/libc/mingw/math/x86/log1pf.S diff --git a/libc/mingw/math/x86/log1pl.S b/lib/libc/mingw/math/x86/log1pl.S similarity index 100% rename from libc/mingw/math/x86/log1pl.S rename to lib/libc/mingw/math/x86/log1pl.S diff --git a/libc/mingw/math/x86/log2.S b/lib/libc/mingw/math/x86/log2.S similarity index 100% rename from libc/mingw/math/x86/log2.S rename to lib/libc/mingw/math/x86/log2.S diff --git a/libc/mingw/math/x86/log2f.S b/lib/libc/mingw/math/x86/log2f.S similarity index 100% rename from libc/mingw/math/x86/log2f.S rename to lib/libc/mingw/math/x86/log2f.S diff --git a/libc/mingw/math/x86/log2l.S b/lib/libc/mingw/math/x86/log2l.S similarity index 100% rename from libc/mingw/math/x86/log2l.S rename to lib/libc/mingw/math/x86/log2l.S diff --git a/libc/mingw/math/x86/logb.c b/lib/libc/mingw/math/x86/logb.c similarity index 100% rename from libc/mingw/math/x86/logb.c rename to lib/libc/mingw/math/x86/logb.c diff --git a/libc/mingw/math/x86/logbf.c b/lib/libc/mingw/math/x86/logbf.c similarity index 100% rename from libc/mingw/math/x86/logbf.c rename to lib/libc/mingw/math/x86/logbf.c diff --git a/libc/mingw/math/x86/logbl.c b/lib/libc/mingw/math/x86/logbl.c similarity index 100% rename from libc/mingw/math/x86/logbl.c rename to lib/libc/mingw/math/x86/logbl.c diff --git a/libc/mingw/math/x86/logl.c b/lib/libc/mingw/math/x86/logl.c similarity index 100% rename from libc/mingw/math/x86/logl.c rename to lib/libc/mingw/math/x86/logl.c diff --git a/libc/mingw/math/x86/nearbyint.S b/lib/libc/mingw/math/x86/nearbyint.S similarity index 100% rename from libc/mingw/math/x86/nearbyint.S rename to lib/libc/mingw/math/x86/nearbyint.S diff --git a/libc/mingw/math/x86/nearbyintf.S b/lib/libc/mingw/math/x86/nearbyintf.S similarity index 100% rename from libc/mingw/math/x86/nearbyintf.S rename to lib/libc/mingw/math/x86/nearbyintf.S diff --git a/libc/mingw/math/x86/nearbyintl.S b/lib/libc/mingw/math/x86/nearbyintl.S similarity index 100% rename from libc/mingw/math/x86/nearbyintl.S rename to lib/libc/mingw/math/x86/nearbyintl.S diff --git a/libc/mingw/math/x86/pow.c b/lib/libc/mingw/math/x86/pow.c similarity index 100% rename from libc/mingw/math/x86/pow.c rename to lib/libc/mingw/math/x86/pow.c diff --git a/libc/mingw/math/x86/pow.def.h b/lib/libc/mingw/math/x86/pow.def.h similarity index 100% rename from libc/mingw/math/x86/pow.def.h rename to lib/libc/mingw/math/x86/pow.def.h diff --git a/libc/mingw/math/x86/powl.c b/lib/libc/mingw/math/x86/powl.c similarity index 100% rename from libc/mingw/math/x86/powl.c rename to lib/libc/mingw/math/x86/powl.c diff --git a/libc/mingw/math/x86/remainder.S b/lib/libc/mingw/math/x86/remainder.S similarity index 100% rename from libc/mingw/math/x86/remainder.S rename to lib/libc/mingw/math/x86/remainder.S diff --git a/libc/mingw/math/x86/remainderf.S b/lib/libc/mingw/math/x86/remainderf.S similarity index 100% rename from libc/mingw/math/x86/remainderf.S rename to lib/libc/mingw/math/x86/remainderf.S diff --git a/libc/mingw/math/x86/remainderl.S b/lib/libc/mingw/math/x86/remainderl.S similarity index 100% rename from libc/mingw/math/x86/remainderl.S rename to lib/libc/mingw/math/x86/remainderl.S diff --git a/libc/mingw/math/x86/remquo.S b/lib/libc/mingw/math/x86/remquo.S similarity index 100% rename from libc/mingw/math/x86/remquo.S rename to lib/libc/mingw/math/x86/remquo.S diff --git a/libc/mingw/math/x86/remquof.S b/lib/libc/mingw/math/x86/remquof.S similarity index 100% rename from libc/mingw/math/x86/remquof.S rename to lib/libc/mingw/math/x86/remquof.S diff --git a/libc/mingw/math/x86/remquol.S b/lib/libc/mingw/math/x86/remquol.S similarity index 100% rename from libc/mingw/math/x86/remquol.S rename to lib/libc/mingw/math/x86/remquol.S diff --git a/libc/mingw/math/x86/scalbn.S b/lib/libc/mingw/math/x86/scalbn.S similarity index 100% rename from libc/mingw/math/x86/scalbn.S rename to lib/libc/mingw/math/x86/scalbn.S diff --git a/libc/mingw/math/x86/scalbnf.S b/lib/libc/mingw/math/x86/scalbnf.S similarity index 100% rename from libc/mingw/math/x86/scalbnf.S rename to lib/libc/mingw/math/x86/scalbnf.S diff --git a/libc/mingw/math/x86/scalbnl.S b/lib/libc/mingw/math/x86/scalbnl.S similarity index 100% rename from libc/mingw/math/x86/scalbnl.S rename to lib/libc/mingw/math/x86/scalbnl.S diff --git a/libc/mingw/math/x86/sin.c b/lib/libc/mingw/math/x86/sin.c similarity index 100% rename from libc/mingw/math/x86/sin.c rename to lib/libc/mingw/math/x86/sin.c diff --git a/libc/mingw/math/x86/sin.def.h b/lib/libc/mingw/math/x86/sin.def.h similarity index 100% rename from libc/mingw/math/x86/sin.def.h rename to lib/libc/mingw/math/x86/sin.def.h diff --git a/libc/mingw/math/x86/sinf.c b/lib/libc/mingw/math/x86/sinf.c similarity index 100% rename from libc/mingw/math/x86/sinf.c rename to lib/libc/mingw/math/x86/sinf.c diff --git a/libc/mingw/math/x86/sinl.c b/lib/libc/mingw/math/x86/sinl.c similarity index 100% rename from libc/mingw/math/x86/sinl.c rename to lib/libc/mingw/math/x86/sinl.c diff --git a/libc/mingw/math/x86/sinl_internal.S b/lib/libc/mingw/math/x86/sinl_internal.S similarity index 100% rename from libc/mingw/math/x86/sinl_internal.S rename to lib/libc/mingw/math/x86/sinl_internal.S diff --git a/libc/mingw/math/x86/tanf.c b/lib/libc/mingw/math/x86/tanf.c similarity index 100% rename from libc/mingw/math/x86/tanf.c rename to lib/libc/mingw/math/x86/tanf.c diff --git a/libc/mingw/math/x86/tanl.S b/lib/libc/mingw/math/x86/tanl.S similarity index 100% rename from libc/mingw/math/x86/tanl.S rename to lib/libc/mingw/math/x86/tanl.S diff --git a/libc/mingw/math/x86/trunc.S b/lib/libc/mingw/math/x86/trunc.S similarity index 100% rename from libc/mingw/math/x86/trunc.S rename to lib/libc/mingw/math/x86/trunc.S diff --git a/libc/mingw/math/x86/truncf.S b/lib/libc/mingw/math/x86/truncf.S similarity index 100% rename from libc/mingw/math/x86/truncf.S rename to lib/libc/mingw/math/x86/truncf.S diff --git a/libc/mingw/misc/__p___argv.c b/lib/libc/mingw/misc/__p___argv.c similarity index 100% rename from libc/mingw/misc/__p___argv.c rename to lib/libc/mingw/misc/__p___argv.c diff --git a/libc/mingw/misc/__p__acmdln.c b/lib/libc/mingw/misc/__p__acmdln.c similarity index 100% rename from libc/mingw/misc/__p__acmdln.c rename to lib/libc/mingw/misc/__p__acmdln.c diff --git a/libc/mingw/misc/__p__fmode.c b/lib/libc/mingw/misc/__p__fmode.c similarity index 100% rename from libc/mingw/misc/__p__fmode.c rename to lib/libc/mingw/misc/__p__fmode.c diff --git a/libc/mingw/misc/__p__wcmdln.c b/lib/libc/mingw/misc/__p__wcmdln.c similarity index 100% rename from libc/mingw/misc/__p__wcmdln.c rename to lib/libc/mingw/misc/__p__wcmdln.c diff --git a/libc/mingw/misc/_configthreadlocale.c b/lib/libc/mingw/misc/_configthreadlocale.c similarity index 100% rename from libc/mingw/misc/_configthreadlocale.c rename to lib/libc/mingw/misc/_configthreadlocale.c diff --git a/libc/mingw/misc/_get_current_locale.c b/lib/libc/mingw/misc/_get_current_locale.c similarity index 100% rename from libc/mingw/misc/_get_current_locale.c rename to lib/libc/mingw/misc/_get_current_locale.c diff --git a/libc/mingw/misc/alarm.c b/lib/libc/mingw/misc/alarm.c similarity index 100% rename from libc/mingw/misc/alarm.c rename to lib/libc/mingw/misc/alarm.c diff --git a/libc/mingw/misc/assert.c b/lib/libc/mingw/misc/assert.c similarity index 100% rename from libc/mingw/misc/assert.c rename to lib/libc/mingw/misc/assert.c diff --git a/libc/mingw/misc/basename.c b/lib/libc/mingw/misc/basename.c similarity index 100% rename from libc/mingw/misc/basename.c rename to lib/libc/mingw/misc/basename.c diff --git a/libc/mingw/misc/btowc.c b/lib/libc/mingw/misc/btowc.c similarity index 100% rename from libc/mingw/misc/btowc.c rename to lib/libc/mingw/misc/btowc.c diff --git a/libc/mingw/misc/delay-f.c b/lib/libc/mingw/misc/delay-f.c similarity index 100% rename from libc/mingw/misc/delay-f.c rename to lib/libc/mingw/misc/delay-f.c diff --git a/libc/mingw/misc/delay-n.c b/lib/libc/mingw/misc/delay-n.c similarity index 100% rename from libc/mingw/misc/delay-n.c rename to lib/libc/mingw/misc/delay-n.c diff --git a/libc/mingw/misc/delayimp.c b/lib/libc/mingw/misc/delayimp.c similarity index 100% rename from libc/mingw/misc/delayimp.c rename to lib/libc/mingw/misc/delayimp.c diff --git a/libc/mingw/misc/difftime.c b/lib/libc/mingw/misc/difftime.c similarity index 100% rename from libc/mingw/misc/difftime.c rename to lib/libc/mingw/misc/difftime.c diff --git a/libc/mingw/misc/difftime32.c b/lib/libc/mingw/misc/difftime32.c similarity index 100% rename from libc/mingw/misc/difftime32.c rename to lib/libc/mingw/misc/difftime32.c diff --git a/libc/mingw/misc/difftime64.c b/lib/libc/mingw/misc/difftime64.c similarity index 100% rename from libc/mingw/misc/difftime64.c rename to lib/libc/mingw/misc/difftime64.c diff --git a/libc/mingw/misc/dirent.c b/lib/libc/mingw/misc/dirent.c similarity index 100% rename from libc/mingw/misc/dirent.c rename to lib/libc/mingw/misc/dirent.c diff --git a/libc/mingw/misc/dirname.c b/lib/libc/mingw/misc/dirname.c similarity index 100% rename from libc/mingw/misc/dirname.c rename to lib/libc/mingw/misc/dirname.c diff --git a/libc/mingw/misc/execv.c b/lib/libc/mingw/misc/execv.c similarity index 100% rename from libc/mingw/misc/execv.c rename to lib/libc/mingw/misc/execv.c diff --git a/libc/mingw/misc/execve.c b/lib/libc/mingw/misc/execve.c similarity index 100% rename from libc/mingw/misc/execve.c rename to lib/libc/mingw/misc/execve.c diff --git a/libc/mingw/misc/execvp.c b/lib/libc/mingw/misc/execvp.c similarity index 100% rename from libc/mingw/misc/execvp.c rename to lib/libc/mingw/misc/execvp.c diff --git a/libc/mingw/misc/execvpe.c b/lib/libc/mingw/misc/execvpe.c similarity index 100% rename from libc/mingw/misc/execvpe.c rename to lib/libc/mingw/misc/execvpe.c diff --git a/libc/mingw/misc/feclearexcept.c b/lib/libc/mingw/misc/feclearexcept.c similarity index 100% rename from libc/mingw/misc/feclearexcept.c rename to lib/libc/mingw/misc/feclearexcept.c diff --git a/libc/mingw/misc/fegetenv.c b/lib/libc/mingw/misc/fegetenv.c similarity index 100% rename from libc/mingw/misc/fegetenv.c rename to lib/libc/mingw/misc/fegetenv.c diff --git a/libc/mingw/misc/fegetexceptflag.c b/lib/libc/mingw/misc/fegetexceptflag.c similarity index 100% rename from libc/mingw/misc/fegetexceptflag.c rename to lib/libc/mingw/misc/fegetexceptflag.c diff --git a/libc/mingw/misc/fegetround.c b/lib/libc/mingw/misc/fegetround.c similarity index 100% rename from libc/mingw/misc/fegetround.c rename to lib/libc/mingw/misc/fegetround.c diff --git a/libc/mingw/misc/feholdexcept.c b/lib/libc/mingw/misc/feholdexcept.c similarity index 100% rename from libc/mingw/misc/feholdexcept.c rename to lib/libc/mingw/misc/feholdexcept.c diff --git a/libc/mingw/misc/feraiseexcept.c b/lib/libc/mingw/misc/feraiseexcept.c similarity index 100% rename from libc/mingw/misc/feraiseexcept.c rename to lib/libc/mingw/misc/feraiseexcept.c diff --git a/libc/mingw/misc/fesetenv.c b/lib/libc/mingw/misc/fesetenv.c similarity index 100% rename from libc/mingw/misc/fesetenv.c rename to lib/libc/mingw/misc/fesetenv.c diff --git a/libc/mingw/misc/fesetexceptflag.c b/lib/libc/mingw/misc/fesetexceptflag.c similarity index 100% rename from libc/mingw/misc/fesetexceptflag.c rename to lib/libc/mingw/misc/fesetexceptflag.c diff --git a/libc/mingw/misc/fesetround.c b/lib/libc/mingw/misc/fesetround.c similarity index 100% rename from libc/mingw/misc/fesetround.c rename to lib/libc/mingw/misc/fesetround.c diff --git a/libc/mingw/misc/fetestexcept.c b/lib/libc/mingw/misc/fetestexcept.c similarity index 100% rename from libc/mingw/misc/fetestexcept.c rename to lib/libc/mingw/misc/fetestexcept.c diff --git a/libc/mingw/misc/feupdateenv.c b/lib/libc/mingw/misc/feupdateenv.c similarity index 100% rename from libc/mingw/misc/feupdateenv.c rename to lib/libc/mingw/misc/feupdateenv.c diff --git a/libc/mingw/misc/ftruncate.c b/lib/libc/mingw/misc/ftruncate.c similarity index 100% rename from libc/mingw/misc/ftruncate.c rename to lib/libc/mingw/misc/ftruncate.c diff --git a/libc/mingw/misc/ftw.c b/lib/libc/mingw/misc/ftw.c similarity index 100% rename from libc/mingw/misc/ftw.c rename to lib/libc/mingw/misc/ftw.c diff --git a/libc/mingw/misc/ftw64.c b/lib/libc/mingw/misc/ftw64.c similarity index 100% rename from libc/mingw/misc/ftw64.c rename to lib/libc/mingw/misc/ftw64.c diff --git a/libc/mingw/misc/fwide.c b/lib/libc/mingw/misc/fwide.c similarity index 100% rename from libc/mingw/misc/fwide.c rename to lib/libc/mingw/misc/fwide.c diff --git a/libc/mingw/misc/getlogin.c b/lib/libc/mingw/misc/getlogin.c similarity index 100% rename from libc/mingw/misc/getlogin.c rename to lib/libc/mingw/misc/getlogin.c diff --git a/libc/mingw/misc/getopt.c b/lib/libc/mingw/misc/getopt.c similarity index 100% rename from libc/mingw/misc/getopt.c rename to lib/libc/mingw/misc/getopt.c diff --git a/libc/mingw/misc/gettimeofday.c b/lib/libc/mingw/misc/gettimeofday.c similarity index 100% rename from libc/mingw/misc/gettimeofday.c rename to lib/libc/mingw/misc/gettimeofday.c diff --git a/libc/mingw/misc/imaxabs.c b/lib/libc/mingw/misc/imaxabs.c similarity index 100% rename from libc/mingw/misc/imaxabs.c rename to lib/libc/mingw/misc/imaxabs.c diff --git a/libc/mingw/misc/imaxdiv.c b/lib/libc/mingw/misc/imaxdiv.c similarity index 100% rename from libc/mingw/misc/imaxdiv.c rename to lib/libc/mingw/misc/imaxdiv.c diff --git a/libc/mingw/misc/invalid_parameter_handler.c b/lib/libc/mingw/misc/invalid_parameter_handler.c similarity index 100% rename from libc/mingw/misc/invalid_parameter_handler.c rename to lib/libc/mingw/misc/invalid_parameter_handler.c diff --git a/libc/mingw/misc/isblank.c b/lib/libc/mingw/misc/isblank.c similarity index 100% rename from libc/mingw/misc/isblank.c rename to lib/libc/mingw/misc/isblank.c diff --git a/libc/mingw/misc/iswblank.c b/lib/libc/mingw/misc/iswblank.c similarity index 100% rename from libc/mingw/misc/iswblank.c rename to lib/libc/mingw/misc/iswblank.c diff --git a/libc/mingw/misc/lc_locale_func.c b/lib/libc/mingw/misc/lc_locale_func.c similarity index 100% rename from libc/mingw/misc/lc_locale_func.c rename to lib/libc/mingw/misc/lc_locale_func.c diff --git a/libc/mingw/misc/mb_wc_common.h b/lib/libc/mingw/misc/mb_wc_common.h similarity index 100% rename from libc/mingw/misc/mb_wc_common.h rename to lib/libc/mingw/misc/mb_wc_common.h diff --git a/libc/mingw/misc/mbrtowc.c b/lib/libc/mingw/misc/mbrtowc.c similarity index 100% rename from libc/mingw/misc/mbrtowc.c rename to lib/libc/mingw/misc/mbrtowc.c diff --git a/libc/mingw/misc/mbsinit.c b/lib/libc/mingw/misc/mbsinit.c similarity index 100% rename from libc/mingw/misc/mbsinit.c rename to lib/libc/mingw/misc/mbsinit.c diff --git a/libc/mingw/misc/mempcpy.c b/lib/libc/mingw/misc/mempcpy.c similarity index 100% rename from libc/mingw/misc/mempcpy.c rename to lib/libc/mingw/misc/mempcpy.c diff --git a/libc/mingw/misc/mingw-aligned-malloc.c b/lib/libc/mingw/misc/mingw-aligned-malloc.c similarity index 100% rename from libc/mingw/misc/mingw-aligned-malloc.c rename to lib/libc/mingw/misc/mingw-aligned-malloc.c diff --git a/libc/mingw/misc/mingw-fseek.c b/lib/libc/mingw/misc/mingw-fseek.c similarity index 100% rename from libc/mingw/misc/mingw-fseek.c rename to lib/libc/mingw/misc/mingw-fseek.c diff --git a/libc/mingw/misc/mingw_getsp.S b/lib/libc/mingw/misc/mingw_getsp.S similarity index 100% rename from libc/mingw/misc/mingw_getsp.S rename to lib/libc/mingw/misc/mingw_getsp.S diff --git a/libc/mingw/misc/mingw_matherr.c b/lib/libc/mingw/misc/mingw_matherr.c similarity index 100% rename from libc/mingw/misc/mingw_matherr.c rename to lib/libc/mingw/misc/mingw_matherr.c diff --git a/libc/mingw/misc/mingw_mbwc_convert.c b/lib/libc/mingw/misc/mingw_mbwc_convert.c similarity index 100% rename from libc/mingw/misc/mingw_mbwc_convert.c rename to lib/libc/mingw/misc/mingw_mbwc_convert.c diff --git a/libc/mingw/misc/mingw_usleep.c b/lib/libc/mingw/misc/mingw_usleep.c similarity index 100% rename from libc/mingw/misc/mingw_usleep.c rename to lib/libc/mingw/misc/mingw_usleep.c diff --git a/libc/mingw/misc/mingw_wcstod.c b/lib/libc/mingw/misc/mingw_wcstod.c similarity index 100% rename from libc/mingw/misc/mingw_wcstod.c rename to lib/libc/mingw/misc/mingw_wcstod.c diff --git a/libc/mingw/misc/mingw_wcstof.c b/lib/libc/mingw/misc/mingw_wcstof.c similarity index 100% rename from libc/mingw/misc/mingw_wcstof.c rename to lib/libc/mingw/misc/mingw_wcstof.c diff --git a/libc/mingw/misc/mingw_wcstold.c b/lib/libc/mingw/misc/mingw_wcstold.c similarity index 100% rename from libc/mingw/misc/mingw_wcstold.c rename to lib/libc/mingw/misc/mingw_wcstold.c diff --git a/libc/mingw/misc/mkstemp.c b/lib/libc/mingw/misc/mkstemp.c similarity index 100% rename from libc/mingw/misc/mkstemp.c rename to lib/libc/mingw/misc/mkstemp.c diff --git a/libc/mingw/misc/onexit_table.c b/lib/libc/mingw/misc/onexit_table.c similarity index 100% rename from libc/mingw/misc/onexit_table.c rename to lib/libc/mingw/misc/onexit_table.c diff --git a/libc/mingw/misc/output_format.c b/lib/libc/mingw/misc/output_format.c similarity index 100% rename from libc/mingw/misc/output_format.c rename to lib/libc/mingw/misc/output_format.c diff --git a/libc/mingw/misc/purecall.c b/lib/libc/mingw/misc/purecall.c similarity index 100% rename from libc/mingw/misc/purecall.c rename to lib/libc/mingw/misc/purecall.c diff --git a/libc/mingw/misc/register_tls_atexit.c b/lib/libc/mingw/misc/register_tls_atexit.c similarity index 100% rename from libc/mingw/misc/register_tls_atexit.c rename to lib/libc/mingw/misc/register_tls_atexit.c diff --git a/libc/mingw/misc/seterrno.c b/lib/libc/mingw/misc/seterrno.c similarity index 100% rename from libc/mingw/misc/seterrno.c rename to lib/libc/mingw/misc/seterrno.c diff --git a/libc/mingw/misc/sleep.c b/lib/libc/mingw/misc/sleep.c similarity index 100% rename from libc/mingw/misc/sleep.c rename to lib/libc/mingw/misc/sleep.c diff --git a/libc/mingw/misc/spawnv.c b/lib/libc/mingw/misc/spawnv.c similarity index 100% rename from libc/mingw/misc/spawnv.c rename to lib/libc/mingw/misc/spawnv.c diff --git a/libc/mingw/misc/spawnve.c b/lib/libc/mingw/misc/spawnve.c similarity index 100% rename from libc/mingw/misc/spawnve.c rename to lib/libc/mingw/misc/spawnve.c diff --git a/libc/mingw/misc/spawnvp.c b/lib/libc/mingw/misc/spawnvp.c similarity index 100% rename from libc/mingw/misc/spawnvp.c rename to lib/libc/mingw/misc/spawnvp.c diff --git a/libc/mingw/misc/spawnvpe.c b/lib/libc/mingw/misc/spawnvpe.c similarity index 100% rename from libc/mingw/misc/spawnvpe.c rename to lib/libc/mingw/misc/spawnvpe.c diff --git a/libc/mingw/misc/strnlen.c b/lib/libc/mingw/misc/strnlen.c similarity index 100% rename from libc/mingw/misc/strnlen.c rename to lib/libc/mingw/misc/strnlen.c diff --git a/libc/mingw/misc/strsafe.c b/lib/libc/mingw/misc/strsafe.c similarity index 100% rename from libc/mingw/misc/strsafe.c rename to lib/libc/mingw/misc/strsafe.c diff --git a/libc/mingw/misc/strtoimax.c b/lib/libc/mingw/misc/strtoimax.c similarity index 100% rename from libc/mingw/misc/strtoimax.c rename to lib/libc/mingw/misc/strtoimax.c diff --git a/libc/mingw/misc/strtold.c b/lib/libc/mingw/misc/strtold.c similarity index 100% rename from libc/mingw/misc/strtold.c rename to lib/libc/mingw/misc/strtold.c diff --git a/libc/mingw/misc/strtoumax.c b/lib/libc/mingw/misc/strtoumax.c similarity index 100% rename from libc/mingw/misc/strtoumax.c rename to lib/libc/mingw/misc/strtoumax.c diff --git a/libc/mingw/misc/tdelete.c b/lib/libc/mingw/misc/tdelete.c similarity index 100% rename from libc/mingw/misc/tdelete.c rename to lib/libc/mingw/misc/tdelete.c diff --git a/libc/mingw/misc/tfind.c b/lib/libc/mingw/misc/tfind.c similarity index 100% rename from libc/mingw/misc/tfind.c rename to lib/libc/mingw/misc/tfind.c diff --git a/libc/mingw/misc/tsearch.c b/lib/libc/mingw/misc/tsearch.c similarity index 100% rename from libc/mingw/misc/tsearch.c rename to lib/libc/mingw/misc/tsearch.c diff --git a/libc/mingw/misc/twalk.c b/lib/libc/mingw/misc/twalk.c similarity index 100% rename from libc/mingw/misc/twalk.c rename to lib/libc/mingw/misc/twalk.c diff --git a/libc/mingw/misc/uchar_c16rtomb.c b/lib/libc/mingw/misc/uchar_c16rtomb.c similarity index 100% rename from libc/mingw/misc/uchar_c16rtomb.c rename to lib/libc/mingw/misc/uchar_c16rtomb.c diff --git a/libc/mingw/misc/uchar_c32rtomb.c b/lib/libc/mingw/misc/uchar_c32rtomb.c similarity index 100% rename from libc/mingw/misc/uchar_c32rtomb.c rename to lib/libc/mingw/misc/uchar_c32rtomb.c diff --git a/libc/mingw/misc/uchar_mbrtoc16.c b/lib/libc/mingw/misc/uchar_mbrtoc16.c similarity index 100% rename from libc/mingw/misc/uchar_mbrtoc16.c rename to lib/libc/mingw/misc/uchar_mbrtoc16.c diff --git a/libc/mingw/misc/uchar_mbrtoc32.c b/lib/libc/mingw/misc/uchar_mbrtoc32.c similarity index 100% rename from libc/mingw/misc/uchar_mbrtoc32.c rename to lib/libc/mingw/misc/uchar_mbrtoc32.c diff --git a/libc/mingw/misc/wassert.c b/lib/libc/mingw/misc/wassert.c similarity index 100% rename from libc/mingw/misc/wassert.c rename to lib/libc/mingw/misc/wassert.c diff --git a/libc/mingw/misc/wcrtomb.c b/lib/libc/mingw/misc/wcrtomb.c similarity index 100% rename from libc/mingw/misc/wcrtomb.c rename to lib/libc/mingw/misc/wcrtomb.c diff --git a/libc/mingw/misc/wcsnlen.c b/lib/libc/mingw/misc/wcsnlen.c similarity index 100% rename from libc/mingw/misc/wcsnlen.c rename to lib/libc/mingw/misc/wcsnlen.c diff --git a/libc/mingw/misc/wcstof.c b/lib/libc/mingw/misc/wcstof.c similarity index 100% rename from libc/mingw/misc/wcstof.c rename to lib/libc/mingw/misc/wcstof.c diff --git a/libc/mingw/misc/wcstoimax.c b/lib/libc/mingw/misc/wcstoimax.c similarity index 100% rename from libc/mingw/misc/wcstoimax.c rename to lib/libc/mingw/misc/wcstoimax.c diff --git a/libc/mingw/misc/wcstold.c b/lib/libc/mingw/misc/wcstold.c similarity index 100% rename from libc/mingw/misc/wcstold.c rename to lib/libc/mingw/misc/wcstold.c diff --git a/libc/mingw/misc/wcstoumax.c b/lib/libc/mingw/misc/wcstoumax.c similarity index 100% rename from libc/mingw/misc/wcstoumax.c rename to lib/libc/mingw/misc/wcstoumax.c diff --git a/libc/mingw/misc/wctob.c b/lib/libc/mingw/misc/wctob.c similarity index 100% rename from libc/mingw/misc/wctob.c rename to lib/libc/mingw/misc/wctob.c diff --git a/libc/mingw/misc/wctrans.c b/lib/libc/mingw/misc/wctrans.c similarity index 100% rename from libc/mingw/misc/wctrans.c rename to lib/libc/mingw/misc/wctrans.c diff --git a/libc/mingw/misc/wctype.c b/lib/libc/mingw/misc/wctype.c similarity index 100% rename from libc/mingw/misc/wctype.c rename to lib/libc/mingw/misc/wctype.c diff --git a/libc/mingw/misc/wdirent.c b/lib/libc/mingw/misc/wdirent.c similarity index 100% rename from libc/mingw/misc/wdirent.c rename to lib/libc/mingw/misc/wdirent.c diff --git a/libc/mingw/misc/winbs_uint64.c b/lib/libc/mingw/misc/winbs_uint64.c similarity index 100% rename from libc/mingw/misc/winbs_uint64.c rename to lib/libc/mingw/misc/winbs_uint64.c diff --git a/libc/mingw/misc/winbs_ulong.c b/lib/libc/mingw/misc/winbs_ulong.c similarity index 100% rename from libc/mingw/misc/winbs_ulong.c rename to lib/libc/mingw/misc/winbs_ulong.c diff --git a/libc/mingw/misc/winbs_ushort.c b/lib/libc/mingw/misc/winbs_ushort.c similarity index 100% rename from libc/mingw/misc/winbs_ushort.c rename to lib/libc/mingw/misc/winbs_ushort.c diff --git a/libc/mingw/misc/wmemchr.c b/lib/libc/mingw/misc/wmemchr.c similarity index 100% rename from libc/mingw/misc/wmemchr.c rename to lib/libc/mingw/misc/wmemchr.c diff --git a/libc/mingw/misc/wmemcmp.c b/lib/libc/mingw/misc/wmemcmp.c similarity index 100% rename from libc/mingw/misc/wmemcmp.c rename to lib/libc/mingw/misc/wmemcmp.c diff --git a/libc/mingw/misc/wmemcpy.c b/lib/libc/mingw/misc/wmemcpy.c similarity index 100% rename from libc/mingw/misc/wmemcpy.c rename to lib/libc/mingw/misc/wmemcpy.c diff --git a/libc/mingw/misc/wmemmove.c b/lib/libc/mingw/misc/wmemmove.c similarity index 100% rename from libc/mingw/misc/wmemmove.c rename to lib/libc/mingw/misc/wmemmove.c diff --git a/libc/mingw/misc/wmempcpy.c b/lib/libc/mingw/misc/wmempcpy.c similarity index 100% rename from libc/mingw/misc/wmempcpy.c rename to lib/libc/mingw/misc/wmempcpy.c diff --git a/libc/mingw/misc/wmemset.c b/lib/libc/mingw/misc/wmemset.c similarity index 100% rename from libc/mingw/misc/wmemset.c rename to lib/libc/mingw/misc/wmemset.c diff --git a/libc/mingw/secapi/_access_s.c b/lib/libc/mingw/secapi/_access_s.c similarity index 100% rename from libc/mingw/secapi/_access_s.c rename to lib/libc/mingw/secapi/_access_s.c diff --git a/libc/mingw/secapi/_cgets_s.c b/lib/libc/mingw/secapi/_cgets_s.c similarity index 100% rename from libc/mingw/secapi/_cgets_s.c rename to lib/libc/mingw/secapi/_cgets_s.c diff --git a/libc/mingw/secapi/_cgetws_s.c b/lib/libc/mingw/secapi/_cgetws_s.c similarity index 100% rename from libc/mingw/secapi/_cgetws_s.c rename to lib/libc/mingw/secapi/_cgetws_s.c diff --git a/libc/mingw/secapi/_chsize_s.c b/lib/libc/mingw/secapi/_chsize_s.c similarity index 100% rename from libc/mingw/secapi/_chsize_s.c rename to lib/libc/mingw/secapi/_chsize_s.c diff --git a/libc/mingw/secapi/_controlfp_s.c b/lib/libc/mingw/secapi/_controlfp_s.c similarity index 100% rename from libc/mingw/secapi/_controlfp_s.c rename to lib/libc/mingw/secapi/_controlfp_s.c diff --git a/libc/mingw/secapi/_cprintf_s.c b/lib/libc/mingw/secapi/_cprintf_s.c similarity index 100% rename from libc/mingw/secapi/_cprintf_s.c rename to lib/libc/mingw/secapi/_cprintf_s.c diff --git a/libc/mingw/secapi/_cprintf_s_l.c b/lib/libc/mingw/secapi/_cprintf_s_l.c similarity index 100% rename from libc/mingw/secapi/_cprintf_s_l.c rename to lib/libc/mingw/secapi/_cprintf_s_l.c diff --git a/libc/mingw/secapi/_ctime32_s.c b/lib/libc/mingw/secapi/_ctime32_s.c similarity index 100% rename from libc/mingw/secapi/_ctime32_s.c rename to lib/libc/mingw/secapi/_ctime32_s.c diff --git a/libc/mingw/secapi/_ctime64_s.c b/lib/libc/mingw/secapi/_ctime64_s.c similarity index 100% rename from libc/mingw/secapi/_ctime64_s.c rename to lib/libc/mingw/secapi/_ctime64_s.c diff --git a/libc/mingw/secapi/_cwprintf_s.c b/lib/libc/mingw/secapi/_cwprintf_s.c similarity index 100% rename from libc/mingw/secapi/_cwprintf_s.c rename to lib/libc/mingw/secapi/_cwprintf_s.c diff --git a/libc/mingw/secapi/_cwprintf_s_l.c b/lib/libc/mingw/secapi/_cwprintf_s_l.c similarity index 100% rename from libc/mingw/secapi/_cwprintf_s_l.c rename to lib/libc/mingw/secapi/_cwprintf_s_l.c diff --git a/libc/mingw/secapi/_gmtime32_s.c b/lib/libc/mingw/secapi/_gmtime32_s.c similarity index 100% rename from libc/mingw/secapi/_gmtime32_s.c rename to lib/libc/mingw/secapi/_gmtime32_s.c diff --git a/libc/mingw/secapi/_gmtime64_s.c b/lib/libc/mingw/secapi/_gmtime64_s.c similarity index 100% rename from libc/mingw/secapi/_gmtime64_s.c rename to lib/libc/mingw/secapi/_gmtime64_s.c diff --git a/libc/mingw/secapi/_localtime32_s.c b/lib/libc/mingw/secapi/_localtime32_s.c similarity index 100% rename from libc/mingw/secapi/_localtime32_s.c rename to lib/libc/mingw/secapi/_localtime32_s.c diff --git a/libc/mingw/secapi/_localtime64_s.c b/lib/libc/mingw/secapi/_localtime64_s.c similarity index 100% rename from libc/mingw/secapi/_localtime64_s.c rename to lib/libc/mingw/secapi/_localtime64_s.c diff --git a/libc/mingw/secapi/_mktemp_s.c b/lib/libc/mingw/secapi/_mktemp_s.c similarity index 100% rename from libc/mingw/secapi/_mktemp_s.c rename to lib/libc/mingw/secapi/_mktemp_s.c diff --git a/libc/mingw/secapi/_sopen_s.c b/lib/libc/mingw/secapi/_sopen_s.c similarity index 100% rename from libc/mingw/secapi/_sopen_s.c rename to lib/libc/mingw/secapi/_sopen_s.c diff --git a/libc/mingw/secapi/_strdate_s.c b/lib/libc/mingw/secapi/_strdate_s.c similarity index 100% rename from libc/mingw/secapi/_strdate_s.c rename to lib/libc/mingw/secapi/_strdate_s.c diff --git a/libc/mingw/secapi/_strtime_s.c b/lib/libc/mingw/secapi/_strtime_s.c similarity index 100% rename from libc/mingw/secapi/_strtime_s.c rename to lib/libc/mingw/secapi/_strtime_s.c diff --git a/libc/mingw/secapi/_umask_s.c b/lib/libc/mingw/secapi/_umask_s.c similarity index 100% rename from libc/mingw/secapi/_umask_s.c rename to lib/libc/mingw/secapi/_umask_s.c diff --git a/libc/mingw/secapi/_vcprintf_s.c b/lib/libc/mingw/secapi/_vcprintf_s.c similarity index 100% rename from libc/mingw/secapi/_vcprintf_s.c rename to lib/libc/mingw/secapi/_vcprintf_s.c diff --git a/libc/mingw/secapi/_vcprintf_s_l.c b/lib/libc/mingw/secapi/_vcprintf_s_l.c similarity index 100% rename from libc/mingw/secapi/_vcprintf_s_l.c rename to lib/libc/mingw/secapi/_vcprintf_s_l.c diff --git a/libc/mingw/secapi/_vcwprintf_s.c b/lib/libc/mingw/secapi/_vcwprintf_s.c similarity index 100% rename from libc/mingw/secapi/_vcwprintf_s.c rename to lib/libc/mingw/secapi/_vcwprintf_s.c diff --git a/libc/mingw/secapi/_vcwprintf_s_l.c b/lib/libc/mingw/secapi/_vcwprintf_s_l.c similarity index 100% rename from libc/mingw/secapi/_vcwprintf_s_l.c rename to lib/libc/mingw/secapi/_vcwprintf_s_l.c diff --git a/libc/mingw/secapi/_vscprintf_p.c b/lib/libc/mingw/secapi/_vscprintf_p.c similarity index 100% rename from libc/mingw/secapi/_vscprintf_p.c rename to lib/libc/mingw/secapi/_vscprintf_p.c diff --git a/libc/mingw/secapi/_vscwprintf_p.c b/lib/libc/mingw/secapi/_vscwprintf_p.c similarity index 100% rename from libc/mingw/secapi/_vscwprintf_p.c rename to lib/libc/mingw/secapi/_vscwprintf_p.c diff --git a/libc/mingw/secapi/_vswprintf_p.c b/lib/libc/mingw/secapi/_vswprintf_p.c similarity index 100% rename from libc/mingw/secapi/_vswprintf_p.c rename to lib/libc/mingw/secapi/_vswprintf_p.c diff --git a/libc/mingw/secapi/_waccess_s.c b/lib/libc/mingw/secapi/_waccess_s.c similarity index 100% rename from libc/mingw/secapi/_waccess_s.c rename to lib/libc/mingw/secapi/_waccess_s.c diff --git a/libc/mingw/secapi/_wasctime_s.c b/lib/libc/mingw/secapi/_wasctime_s.c similarity index 100% rename from libc/mingw/secapi/_wasctime_s.c rename to lib/libc/mingw/secapi/_wasctime_s.c diff --git a/libc/mingw/secapi/_wctime32_s.c b/lib/libc/mingw/secapi/_wctime32_s.c similarity index 100% rename from libc/mingw/secapi/_wctime32_s.c rename to lib/libc/mingw/secapi/_wctime32_s.c diff --git a/libc/mingw/secapi/_wctime64_s.c b/lib/libc/mingw/secapi/_wctime64_s.c similarity index 100% rename from libc/mingw/secapi/_wctime64_s.c rename to lib/libc/mingw/secapi/_wctime64_s.c diff --git a/libc/mingw/secapi/_wmktemp_s.c b/lib/libc/mingw/secapi/_wmktemp_s.c similarity index 100% rename from libc/mingw/secapi/_wmktemp_s.c rename to lib/libc/mingw/secapi/_wmktemp_s.c diff --git a/libc/mingw/secapi/_wstrdate_s.c b/lib/libc/mingw/secapi/_wstrdate_s.c similarity index 100% rename from libc/mingw/secapi/_wstrdate_s.c rename to lib/libc/mingw/secapi/_wstrdate_s.c diff --git a/libc/mingw/secapi/_wstrtime_s.c b/lib/libc/mingw/secapi/_wstrtime_s.c similarity index 100% rename from libc/mingw/secapi/_wstrtime_s.c rename to lib/libc/mingw/secapi/_wstrtime_s.c diff --git a/libc/mingw/secapi/asctime_s.c b/lib/libc/mingw/secapi/asctime_s.c similarity index 100% rename from libc/mingw/secapi/asctime_s.c rename to lib/libc/mingw/secapi/asctime_s.c diff --git a/libc/mingw/secapi/memcpy_s.c b/lib/libc/mingw/secapi/memcpy_s.c similarity index 100% rename from libc/mingw/secapi/memcpy_s.c rename to lib/libc/mingw/secapi/memcpy_s.c diff --git a/libc/mingw/secapi/memmove_s.c b/lib/libc/mingw/secapi/memmove_s.c similarity index 100% rename from libc/mingw/secapi/memmove_s.c rename to lib/libc/mingw/secapi/memmove_s.c diff --git a/libc/mingw/secapi/rand_s.c b/lib/libc/mingw/secapi/rand_s.c similarity index 100% rename from libc/mingw/secapi/rand_s.c rename to lib/libc/mingw/secapi/rand_s.c diff --git a/libc/mingw/secapi/sprintf_s.c b/lib/libc/mingw/secapi/sprintf_s.c similarity index 100% rename from libc/mingw/secapi/sprintf_s.c rename to lib/libc/mingw/secapi/sprintf_s.c diff --git a/libc/mingw/secapi/strerror_s.c b/lib/libc/mingw/secapi/strerror_s.c similarity index 100% rename from libc/mingw/secapi/strerror_s.c rename to lib/libc/mingw/secapi/strerror_s.c diff --git a/libc/mingw/secapi/vsprintf_s.c b/lib/libc/mingw/secapi/vsprintf_s.c similarity index 100% rename from libc/mingw/secapi/vsprintf_s.c rename to lib/libc/mingw/secapi/vsprintf_s.c diff --git a/libc/mingw/secapi/wmemcpy_s.c b/lib/libc/mingw/secapi/wmemcpy_s.c similarity index 100% rename from libc/mingw/secapi/wmemcpy_s.c rename to lib/libc/mingw/secapi/wmemcpy_s.c diff --git a/libc/mingw/secapi/wmemmove_s.c b/lib/libc/mingw/secapi/wmemmove_s.c similarity index 100% rename from libc/mingw/secapi/wmemmove_s.c rename to lib/libc/mingw/secapi/wmemmove_s.c diff --git a/libc/mingw/stdio/_Exit.c b/lib/libc/mingw/stdio/_Exit.c similarity index 100% rename from libc/mingw/stdio/_Exit.c rename to lib/libc/mingw/stdio/_Exit.c diff --git a/libc/mingw/stdio/_findfirst64i32.c b/lib/libc/mingw/stdio/_findfirst64i32.c similarity index 100% rename from libc/mingw/stdio/_findfirst64i32.c rename to lib/libc/mingw/stdio/_findfirst64i32.c diff --git a/libc/mingw/stdio/_findnext64i32.c b/lib/libc/mingw/stdio/_findnext64i32.c similarity index 100% rename from libc/mingw/stdio/_findnext64i32.c rename to lib/libc/mingw/stdio/_findnext64i32.c diff --git a/libc/mingw/stdio/_fstat.c b/lib/libc/mingw/stdio/_fstat.c similarity index 100% rename from libc/mingw/stdio/_fstat.c rename to lib/libc/mingw/stdio/_fstat.c diff --git a/libc/mingw/stdio/_fstat64i32.c b/lib/libc/mingw/stdio/_fstat64i32.c similarity index 100% rename from libc/mingw/stdio/_fstat64i32.c rename to lib/libc/mingw/stdio/_fstat64i32.c diff --git a/libc/mingw/stdio/_ftime.c b/lib/libc/mingw/stdio/_ftime.c similarity index 100% rename from libc/mingw/stdio/_ftime.c rename to lib/libc/mingw/stdio/_ftime.c diff --git a/libc/mingw/stdio/_getc_nolock.c b/lib/libc/mingw/stdio/_getc_nolock.c similarity index 100% rename from libc/mingw/stdio/_getc_nolock.c rename to lib/libc/mingw/stdio/_getc_nolock.c diff --git a/libc/mingw/stdio/_getwc_nolock.c b/lib/libc/mingw/stdio/_getwc_nolock.c similarity index 100% rename from libc/mingw/stdio/_getwc_nolock.c rename to lib/libc/mingw/stdio/_getwc_nolock.c diff --git a/libc/mingw/stdio/_putc_nolock.c b/lib/libc/mingw/stdio/_putc_nolock.c similarity index 100% rename from libc/mingw/stdio/_putc_nolock.c rename to lib/libc/mingw/stdio/_putc_nolock.c diff --git a/libc/mingw/stdio/_putwc_nolock.c b/lib/libc/mingw/stdio/_putwc_nolock.c similarity index 100% rename from libc/mingw/stdio/_putwc_nolock.c rename to lib/libc/mingw/stdio/_putwc_nolock.c diff --git a/libc/mingw/stdio/_stat.c b/lib/libc/mingw/stdio/_stat.c similarity index 100% rename from libc/mingw/stdio/_stat.c rename to lib/libc/mingw/stdio/_stat.c diff --git a/libc/mingw/stdio/_stat64i32.c b/lib/libc/mingw/stdio/_stat64i32.c similarity index 100% rename from libc/mingw/stdio/_stat64i32.c rename to lib/libc/mingw/stdio/_stat64i32.c diff --git a/libc/mingw/stdio/_wfindfirst64i32.c b/lib/libc/mingw/stdio/_wfindfirst64i32.c similarity index 100% rename from libc/mingw/stdio/_wfindfirst64i32.c rename to lib/libc/mingw/stdio/_wfindfirst64i32.c diff --git a/libc/mingw/stdio/_wfindnext64i32.c b/lib/libc/mingw/stdio/_wfindnext64i32.c similarity index 100% rename from libc/mingw/stdio/_wfindnext64i32.c rename to lib/libc/mingw/stdio/_wfindnext64i32.c diff --git a/libc/mingw/stdio/_wstat.c b/lib/libc/mingw/stdio/_wstat.c similarity index 100% rename from libc/mingw/stdio/_wstat.c rename to lib/libc/mingw/stdio/_wstat.c diff --git a/libc/mingw/stdio/_wstat64i32.c b/lib/libc/mingw/stdio/_wstat64i32.c similarity index 100% rename from libc/mingw/stdio/_wstat64i32.c rename to lib/libc/mingw/stdio/_wstat64i32.c diff --git a/libc/mingw/stdio/acrt_iob_func.c b/lib/libc/mingw/stdio/acrt_iob_func.c similarity index 100% rename from libc/mingw/stdio/acrt_iob_func.c rename to lib/libc/mingw/stdio/acrt_iob_func.c diff --git a/libc/mingw/stdio/asprintf.c b/lib/libc/mingw/stdio/asprintf.c similarity index 100% rename from libc/mingw/stdio/asprintf.c rename to lib/libc/mingw/stdio/asprintf.c diff --git a/libc/mingw/stdio/atoll.c b/lib/libc/mingw/stdio/atoll.c similarity index 100% rename from libc/mingw/stdio/atoll.c rename to lib/libc/mingw/stdio/atoll.c diff --git a/libc/mingw/stdio/fgetpos64.c b/lib/libc/mingw/stdio/fgetpos64.c similarity index 100% rename from libc/mingw/stdio/fgetpos64.c rename to lib/libc/mingw/stdio/fgetpos64.c diff --git a/libc/mingw/stdio/fopen64.c b/lib/libc/mingw/stdio/fopen64.c similarity index 100% rename from libc/mingw/stdio/fopen64.c rename to lib/libc/mingw/stdio/fopen64.c diff --git a/libc/mingw/stdio/fseeko32.c b/lib/libc/mingw/stdio/fseeko32.c similarity index 100% rename from libc/mingw/stdio/fseeko32.c rename to lib/libc/mingw/stdio/fseeko32.c diff --git a/libc/mingw/stdio/fseeko64.c b/lib/libc/mingw/stdio/fseeko64.c similarity index 100% rename from libc/mingw/stdio/fseeko64.c rename to lib/libc/mingw/stdio/fseeko64.c diff --git a/libc/mingw/stdio/fsetpos64.c b/lib/libc/mingw/stdio/fsetpos64.c similarity index 100% rename from libc/mingw/stdio/fsetpos64.c rename to lib/libc/mingw/stdio/fsetpos64.c diff --git a/libc/mingw/stdio/ftello.c b/lib/libc/mingw/stdio/ftello.c similarity index 100% rename from libc/mingw/stdio/ftello.c rename to lib/libc/mingw/stdio/ftello.c diff --git a/libc/mingw/stdio/ftello64.c b/lib/libc/mingw/stdio/ftello64.c similarity index 100% rename from libc/mingw/stdio/ftello64.c rename to lib/libc/mingw/stdio/ftello64.c diff --git a/libc/mingw/stdio/ftruncate64.c b/lib/libc/mingw/stdio/ftruncate64.c similarity index 100% rename from libc/mingw/stdio/ftruncate64.c rename to lib/libc/mingw/stdio/ftruncate64.c diff --git a/libc/mingw/stdio/lltoa.c b/lib/libc/mingw/stdio/lltoa.c similarity index 100% rename from libc/mingw/stdio/lltoa.c rename to lib/libc/mingw/stdio/lltoa.c diff --git a/libc/mingw/stdio/lltow.c b/lib/libc/mingw/stdio/lltow.c similarity index 100% rename from libc/mingw/stdio/lltow.c rename to lib/libc/mingw/stdio/lltow.c diff --git a/libc/mingw/stdio/lseek64.c b/lib/libc/mingw/stdio/lseek64.c similarity index 100% rename from libc/mingw/stdio/lseek64.c rename to lib/libc/mingw/stdio/lseek64.c diff --git a/libc/mingw/stdio/mingw_asprintf.c b/lib/libc/mingw/stdio/mingw_asprintf.c similarity index 100% rename from libc/mingw/stdio/mingw_asprintf.c rename to lib/libc/mingw/stdio/mingw_asprintf.c diff --git a/libc/mingw/stdio/mingw_fprintf.c b/lib/libc/mingw/stdio/mingw_fprintf.c similarity index 100% rename from libc/mingw/stdio/mingw_fprintf.c rename to lib/libc/mingw/stdio/mingw_fprintf.c diff --git a/libc/mingw/stdio/mingw_fprintfw.c b/lib/libc/mingw/stdio/mingw_fprintfw.c similarity index 100% rename from libc/mingw/stdio/mingw_fprintfw.c rename to lib/libc/mingw/stdio/mingw_fprintfw.c diff --git a/libc/mingw/stdio/mingw_fscanf.c b/lib/libc/mingw/stdio/mingw_fscanf.c similarity index 100% rename from libc/mingw/stdio/mingw_fscanf.c rename to lib/libc/mingw/stdio/mingw_fscanf.c diff --git a/libc/mingw/stdio/mingw_fwscanf.c b/lib/libc/mingw/stdio/mingw_fwscanf.c similarity index 100% rename from libc/mingw/stdio/mingw_fwscanf.c rename to lib/libc/mingw/stdio/mingw_fwscanf.c diff --git a/libc/mingw/stdio/mingw_lock.c b/lib/libc/mingw/stdio/mingw_lock.c similarity index 100% rename from libc/mingw/stdio/mingw_lock.c rename to lib/libc/mingw/stdio/mingw_lock.c diff --git a/libc/mingw/stdio/mingw_pformat.c b/lib/libc/mingw/stdio/mingw_pformat.c similarity index 100% rename from libc/mingw/stdio/mingw_pformat.c rename to lib/libc/mingw/stdio/mingw_pformat.c diff --git a/libc/mingw/stdio/mingw_pformat.h b/lib/libc/mingw/stdio/mingw_pformat.h similarity index 100% rename from libc/mingw/stdio/mingw_pformat.h rename to lib/libc/mingw/stdio/mingw_pformat.h diff --git a/libc/mingw/stdio/mingw_pformatw.c b/lib/libc/mingw/stdio/mingw_pformatw.c similarity index 100% rename from libc/mingw/stdio/mingw_pformatw.c rename to lib/libc/mingw/stdio/mingw_pformatw.c diff --git a/libc/mingw/stdio/mingw_printf.c b/lib/libc/mingw/stdio/mingw_printf.c similarity index 100% rename from libc/mingw/stdio/mingw_printf.c rename to lib/libc/mingw/stdio/mingw_printf.c diff --git a/libc/mingw/stdio/mingw_printfw.c b/lib/libc/mingw/stdio/mingw_printfw.c similarity index 100% rename from libc/mingw/stdio/mingw_printfw.c rename to lib/libc/mingw/stdio/mingw_printfw.c diff --git a/libc/mingw/stdio/mingw_scanf.c b/lib/libc/mingw/stdio/mingw_scanf.c similarity index 100% rename from libc/mingw/stdio/mingw_scanf.c rename to lib/libc/mingw/stdio/mingw_scanf.c diff --git a/libc/mingw/stdio/mingw_snprintf.c b/lib/libc/mingw/stdio/mingw_snprintf.c similarity index 100% rename from libc/mingw/stdio/mingw_snprintf.c rename to lib/libc/mingw/stdio/mingw_snprintf.c diff --git a/libc/mingw/stdio/mingw_snprintfw.c b/lib/libc/mingw/stdio/mingw_snprintfw.c similarity index 100% rename from libc/mingw/stdio/mingw_snprintfw.c rename to lib/libc/mingw/stdio/mingw_snprintfw.c diff --git a/libc/mingw/stdio/mingw_sprintf.c b/lib/libc/mingw/stdio/mingw_sprintf.c similarity index 100% rename from libc/mingw/stdio/mingw_sprintf.c rename to lib/libc/mingw/stdio/mingw_sprintf.c diff --git a/libc/mingw/stdio/mingw_sprintfw.c b/lib/libc/mingw/stdio/mingw_sprintfw.c similarity index 100% rename from libc/mingw/stdio/mingw_sprintfw.c rename to lib/libc/mingw/stdio/mingw_sprintfw.c diff --git a/libc/mingw/stdio/mingw_sscanf.c b/lib/libc/mingw/stdio/mingw_sscanf.c similarity index 100% rename from libc/mingw/stdio/mingw_sscanf.c rename to lib/libc/mingw/stdio/mingw_sscanf.c diff --git a/libc/mingw/stdio/mingw_swscanf.c b/lib/libc/mingw/stdio/mingw_swscanf.c similarity index 100% rename from libc/mingw/stdio/mingw_swscanf.c rename to lib/libc/mingw/stdio/mingw_swscanf.c diff --git a/libc/mingw/stdio/mingw_vasprintf.c b/lib/libc/mingw/stdio/mingw_vasprintf.c similarity index 100% rename from libc/mingw/stdio/mingw_vasprintf.c rename to lib/libc/mingw/stdio/mingw_vasprintf.c diff --git a/libc/mingw/stdio/mingw_vfprintf.c b/lib/libc/mingw/stdio/mingw_vfprintf.c similarity index 100% rename from libc/mingw/stdio/mingw_vfprintf.c rename to lib/libc/mingw/stdio/mingw_vfprintf.c diff --git a/libc/mingw/stdio/mingw_vfprintfw.c b/lib/libc/mingw/stdio/mingw_vfprintfw.c similarity index 100% rename from libc/mingw/stdio/mingw_vfprintfw.c rename to lib/libc/mingw/stdio/mingw_vfprintfw.c diff --git a/libc/mingw/stdio/mingw_vfscanf.c b/lib/libc/mingw/stdio/mingw_vfscanf.c similarity index 100% rename from libc/mingw/stdio/mingw_vfscanf.c rename to lib/libc/mingw/stdio/mingw_vfscanf.c diff --git a/libc/mingw/stdio/mingw_vprintf.c b/lib/libc/mingw/stdio/mingw_vprintf.c similarity index 100% rename from libc/mingw/stdio/mingw_vprintf.c rename to lib/libc/mingw/stdio/mingw_vprintf.c diff --git a/libc/mingw/stdio/mingw_vprintfw.c b/lib/libc/mingw/stdio/mingw_vprintfw.c similarity index 100% rename from libc/mingw/stdio/mingw_vprintfw.c rename to lib/libc/mingw/stdio/mingw_vprintfw.c diff --git a/libc/mingw/stdio/mingw_vsnprintf.c b/lib/libc/mingw/stdio/mingw_vsnprintf.c similarity index 100% rename from libc/mingw/stdio/mingw_vsnprintf.c rename to lib/libc/mingw/stdio/mingw_vsnprintf.c diff --git a/libc/mingw/stdio/mingw_vsnprintfw.c b/lib/libc/mingw/stdio/mingw_vsnprintfw.c similarity index 100% rename from libc/mingw/stdio/mingw_vsnprintfw.c rename to lib/libc/mingw/stdio/mingw_vsnprintfw.c diff --git a/libc/mingw/stdio/mingw_vsprintf.c b/lib/libc/mingw/stdio/mingw_vsprintf.c similarity index 100% rename from libc/mingw/stdio/mingw_vsprintf.c rename to lib/libc/mingw/stdio/mingw_vsprintf.c diff --git a/libc/mingw/stdio/mingw_vsprintfw.c b/lib/libc/mingw/stdio/mingw_vsprintfw.c similarity index 100% rename from libc/mingw/stdio/mingw_vsprintfw.c rename to lib/libc/mingw/stdio/mingw_vsprintfw.c diff --git a/libc/mingw/stdio/mingw_wscanf.c b/lib/libc/mingw/stdio/mingw_wscanf.c similarity index 100% rename from libc/mingw/stdio/mingw_wscanf.c rename to lib/libc/mingw/stdio/mingw_wscanf.c diff --git a/libc/mingw/stdio/mingw_wvfscanf.c b/lib/libc/mingw/stdio/mingw_wvfscanf.c similarity index 100% rename from libc/mingw/stdio/mingw_wvfscanf.c rename to lib/libc/mingw/stdio/mingw_wvfscanf.c diff --git a/libc/mingw/stdio/scanf.S b/lib/libc/mingw/stdio/scanf.S similarity index 100% rename from libc/mingw/stdio/scanf.S rename to lib/libc/mingw/stdio/scanf.S diff --git a/libc/mingw/stdio/scanf2-template.S b/lib/libc/mingw/stdio/scanf2-template.S similarity index 100% rename from libc/mingw/stdio/scanf2-template.S rename to lib/libc/mingw/stdio/scanf2-template.S diff --git a/libc/mingw/stdio/snprintf.c b/lib/libc/mingw/stdio/snprintf.c similarity index 100% rename from libc/mingw/stdio/snprintf.c rename to lib/libc/mingw/stdio/snprintf.c diff --git a/libc/mingw/stdio/snwprintf.c b/lib/libc/mingw/stdio/snwprintf.c similarity index 100% rename from libc/mingw/stdio/snwprintf.c rename to lib/libc/mingw/stdio/snwprintf.c diff --git a/libc/mingw/stdio/strtof.c b/lib/libc/mingw/stdio/strtof.c similarity index 100% rename from libc/mingw/stdio/strtof.c rename to lib/libc/mingw/stdio/strtof.c diff --git a/libc/mingw/stdio/strtok_r.c b/lib/libc/mingw/stdio/strtok_r.c similarity index 100% rename from libc/mingw/stdio/strtok_r.c rename to lib/libc/mingw/stdio/strtok_r.c diff --git a/libc/mingw/stdio/truncate.c b/lib/libc/mingw/stdio/truncate.c similarity index 100% rename from libc/mingw/stdio/truncate.c rename to lib/libc/mingw/stdio/truncate.c diff --git a/libc/mingw/stdio/ulltoa.c b/lib/libc/mingw/stdio/ulltoa.c similarity index 100% rename from libc/mingw/stdio/ulltoa.c rename to lib/libc/mingw/stdio/ulltoa.c diff --git a/libc/mingw/stdio/ulltow.c b/lib/libc/mingw/stdio/ulltow.c similarity index 100% rename from libc/mingw/stdio/ulltow.c rename to lib/libc/mingw/stdio/ulltow.c diff --git a/libc/mingw/stdio/vasprintf.c b/lib/libc/mingw/stdio/vasprintf.c similarity index 100% rename from libc/mingw/stdio/vasprintf.c rename to lib/libc/mingw/stdio/vasprintf.c diff --git a/libc/mingw/stdio/vfscanf.c b/lib/libc/mingw/stdio/vfscanf.c similarity index 100% rename from libc/mingw/stdio/vfscanf.c rename to lib/libc/mingw/stdio/vfscanf.c diff --git a/libc/mingw/stdio/vfscanf2.S b/lib/libc/mingw/stdio/vfscanf2.S similarity index 100% rename from libc/mingw/stdio/vfscanf2.S rename to lib/libc/mingw/stdio/vfscanf2.S diff --git a/libc/mingw/stdio/vfwscanf.c b/lib/libc/mingw/stdio/vfwscanf.c similarity index 100% rename from libc/mingw/stdio/vfwscanf.c rename to lib/libc/mingw/stdio/vfwscanf.c diff --git a/libc/mingw/stdio/vfwscanf2.S b/lib/libc/mingw/stdio/vfwscanf2.S similarity index 100% rename from libc/mingw/stdio/vfwscanf2.S rename to lib/libc/mingw/stdio/vfwscanf2.S diff --git a/libc/mingw/stdio/vscanf.c b/lib/libc/mingw/stdio/vscanf.c similarity index 100% rename from libc/mingw/stdio/vscanf.c rename to lib/libc/mingw/stdio/vscanf.c diff --git a/libc/mingw/stdio/vscanf2.S b/lib/libc/mingw/stdio/vscanf2.S similarity index 100% rename from libc/mingw/stdio/vscanf2.S rename to lib/libc/mingw/stdio/vscanf2.S diff --git a/libc/mingw/stdio/vsnprintf.c b/lib/libc/mingw/stdio/vsnprintf.c similarity index 100% rename from libc/mingw/stdio/vsnprintf.c rename to lib/libc/mingw/stdio/vsnprintf.c diff --git a/libc/mingw/stdio/vsnwprintf.c b/lib/libc/mingw/stdio/vsnwprintf.c similarity index 100% rename from libc/mingw/stdio/vsnwprintf.c rename to lib/libc/mingw/stdio/vsnwprintf.c diff --git a/libc/mingw/stdio/vsscanf.c b/lib/libc/mingw/stdio/vsscanf.c similarity index 100% rename from libc/mingw/stdio/vsscanf.c rename to lib/libc/mingw/stdio/vsscanf.c diff --git a/libc/mingw/stdio/vsscanf2.S b/lib/libc/mingw/stdio/vsscanf2.S similarity index 100% rename from libc/mingw/stdio/vsscanf2.S rename to lib/libc/mingw/stdio/vsscanf2.S diff --git a/libc/mingw/stdio/vswscanf.c b/lib/libc/mingw/stdio/vswscanf.c similarity index 100% rename from libc/mingw/stdio/vswscanf.c rename to lib/libc/mingw/stdio/vswscanf.c diff --git a/libc/mingw/stdio/vswscanf2.S b/lib/libc/mingw/stdio/vswscanf2.S similarity index 100% rename from libc/mingw/stdio/vswscanf2.S rename to lib/libc/mingw/stdio/vswscanf2.S diff --git a/libc/mingw/stdio/vwscanf.c b/lib/libc/mingw/stdio/vwscanf.c similarity index 100% rename from libc/mingw/stdio/vwscanf.c rename to lib/libc/mingw/stdio/vwscanf.c diff --git a/libc/mingw/stdio/vwscanf2.S b/lib/libc/mingw/stdio/vwscanf2.S similarity index 100% rename from libc/mingw/stdio/vwscanf2.S rename to lib/libc/mingw/stdio/vwscanf2.S diff --git a/libc/mingw/stdio/wtoll.c b/lib/libc/mingw/stdio/wtoll.c similarity index 100% rename from libc/mingw/stdio/wtoll.c rename to lib/libc/mingw/stdio/wtoll.c diff --git a/libc/musl/arch/aarch64/atomic_arch.h b/lib/libc/musl/arch/aarch64/atomic_arch.h similarity index 100% rename from libc/musl/arch/aarch64/atomic_arch.h rename to lib/libc/musl/arch/aarch64/atomic_arch.h diff --git a/libc/musl/arch/aarch64/bits/alltypes.h.in b/lib/libc/musl/arch/aarch64/bits/alltypes.h.in similarity index 100% rename from libc/musl/arch/aarch64/bits/alltypes.h.in rename to lib/libc/musl/arch/aarch64/bits/alltypes.h.in diff --git a/libc/musl/arch/aarch64/bits/endian.h b/lib/libc/musl/arch/aarch64/bits/endian.h similarity index 100% rename from libc/musl/arch/aarch64/bits/endian.h rename to lib/libc/musl/arch/aarch64/bits/endian.h diff --git a/libc/musl/arch/aarch64/bits/fcntl.h b/lib/libc/musl/arch/aarch64/bits/fcntl.h similarity index 100% rename from libc/musl/arch/aarch64/bits/fcntl.h rename to lib/libc/musl/arch/aarch64/bits/fcntl.h diff --git a/libc/musl/arch/aarch64/bits/fenv.h b/lib/libc/musl/arch/aarch64/bits/fenv.h similarity index 100% rename from libc/musl/arch/aarch64/bits/fenv.h rename to lib/libc/musl/arch/aarch64/bits/fenv.h diff --git a/libc/musl/arch/aarch64/bits/float.h b/lib/libc/musl/arch/aarch64/bits/float.h similarity index 100% rename from libc/musl/arch/aarch64/bits/float.h rename to lib/libc/musl/arch/aarch64/bits/float.h diff --git a/libc/musl/arch/aarch64/bits/hwcap.h b/lib/libc/musl/arch/aarch64/bits/hwcap.h similarity index 100% rename from libc/musl/arch/aarch64/bits/hwcap.h rename to lib/libc/musl/arch/aarch64/bits/hwcap.h diff --git a/libc/musl/arch/aarch64/bits/ipc.h b/lib/libc/musl/arch/aarch64/bits/ipc.h similarity index 100% rename from libc/musl/arch/aarch64/bits/ipc.h rename to lib/libc/musl/arch/aarch64/bits/ipc.h diff --git a/libc/musl/arch/aarch64/bits/limits.h b/lib/libc/musl/arch/aarch64/bits/limits.h similarity index 100% rename from libc/musl/arch/aarch64/bits/limits.h rename to lib/libc/musl/arch/aarch64/bits/limits.h diff --git a/libc/musl/arch/aarch64/bits/msg.h b/lib/libc/musl/arch/aarch64/bits/msg.h similarity index 100% rename from libc/musl/arch/aarch64/bits/msg.h rename to lib/libc/musl/arch/aarch64/bits/msg.h diff --git a/libc/musl/arch/aarch64/bits/posix.h b/lib/libc/musl/arch/aarch64/bits/posix.h similarity index 100% rename from libc/musl/arch/aarch64/bits/posix.h rename to lib/libc/musl/arch/aarch64/bits/posix.h diff --git a/libc/musl/arch/aarch64/bits/reg.h b/lib/libc/musl/arch/aarch64/bits/reg.h similarity index 100% rename from libc/musl/arch/aarch64/bits/reg.h rename to lib/libc/musl/arch/aarch64/bits/reg.h diff --git a/libc/musl/arch/aarch64/bits/sem.h b/lib/libc/musl/arch/aarch64/bits/sem.h similarity index 100% rename from libc/musl/arch/aarch64/bits/sem.h rename to lib/libc/musl/arch/aarch64/bits/sem.h diff --git a/libc/musl/arch/aarch64/bits/setjmp.h b/lib/libc/musl/arch/aarch64/bits/setjmp.h similarity index 100% rename from libc/musl/arch/aarch64/bits/setjmp.h rename to lib/libc/musl/arch/aarch64/bits/setjmp.h diff --git a/libc/musl/arch/aarch64/bits/shm.h b/lib/libc/musl/arch/aarch64/bits/shm.h similarity index 100% rename from libc/musl/arch/aarch64/bits/shm.h rename to lib/libc/musl/arch/aarch64/bits/shm.h diff --git a/libc/musl/arch/aarch64/bits/signal.h b/lib/libc/musl/arch/aarch64/bits/signal.h similarity index 100% rename from libc/musl/arch/aarch64/bits/signal.h rename to lib/libc/musl/arch/aarch64/bits/signal.h diff --git a/libc/musl/arch/aarch64/bits/socket.h b/lib/libc/musl/arch/aarch64/bits/socket.h similarity index 100% rename from libc/musl/arch/aarch64/bits/socket.h rename to lib/libc/musl/arch/aarch64/bits/socket.h diff --git a/libc/musl/arch/aarch64/bits/stat.h b/lib/libc/musl/arch/aarch64/bits/stat.h similarity index 100% rename from libc/musl/arch/aarch64/bits/stat.h rename to lib/libc/musl/arch/aarch64/bits/stat.h diff --git a/libc/musl/arch/aarch64/bits/stdint.h b/lib/libc/musl/arch/aarch64/bits/stdint.h similarity index 100% rename from libc/musl/arch/aarch64/bits/stdint.h rename to lib/libc/musl/arch/aarch64/bits/stdint.h diff --git a/libc/musl/arch/aarch64/bits/syscall.h.in b/lib/libc/musl/arch/aarch64/bits/syscall.h.in similarity index 100% rename from libc/musl/arch/aarch64/bits/syscall.h.in rename to lib/libc/musl/arch/aarch64/bits/syscall.h.in diff --git a/libc/musl/arch/aarch64/bits/user.h b/lib/libc/musl/arch/aarch64/bits/user.h similarity index 100% rename from libc/musl/arch/aarch64/bits/user.h rename to lib/libc/musl/arch/aarch64/bits/user.h diff --git a/libc/musl/arch/aarch64/crt_arch.h b/lib/libc/musl/arch/aarch64/crt_arch.h similarity index 100% rename from libc/musl/arch/aarch64/crt_arch.h rename to lib/libc/musl/arch/aarch64/crt_arch.h diff --git a/libc/musl/arch/aarch64/pthread_arch.h b/lib/libc/musl/arch/aarch64/pthread_arch.h similarity index 100% rename from libc/musl/arch/aarch64/pthread_arch.h rename to lib/libc/musl/arch/aarch64/pthread_arch.h diff --git a/libc/musl/arch/aarch64/reloc.h b/lib/libc/musl/arch/aarch64/reloc.h similarity index 100% rename from libc/musl/arch/aarch64/reloc.h rename to lib/libc/musl/arch/aarch64/reloc.h diff --git a/libc/musl/arch/aarch64/syscall_arch.h b/lib/libc/musl/arch/aarch64/syscall_arch.h similarity index 100% rename from libc/musl/arch/aarch64/syscall_arch.h rename to lib/libc/musl/arch/aarch64/syscall_arch.h diff --git a/libc/musl/arch/arm/atomic_arch.h b/lib/libc/musl/arch/arm/atomic_arch.h similarity index 100% rename from libc/musl/arch/arm/atomic_arch.h rename to lib/libc/musl/arch/arm/atomic_arch.h diff --git a/libc/musl/arch/arm/bits/alltypes.h.in b/lib/libc/musl/arch/arm/bits/alltypes.h.in similarity index 100% rename from libc/musl/arch/arm/bits/alltypes.h.in rename to lib/libc/musl/arch/arm/bits/alltypes.h.in diff --git a/libc/musl/arch/arm/bits/endian.h b/lib/libc/musl/arch/arm/bits/endian.h similarity index 100% rename from libc/musl/arch/arm/bits/endian.h rename to lib/libc/musl/arch/arm/bits/endian.h diff --git a/libc/musl/arch/arm/bits/fcntl.h b/lib/libc/musl/arch/arm/bits/fcntl.h similarity index 100% rename from libc/musl/arch/arm/bits/fcntl.h rename to lib/libc/musl/arch/arm/bits/fcntl.h diff --git a/libc/musl/arch/arm/bits/fenv.h b/lib/libc/musl/arch/arm/bits/fenv.h similarity index 100% rename from libc/musl/arch/arm/bits/fenv.h rename to lib/libc/musl/arch/arm/bits/fenv.h diff --git a/libc/musl/arch/arm/bits/float.h b/lib/libc/musl/arch/arm/bits/float.h similarity index 100% rename from libc/musl/arch/arm/bits/float.h rename to lib/libc/musl/arch/arm/bits/float.h diff --git a/libc/musl/arch/arm/bits/hwcap.h b/lib/libc/musl/arch/arm/bits/hwcap.h similarity index 100% rename from libc/musl/arch/arm/bits/hwcap.h rename to lib/libc/musl/arch/arm/bits/hwcap.h diff --git a/libc/musl/arch/arm/bits/ioctl_fix.h b/lib/libc/musl/arch/arm/bits/ioctl_fix.h similarity index 100% rename from libc/musl/arch/arm/bits/ioctl_fix.h rename to lib/libc/musl/arch/arm/bits/ioctl_fix.h diff --git a/libc/musl/arch/arm/bits/limits.h b/lib/libc/musl/arch/arm/bits/limits.h similarity index 100% rename from libc/musl/arch/arm/bits/limits.h rename to lib/libc/musl/arch/arm/bits/limits.h diff --git a/libc/musl/arch/arm/bits/posix.h b/lib/libc/musl/arch/arm/bits/posix.h similarity index 100% rename from libc/musl/arch/arm/bits/posix.h rename to lib/libc/musl/arch/arm/bits/posix.h diff --git a/libc/musl/arch/arm/bits/ptrace.h b/lib/libc/musl/arch/arm/bits/ptrace.h similarity index 100% rename from libc/musl/arch/arm/bits/ptrace.h rename to lib/libc/musl/arch/arm/bits/ptrace.h diff --git a/libc/musl/arch/arm/bits/reg.h b/lib/libc/musl/arch/arm/bits/reg.h similarity index 100% rename from libc/musl/arch/arm/bits/reg.h rename to lib/libc/musl/arch/arm/bits/reg.h diff --git a/libc/musl/arch/arm/bits/setjmp.h b/lib/libc/musl/arch/arm/bits/setjmp.h similarity index 100% rename from libc/musl/arch/arm/bits/setjmp.h rename to lib/libc/musl/arch/arm/bits/setjmp.h diff --git a/libc/musl/arch/arm/bits/signal.h b/lib/libc/musl/arch/arm/bits/signal.h similarity index 100% rename from libc/musl/arch/arm/bits/signal.h rename to lib/libc/musl/arch/arm/bits/signal.h diff --git a/libc/musl/arch/arm/bits/stat.h b/lib/libc/musl/arch/arm/bits/stat.h similarity index 100% rename from libc/musl/arch/arm/bits/stat.h rename to lib/libc/musl/arch/arm/bits/stat.h diff --git a/libc/musl/arch/arm/bits/stdint.h b/lib/libc/musl/arch/arm/bits/stdint.h similarity index 100% rename from libc/musl/arch/arm/bits/stdint.h rename to lib/libc/musl/arch/arm/bits/stdint.h diff --git a/libc/musl/arch/arm/bits/syscall.h.in b/lib/libc/musl/arch/arm/bits/syscall.h.in similarity index 100% rename from libc/musl/arch/arm/bits/syscall.h.in rename to lib/libc/musl/arch/arm/bits/syscall.h.in diff --git a/libc/musl/arch/arm/bits/user.h b/lib/libc/musl/arch/arm/bits/user.h similarity index 100% rename from libc/musl/arch/arm/bits/user.h rename to lib/libc/musl/arch/arm/bits/user.h diff --git a/libc/musl/arch/arm/crt_arch.h b/lib/libc/musl/arch/arm/crt_arch.h similarity index 100% rename from libc/musl/arch/arm/crt_arch.h rename to lib/libc/musl/arch/arm/crt_arch.h diff --git a/libc/musl/arch/arm/pthread_arch.h b/lib/libc/musl/arch/arm/pthread_arch.h similarity index 100% rename from libc/musl/arch/arm/pthread_arch.h rename to lib/libc/musl/arch/arm/pthread_arch.h diff --git a/libc/musl/arch/arm/reloc.h b/lib/libc/musl/arch/arm/reloc.h similarity index 100% rename from libc/musl/arch/arm/reloc.h rename to lib/libc/musl/arch/arm/reloc.h diff --git a/libc/musl/arch/arm/syscall_arch.h b/lib/libc/musl/arch/arm/syscall_arch.h similarity index 100% rename from libc/musl/arch/arm/syscall_arch.h rename to lib/libc/musl/arch/arm/syscall_arch.h diff --git a/libc/musl/arch/generic/bits/errno.h b/lib/libc/musl/arch/generic/bits/errno.h similarity index 100% rename from libc/musl/arch/generic/bits/errno.h rename to lib/libc/musl/arch/generic/bits/errno.h diff --git a/libc/musl/arch/generic/bits/fcntl.h b/lib/libc/musl/arch/generic/bits/fcntl.h similarity index 100% rename from libc/musl/arch/generic/bits/fcntl.h rename to lib/libc/musl/arch/generic/bits/fcntl.h diff --git a/libc/musl/arch/generic/bits/fenv.h b/lib/libc/musl/arch/generic/bits/fenv.h similarity index 100% rename from libc/musl/arch/generic/bits/fenv.h rename to lib/libc/musl/arch/generic/bits/fenv.h diff --git a/libc/musl/arch/generic/bits/hwcap.h b/lib/libc/musl/arch/generic/bits/hwcap.h similarity index 100% rename from libc/musl/arch/generic/bits/hwcap.h rename to lib/libc/musl/arch/generic/bits/hwcap.h diff --git a/libc/musl/arch/generic/bits/io.h b/lib/libc/musl/arch/generic/bits/io.h similarity index 100% rename from libc/musl/arch/generic/bits/io.h rename to lib/libc/musl/arch/generic/bits/io.h diff --git a/libc/musl/arch/generic/bits/ioctl.h b/lib/libc/musl/arch/generic/bits/ioctl.h similarity index 100% rename from libc/musl/arch/generic/bits/ioctl.h rename to lib/libc/musl/arch/generic/bits/ioctl.h diff --git a/libc/musl/arch/generic/bits/ioctl_fix.h b/lib/libc/musl/arch/generic/bits/ioctl_fix.h similarity index 100% rename from libc/musl/arch/generic/bits/ioctl_fix.h rename to lib/libc/musl/arch/generic/bits/ioctl_fix.h diff --git a/libc/musl/arch/generic/bits/ipc.h b/lib/libc/musl/arch/generic/bits/ipc.h similarity index 100% rename from libc/musl/arch/generic/bits/ipc.h rename to lib/libc/musl/arch/generic/bits/ipc.h diff --git a/libc/musl/arch/generic/bits/kd.h b/lib/libc/musl/arch/generic/bits/kd.h similarity index 100% rename from libc/musl/arch/generic/bits/kd.h rename to lib/libc/musl/arch/generic/bits/kd.h diff --git a/libc/musl/arch/generic/bits/link.h b/lib/libc/musl/arch/generic/bits/link.h similarity index 100% rename from libc/musl/arch/generic/bits/link.h rename to lib/libc/musl/arch/generic/bits/link.h diff --git a/libc/musl/arch/generic/bits/mman.h b/lib/libc/musl/arch/generic/bits/mman.h similarity index 100% rename from libc/musl/arch/generic/bits/mman.h rename to lib/libc/musl/arch/generic/bits/mman.h diff --git a/libc/musl/arch/generic/bits/msg.h b/lib/libc/musl/arch/generic/bits/msg.h similarity index 100% rename from libc/musl/arch/generic/bits/msg.h rename to lib/libc/musl/arch/generic/bits/msg.h diff --git a/libc/musl/arch/generic/bits/poll.h b/lib/libc/musl/arch/generic/bits/poll.h similarity index 100% rename from libc/musl/arch/generic/bits/poll.h rename to lib/libc/musl/arch/generic/bits/poll.h diff --git a/libc/musl/arch/generic/bits/ptrace.h b/lib/libc/musl/arch/generic/bits/ptrace.h similarity index 100% rename from libc/musl/arch/generic/bits/ptrace.h rename to lib/libc/musl/arch/generic/bits/ptrace.h diff --git a/libc/musl/arch/generic/bits/resource.h b/lib/libc/musl/arch/generic/bits/resource.h similarity index 100% rename from libc/musl/arch/generic/bits/resource.h rename to lib/libc/musl/arch/generic/bits/resource.h diff --git a/libc/musl/arch/generic/bits/sem.h b/lib/libc/musl/arch/generic/bits/sem.h similarity index 100% rename from libc/musl/arch/generic/bits/sem.h rename to lib/libc/musl/arch/generic/bits/sem.h diff --git a/libc/musl/arch/generic/bits/shm.h b/lib/libc/musl/arch/generic/bits/shm.h similarity index 100% rename from libc/musl/arch/generic/bits/shm.h rename to lib/libc/musl/arch/generic/bits/shm.h diff --git a/libc/musl/arch/generic/bits/socket.h b/lib/libc/musl/arch/generic/bits/socket.h similarity index 100% rename from libc/musl/arch/generic/bits/socket.h rename to lib/libc/musl/arch/generic/bits/socket.h diff --git a/libc/musl/arch/generic/bits/soundcard.h b/lib/libc/musl/arch/generic/bits/soundcard.h similarity index 100% rename from libc/musl/arch/generic/bits/soundcard.h rename to lib/libc/musl/arch/generic/bits/soundcard.h diff --git a/libc/musl/arch/generic/bits/statfs.h b/lib/libc/musl/arch/generic/bits/statfs.h similarity index 100% rename from libc/musl/arch/generic/bits/statfs.h rename to lib/libc/musl/arch/generic/bits/statfs.h diff --git a/libc/musl/arch/generic/bits/termios.h b/lib/libc/musl/arch/generic/bits/termios.h similarity index 100% rename from libc/musl/arch/generic/bits/termios.h rename to lib/libc/musl/arch/generic/bits/termios.h diff --git a/libc/musl/arch/generic/bits/vt.h b/lib/libc/musl/arch/generic/bits/vt.h similarity index 100% rename from libc/musl/arch/generic/bits/vt.h rename to lib/libc/musl/arch/generic/bits/vt.h diff --git a/libc/musl/arch/i386/atomic_arch.h b/lib/libc/musl/arch/i386/atomic_arch.h similarity index 100% rename from libc/musl/arch/i386/atomic_arch.h rename to lib/libc/musl/arch/i386/atomic_arch.h diff --git a/libc/musl/arch/i386/bits/alltypes.h.in b/lib/libc/musl/arch/i386/bits/alltypes.h.in similarity index 100% rename from libc/musl/arch/i386/bits/alltypes.h.in rename to lib/libc/musl/arch/i386/bits/alltypes.h.in diff --git a/libc/musl/arch/i386/bits/endian.h b/lib/libc/musl/arch/i386/bits/endian.h similarity index 100% rename from libc/musl/arch/i386/bits/endian.h rename to lib/libc/musl/arch/i386/bits/endian.h diff --git a/libc/musl/arch/i386/bits/fenv.h b/lib/libc/musl/arch/i386/bits/fenv.h similarity index 100% rename from libc/musl/arch/i386/bits/fenv.h rename to lib/libc/musl/arch/i386/bits/fenv.h diff --git a/libc/musl/arch/i386/bits/float.h b/lib/libc/musl/arch/i386/bits/float.h similarity index 100% rename from libc/musl/arch/i386/bits/float.h rename to lib/libc/musl/arch/i386/bits/float.h diff --git a/libc/musl/arch/i386/bits/io.h b/lib/libc/musl/arch/i386/bits/io.h similarity index 100% rename from libc/musl/arch/i386/bits/io.h rename to lib/libc/musl/arch/i386/bits/io.h diff --git a/libc/musl/arch/i386/bits/limits.h b/lib/libc/musl/arch/i386/bits/limits.h similarity index 100% rename from libc/musl/arch/i386/bits/limits.h rename to lib/libc/musl/arch/i386/bits/limits.h diff --git a/libc/musl/arch/i386/bits/mman.h b/lib/libc/musl/arch/i386/bits/mman.h similarity index 100% rename from libc/musl/arch/i386/bits/mman.h rename to lib/libc/musl/arch/i386/bits/mman.h diff --git a/libc/musl/arch/i386/bits/posix.h b/lib/libc/musl/arch/i386/bits/posix.h similarity index 100% rename from libc/musl/arch/i386/bits/posix.h rename to lib/libc/musl/arch/i386/bits/posix.h diff --git a/libc/musl/arch/i386/bits/ptrace.h b/lib/libc/musl/arch/i386/bits/ptrace.h similarity index 100% rename from libc/musl/arch/i386/bits/ptrace.h rename to lib/libc/musl/arch/i386/bits/ptrace.h diff --git a/libc/musl/arch/i386/bits/reg.h b/lib/libc/musl/arch/i386/bits/reg.h similarity index 100% rename from libc/musl/arch/i386/bits/reg.h rename to lib/libc/musl/arch/i386/bits/reg.h diff --git a/libc/musl/arch/i386/bits/setjmp.h b/lib/libc/musl/arch/i386/bits/setjmp.h similarity index 100% rename from libc/musl/arch/i386/bits/setjmp.h rename to lib/libc/musl/arch/i386/bits/setjmp.h diff --git a/libc/musl/arch/i386/bits/signal.h b/lib/libc/musl/arch/i386/bits/signal.h similarity index 100% rename from libc/musl/arch/i386/bits/signal.h rename to lib/libc/musl/arch/i386/bits/signal.h diff --git a/libc/musl/arch/i386/bits/stat.h b/lib/libc/musl/arch/i386/bits/stat.h similarity index 100% rename from libc/musl/arch/i386/bits/stat.h rename to lib/libc/musl/arch/i386/bits/stat.h diff --git a/libc/musl/arch/i386/bits/stdint.h b/lib/libc/musl/arch/i386/bits/stdint.h similarity index 100% rename from libc/musl/arch/i386/bits/stdint.h rename to lib/libc/musl/arch/i386/bits/stdint.h diff --git a/libc/musl/arch/i386/bits/syscall.h.in b/lib/libc/musl/arch/i386/bits/syscall.h.in similarity index 100% rename from libc/musl/arch/i386/bits/syscall.h.in rename to lib/libc/musl/arch/i386/bits/syscall.h.in diff --git a/libc/musl/arch/i386/bits/user.h b/lib/libc/musl/arch/i386/bits/user.h similarity index 100% rename from libc/musl/arch/i386/bits/user.h rename to lib/libc/musl/arch/i386/bits/user.h diff --git a/libc/musl/arch/i386/crt_arch.h b/lib/libc/musl/arch/i386/crt_arch.h similarity index 100% rename from libc/musl/arch/i386/crt_arch.h rename to lib/libc/musl/arch/i386/crt_arch.h diff --git a/libc/musl/arch/i386/pthread_arch.h b/lib/libc/musl/arch/i386/pthread_arch.h similarity index 100% rename from libc/musl/arch/i386/pthread_arch.h rename to lib/libc/musl/arch/i386/pthread_arch.h diff --git a/libc/musl/arch/i386/reloc.h b/lib/libc/musl/arch/i386/reloc.h similarity index 100% rename from libc/musl/arch/i386/reloc.h rename to lib/libc/musl/arch/i386/reloc.h diff --git a/libc/musl/arch/i386/syscall_arch.h b/lib/libc/musl/arch/i386/syscall_arch.h similarity index 100% rename from libc/musl/arch/i386/syscall_arch.h rename to lib/libc/musl/arch/i386/syscall_arch.h diff --git a/libc/musl/arch/mips/atomic_arch.h b/lib/libc/musl/arch/mips/atomic_arch.h similarity index 100% rename from libc/musl/arch/mips/atomic_arch.h rename to lib/libc/musl/arch/mips/atomic_arch.h diff --git a/libc/musl/arch/mips/bits/alltypes.h.in b/lib/libc/musl/arch/mips/bits/alltypes.h.in similarity index 100% rename from libc/musl/arch/mips/bits/alltypes.h.in rename to lib/libc/musl/arch/mips/bits/alltypes.h.in diff --git a/libc/musl/arch/mips/bits/endian.h b/lib/libc/musl/arch/mips/bits/endian.h similarity index 100% rename from libc/musl/arch/mips/bits/endian.h rename to lib/libc/musl/arch/mips/bits/endian.h diff --git a/libc/musl/arch/mips/bits/errno.h b/lib/libc/musl/arch/mips/bits/errno.h similarity index 100% rename from libc/musl/arch/mips/bits/errno.h rename to lib/libc/musl/arch/mips/bits/errno.h diff --git a/libc/musl/arch/mips/bits/fcntl.h b/lib/libc/musl/arch/mips/bits/fcntl.h similarity index 100% rename from libc/musl/arch/mips/bits/fcntl.h rename to lib/libc/musl/arch/mips/bits/fcntl.h diff --git a/libc/musl/arch/mips/bits/fenv.h b/lib/libc/musl/arch/mips/bits/fenv.h similarity index 100% rename from libc/musl/arch/mips/bits/fenv.h rename to lib/libc/musl/arch/mips/bits/fenv.h diff --git a/libc/musl/arch/mips/bits/float.h b/lib/libc/musl/arch/mips/bits/float.h similarity index 100% rename from libc/musl/arch/mips/bits/float.h rename to lib/libc/musl/arch/mips/bits/float.h diff --git a/libc/musl/arch/mips/bits/hwcap.h b/lib/libc/musl/arch/mips/bits/hwcap.h similarity index 100% rename from libc/musl/arch/mips/bits/hwcap.h rename to lib/libc/musl/arch/mips/bits/hwcap.h diff --git a/libc/musl/arch/mips/bits/ioctl.h b/lib/libc/musl/arch/mips/bits/ioctl.h similarity index 100% rename from libc/musl/arch/mips/bits/ioctl.h rename to lib/libc/musl/arch/mips/bits/ioctl.h diff --git a/libc/musl/arch/mips/bits/limits.h b/lib/libc/musl/arch/mips/bits/limits.h similarity index 100% rename from libc/musl/arch/mips/bits/limits.h rename to lib/libc/musl/arch/mips/bits/limits.h diff --git a/libc/musl/arch/mips/bits/mman.h b/lib/libc/musl/arch/mips/bits/mman.h similarity index 100% rename from libc/musl/arch/mips/bits/mman.h rename to lib/libc/musl/arch/mips/bits/mman.h diff --git a/libc/musl/arch/mips/bits/msg.h b/lib/libc/musl/arch/mips/bits/msg.h similarity index 100% rename from libc/musl/arch/mips/bits/msg.h rename to lib/libc/musl/arch/mips/bits/msg.h diff --git a/libc/musl/arch/mips/bits/poll.h b/lib/libc/musl/arch/mips/bits/poll.h similarity index 100% rename from libc/musl/arch/mips/bits/poll.h rename to lib/libc/musl/arch/mips/bits/poll.h diff --git a/libc/musl/arch/mips/bits/posix.h b/lib/libc/musl/arch/mips/bits/posix.h similarity index 100% rename from libc/musl/arch/mips/bits/posix.h rename to lib/libc/musl/arch/mips/bits/posix.h diff --git a/libc/musl/arch/mips/bits/ptrace.h b/lib/libc/musl/arch/mips/bits/ptrace.h similarity index 100% rename from libc/musl/arch/mips/bits/ptrace.h rename to lib/libc/musl/arch/mips/bits/ptrace.h diff --git a/libc/musl/arch/mips/bits/reg.h b/lib/libc/musl/arch/mips/bits/reg.h similarity index 100% rename from libc/musl/arch/mips/bits/reg.h rename to lib/libc/musl/arch/mips/bits/reg.h diff --git a/libc/musl/arch/mips/bits/resource.h b/lib/libc/musl/arch/mips/bits/resource.h similarity index 100% rename from libc/musl/arch/mips/bits/resource.h rename to lib/libc/musl/arch/mips/bits/resource.h diff --git a/libc/musl/arch/mips/bits/sem.h b/lib/libc/musl/arch/mips/bits/sem.h similarity index 100% rename from libc/musl/arch/mips/bits/sem.h rename to lib/libc/musl/arch/mips/bits/sem.h diff --git a/libc/musl/arch/mips/bits/setjmp.h b/lib/libc/musl/arch/mips/bits/setjmp.h similarity index 100% rename from libc/musl/arch/mips/bits/setjmp.h rename to lib/libc/musl/arch/mips/bits/setjmp.h diff --git a/libc/musl/arch/mips/bits/shm.h b/lib/libc/musl/arch/mips/bits/shm.h similarity index 100% rename from libc/musl/arch/mips/bits/shm.h rename to lib/libc/musl/arch/mips/bits/shm.h diff --git a/libc/musl/arch/mips/bits/signal.h b/lib/libc/musl/arch/mips/bits/signal.h similarity index 100% rename from libc/musl/arch/mips/bits/signal.h rename to lib/libc/musl/arch/mips/bits/signal.h diff --git a/libc/musl/arch/mips/bits/socket.h b/lib/libc/musl/arch/mips/bits/socket.h similarity index 100% rename from libc/musl/arch/mips/bits/socket.h rename to lib/libc/musl/arch/mips/bits/socket.h diff --git a/libc/musl/arch/mips/bits/stat.h b/lib/libc/musl/arch/mips/bits/stat.h similarity index 100% rename from libc/musl/arch/mips/bits/stat.h rename to lib/libc/musl/arch/mips/bits/stat.h diff --git a/libc/musl/arch/mips/bits/statfs.h b/lib/libc/musl/arch/mips/bits/statfs.h similarity index 100% rename from libc/musl/arch/mips/bits/statfs.h rename to lib/libc/musl/arch/mips/bits/statfs.h diff --git a/libc/musl/arch/mips/bits/stdint.h b/lib/libc/musl/arch/mips/bits/stdint.h similarity index 100% rename from libc/musl/arch/mips/bits/stdint.h rename to lib/libc/musl/arch/mips/bits/stdint.h diff --git a/libc/musl/arch/mips/bits/syscall.h.in b/lib/libc/musl/arch/mips/bits/syscall.h.in similarity index 100% rename from libc/musl/arch/mips/bits/syscall.h.in rename to lib/libc/musl/arch/mips/bits/syscall.h.in diff --git a/libc/musl/arch/mips/bits/termios.h b/lib/libc/musl/arch/mips/bits/termios.h similarity index 100% rename from libc/musl/arch/mips/bits/termios.h rename to lib/libc/musl/arch/mips/bits/termios.h diff --git a/libc/musl/arch/mips/bits/user.h b/lib/libc/musl/arch/mips/bits/user.h similarity index 100% rename from libc/musl/arch/mips/bits/user.h rename to lib/libc/musl/arch/mips/bits/user.h diff --git a/libc/musl/arch/mips/crt_arch.h b/lib/libc/musl/arch/mips/crt_arch.h similarity index 100% rename from libc/musl/arch/mips/crt_arch.h rename to lib/libc/musl/arch/mips/crt_arch.h diff --git a/libc/musl/arch/mips/ksigaction.h b/lib/libc/musl/arch/mips/ksigaction.h similarity index 100% rename from libc/musl/arch/mips/ksigaction.h rename to lib/libc/musl/arch/mips/ksigaction.h diff --git a/libc/musl/arch/mips/pthread_arch.h b/lib/libc/musl/arch/mips/pthread_arch.h similarity index 100% rename from libc/musl/arch/mips/pthread_arch.h rename to lib/libc/musl/arch/mips/pthread_arch.h diff --git a/libc/musl/arch/mips/reloc.h b/lib/libc/musl/arch/mips/reloc.h similarity index 100% rename from libc/musl/arch/mips/reloc.h rename to lib/libc/musl/arch/mips/reloc.h diff --git a/libc/musl/arch/mips/syscall_arch.h b/lib/libc/musl/arch/mips/syscall_arch.h similarity index 100% rename from libc/musl/arch/mips/syscall_arch.h rename to lib/libc/musl/arch/mips/syscall_arch.h diff --git a/libc/musl/arch/mips64/atomic_arch.h b/lib/libc/musl/arch/mips64/atomic_arch.h similarity index 100% rename from libc/musl/arch/mips64/atomic_arch.h rename to lib/libc/musl/arch/mips64/atomic_arch.h diff --git a/libc/musl/arch/mips64/bits/alltypes.h.in b/lib/libc/musl/arch/mips64/bits/alltypes.h.in similarity index 100% rename from libc/musl/arch/mips64/bits/alltypes.h.in rename to lib/libc/musl/arch/mips64/bits/alltypes.h.in diff --git a/libc/musl/arch/mips64/bits/endian.h b/lib/libc/musl/arch/mips64/bits/endian.h similarity index 100% rename from libc/musl/arch/mips64/bits/endian.h rename to lib/libc/musl/arch/mips64/bits/endian.h diff --git a/libc/musl/arch/mips64/bits/errno.h b/lib/libc/musl/arch/mips64/bits/errno.h similarity index 100% rename from libc/musl/arch/mips64/bits/errno.h rename to lib/libc/musl/arch/mips64/bits/errno.h diff --git a/libc/musl/arch/mips64/bits/fcntl.h b/lib/libc/musl/arch/mips64/bits/fcntl.h similarity index 100% rename from libc/musl/arch/mips64/bits/fcntl.h rename to lib/libc/musl/arch/mips64/bits/fcntl.h diff --git a/libc/musl/arch/mips64/bits/fenv.h b/lib/libc/musl/arch/mips64/bits/fenv.h similarity index 100% rename from libc/musl/arch/mips64/bits/fenv.h rename to lib/libc/musl/arch/mips64/bits/fenv.h diff --git a/libc/musl/arch/mips64/bits/float.h b/lib/libc/musl/arch/mips64/bits/float.h similarity index 100% rename from libc/musl/arch/mips64/bits/float.h rename to lib/libc/musl/arch/mips64/bits/float.h diff --git a/libc/musl/arch/mips64/bits/hwcap.h b/lib/libc/musl/arch/mips64/bits/hwcap.h similarity index 100% rename from libc/musl/arch/mips64/bits/hwcap.h rename to lib/libc/musl/arch/mips64/bits/hwcap.h diff --git a/libc/musl/arch/mips64/bits/ioctl.h b/lib/libc/musl/arch/mips64/bits/ioctl.h similarity index 100% rename from libc/musl/arch/mips64/bits/ioctl.h rename to lib/libc/musl/arch/mips64/bits/ioctl.h diff --git a/libc/musl/arch/mips64/bits/ipc.h b/lib/libc/musl/arch/mips64/bits/ipc.h similarity index 100% rename from libc/musl/arch/mips64/bits/ipc.h rename to lib/libc/musl/arch/mips64/bits/ipc.h diff --git a/libc/musl/arch/mips64/bits/limits.h b/lib/libc/musl/arch/mips64/bits/limits.h similarity index 100% rename from libc/musl/arch/mips64/bits/limits.h rename to lib/libc/musl/arch/mips64/bits/limits.h diff --git a/libc/musl/arch/mips64/bits/mman.h b/lib/libc/musl/arch/mips64/bits/mman.h similarity index 100% rename from libc/musl/arch/mips64/bits/mman.h rename to lib/libc/musl/arch/mips64/bits/mman.h diff --git a/libc/musl/arch/mips64/bits/msg.h b/lib/libc/musl/arch/mips64/bits/msg.h similarity index 100% rename from libc/musl/arch/mips64/bits/msg.h rename to lib/libc/musl/arch/mips64/bits/msg.h diff --git a/libc/musl/arch/mips64/bits/poll.h b/lib/libc/musl/arch/mips64/bits/poll.h similarity index 100% rename from libc/musl/arch/mips64/bits/poll.h rename to lib/libc/musl/arch/mips64/bits/poll.h diff --git a/libc/musl/arch/mips64/bits/posix.h b/lib/libc/musl/arch/mips64/bits/posix.h similarity index 100% rename from libc/musl/arch/mips64/bits/posix.h rename to lib/libc/musl/arch/mips64/bits/posix.h diff --git a/libc/musl/arch/mips64/bits/ptrace.h b/lib/libc/musl/arch/mips64/bits/ptrace.h similarity index 100% rename from libc/musl/arch/mips64/bits/ptrace.h rename to lib/libc/musl/arch/mips64/bits/ptrace.h diff --git a/libc/musl/arch/mips64/bits/reg.h b/lib/libc/musl/arch/mips64/bits/reg.h similarity index 100% rename from libc/musl/arch/mips64/bits/reg.h rename to lib/libc/musl/arch/mips64/bits/reg.h diff --git a/libc/musl/arch/mips64/bits/resource.h b/lib/libc/musl/arch/mips64/bits/resource.h similarity index 100% rename from libc/musl/arch/mips64/bits/resource.h rename to lib/libc/musl/arch/mips64/bits/resource.h diff --git a/libc/musl/arch/mips64/bits/sem.h b/lib/libc/musl/arch/mips64/bits/sem.h similarity index 100% rename from libc/musl/arch/mips64/bits/sem.h rename to lib/libc/musl/arch/mips64/bits/sem.h diff --git a/libc/musl/arch/mips64/bits/setjmp.h b/lib/libc/musl/arch/mips64/bits/setjmp.h similarity index 100% rename from libc/musl/arch/mips64/bits/setjmp.h rename to lib/libc/musl/arch/mips64/bits/setjmp.h diff --git a/libc/musl/arch/mips64/bits/shm.h b/lib/libc/musl/arch/mips64/bits/shm.h similarity index 100% rename from libc/musl/arch/mips64/bits/shm.h rename to lib/libc/musl/arch/mips64/bits/shm.h diff --git a/libc/musl/arch/mips64/bits/signal.h b/lib/libc/musl/arch/mips64/bits/signal.h similarity index 100% rename from libc/musl/arch/mips64/bits/signal.h rename to lib/libc/musl/arch/mips64/bits/signal.h diff --git a/libc/musl/arch/mips64/bits/socket.h b/lib/libc/musl/arch/mips64/bits/socket.h similarity index 100% rename from libc/musl/arch/mips64/bits/socket.h rename to lib/libc/musl/arch/mips64/bits/socket.h diff --git a/libc/musl/arch/mips64/bits/stat.h b/lib/libc/musl/arch/mips64/bits/stat.h similarity index 100% rename from libc/musl/arch/mips64/bits/stat.h rename to lib/libc/musl/arch/mips64/bits/stat.h diff --git a/libc/musl/arch/mips64/bits/statfs.h b/lib/libc/musl/arch/mips64/bits/statfs.h similarity index 100% rename from libc/musl/arch/mips64/bits/statfs.h rename to lib/libc/musl/arch/mips64/bits/statfs.h diff --git a/libc/musl/arch/mips64/bits/stdint.h b/lib/libc/musl/arch/mips64/bits/stdint.h similarity index 100% rename from libc/musl/arch/mips64/bits/stdint.h rename to lib/libc/musl/arch/mips64/bits/stdint.h diff --git a/libc/musl/arch/mips64/bits/syscall.h.in b/lib/libc/musl/arch/mips64/bits/syscall.h.in similarity index 100% rename from libc/musl/arch/mips64/bits/syscall.h.in rename to lib/libc/musl/arch/mips64/bits/syscall.h.in diff --git a/libc/musl/arch/mips64/bits/termios.h b/lib/libc/musl/arch/mips64/bits/termios.h similarity index 100% rename from libc/musl/arch/mips64/bits/termios.h rename to lib/libc/musl/arch/mips64/bits/termios.h diff --git a/libc/musl/arch/mips64/bits/user.h b/lib/libc/musl/arch/mips64/bits/user.h similarity index 100% rename from libc/musl/arch/mips64/bits/user.h rename to lib/libc/musl/arch/mips64/bits/user.h diff --git a/libc/musl/arch/mips64/crt_arch.h b/lib/libc/musl/arch/mips64/crt_arch.h similarity index 100% rename from libc/musl/arch/mips64/crt_arch.h rename to lib/libc/musl/arch/mips64/crt_arch.h diff --git a/libc/musl/arch/mips64/ksigaction.h b/lib/libc/musl/arch/mips64/ksigaction.h similarity index 100% rename from libc/musl/arch/mips64/ksigaction.h rename to lib/libc/musl/arch/mips64/ksigaction.h diff --git a/libc/musl/arch/mips64/pthread_arch.h b/lib/libc/musl/arch/mips64/pthread_arch.h similarity index 100% rename from libc/musl/arch/mips64/pthread_arch.h rename to lib/libc/musl/arch/mips64/pthread_arch.h diff --git a/libc/musl/arch/mips64/reloc.h b/lib/libc/musl/arch/mips64/reloc.h similarity index 100% rename from libc/musl/arch/mips64/reloc.h rename to lib/libc/musl/arch/mips64/reloc.h diff --git a/libc/musl/arch/mips64/syscall_arch.h b/lib/libc/musl/arch/mips64/syscall_arch.h similarity index 100% rename from libc/musl/arch/mips64/syscall_arch.h rename to lib/libc/musl/arch/mips64/syscall_arch.h diff --git a/libc/musl/arch/powerpc/atomic_arch.h b/lib/libc/musl/arch/powerpc/atomic_arch.h similarity index 100% rename from libc/musl/arch/powerpc/atomic_arch.h rename to lib/libc/musl/arch/powerpc/atomic_arch.h diff --git a/libc/musl/arch/powerpc/bits/alltypes.h.in b/lib/libc/musl/arch/powerpc/bits/alltypes.h.in similarity index 100% rename from libc/musl/arch/powerpc/bits/alltypes.h.in rename to lib/libc/musl/arch/powerpc/bits/alltypes.h.in diff --git a/libc/musl/arch/powerpc/bits/endian.h b/lib/libc/musl/arch/powerpc/bits/endian.h similarity index 100% rename from libc/musl/arch/powerpc/bits/endian.h rename to lib/libc/musl/arch/powerpc/bits/endian.h diff --git a/libc/musl/arch/powerpc/bits/errno.h b/lib/libc/musl/arch/powerpc/bits/errno.h similarity index 100% rename from libc/musl/arch/powerpc/bits/errno.h rename to lib/libc/musl/arch/powerpc/bits/errno.h diff --git a/libc/musl/arch/powerpc/bits/fcntl.h b/lib/libc/musl/arch/powerpc/bits/fcntl.h similarity index 100% rename from libc/musl/arch/powerpc/bits/fcntl.h rename to lib/libc/musl/arch/powerpc/bits/fcntl.h diff --git a/libc/musl/arch/powerpc/bits/fenv.h b/lib/libc/musl/arch/powerpc/bits/fenv.h similarity index 100% rename from libc/musl/arch/powerpc/bits/fenv.h rename to lib/libc/musl/arch/powerpc/bits/fenv.h diff --git a/libc/musl/arch/powerpc/bits/float.h b/lib/libc/musl/arch/powerpc/bits/float.h similarity index 100% rename from libc/musl/arch/powerpc/bits/float.h rename to lib/libc/musl/arch/powerpc/bits/float.h diff --git a/libc/musl/arch/powerpc/bits/hwcap.h b/lib/libc/musl/arch/powerpc/bits/hwcap.h similarity index 100% rename from libc/musl/arch/powerpc/bits/hwcap.h rename to lib/libc/musl/arch/powerpc/bits/hwcap.h diff --git a/libc/musl/arch/powerpc/bits/ioctl.h b/lib/libc/musl/arch/powerpc/bits/ioctl.h similarity index 100% rename from libc/musl/arch/powerpc/bits/ioctl.h rename to lib/libc/musl/arch/powerpc/bits/ioctl.h diff --git a/libc/musl/arch/powerpc/bits/ipc.h b/lib/libc/musl/arch/powerpc/bits/ipc.h similarity index 100% rename from libc/musl/arch/powerpc/bits/ipc.h rename to lib/libc/musl/arch/powerpc/bits/ipc.h diff --git a/libc/musl/arch/powerpc/bits/limits.h b/lib/libc/musl/arch/powerpc/bits/limits.h similarity index 100% rename from libc/musl/arch/powerpc/bits/limits.h rename to lib/libc/musl/arch/powerpc/bits/limits.h diff --git a/libc/musl/arch/powerpc/bits/mman.h b/lib/libc/musl/arch/powerpc/bits/mman.h similarity index 100% rename from libc/musl/arch/powerpc/bits/mman.h rename to lib/libc/musl/arch/powerpc/bits/mman.h diff --git a/libc/musl/arch/powerpc/bits/msg.h b/lib/libc/musl/arch/powerpc/bits/msg.h similarity index 100% rename from libc/musl/arch/powerpc/bits/msg.h rename to lib/libc/musl/arch/powerpc/bits/msg.h diff --git a/libc/musl/arch/powerpc/bits/posix.h b/lib/libc/musl/arch/powerpc/bits/posix.h similarity index 100% rename from libc/musl/arch/powerpc/bits/posix.h rename to lib/libc/musl/arch/powerpc/bits/posix.h diff --git a/libc/musl/arch/powerpc/bits/ptrace.h b/lib/libc/musl/arch/powerpc/bits/ptrace.h similarity index 100% rename from libc/musl/arch/powerpc/bits/ptrace.h rename to lib/libc/musl/arch/powerpc/bits/ptrace.h diff --git a/libc/musl/arch/powerpc/bits/reg.h b/lib/libc/musl/arch/powerpc/bits/reg.h similarity index 100% rename from libc/musl/arch/powerpc/bits/reg.h rename to lib/libc/musl/arch/powerpc/bits/reg.h diff --git a/libc/musl/arch/powerpc/bits/sem.h b/lib/libc/musl/arch/powerpc/bits/sem.h similarity index 100% rename from libc/musl/arch/powerpc/bits/sem.h rename to lib/libc/musl/arch/powerpc/bits/sem.h diff --git a/libc/musl/arch/powerpc/bits/setjmp.h b/lib/libc/musl/arch/powerpc/bits/setjmp.h similarity index 100% rename from libc/musl/arch/powerpc/bits/setjmp.h rename to lib/libc/musl/arch/powerpc/bits/setjmp.h diff --git a/libc/musl/arch/powerpc/bits/shm.h b/lib/libc/musl/arch/powerpc/bits/shm.h similarity index 100% rename from libc/musl/arch/powerpc/bits/shm.h rename to lib/libc/musl/arch/powerpc/bits/shm.h diff --git a/libc/musl/arch/powerpc/bits/signal.h b/lib/libc/musl/arch/powerpc/bits/signal.h similarity index 100% rename from libc/musl/arch/powerpc/bits/signal.h rename to lib/libc/musl/arch/powerpc/bits/signal.h diff --git a/libc/musl/arch/powerpc/bits/socket.h b/lib/libc/musl/arch/powerpc/bits/socket.h similarity index 100% rename from libc/musl/arch/powerpc/bits/socket.h rename to lib/libc/musl/arch/powerpc/bits/socket.h diff --git a/libc/musl/arch/powerpc/bits/stat.h b/lib/libc/musl/arch/powerpc/bits/stat.h similarity index 100% rename from libc/musl/arch/powerpc/bits/stat.h rename to lib/libc/musl/arch/powerpc/bits/stat.h diff --git a/libc/musl/arch/powerpc/bits/stdint.h b/lib/libc/musl/arch/powerpc/bits/stdint.h similarity index 100% rename from libc/musl/arch/powerpc/bits/stdint.h rename to lib/libc/musl/arch/powerpc/bits/stdint.h diff --git a/libc/musl/arch/powerpc/bits/syscall.h.in b/lib/libc/musl/arch/powerpc/bits/syscall.h.in similarity index 100% rename from libc/musl/arch/powerpc/bits/syscall.h.in rename to lib/libc/musl/arch/powerpc/bits/syscall.h.in diff --git a/libc/musl/arch/powerpc/bits/termios.h b/lib/libc/musl/arch/powerpc/bits/termios.h similarity index 100% rename from libc/musl/arch/powerpc/bits/termios.h rename to lib/libc/musl/arch/powerpc/bits/termios.h diff --git a/libc/musl/arch/powerpc/bits/user.h b/lib/libc/musl/arch/powerpc/bits/user.h similarity index 100% rename from libc/musl/arch/powerpc/bits/user.h rename to lib/libc/musl/arch/powerpc/bits/user.h diff --git a/libc/musl/arch/powerpc/crt_arch.h b/lib/libc/musl/arch/powerpc/crt_arch.h similarity index 100% rename from libc/musl/arch/powerpc/crt_arch.h rename to lib/libc/musl/arch/powerpc/crt_arch.h diff --git a/libc/musl/arch/powerpc/pthread_arch.h b/lib/libc/musl/arch/powerpc/pthread_arch.h similarity index 100% rename from libc/musl/arch/powerpc/pthread_arch.h rename to lib/libc/musl/arch/powerpc/pthread_arch.h diff --git a/libc/musl/arch/powerpc/reloc.h b/lib/libc/musl/arch/powerpc/reloc.h similarity index 100% rename from libc/musl/arch/powerpc/reloc.h rename to lib/libc/musl/arch/powerpc/reloc.h diff --git a/libc/musl/arch/powerpc/syscall_arch.h b/lib/libc/musl/arch/powerpc/syscall_arch.h similarity index 100% rename from libc/musl/arch/powerpc/syscall_arch.h rename to lib/libc/musl/arch/powerpc/syscall_arch.h diff --git a/libc/musl/arch/powerpc64/atomic_arch.h b/lib/libc/musl/arch/powerpc64/atomic_arch.h similarity index 100% rename from libc/musl/arch/powerpc64/atomic_arch.h rename to lib/libc/musl/arch/powerpc64/atomic_arch.h diff --git a/libc/musl/arch/powerpc64/bits/alltypes.h.in b/lib/libc/musl/arch/powerpc64/bits/alltypes.h.in similarity index 100% rename from libc/musl/arch/powerpc64/bits/alltypes.h.in rename to lib/libc/musl/arch/powerpc64/bits/alltypes.h.in diff --git a/libc/musl/arch/powerpc64/bits/endian.h b/lib/libc/musl/arch/powerpc64/bits/endian.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/endian.h rename to lib/libc/musl/arch/powerpc64/bits/endian.h diff --git a/libc/musl/arch/powerpc64/bits/errno.h b/lib/libc/musl/arch/powerpc64/bits/errno.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/errno.h rename to lib/libc/musl/arch/powerpc64/bits/errno.h diff --git a/libc/musl/arch/powerpc64/bits/fcntl.h b/lib/libc/musl/arch/powerpc64/bits/fcntl.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/fcntl.h rename to lib/libc/musl/arch/powerpc64/bits/fcntl.h diff --git a/libc/musl/arch/powerpc64/bits/fenv.h b/lib/libc/musl/arch/powerpc64/bits/fenv.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/fenv.h rename to lib/libc/musl/arch/powerpc64/bits/fenv.h diff --git a/libc/musl/arch/powerpc64/bits/float.h b/lib/libc/musl/arch/powerpc64/bits/float.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/float.h rename to lib/libc/musl/arch/powerpc64/bits/float.h diff --git a/libc/musl/arch/powerpc64/bits/hwcap.h b/lib/libc/musl/arch/powerpc64/bits/hwcap.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/hwcap.h rename to lib/libc/musl/arch/powerpc64/bits/hwcap.h diff --git a/libc/musl/arch/powerpc64/bits/ioctl.h b/lib/libc/musl/arch/powerpc64/bits/ioctl.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/ioctl.h rename to lib/libc/musl/arch/powerpc64/bits/ioctl.h diff --git a/libc/musl/arch/powerpc64/bits/ipc.h b/lib/libc/musl/arch/powerpc64/bits/ipc.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/ipc.h rename to lib/libc/musl/arch/powerpc64/bits/ipc.h diff --git a/libc/musl/arch/powerpc64/bits/limits.h b/lib/libc/musl/arch/powerpc64/bits/limits.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/limits.h rename to lib/libc/musl/arch/powerpc64/bits/limits.h diff --git a/libc/musl/arch/powerpc64/bits/mman.h b/lib/libc/musl/arch/powerpc64/bits/mman.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/mman.h rename to lib/libc/musl/arch/powerpc64/bits/mman.h diff --git a/libc/musl/arch/powerpc64/bits/msg.h b/lib/libc/musl/arch/powerpc64/bits/msg.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/msg.h rename to lib/libc/musl/arch/powerpc64/bits/msg.h diff --git a/libc/musl/arch/powerpc64/bits/posix.h b/lib/libc/musl/arch/powerpc64/bits/posix.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/posix.h rename to lib/libc/musl/arch/powerpc64/bits/posix.h diff --git a/libc/musl/arch/powerpc64/bits/ptrace.h b/lib/libc/musl/arch/powerpc64/bits/ptrace.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/ptrace.h rename to lib/libc/musl/arch/powerpc64/bits/ptrace.h diff --git a/libc/musl/arch/powerpc64/bits/reg.h b/lib/libc/musl/arch/powerpc64/bits/reg.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/reg.h rename to lib/libc/musl/arch/powerpc64/bits/reg.h diff --git a/libc/musl/arch/powerpc64/bits/sem.h b/lib/libc/musl/arch/powerpc64/bits/sem.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/sem.h rename to lib/libc/musl/arch/powerpc64/bits/sem.h diff --git a/libc/musl/arch/powerpc64/bits/setjmp.h b/lib/libc/musl/arch/powerpc64/bits/setjmp.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/setjmp.h rename to lib/libc/musl/arch/powerpc64/bits/setjmp.h diff --git a/libc/musl/arch/powerpc64/bits/shm.h b/lib/libc/musl/arch/powerpc64/bits/shm.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/shm.h rename to lib/libc/musl/arch/powerpc64/bits/shm.h diff --git a/libc/musl/arch/powerpc64/bits/signal.h b/lib/libc/musl/arch/powerpc64/bits/signal.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/signal.h rename to lib/libc/musl/arch/powerpc64/bits/signal.h diff --git a/libc/musl/arch/powerpc64/bits/socket.h b/lib/libc/musl/arch/powerpc64/bits/socket.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/socket.h rename to lib/libc/musl/arch/powerpc64/bits/socket.h diff --git a/libc/musl/arch/powerpc64/bits/stat.h b/lib/libc/musl/arch/powerpc64/bits/stat.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/stat.h rename to lib/libc/musl/arch/powerpc64/bits/stat.h diff --git a/libc/musl/arch/powerpc64/bits/stdint.h b/lib/libc/musl/arch/powerpc64/bits/stdint.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/stdint.h rename to lib/libc/musl/arch/powerpc64/bits/stdint.h diff --git a/libc/musl/arch/powerpc64/bits/syscall.h.in b/lib/libc/musl/arch/powerpc64/bits/syscall.h.in similarity index 100% rename from libc/musl/arch/powerpc64/bits/syscall.h.in rename to lib/libc/musl/arch/powerpc64/bits/syscall.h.in diff --git a/libc/musl/arch/powerpc64/bits/termios.h b/lib/libc/musl/arch/powerpc64/bits/termios.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/termios.h rename to lib/libc/musl/arch/powerpc64/bits/termios.h diff --git a/libc/musl/arch/powerpc64/bits/user.h b/lib/libc/musl/arch/powerpc64/bits/user.h similarity index 100% rename from libc/musl/arch/powerpc64/bits/user.h rename to lib/libc/musl/arch/powerpc64/bits/user.h diff --git a/libc/musl/arch/powerpc64/crt_arch.h b/lib/libc/musl/arch/powerpc64/crt_arch.h similarity index 100% rename from libc/musl/arch/powerpc64/crt_arch.h rename to lib/libc/musl/arch/powerpc64/crt_arch.h diff --git a/libc/musl/arch/powerpc64/pthread_arch.h b/lib/libc/musl/arch/powerpc64/pthread_arch.h similarity index 100% rename from libc/musl/arch/powerpc64/pthread_arch.h rename to lib/libc/musl/arch/powerpc64/pthread_arch.h diff --git a/libc/musl/arch/powerpc64/reloc.h b/lib/libc/musl/arch/powerpc64/reloc.h similarity index 100% rename from libc/musl/arch/powerpc64/reloc.h rename to lib/libc/musl/arch/powerpc64/reloc.h diff --git a/libc/musl/arch/powerpc64/syscall_arch.h b/lib/libc/musl/arch/powerpc64/syscall_arch.h similarity index 100% rename from libc/musl/arch/powerpc64/syscall_arch.h rename to lib/libc/musl/arch/powerpc64/syscall_arch.h diff --git a/libc/musl/arch/s390x/atomic_arch.h b/lib/libc/musl/arch/s390x/atomic_arch.h similarity index 100% rename from libc/musl/arch/s390x/atomic_arch.h rename to lib/libc/musl/arch/s390x/atomic_arch.h diff --git a/libc/musl/arch/s390x/bits/alltypes.h.in b/lib/libc/musl/arch/s390x/bits/alltypes.h.in similarity index 100% rename from libc/musl/arch/s390x/bits/alltypes.h.in rename to lib/libc/musl/arch/s390x/bits/alltypes.h.in diff --git a/libc/musl/arch/s390x/bits/endian.h b/lib/libc/musl/arch/s390x/bits/endian.h similarity index 100% rename from libc/musl/arch/s390x/bits/endian.h rename to lib/libc/musl/arch/s390x/bits/endian.h diff --git a/libc/musl/arch/s390x/bits/fcntl.h b/lib/libc/musl/arch/s390x/bits/fcntl.h similarity index 100% rename from libc/musl/arch/s390x/bits/fcntl.h rename to lib/libc/musl/arch/s390x/bits/fcntl.h diff --git a/libc/musl/arch/s390x/bits/fenv.h b/lib/libc/musl/arch/s390x/bits/fenv.h similarity index 100% rename from libc/musl/arch/s390x/bits/fenv.h rename to lib/libc/musl/arch/s390x/bits/fenv.h diff --git a/libc/musl/arch/s390x/bits/float.h b/lib/libc/musl/arch/s390x/bits/float.h similarity index 100% rename from libc/musl/arch/s390x/bits/float.h rename to lib/libc/musl/arch/s390x/bits/float.h diff --git a/libc/musl/arch/s390x/bits/hwcap.h b/lib/libc/musl/arch/s390x/bits/hwcap.h similarity index 100% rename from libc/musl/arch/s390x/bits/hwcap.h rename to lib/libc/musl/arch/s390x/bits/hwcap.h diff --git a/libc/musl/arch/s390x/bits/ioctl_fix.h b/lib/libc/musl/arch/s390x/bits/ioctl_fix.h similarity index 100% rename from libc/musl/arch/s390x/bits/ioctl_fix.h rename to lib/libc/musl/arch/s390x/bits/ioctl_fix.h diff --git a/libc/musl/arch/s390x/bits/ipc.h b/lib/libc/musl/arch/s390x/bits/ipc.h similarity index 100% rename from libc/musl/arch/s390x/bits/ipc.h rename to lib/libc/musl/arch/s390x/bits/ipc.h diff --git a/libc/musl/arch/s390x/bits/limits.h b/lib/libc/musl/arch/s390x/bits/limits.h similarity index 100% rename from libc/musl/arch/s390x/bits/limits.h rename to lib/libc/musl/arch/s390x/bits/limits.h diff --git a/libc/musl/arch/s390x/bits/link.h b/lib/libc/musl/arch/s390x/bits/link.h similarity index 100% rename from libc/musl/arch/s390x/bits/link.h rename to lib/libc/musl/arch/s390x/bits/link.h diff --git a/libc/musl/arch/s390x/bits/msg.h b/lib/libc/musl/arch/s390x/bits/msg.h similarity index 100% rename from libc/musl/arch/s390x/bits/msg.h rename to lib/libc/musl/arch/s390x/bits/msg.h diff --git a/libc/musl/arch/s390x/bits/posix.h b/lib/libc/musl/arch/s390x/bits/posix.h similarity index 100% rename from libc/musl/arch/s390x/bits/posix.h rename to lib/libc/musl/arch/s390x/bits/posix.h diff --git a/libc/musl/arch/s390x/bits/ptrace.h b/lib/libc/musl/arch/s390x/bits/ptrace.h similarity index 100% rename from libc/musl/arch/s390x/bits/ptrace.h rename to lib/libc/musl/arch/s390x/bits/ptrace.h diff --git a/libc/musl/arch/s390x/bits/reg.h b/lib/libc/musl/arch/s390x/bits/reg.h similarity index 100% rename from libc/musl/arch/s390x/bits/reg.h rename to lib/libc/musl/arch/s390x/bits/reg.h diff --git a/libc/musl/arch/s390x/bits/sem.h b/lib/libc/musl/arch/s390x/bits/sem.h similarity index 100% rename from libc/musl/arch/s390x/bits/sem.h rename to lib/libc/musl/arch/s390x/bits/sem.h diff --git a/libc/musl/arch/s390x/bits/setjmp.h b/lib/libc/musl/arch/s390x/bits/setjmp.h similarity index 100% rename from libc/musl/arch/s390x/bits/setjmp.h rename to lib/libc/musl/arch/s390x/bits/setjmp.h diff --git a/libc/musl/arch/s390x/bits/shm.h b/lib/libc/musl/arch/s390x/bits/shm.h similarity index 100% rename from libc/musl/arch/s390x/bits/shm.h rename to lib/libc/musl/arch/s390x/bits/shm.h diff --git a/libc/musl/arch/s390x/bits/signal.h b/lib/libc/musl/arch/s390x/bits/signal.h similarity index 100% rename from libc/musl/arch/s390x/bits/signal.h rename to lib/libc/musl/arch/s390x/bits/signal.h diff --git a/libc/musl/arch/s390x/bits/socket.h b/lib/libc/musl/arch/s390x/bits/socket.h similarity index 100% rename from libc/musl/arch/s390x/bits/socket.h rename to lib/libc/musl/arch/s390x/bits/socket.h diff --git a/libc/musl/arch/s390x/bits/stat.h b/lib/libc/musl/arch/s390x/bits/stat.h similarity index 100% rename from libc/musl/arch/s390x/bits/stat.h rename to lib/libc/musl/arch/s390x/bits/stat.h diff --git a/libc/musl/arch/s390x/bits/statfs.h b/lib/libc/musl/arch/s390x/bits/statfs.h similarity index 100% rename from libc/musl/arch/s390x/bits/statfs.h rename to lib/libc/musl/arch/s390x/bits/statfs.h diff --git a/libc/musl/arch/s390x/bits/stdint.h b/lib/libc/musl/arch/s390x/bits/stdint.h similarity index 100% rename from libc/musl/arch/s390x/bits/stdint.h rename to lib/libc/musl/arch/s390x/bits/stdint.h diff --git a/libc/musl/arch/s390x/bits/syscall.h.in b/lib/libc/musl/arch/s390x/bits/syscall.h.in similarity index 100% rename from libc/musl/arch/s390x/bits/syscall.h.in rename to lib/libc/musl/arch/s390x/bits/syscall.h.in diff --git a/libc/musl/arch/s390x/bits/user.h b/lib/libc/musl/arch/s390x/bits/user.h similarity index 100% rename from libc/musl/arch/s390x/bits/user.h rename to lib/libc/musl/arch/s390x/bits/user.h diff --git a/libc/musl/arch/s390x/crt_arch.h b/lib/libc/musl/arch/s390x/crt_arch.h similarity index 100% rename from libc/musl/arch/s390x/crt_arch.h rename to lib/libc/musl/arch/s390x/crt_arch.h diff --git a/libc/musl/arch/s390x/pthread_arch.h b/lib/libc/musl/arch/s390x/pthread_arch.h similarity index 100% rename from libc/musl/arch/s390x/pthread_arch.h rename to lib/libc/musl/arch/s390x/pthread_arch.h diff --git a/libc/musl/arch/s390x/reloc.h b/lib/libc/musl/arch/s390x/reloc.h similarity index 100% rename from libc/musl/arch/s390x/reloc.h rename to lib/libc/musl/arch/s390x/reloc.h diff --git a/libc/musl/arch/s390x/syscall_arch.h b/lib/libc/musl/arch/s390x/syscall_arch.h similarity index 100% rename from libc/musl/arch/s390x/syscall_arch.h rename to lib/libc/musl/arch/s390x/syscall_arch.h diff --git a/libc/musl/arch/x86_64/atomic_arch.h b/lib/libc/musl/arch/x86_64/atomic_arch.h similarity index 100% rename from libc/musl/arch/x86_64/atomic_arch.h rename to lib/libc/musl/arch/x86_64/atomic_arch.h diff --git a/libc/musl/arch/x86_64/bits/alltypes.h.in b/lib/libc/musl/arch/x86_64/bits/alltypes.h.in similarity index 100% rename from libc/musl/arch/x86_64/bits/alltypes.h.in rename to lib/libc/musl/arch/x86_64/bits/alltypes.h.in diff --git a/libc/musl/arch/x86_64/bits/endian.h b/lib/libc/musl/arch/x86_64/bits/endian.h similarity index 100% rename from libc/musl/arch/x86_64/bits/endian.h rename to lib/libc/musl/arch/x86_64/bits/endian.h diff --git a/libc/musl/arch/x86_64/bits/fcntl.h b/lib/libc/musl/arch/x86_64/bits/fcntl.h similarity index 100% rename from libc/musl/arch/x86_64/bits/fcntl.h rename to lib/libc/musl/arch/x86_64/bits/fcntl.h diff --git a/libc/musl/arch/x86_64/bits/fenv.h b/lib/libc/musl/arch/x86_64/bits/fenv.h similarity index 100% rename from libc/musl/arch/x86_64/bits/fenv.h rename to lib/libc/musl/arch/x86_64/bits/fenv.h diff --git a/libc/musl/arch/x86_64/bits/float.h b/lib/libc/musl/arch/x86_64/bits/float.h similarity index 100% rename from libc/musl/arch/x86_64/bits/float.h rename to lib/libc/musl/arch/x86_64/bits/float.h diff --git a/libc/musl/arch/x86_64/bits/io.h b/lib/libc/musl/arch/x86_64/bits/io.h similarity index 100% rename from libc/musl/arch/x86_64/bits/io.h rename to lib/libc/musl/arch/x86_64/bits/io.h diff --git a/libc/musl/arch/x86_64/bits/ipc.h b/lib/libc/musl/arch/x86_64/bits/ipc.h similarity index 100% rename from libc/musl/arch/x86_64/bits/ipc.h rename to lib/libc/musl/arch/x86_64/bits/ipc.h diff --git a/libc/musl/arch/x86_64/bits/limits.h b/lib/libc/musl/arch/x86_64/bits/limits.h similarity index 100% rename from libc/musl/arch/x86_64/bits/limits.h rename to lib/libc/musl/arch/x86_64/bits/limits.h diff --git a/libc/musl/arch/x86_64/bits/mman.h b/lib/libc/musl/arch/x86_64/bits/mman.h similarity index 100% rename from libc/musl/arch/x86_64/bits/mman.h rename to lib/libc/musl/arch/x86_64/bits/mman.h diff --git a/libc/musl/arch/x86_64/bits/msg.h b/lib/libc/musl/arch/x86_64/bits/msg.h similarity index 100% rename from libc/musl/arch/x86_64/bits/msg.h rename to lib/libc/musl/arch/x86_64/bits/msg.h diff --git a/libc/musl/arch/x86_64/bits/posix.h b/lib/libc/musl/arch/x86_64/bits/posix.h similarity index 100% rename from libc/musl/arch/x86_64/bits/posix.h rename to lib/libc/musl/arch/x86_64/bits/posix.h diff --git a/libc/musl/arch/x86_64/bits/ptrace.h b/lib/libc/musl/arch/x86_64/bits/ptrace.h similarity index 100% rename from libc/musl/arch/x86_64/bits/ptrace.h rename to lib/libc/musl/arch/x86_64/bits/ptrace.h diff --git a/libc/musl/arch/x86_64/bits/reg.h b/lib/libc/musl/arch/x86_64/bits/reg.h similarity index 100% rename from libc/musl/arch/x86_64/bits/reg.h rename to lib/libc/musl/arch/x86_64/bits/reg.h diff --git a/libc/musl/arch/x86_64/bits/setjmp.h b/lib/libc/musl/arch/x86_64/bits/setjmp.h similarity index 100% rename from libc/musl/arch/x86_64/bits/setjmp.h rename to lib/libc/musl/arch/x86_64/bits/setjmp.h diff --git a/libc/musl/arch/x86_64/bits/shm.h b/lib/libc/musl/arch/x86_64/bits/shm.h similarity index 100% rename from libc/musl/arch/x86_64/bits/shm.h rename to lib/libc/musl/arch/x86_64/bits/shm.h diff --git a/libc/musl/arch/x86_64/bits/signal.h b/lib/libc/musl/arch/x86_64/bits/signal.h similarity index 100% rename from libc/musl/arch/x86_64/bits/signal.h rename to lib/libc/musl/arch/x86_64/bits/signal.h diff --git a/libc/musl/arch/x86_64/bits/socket.h b/lib/libc/musl/arch/x86_64/bits/socket.h similarity index 100% rename from libc/musl/arch/x86_64/bits/socket.h rename to lib/libc/musl/arch/x86_64/bits/socket.h diff --git a/libc/musl/arch/x86_64/bits/stat.h b/lib/libc/musl/arch/x86_64/bits/stat.h similarity index 100% rename from libc/musl/arch/x86_64/bits/stat.h rename to lib/libc/musl/arch/x86_64/bits/stat.h diff --git a/libc/musl/arch/x86_64/bits/stdint.h b/lib/libc/musl/arch/x86_64/bits/stdint.h similarity index 100% rename from libc/musl/arch/x86_64/bits/stdint.h rename to lib/libc/musl/arch/x86_64/bits/stdint.h diff --git a/libc/musl/arch/x86_64/bits/syscall.h.in b/lib/libc/musl/arch/x86_64/bits/syscall.h.in similarity index 100% rename from libc/musl/arch/x86_64/bits/syscall.h.in rename to lib/libc/musl/arch/x86_64/bits/syscall.h.in diff --git a/libc/musl/arch/x86_64/bits/user.h b/lib/libc/musl/arch/x86_64/bits/user.h similarity index 100% rename from libc/musl/arch/x86_64/bits/user.h rename to lib/libc/musl/arch/x86_64/bits/user.h diff --git a/libc/musl/arch/x86_64/crt_arch.h b/lib/libc/musl/arch/x86_64/crt_arch.h similarity index 100% rename from libc/musl/arch/x86_64/crt_arch.h rename to lib/libc/musl/arch/x86_64/crt_arch.h diff --git a/libc/musl/arch/x86_64/ksigaction.h b/lib/libc/musl/arch/x86_64/ksigaction.h similarity index 100% rename from libc/musl/arch/x86_64/ksigaction.h rename to lib/libc/musl/arch/x86_64/ksigaction.h diff --git a/libc/musl/arch/x86_64/pthread_arch.h b/lib/libc/musl/arch/x86_64/pthread_arch.h similarity index 100% rename from libc/musl/arch/x86_64/pthread_arch.h rename to lib/libc/musl/arch/x86_64/pthread_arch.h diff --git a/libc/musl/arch/x86_64/reloc.h b/lib/libc/musl/arch/x86_64/reloc.h similarity index 100% rename from libc/musl/arch/x86_64/reloc.h rename to lib/libc/musl/arch/x86_64/reloc.h diff --git a/libc/musl/arch/x86_64/syscall_arch.h b/lib/libc/musl/arch/x86_64/syscall_arch.h similarity index 100% rename from libc/musl/arch/x86_64/syscall_arch.h rename to lib/libc/musl/arch/x86_64/syscall_arch.h diff --git a/libc/musl/crt/Scrt1.c b/lib/libc/musl/crt/Scrt1.c similarity index 100% rename from libc/musl/crt/Scrt1.c rename to lib/libc/musl/crt/Scrt1.c diff --git a/libc/musl/crt/aarch64/crti.s b/lib/libc/musl/crt/aarch64/crti.s similarity index 100% rename from libc/musl/crt/aarch64/crti.s rename to lib/libc/musl/crt/aarch64/crti.s diff --git a/libc/musl/crt/aarch64/crtn.s b/lib/libc/musl/crt/aarch64/crtn.s similarity index 100% rename from libc/musl/crt/aarch64/crtn.s rename to lib/libc/musl/crt/aarch64/crtn.s diff --git a/libc/musl/crt/arm/crti.s b/lib/libc/musl/crt/arm/crti.s similarity index 100% rename from libc/musl/crt/arm/crti.s rename to lib/libc/musl/crt/arm/crti.s diff --git a/libc/musl/crt/arm/crtn.s b/lib/libc/musl/crt/arm/crtn.s similarity index 100% rename from libc/musl/crt/arm/crtn.s rename to lib/libc/musl/crt/arm/crtn.s diff --git a/libc/musl/crt/crt1.c b/lib/libc/musl/crt/crt1.c similarity index 100% rename from libc/musl/crt/crt1.c rename to lib/libc/musl/crt/crt1.c diff --git a/libc/musl/crt/crti.c b/lib/libc/musl/crt/crti.c similarity index 100% rename from libc/musl/crt/crti.c rename to lib/libc/musl/crt/crti.c diff --git a/libc/musl/crt/crtn.c b/lib/libc/musl/crt/crtn.c similarity index 100% rename from libc/musl/crt/crtn.c rename to lib/libc/musl/crt/crtn.c diff --git a/libc/musl/crt/i386/crti.s b/lib/libc/musl/crt/i386/crti.s similarity index 100% rename from libc/musl/crt/i386/crti.s rename to lib/libc/musl/crt/i386/crti.s diff --git a/libc/musl/crt/i386/crtn.s b/lib/libc/musl/crt/i386/crtn.s similarity index 100% rename from libc/musl/crt/i386/crtn.s rename to lib/libc/musl/crt/i386/crtn.s diff --git a/libc/musl/crt/microblaze/crti.s b/lib/libc/musl/crt/microblaze/crti.s similarity index 100% rename from libc/musl/crt/microblaze/crti.s rename to lib/libc/musl/crt/microblaze/crti.s diff --git a/libc/musl/crt/microblaze/crtn.s b/lib/libc/musl/crt/microblaze/crtn.s similarity index 100% rename from libc/musl/crt/microblaze/crtn.s rename to lib/libc/musl/crt/microblaze/crtn.s diff --git a/libc/musl/crt/mips/crti.s b/lib/libc/musl/crt/mips/crti.s similarity index 100% rename from libc/musl/crt/mips/crti.s rename to lib/libc/musl/crt/mips/crti.s diff --git a/libc/musl/crt/mips/crtn.s b/lib/libc/musl/crt/mips/crtn.s similarity index 100% rename from libc/musl/crt/mips/crtn.s rename to lib/libc/musl/crt/mips/crtn.s diff --git a/libc/musl/crt/mips64/crti.s b/lib/libc/musl/crt/mips64/crti.s similarity index 100% rename from libc/musl/crt/mips64/crti.s rename to lib/libc/musl/crt/mips64/crti.s diff --git a/libc/musl/crt/mips64/crtn.s b/lib/libc/musl/crt/mips64/crtn.s similarity index 100% rename from libc/musl/crt/mips64/crtn.s rename to lib/libc/musl/crt/mips64/crtn.s diff --git a/libc/musl/crt/mipsn32/crti.s b/lib/libc/musl/crt/mipsn32/crti.s similarity index 100% rename from libc/musl/crt/mipsn32/crti.s rename to lib/libc/musl/crt/mipsn32/crti.s diff --git a/libc/musl/crt/mipsn32/crtn.s b/lib/libc/musl/crt/mipsn32/crtn.s similarity index 100% rename from libc/musl/crt/mipsn32/crtn.s rename to lib/libc/musl/crt/mipsn32/crtn.s diff --git a/libc/musl/crt/or1k/crti.s b/lib/libc/musl/crt/or1k/crti.s similarity index 100% rename from libc/musl/crt/or1k/crti.s rename to lib/libc/musl/crt/or1k/crti.s diff --git a/libc/musl/crt/or1k/crtn.s b/lib/libc/musl/crt/or1k/crtn.s similarity index 100% rename from libc/musl/crt/or1k/crtn.s rename to lib/libc/musl/crt/or1k/crtn.s diff --git a/libc/musl/crt/powerpc/crti.s b/lib/libc/musl/crt/powerpc/crti.s similarity index 100% rename from libc/musl/crt/powerpc/crti.s rename to lib/libc/musl/crt/powerpc/crti.s diff --git a/libc/musl/crt/powerpc/crtn.s b/lib/libc/musl/crt/powerpc/crtn.s similarity index 100% rename from libc/musl/crt/powerpc/crtn.s rename to lib/libc/musl/crt/powerpc/crtn.s diff --git a/libc/musl/crt/powerpc64/crti.s b/lib/libc/musl/crt/powerpc64/crti.s similarity index 100% rename from libc/musl/crt/powerpc64/crti.s rename to lib/libc/musl/crt/powerpc64/crti.s diff --git a/libc/musl/crt/powerpc64/crtn.s b/lib/libc/musl/crt/powerpc64/crtn.s similarity index 100% rename from libc/musl/crt/powerpc64/crtn.s rename to lib/libc/musl/crt/powerpc64/crtn.s diff --git a/libc/musl/crt/rcrt1.c b/lib/libc/musl/crt/rcrt1.c similarity index 100% rename from libc/musl/crt/rcrt1.c rename to lib/libc/musl/crt/rcrt1.c diff --git a/libc/musl/crt/s390x/crti.s b/lib/libc/musl/crt/s390x/crti.s similarity index 100% rename from libc/musl/crt/s390x/crti.s rename to lib/libc/musl/crt/s390x/crti.s diff --git a/libc/musl/crt/s390x/crtn.s b/lib/libc/musl/crt/s390x/crtn.s similarity index 100% rename from libc/musl/crt/s390x/crtn.s rename to lib/libc/musl/crt/s390x/crtn.s diff --git a/libc/musl/crt/sh/crti.s b/lib/libc/musl/crt/sh/crti.s similarity index 100% rename from libc/musl/crt/sh/crti.s rename to lib/libc/musl/crt/sh/crti.s diff --git a/libc/musl/crt/sh/crtn.s b/lib/libc/musl/crt/sh/crtn.s similarity index 100% rename from libc/musl/crt/sh/crtn.s rename to lib/libc/musl/crt/sh/crtn.s diff --git a/libc/musl/crt/x32/crti.s b/lib/libc/musl/crt/x32/crti.s similarity index 100% rename from libc/musl/crt/x32/crti.s rename to lib/libc/musl/crt/x32/crti.s diff --git a/libc/musl/crt/x32/crtn.s b/lib/libc/musl/crt/x32/crtn.s similarity index 100% rename from libc/musl/crt/x32/crtn.s rename to lib/libc/musl/crt/x32/crtn.s diff --git a/libc/musl/crt/x86_64/crti.s b/lib/libc/musl/crt/x86_64/crti.s similarity index 100% rename from libc/musl/crt/x86_64/crti.s rename to lib/libc/musl/crt/x86_64/crti.s diff --git a/libc/musl/crt/x86_64/crtn.s b/lib/libc/musl/crt/x86_64/crtn.s similarity index 100% rename from libc/musl/crt/x86_64/crtn.s rename to lib/libc/musl/crt/x86_64/crtn.s diff --git a/libc/musl/src/aio/aio.c b/lib/libc/musl/src/aio/aio.c similarity index 100% rename from libc/musl/src/aio/aio.c rename to lib/libc/musl/src/aio/aio.c diff --git a/libc/musl/src/aio/aio_suspend.c b/lib/libc/musl/src/aio/aio_suspend.c similarity index 100% rename from libc/musl/src/aio/aio_suspend.c rename to lib/libc/musl/src/aio/aio_suspend.c diff --git a/libc/musl/src/aio/lio_listio.c b/lib/libc/musl/src/aio/lio_listio.c similarity index 100% rename from libc/musl/src/aio/lio_listio.c rename to lib/libc/musl/src/aio/lio_listio.c diff --git a/libc/musl/src/complex/__cexp.c b/lib/libc/musl/src/complex/__cexp.c similarity index 100% rename from libc/musl/src/complex/__cexp.c rename to lib/libc/musl/src/complex/__cexp.c diff --git a/libc/musl/src/complex/__cexpf.c b/lib/libc/musl/src/complex/__cexpf.c similarity index 100% rename from libc/musl/src/complex/__cexpf.c rename to lib/libc/musl/src/complex/__cexpf.c diff --git a/libc/musl/src/complex/cabs.c b/lib/libc/musl/src/complex/cabs.c similarity index 100% rename from libc/musl/src/complex/cabs.c rename to lib/libc/musl/src/complex/cabs.c diff --git a/libc/musl/src/complex/cabsf.c b/lib/libc/musl/src/complex/cabsf.c similarity index 100% rename from libc/musl/src/complex/cabsf.c rename to lib/libc/musl/src/complex/cabsf.c diff --git a/libc/musl/src/complex/cabsl.c b/lib/libc/musl/src/complex/cabsl.c similarity index 100% rename from libc/musl/src/complex/cabsl.c rename to lib/libc/musl/src/complex/cabsl.c diff --git a/libc/musl/src/complex/cacos.c b/lib/libc/musl/src/complex/cacos.c similarity index 100% rename from libc/musl/src/complex/cacos.c rename to lib/libc/musl/src/complex/cacos.c diff --git a/libc/musl/src/complex/cacosf.c b/lib/libc/musl/src/complex/cacosf.c similarity index 100% rename from libc/musl/src/complex/cacosf.c rename to lib/libc/musl/src/complex/cacosf.c diff --git a/libc/musl/src/complex/cacosh.c b/lib/libc/musl/src/complex/cacosh.c similarity index 100% rename from libc/musl/src/complex/cacosh.c rename to lib/libc/musl/src/complex/cacosh.c diff --git a/libc/musl/src/complex/cacoshf.c b/lib/libc/musl/src/complex/cacoshf.c similarity index 100% rename from libc/musl/src/complex/cacoshf.c rename to lib/libc/musl/src/complex/cacoshf.c diff --git a/libc/musl/src/complex/cacoshl.c b/lib/libc/musl/src/complex/cacoshl.c similarity index 100% rename from libc/musl/src/complex/cacoshl.c rename to lib/libc/musl/src/complex/cacoshl.c diff --git a/libc/musl/src/complex/cacosl.c b/lib/libc/musl/src/complex/cacosl.c similarity index 100% rename from libc/musl/src/complex/cacosl.c rename to lib/libc/musl/src/complex/cacosl.c diff --git a/libc/musl/src/complex/carg.c b/lib/libc/musl/src/complex/carg.c similarity index 100% rename from libc/musl/src/complex/carg.c rename to lib/libc/musl/src/complex/carg.c diff --git a/libc/musl/src/complex/cargf.c b/lib/libc/musl/src/complex/cargf.c similarity index 100% rename from libc/musl/src/complex/cargf.c rename to lib/libc/musl/src/complex/cargf.c diff --git a/libc/musl/src/complex/cargl.c b/lib/libc/musl/src/complex/cargl.c similarity index 100% rename from libc/musl/src/complex/cargl.c rename to lib/libc/musl/src/complex/cargl.c diff --git a/libc/musl/src/complex/casin.c b/lib/libc/musl/src/complex/casin.c similarity index 100% rename from libc/musl/src/complex/casin.c rename to lib/libc/musl/src/complex/casin.c diff --git a/libc/musl/src/complex/casinf.c b/lib/libc/musl/src/complex/casinf.c similarity index 100% rename from libc/musl/src/complex/casinf.c rename to lib/libc/musl/src/complex/casinf.c diff --git a/libc/musl/src/complex/casinh.c b/lib/libc/musl/src/complex/casinh.c similarity index 100% rename from libc/musl/src/complex/casinh.c rename to lib/libc/musl/src/complex/casinh.c diff --git a/libc/musl/src/complex/casinhf.c b/lib/libc/musl/src/complex/casinhf.c similarity index 100% rename from libc/musl/src/complex/casinhf.c rename to lib/libc/musl/src/complex/casinhf.c diff --git a/libc/musl/src/complex/casinhl.c b/lib/libc/musl/src/complex/casinhl.c similarity index 100% rename from libc/musl/src/complex/casinhl.c rename to lib/libc/musl/src/complex/casinhl.c diff --git a/libc/musl/src/complex/casinl.c b/lib/libc/musl/src/complex/casinl.c similarity index 100% rename from libc/musl/src/complex/casinl.c rename to lib/libc/musl/src/complex/casinl.c diff --git a/libc/musl/src/complex/catan.c b/lib/libc/musl/src/complex/catan.c similarity index 100% rename from libc/musl/src/complex/catan.c rename to lib/libc/musl/src/complex/catan.c diff --git a/libc/musl/src/complex/catanf.c b/lib/libc/musl/src/complex/catanf.c similarity index 100% rename from libc/musl/src/complex/catanf.c rename to lib/libc/musl/src/complex/catanf.c diff --git a/libc/musl/src/complex/catanh.c b/lib/libc/musl/src/complex/catanh.c similarity index 100% rename from libc/musl/src/complex/catanh.c rename to lib/libc/musl/src/complex/catanh.c diff --git a/libc/musl/src/complex/catanhf.c b/lib/libc/musl/src/complex/catanhf.c similarity index 100% rename from libc/musl/src/complex/catanhf.c rename to lib/libc/musl/src/complex/catanhf.c diff --git a/libc/musl/src/complex/catanhl.c b/lib/libc/musl/src/complex/catanhl.c similarity index 100% rename from libc/musl/src/complex/catanhl.c rename to lib/libc/musl/src/complex/catanhl.c diff --git a/libc/musl/src/complex/catanl.c b/lib/libc/musl/src/complex/catanl.c similarity index 100% rename from libc/musl/src/complex/catanl.c rename to lib/libc/musl/src/complex/catanl.c diff --git a/libc/musl/src/complex/ccos.c b/lib/libc/musl/src/complex/ccos.c similarity index 100% rename from libc/musl/src/complex/ccos.c rename to lib/libc/musl/src/complex/ccos.c diff --git a/libc/musl/src/complex/ccosf.c b/lib/libc/musl/src/complex/ccosf.c similarity index 100% rename from libc/musl/src/complex/ccosf.c rename to lib/libc/musl/src/complex/ccosf.c diff --git a/libc/musl/src/complex/ccosh.c b/lib/libc/musl/src/complex/ccosh.c similarity index 100% rename from libc/musl/src/complex/ccosh.c rename to lib/libc/musl/src/complex/ccosh.c diff --git a/libc/musl/src/complex/ccoshf.c b/lib/libc/musl/src/complex/ccoshf.c similarity index 100% rename from libc/musl/src/complex/ccoshf.c rename to lib/libc/musl/src/complex/ccoshf.c diff --git a/libc/musl/src/complex/ccoshl.c b/lib/libc/musl/src/complex/ccoshl.c similarity index 100% rename from libc/musl/src/complex/ccoshl.c rename to lib/libc/musl/src/complex/ccoshl.c diff --git a/libc/musl/src/complex/ccosl.c b/lib/libc/musl/src/complex/ccosl.c similarity index 100% rename from libc/musl/src/complex/ccosl.c rename to lib/libc/musl/src/complex/ccosl.c diff --git a/libc/musl/src/complex/cexp.c b/lib/libc/musl/src/complex/cexp.c similarity index 100% rename from libc/musl/src/complex/cexp.c rename to lib/libc/musl/src/complex/cexp.c diff --git a/libc/musl/src/complex/cexpf.c b/lib/libc/musl/src/complex/cexpf.c similarity index 100% rename from libc/musl/src/complex/cexpf.c rename to lib/libc/musl/src/complex/cexpf.c diff --git a/libc/musl/src/complex/cexpl.c b/lib/libc/musl/src/complex/cexpl.c similarity index 100% rename from libc/musl/src/complex/cexpl.c rename to lib/libc/musl/src/complex/cexpl.c diff --git a/libc/musl/src/complex/cimag.c b/lib/libc/musl/src/complex/cimag.c similarity index 100% rename from libc/musl/src/complex/cimag.c rename to lib/libc/musl/src/complex/cimag.c diff --git a/libc/musl/src/complex/cimagf.c b/lib/libc/musl/src/complex/cimagf.c similarity index 100% rename from libc/musl/src/complex/cimagf.c rename to lib/libc/musl/src/complex/cimagf.c diff --git a/libc/musl/src/complex/cimagl.c b/lib/libc/musl/src/complex/cimagl.c similarity index 100% rename from libc/musl/src/complex/cimagl.c rename to lib/libc/musl/src/complex/cimagl.c diff --git a/libc/musl/src/complex/clog.c b/lib/libc/musl/src/complex/clog.c similarity index 100% rename from libc/musl/src/complex/clog.c rename to lib/libc/musl/src/complex/clog.c diff --git a/libc/musl/src/complex/clogf.c b/lib/libc/musl/src/complex/clogf.c similarity index 100% rename from libc/musl/src/complex/clogf.c rename to lib/libc/musl/src/complex/clogf.c diff --git a/libc/musl/src/complex/clogl.c b/lib/libc/musl/src/complex/clogl.c similarity index 100% rename from libc/musl/src/complex/clogl.c rename to lib/libc/musl/src/complex/clogl.c diff --git a/libc/musl/src/complex/conj.c b/lib/libc/musl/src/complex/conj.c similarity index 100% rename from libc/musl/src/complex/conj.c rename to lib/libc/musl/src/complex/conj.c diff --git a/libc/musl/src/complex/conjf.c b/lib/libc/musl/src/complex/conjf.c similarity index 100% rename from libc/musl/src/complex/conjf.c rename to lib/libc/musl/src/complex/conjf.c diff --git a/libc/musl/src/complex/conjl.c b/lib/libc/musl/src/complex/conjl.c similarity index 100% rename from libc/musl/src/complex/conjl.c rename to lib/libc/musl/src/complex/conjl.c diff --git a/libc/musl/src/complex/cpow.c b/lib/libc/musl/src/complex/cpow.c similarity index 100% rename from libc/musl/src/complex/cpow.c rename to lib/libc/musl/src/complex/cpow.c diff --git a/libc/musl/src/complex/cpowf.c b/lib/libc/musl/src/complex/cpowf.c similarity index 100% rename from libc/musl/src/complex/cpowf.c rename to lib/libc/musl/src/complex/cpowf.c diff --git a/libc/musl/src/complex/cpowl.c b/lib/libc/musl/src/complex/cpowl.c similarity index 100% rename from libc/musl/src/complex/cpowl.c rename to lib/libc/musl/src/complex/cpowl.c diff --git a/libc/musl/src/complex/cproj.c b/lib/libc/musl/src/complex/cproj.c similarity index 100% rename from libc/musl/src/complex/cproj.c rename to lib/libc/musl/src/complex/cproj.c diff --git a/libc/musl/src/complex/cprojf.c b/lib/libc/musl/src/complex/cprojf.c similarity index 100% rename from libc/musl/src/complex/cprojf.c rename to lib/libc/musl/src/complex/cprojf.c diff --git a/libc/musl/src/complex/cprojl.c b/lib/libc/musl/src/complex/cprojl.c similarity index 100% rename from libc/musl/src/complex/cprojl.c rename to lib/libc/musl/src/complex/cprojl.c diff --git a/libc/musl/src/complex/creal.c b/lib/libc/musl/src/complex/creal.c similarity index 100% rename from libc/musl/src/complex/creal.c rename to lib/libc/musl/src/complex/creal.c diff --git a/libc/musl/src/complex/crealf.c b/lib/libc/musl/src/complex/crealf.c similarity index 100% rename from libc/musl/src/complex/crealf.c rename to lib/libc/musl/src/complex/crealf.c diff --git a/libc/musl/src/complex/creall.c b/lib/libc/musl/src/complex/creall.c similarity index 100% rename from libc/musl/src/complex/creall.c rename to lib/libc/musl/src/complex/creall.c diff --git a/libc/musl/src/complex/csin.c b/lib/libc/musl/src/complex/csin.c similarity index 100% rename from libc/musl/src/complex/csin.c rename to lib/libc/musl/src/complex/csin.c diff --git a/libc/musl/src/complex/csinf.c b/lib/libc/musl/src/complex/csinf.c similarity index 100% rename from libc/musl/src/complex/csinf.c rename to lib/libc/musl/src/complex/csinf.c diff --git a/libc/musl/src/complex/csinh.c b/lib/libc/musl/src/complex/csinh.c similarity index 100% rename from libc/musl/src/complex/csinh.c rename to lib/libc/musl/src/complex/csinh.c diff --git a/libc/musl/src/complex/csinhf.c b/lib/libc/musl/src/complex/csinhf.c similarity index 100% rename from libc/musl/src/complex/csinhf.c rename to lib/libc/musl/src/complex/csinhf.c diff --git a/libc/musl/src/complex/csinhl.c b/lib/libc/musl/src/complex/csinhl.c similarity index 100% rename from libc/musl/src/complex/csinhl.c rename to lib/libc/musl/src/complex/csinhl.c diff --git a/libc/musl/src/complex/csinl.c b/lib/libc/musl/src/complex/csinl.c similarity index 100% rename from libc/musl/src/complex/csinl.c rename to lib/libc/musl/src/complex/csinl.c diff --git a/libc/musl/src/complex/csqrt.c b/lib/libc/musl/src/complex/csqrt.c similarity index 100% rename from libc/musl/src/complex/csqrt.c rename to lib/libc/musl/src/complex/csqrt.c diff --git a/libc/musl/src/complex/csqrtf.c b/lib/libc/musl/src/complex/csqrtf.c similarity index 100% rename from libc/musl/src/complex/csqrtf.c rename to lib/libc/musl/src/complex/csqrtf.c diff --git a/libc/musl/src/complex/csqrtl.c b/lib/libc/musl/src/complex/csqrtl.c similarity index 100% rename from libc/musl/src/complex/csqrtl.c rename to lib/libc/musl/src/complex/csqrtl.c diff --git a/libc/musl/src/complex/ctan.c b/lib/libc/musl/src/complex/ctan.c similarity index 100% rename from libc/musl/src/complex/ctan.c rename to lib/libc/musl/src/complex/ctan.c diff --git a/libc/musl/src/complex/ctanf.c b/lib/libc/musl/src/complex/ctanf.c similarity index 100% rename from libc/musl/src/complex/ctanf.c rename to lib/libc/musl/src/complex/ctanf.c diff --git a/libc/musl/src/complex/ctanh.c b/lib/libc/musl/src/complex/ctanh.c similarity index 100% rename from libc/musl/src/complex/ctanh.c rename to lib/libc/musl/src/complex/ctanh.c diff --git a/libc/musl/src/complex/ctanhf.c b/lib/libc/musl/src/complex/ctanhf.c similarity index 100% rename from libc/musl/src/complex/ctanhf.c rename to lib/libc/musl/src/complex/ctanhf.c diff --git a/libc/musl/src/complex/ctanhl.c b/lib/libc/musl/src/complex/ctanhl.c similarity index 100% rename from libc/musl/src/complex/ctanhl.c rename to lib/libc/musl/src/complex/ctanhl.c diff --git a/libc/musl/src/complex/ctanl.c b/lib/libc/musl/src/complex/ctanl.c similarity index 100% rename from libc/musl/src/complex/ctanl.c rename to lib/libc/musl/src/complex/ctanl.c diff --git a/libc/musl/src/conf/confstr.c b/lib/libc/musl/src/conf/confstr.c similarity index 100% rename from libc/musl/src/conf/confstr.c rename to lib/libc/musl/src/conf/confstr.c diff --git a/libc/musl/src/conf/fpathconf.c b/lib/libc/musl/src/conf/fpathconf.c similarity index 100% rename from libc/musl/src/conf/fpathconf.c rename to lib/libc/musl/src/conf/fpathconf.c diff --git a/libc/musl/src/conf/legacy.c b/lib/libc/musl/src/conf/legacy.c similarity index 100% rename from libc/musl/src/conf/legacy.c rename to lib/libc/musl/src/conf/legacy.c diff --git a/libc/musl/src/conf/pathconf.c b/lib/libc/musl/src/conf/pathconf.c similarity index 100% rename from libc/musl/src/conf/pathconf.c rename to lib/libc/musl/src/conf/pathconf.c diff --git a/libc/musl/src/conf/sysconf.c b/lib/libc/musl/src/conf/sysconf.c similarity index 100% rename from libc/musl/src/conf/sysconf.c rename to lib/libc/musl/src/conf/sysconf.c diff --git a/libc/musl/src/crypt/crypt.c b/lib/libc/musl/src/crypt/crypt.c similarity index 100% rename from libc/musl/src/crypt/crypt.c rename to lib/libc/musl/src/crypt/crypt.c diff --git a/libc/musl/src/crypt/crypt_blowfish.c b/lib/libc/musl/src/crypt/crypt_blowfish.c similarity index 100% rename from libc/musl/src/crypt/crypt_blowfish.c rename to lib/libc/musl/src/crypt/crypt_blowfish.c diff --git a/libc/musl/src/crypt/crypt_des.c b/lib/libc/musl/src/crypt/crypt_des.c similarity index 100% rename from libc/musl/src/crypt/crypt_des.c rename to lib/libc/musl/src/crypt/crypt_des.c diff --git a/libc/musl/src/crypt/crypt_des.h b/lib/libc/musl/src/crypt/crypt_des.h similarity index 100% rename from libc/musl/src/crypt/crypt_des.h rename to lib/libc/musl/src/crypt/crypt_des.h diff --git a/libc/musl/src/crypt/crypt_md5.c b/lib/libc/musl/src/crypt/crypt_md5.c similarity index 100% rename from libc/musl/src/crypt/crypt_md5.c rename to lib/libc/musl/src/crypt/crypt_md5.c diff --git a/libc/musl/src/crypt/crypt_r.c b/lib/libc/musl/src/crypt/crypt_r.c similarity index 100% rename from libc/musl/src/crypt/crypt_r.c rename to lib/libc/musl/src/crypt/crypt_r.c diff --git a/libc/musl/src/crypt/crypt_sha256.c b/lib/libc/musl/src/crypt/crypt_sha256.c similarity index 100% rename from libc/musl/src/crypt/crypt_sha256.c rename to lib/libc/musl/src/crypt/crypt_sha256.c diff --git a/libc/musl/src/crypt/crypt_sha512.c b/lib/libc/musl/src/crypt/crypt_sha512.c similarity index 100% rename from libc/musl/src/crypt/crypt_sha512.c rename to lib/libc/musl/src/crypt/crypt_sha512.c diff --git a/libc/musl/src/crypt/encrypt.c b/lib/libc/musl/src/crypt/encrypt.c similarity index 100% rename from libc/musl/src/crypt/encrypt.c rename to lib/libc/musl/src/crypt/encrypt.c diff --git a/libc/musl/src/ctype/__ctype_b_loc.c b/lib/libc/musl/src/ctype/__ctype_b_loc.c similarity index 100% rename from libc/musl/src/ctype/__ctype_b_loc.c rename to lib/libc/musl/src/ctype/__ctype_b_loc.c diff --git a/libc/musl/src/ctype/__ctype_get_mb_cur_max.c b/lib/libc/musl/src/ctype/__ctype_get_mb_cur_max.c similarity index 100% rename from libc/musl/src/ctype/__ctype_get_mb_cur_max.c rename to lib/libc/musl/src/ctype/__ctype_get_mb_cur_max.c diff --git a/libc/musl/src/ctype/__ctype_tolower_loc.c b/lib/libc/musl/src/ctype/__ctype_tolower_loc.c similarity index 100% rename from libc/musl/src/ctype/__ctype_tolower_loc.c rename to lib/libc/musl/src/ctype/__ctype_tolower_loc.c diff --git a/libc/musl/src/ctype/__ctype_toupper_loc.c b/lib/libc/musl/src/ctype/__ctype_toupper_loc.c similarity index 100% rename from libc/musl/src/ctype/__ctype_toupper_loc.c rename to lib/libc/musl/src/ctype/__ctype_toupper_loc.c diff --git a/libc/musl/src/ctype/alpha.h b/lib/libc/musl/src/ctype/alpha.h similarity index 100% rename from libc/musl/src/ctype/alpha.h rename to lib/libc/musl/src/ctype/alpha.h diff --git a/libc/musl/src/ctype/isalnum.c b/lib/libc/musl/src/ctype/isalnum.c similarity index 100% rename from libc/musl/src/ctype/isalnum.c rename to lib/libc/musl/src/ctype/isalnum.c diff --git a/libc/musl/src/ctype/isalpha.c b/lib/libc/musl/src/ctype/isalpha.c similarity index 100% rename from libc/musl/src/ctype/isalpha.c rename to lib/libc/musl/src/ctype/isalpha.c diff --git a/libc/musl/src/ctype/isascii.c b/lib/libc/musl/src/ctype/isascii.c similarity index 100% rename from libc/musl/src/ctype/isascii.c rename to lib/libc/musl/src/ctype/isascii.c diff --git a/libc/musl/src/ctype/isblank.c b/lib/libc/musl/src/ctype/isblank.c similarity index 100% rename from libc/musl/src/ctype/isblank.c rename to lib/libc/musl/src/ctype/isblank.c diff --git a/libc/musl/src/ctype/iscntrl.c b/lib/libc/musl/src/ctype/iscntrl.c similarity index 100% rename from libc/musl/src/ctype/iscntrl.c rename to lib/libc/musl/src/ctype/iscntrl.c diff --git a/libc/musl/src/ctype/isdigit.c b/lib/libc/musl/src/ctype/isdigit.c similarity index 100% rename from libc/musl/src/ctype/isdigit.c rename to lib/libc/musl/src/ctype/isdigit.c diff --git a/libc/musl/src/ctype/isgraph.c b/lib/libc/musl/src/ctype/isgraph.c similarity index 100% rename from libc/musl/src/ctype/isgraph.c rename to lib/libc/musl/src/ctype/isgraph.c diff --git a/libc/musl/src/ctype/islower.c b/lib/libc/musl/src/ctype/islower.c similarity index 100% rename from libc/musl/src/ctype/islower.c rename to lib/libc/musl/src/ctype/islower.c diff --git a/libc/musl/src/ctype/isprint.c b/lib/libc/musl/src/ctype/isprint.c similarity index 100% rename from libc/musl/src/ctype/isprint.c rename to lib/libc/musl/src/ctype/isprint.c diff --git a/libc/musl/src/ctype/ispunct.c b/lib/libc/musl/src/ctype/ispunct.c similarity index 100% rename from libc/musl/src/ctype/ispunct.c rename to lib/libc/musl/src/ctype/ispunct.c diff --git a/libc/musl/src/ctype/isspace.c b/lib/libc/musl/src/ctype/isspace.c similarity index 100% rename from libc/musl/src/ctype/isspace.c rename to lib/libc/musl/src/ctype/isspace.c diff --git a/libc/musl/src/ctype/isupper.c b/lib/libc/musl/src/ctype/isupper.c similarity index 100% rename from libc/musl/src/ctype/isupper.c rename to lib/libc/musl/src/ctype/isupper.c diff --git a/libc/musl/src/ctype/iswalnum.c b/lib/libc/musl/src/ctype/iswalnum.c similarity index 100% rename from libc/musl/src/ctype/iswalnum.c rename to lib/libc/musl/src/ctype/iswalnum.c diff --git a/libc/musl/src/ctype/iswalpha.c b/lib/libc/musl/src/ctype/iswalpha.c similarity index 100% rename from libc/musl/src/ctype/iswalpha.c rename to lib/libc/musl/src/ctype/iswalpha.c diff --git a/libc/musl/src/ctype/iswblank.c b/lib/libc/musl/src/ctype/iswblank.c similarity index 100% rename from libc/musl/src/ctype/iswblank.c rename to lib/libc/musl/src/ctype/iswblank.c diff --git a/libc/musl/src/ctype/iswcntrl.c b/lib/libc/musl/src/ctype/iswcntrl.c similarity index 100% rename from libc/musl/src/ctype/iswcntrl.c rename to lib/libc/musl/src/ctype/iswcntrl.c diff --git a/libc/musl/src/ctype/iswctype.c b/lib/libc/musl/src/ctype/iswctype.c similarity index 100% rename from libc/musl/src/ctype/iswctype.c rename to lib/libc/musl/src/ctype/iswctype.c diff --git a/libc/musl/src/ctype/iswdigit.c b/lib/libc/musl/src/ctype/iswdigit.c similarity index 100% rename from libc/musl/src/ctype/iswdigit.c rename to lib/libc/musl/src/ctype/iswdigit.c diff --git a/libc/musl/src/ctype/iswgraph.c b/lib/libc/musl/src/ctype/iswgraph.c similarity index 100% rename from libc/musl/src/ctype/iswgraph.c rename to lib/libc/musl/src/ctype/iswgraph.c diff --git a/libc/musl/src/ctype/iswlower.c b/lib/libc/musl/src/ctype/iswlower.c similarity index 100% rename from libc/musl/src/ctype/iswlower.c rename to lib/libc/musl/src/ctype/iswlower.c diff --git a/libc/musl/src/ctype/iswprint.c b/lib/libc/musl/src/ctype/iswprint.c similarity index 100% rename from libc/musl/src/ctype/iswprint.c rename to lib/libc/musl/src/ctype/iswprint.c diff --git a/libc/musl/src/ctype/iswpunct.c b/lib/libc/musl/src/ctype/iswpunct.c similarity index 100% rename from libc/musl/src/ctype/iswpunct.c rename to lib/libc/musl/src/ctype/iswpunct.c diff --git a/libc/musl/src/ctype/iswspace.c b/lib/libc/musl/src/ctype/iswspace.c similarity index 100% rename from libc/musl/src/ctype/iswspace.c rename to lib/libc/musl/src/ctype/iswspace.c diff --git a/libc/musl/src/ctype/iswupper.c b/lib/libc/musl/src/ctype/iswupper.c similarity index 100% rename from libc/musl/src/ctype/iswupper.c rename to lib/libc/musl/src/ctype/iswupper.c diff --git a/libc/musl/src/ctype/iswxdigit.c b/lib/libc/musl/src/ctype/iswxdigit.c similarity index 100% rename from libc/musl/src/ctype/iswxdigit.c rename to lib/libc/musl/src/ctype/iswxdigit.c diff --git a/libc/musl/src/ctype/isxdigit.c b/lib/libc/musl/src/ctype/isxdigit.c similarity index 100% rename from libc/musl/src/ctype/isxdigit.c rename to lib/libc/musl/src/ctype/isxdigit.c diff --git a/libc/musl/src/ctype/nonspacing.h b/lib/libc/musl/src/ctype/nonspacing.h similarity index 100% rename from libc/musl/src/ctype/nonspacing.h rename to lib/libc/musl/src/ctype/nonspacing.h diff --git a/libc/musl/src/ctype/punct.h b/lib/libc/musl/src/ctype/punct.h similarity index 100% rename from libc/musl/src/ctype/punct.h rename to lib/libc/musl/src/ctype/punct.h diff --git a/libc/musl/src/ctype/toascii.c b/lib/libc/musl/src/ctype/toascii.c similarity index 100% rename from libc/musl/src/ctype/toascii.c rename to lib/libc/musl/src/ctype/toascii.c diff --git a/libc/musl/src/ctype/tolower.c b/lib/libc/musl/src/ctype/tolower.c similarity index 100% rename from libc/musl/src/ctype/tolower.c rename to lib/libc/musl/src/ctype/tolower.c diff --git a/libc/musl/src/ctype/toupper.c b/lib/libc/musl/src/ctype/toupper.c similarity index 100% rename from libc/musl/src/ctype/toupper.c rename to lib/libc/musl/src/ctype/toupper.c diff --git a/libc/musl/src/ctype/towctrans.c b/lib/libc/musl/src/ctype/towctrans.c similarity index 100% rename from libc/musl/src/ctype/towctrans.c rename to lib/libc/musl/src/ctype/towctrans.c diff --git a/libc/musl/src/ctype/wcswidth.c b/lib/libc/musl/src/ctype/wcswidth.c similarity index 100% rename from libc/musl/src/ctype/wcswidth.c rename to lib/libc/musl/src/ctype/wcswidth.c diff --git a/libc/musl/src/ctype/wctrans.c b/lib/libc/musl/src/ctype/wctrans.c similarity index 100% rename from libc/musl/src/ctype/wctrans.c rename to lib/libc/musl/src/ctype/wctrans.c diff --git a/libc/musl/src/ctype/wcwidth.c b/lib/libc/musl/src/ctype/wcwidth.c similarity index 100% rename from libc/musl/src/ctype/wcwidth.c rename to lib/libc/musl/src/ctype/wcwidth.c diff --git a/libc/musl/src/ctype/wide.h b/lib/libc/musl/src/ctype/wide.h similarity index 100% rename from libc/musl/src/ctype/wide.h rename to lib/libc/musl/src/ctype/wide.h diff --git a/libc/musl/src/dirent/__dirent.h b/lib/libc/musl/src/dirent/__dirent.h similarity index 100% rename from libc/musl/src/dirent/__dirent.h rename to lib/libc/musl/src/dirent/__dirent.h diff --git a/libc/musl/src/dirent/alphasort.c b/lib/libc/musl/src/dirent/alphasort.c similarity index 100% rename from libc/musl/src/dirent/alphasort.c rename to lib/libc/musl/src/dirent/alphasort.c diff --git a/libc/musl/src/dirent/closedir.c b/lib/libc/musl/src/dirent/closedir.c similarity index 100% rename from libc/musl/src/dirent/closedir.c rename to lib/libc/musl/src/dirent/closedir.c diff --git a/libc/musl/src/dirent/dirfd.c b/lib/libc/musl/src/dirent/dirfd.c similarity index 100% rename from libc/musl/src/dirent/dirfd.c rename to lib/libc/musl/src/dirent/dirfd.c diff --git a/libc/musl/src/dirent/fdopendir.c b/lib/libc/musl/src/dirent/fdopendir.c similarity index 100% rename from libc/musl/src/dirent/fdopendir.c rename to lib/libc/musl/src/dirent/fdopendir.c diff --git a/libc/musl/src/dirent/opendir.c b/lib/libc/musl/src/dirent/opendir.c similarity index 100% rename from libc/musl/src/dirent/opendir.c rename to lib/libc/musl/src/dirent/opendir.c diff --git a/libc/musl/src/dirent/readdir.c b/lib/libc/musl/src/dirent/readdir.c similarity index 100% rename from libc/musl/src/dirent/readdir.c rename to lib/libc/musl/src/dirent/readdir.c diff --git a/libc/musl/src/dirent/readdir_r.c b/lib/libc/musl/src/dirent/readdir_r.c similarity index 100% rename from libc/musl/src/dirent/readdir_r.c rename to lib/libc/musl/src/dirent/readdir_r.c diff --git a/libc/musl/src/dirent/rewinddir.c b/lib/libc/musl/src/dirent/rewinddir.c similarity index 100% rename from libc/musl/src/dirent/rewinddir.c rename to lib/libc/musl/src/dirent/rewinddir.c diff --git a/libc/musl/src/dirent/scandir.c b/lib/libc/musl/src/dirent/scandir.c similarity index 100% rename from libc/musl/src/dirent/scandir.c rename to lib/libc/musl/src/dirent/scandir.c diff --git a/libc/musl/src/dirent/seekdir.c b/lib/libc/musl/src/dirent/seekdir.c similarity index 100% rename from libc/musl/src/dirent/seekdir.c rename to lib/libc/musl/src/dirent/seekdir.c diff --git a/libc/musl/src/dirent/telldir.c b/lib/libc/musl/src/dirent/telldir.c similarity index 100% rename from libc/musl/src/dirent/telldir.c rename to lib/libc/musl/src/dirent/telldir.c diff --git a/libc/musl/src/dirent/versionsort.c b/lib/libc/musl/src/dirent/versionsort.c similarity index 100% rename from libc/musl/src/dirent/versionsort.c rename to lib/libc/musl/src/dirent/versionsort.c diff --git a/libc/musl/src/env/__environ.c b/lib/libc/musl/src/env/__environ.c similarity index 100% rename from libc/musl/src/env/__environ.c rename to lib/libc/musl/src/env/__environ.c diff --git a/libc/musl/src/env/__init_tls.c b/lib/libc/musl/src/env/__init_tls.c similarity index 100% rename from libc/musl/src/env/__init_tls.c rename to lib/libc/musl/src/env/__init_tls.c diff --git a/libc/musl/src/env/__libc_start_main.c b/lib/libc/musl/src/env/__libc_start_main.c similarity index 100% rename from libc/musl/src/env/__libc_start_main.c rename to lib/libc/musl/src/env/__libc_start_main.c diff --git a/libc/musl/src/env/__reset_tls.c b/lib/libc/musl/src/env/__reset_tls.c similarity index 100% rename from libc/musl/src/env/__reset_tls.c rename to lib/libc/musl/src/env/__reset_tls.c diff --git a/libc/musl/src/env/__stack_chk_fail.c b/lib/libc/musl/src/env/__stack_chk_fail.c similarity index 100% rename from libc/musl/src/env/__stack_chk_fail.c rename to lib/libc/musl/src/env/__stack_chk_fail.c diff --git a/libc/musl/src/env/clearenv.c b/lib/libc/musl/src/env/clearenv.c similarity index 100% rename from libc/musl/src/env/clearenv.c rename to lib/libc/musl/src/env/clearenv.c diff --git a/libc/musl/src/env/getenv.c b/lib/libc/musl/src/env/getenv.c similarity index 100% rename from libc/musl/src/env/getenv.c rename to lib/libc/musl/src/env/getenv.c diff --git a/libc/musl/src/env/putenv.c b/lib/libc/musl/src/env/putenv.c similarity index 100% rename from libc/musl/src/env/putenv.c rename to lib/libc/musl/src/env/putenv.c diff --git a/libc/musl/src/env/setenv.c b/lib/libc/musl/src/env/setenv.c similarity index 100% rename from libc/musl/src/env/setenv.c rename to lib/libc/musl/src/env/setenv.c diff --git a/libc/musl/src/env/unsetenv.c b/lib/libc/musl/src/env/unsetenv.c similarity index 100% rename from libc/musl/src/env/unsetenv.c rename to lib/libc/musl/src/env/unsetenv.c diff --git a/libc/musl/src/errno/__errno_location.c b/lib/libc/musl/src/errno/__errno_location.c similarity index 100% rename from libc/musl/src/errno/__errno_location.c rename to lib/libc/musl/src/errno/__errno_location.c diff --git a/libc/musl/src/errno/__strerror.h b/lib/libc/musl/src/errno/__strerror.h similarity index 100% rename from libc/musl/src/errno/__strerror.h rename to lib/libc/musl/src/errno/__strerror.h diff --git a/libc/musl/src/errno/strerror.c b/lib/libc/musl/src/errno/strerror.c similarity index 100% rename from libc/musl/src/errno/strerror.c rename to lib/libc/musl/src/errno/strerror.c diff --git a/libc/musl/src/exit/_Exit.c b/lib/libc/musl/src/exit/_Exit.c similarity index 100% rename from libc/musl/src/exit/_Exit.c rename to lib/libc/musl/src/exit/_Exit.c diff --git a/libc/musl/src/exit/abort.c b/lib/libc/musl/src/exit/abort.c similarity index 100% rename from libc/musl/src/exit/abort.c rename to lib/libc/musl/src/exit/abort.c diff --git a/libc/musl/src/exit/arm/__aeabi_atexit.c b/lib/libc/musl/src/exit/arm/__aeabi_atexit.c similarity index 100% rename from libc/musl/src/exit/arm/__aeabi_atexit.c rename to lib/libc/musl/src/exit/arm/__aeabi_atexit.c diff --git a/libc/musl/src/exit/assert.c b/lib/libc/musl/src/exit/assert.c similarity index 100% rename from libc/musl/src/exit/assert.c rename to lib/libc/musl/src/exit/assert.c diff --git a/libc/musl/src/exit/at_quick_exit.c b/lib/libc/musl/src/exit/at_quick_exit.c similarity index 100% rename from libc/musl/src/exit/at_quick_exit.c rename to lib/libc/musl/src/exit/at_quick_exit.c diff --git a/libc/musl/src/exit/atexit.c b/lib/libc/musl/src/exit/atexit.c similarity index 100% rename from libc/musl/src/exit/atexit.c rename to lib/libc/musl/src/exit/atexit.c diff --git a/libc/musl/src/exit/exit.c b/lib/libc/musl/src/exit/exit.c similarity index 100% rename from libc/musl/src/exit/exit.c rename to lib/libc/musl/src/exit/exit.c diff --git a/libc/musl/src/exit/quick_exit.c b/lib/libc/musl/src/exit/quick_exit.c similarity index 100% rename from libc/musl/src/exit/quick_exit.c rename to lib/libc/musl/src/exit/quick_exit.c diff --git a/libc/musl/src/fcntl/creat.c b/lib/libc/musl/src/fcntl/creat.c similarity index 100% rename from libc/musl/src/fcntl/creat.c rename to lib/libc/musl/src/fcntl/creat.c diff --git a/libc/musl/src/fcntl/fcntl.c b/lib/libc/musl/src/fcntl/fcntl.c similarity index 100% rename from libc/musl/src/fcntl/fcntl.c rename to lib/libc/musl/src/fcntl/fcntl.c diff --git a/libc/musl/src/fcntl/open.c b/lib/libc/musl/src/fcntl/open.c similarity index 100% rename from libc/musl/src/fcntl/open.c rename to lib/libc/musl/src/fcntl/open.c diff --git a/libc/musl/src/fcntl/openat.c b/lib/libc/musl/src/fcntl/openat.c similarity index 100% rename from libc/musl/src/fcntl/openat.c rename to lib/libc/musl/src/fcntl/openat.c diff --git a/libc/musl/src/fcntl/posix_fadvise.c b/lib/libc/musl/src/fcntl/posix_fadvise.c similarity index 100% rename from libc/musl/src/fcntl/posix_fadvise.c rename to lib/libc/musl/src/fcntl/posix_fadvise.c diff --git a/libc/musl/src/fcntl/posix_fallocate.c b/lib/libc/musl/src/fcntl/posix_fallocate.c similarity index 100% rename from libc/musl/src/fcntl/posix_fallocate.c rename to lib/libc/musl/src/fcntl/posix_fallocate.c diff --git a/libc/musl/src/fenv/__flt_rounds.c b/lib/libc/musl/src/fenv/__flt_rounds.c similarity index 100% rename from libc/musl/src/fenv/__flt_rounds.c rename to lib/libc/musl/src/fenv/__flt_rounds.c diff --git a/libc/musl/src/fenv/aarch64/fenv.s b/lib/libc/musl/src/fenv/aarch64/fenv.s similarity index 100% rename from libc/musl/src/fenv/aarch64/fenv.s rename to lib/libc/musl/src/fenv/aarch64/fenv.s diff --git a/libc/musl/src/fenv/arm/fenv-hf.S b/lib/libc/musl/src/fenv/arm/fenv-hf.S similarity index 100% rename from libc/musl/src/fenv/arm/fenv-hf.S rename to lib/libc/musl/src/fenv/arm/fenv-hf.S diff --git a/libc/musl/src/fenv/arm/fenv.c b/lib/libc/musl/src/fenv/arm/fenv.c similarity index 100% rename from libc/musl/src/fenv/arm/fenv.c rename to lib/libc/musl/src/fenv/arm/fenv.c diff --git a/libc/musl/src/fenv/fegetexceptflag.c b/lib/libc/musl/src/fenv/fegetexceptflag.c similarity index 100% rename from libc/musl/src/fenv/fegetexceptflag.c rename to lib/libc/musl/src/fenv/fegetexceptflag.c diff --git a/libc/musl/src/fenv/feholdexcept.c b/lib/libc/musl/src/fenv/feholdexcept.c similarity index 100% rename from libc/musl/src/fenv/feholdexcept.c rename to lib/libc/musl/src/fenv/feholdexcept.c diff --git a/libc/musl/src/fenv/fenv.c b/lib/libc/musl/src/fenv/fenv.c similarity index 100% rename from libc/musl/src/fenv/fenv.c rename to lib/libc/musl/src/fenv/fenv.c diff --git a/libc/musl/src/fenv/fesetexceptflag.c b/lib/libc/musl/src/fenv/fesetexceptflag.c similarity index 100% rename from libc/musl/src/fenv/fesetexceptflag.c rename to lib/libc/musl/src/fenv/fesetexceptflag.c diff --git a/libc/musl/src/fenv/fesetround.c b/lib/libc/musl/src/fenv/fesetround.c similarity index 100% rename from libc/musl/src/fenv/fesetround.c rename to lib/libc/musl/src/fenv/fesetround.c diff --git a/libc/musl/src/fenv/feupdateenv.c b/lib/libc/musl/src/fenv/feupdateenv.c similarity index 100% rename from libc/musl/src/fenv/feupdateenv.c rename to lib/libc/musl/src/fenv/feupdateenv.c diff --git a/libc/musl/src/fenv/i386/fenv.s b/lib/libc/musl/src/fenv/i386/fenv.s similarity index 100% rename from libc/musl/src/fenv/i386/fenv.s rename to lib/libc/musl/src/fenv/i386/fenv.s diff --git a/libc/musl/src/fenv/m68k/fenv.c b/lib/libc/musl/src/fenv/m68k/fenv.c similarity index 100% rename from libc/musl/src/fenv/m68k/fenv.c rename to lib/libc/musl/src/fenv/m68k/fenv.c diff --git a/libc/musl/src/fenv/mips/fenv-sf.c b/lib/libc/musl/src/fenv/mips/fenv-sf.c similarity index 100% rename from libc/musl/src/fenv/mips/fenv-sf.c rename to lib/libc/musl/src/fenv/mips/fenv-sf.c diff --git a/libc/musl/src/fenv/mips/fenv.S b/lib/libc/musl/src/fenv/mips/fenv.S similarity index 100% rename from libc/musl/src/fenv/mips/fenv.S rename to lib/libc/musl/src/fenv/mips/fenv.S diff --git a/libc/musl/src/fenv/mips64/fenv-sf.c b/lib/libc/musl/src/fenv/mips64/fenv-sf.c similarity index 100% rename from libc/musl/src/fenv/mips64/fenv-sf.c rename to lib/libc/musl/src/fenv/mips64/fenv-sf.c diff --git a/libc/musl/src/fenv/mips64/fenv.S b/lib/libc/musl/src/fenv/mips64/fenv.S similarity index 100% rename from libc/musl/src/fenv/mips64/fenv.S rename to lib/libc/musl/src/fenv/mips64/fenv.S diff --git a/libc/musl/src/fenv/mipsn32/fenv-sf.c b/lib/libc/musl/src/fenv/mipsn32/fenv-sf.c similarity index 100% rename from libc/musl/src/fenv/mipsn32/fenv-sf.c rename to lib/libc/musl/src/fenv/mipsn32/fenv-sf.c diff --git a/libc/musl/src/fenv/mipsn32/fenv.S b/lib/libc/musl/src/fenv/mipsn32/fenv.S similarity index 100% rename from libc/musl/src/fenv/mipsn32/fenv.S rename to lib/libc/musl/src/fenv/mipsn32/fenv.S diff --git a/libc/musl/src/fenv/powerpc/fenv-sf.c b/lib/libc/musl/src/fenv/powerpc/fenv-sf.c similarity index 100% rename from libc/musl/src/fenv/powerpc/fenv-sf.c rename to lib/libc/musl/src/fenv/powerpc/fenv-sf.c diff --git a/libc/musl/src/fenv/powerpc/fenv.S b/lib/libc/musl/src/fenv/powerpc/fenv.S similarity index 100% rename from libc/musl/src/fenv/powerpc/fenv.S rename to lib/libc/musl/src/fenv/powerpc/fenv.S diff --git a/libc/musl/src/fenv/powerpc64/fenv.c b/lib/libc/musl/src/fenv/powerpc64/fenv.c similarity index 100% rename from libc/musl/src/fenv/powerpc64/fenv.c rename to lib/libc/musl/src/fenv/powerpc64/fenv.c diff --git a/libc/musl/src/fenv/s390x/fenv.c b/lib/libc/musl/src/fenv/s390x/fenv.c similarity index 100% rename from libc/musl/src/fenv/s390x/fenv.c rename to lib/libc/musl/src/fenv/s390x/fenv.c diff --git a/libc/musl/src/fenv/sh/fenv-nofpu.c b/lib/libc/musl/src/fenv/sh/fenv-nofpu.c similarity index 100% rename from libc/musl/src/fenv/sh/fenv-nofpu.c rename to lib/libc/musl/src/fenv/sh/fenv-nofpu.c diff --git a/libc/musl/src/fenv/sh/fenv.S b/lib/libc/musl/src/fenv/sh/fenv.S similarity index 100% rename from libc/musl/src/fenv/sh/fenv.S rename to lib/libc/musl/src/fenv/sh/fenv.S diff --git a/libc/musl/src/fenv/x32/fenv.s b/lib/libc/musl/src/fenv/x32/fenv.s similarity index 100% rename from libc/musl/src/fenv/x32/fenv.s rename to lib/libc/musl/src/fenv/x32/fenv.s diff --git a/libc/musl/src/fenv/x86_64/fenv.s b/lib/libc/musl/src/fenv/x86_64/fenv.s similarity index 100% rename from libc/musl/src/fenv/x86_64/fenv.s rename to lib/libc/musl/src/fenv/x86_64/fenv.s diff --git a/libc/musl/src/include/arpa/inet.h b/lib/libc/musl/src/include/arpa/inet.h similarity index 100% rename from libc/musl/src/include/arpa/inet.h rename to lib/libc/musl/src/include/arpa/inet.h diff --git a/libc/musl/src/include/crypt.h b/lib/libc/musl/src/include/crypt.h similarity index 100% rename from libc/musl/src/include/crypt.h rename to lib/libc/musl/src/include/crypt.h diff --git a/libc/musl/src/include/errno.h b/lib/libc/musl/src/include/errno.h similarity index 100% rename from libc/musl/src/include/errno.h rename to lib/libc/musl/src/include/errno.h diff --git a/libc/musl/src/include/features.h b/lib/libc/musl/src/include/features.h similarity index 100% rename from libc/musl/src/include/features.h rename to lib/libc/musl/src/include/features.h diff --git a/libc/musl/src/include/langinfo.h b/lib/libc/musl/src/include/langinfo.h similarity index 100% rename from libc/musl/src/include/langinfo.h rename to lib/libc/musl/src/include/langinfo.h diff --git a/libc/musl/src/include/pthread.h b/lib/libc/musl/src/include/pthread.h similarity index 100% rename from libc/musl/src/include/pthread.h rename to lib/libc/musl/src/include/pthread.h diff --git a/libc/musl/src/include/resolv.h b/lib/libc/musl/src/include/resolv.h similarity index 100% rename from libc/musl/src/include/resolv.h rename to lib/libc/musl/src/include/resolv.h diff --git a/libc/musl/src/include/signal.h b/lib/libc/musl/src/include/signal.h similarity index 100% rename from libc/musl/src/include/signal.h rename to lib/libc/musl/src/include/signal.h diff --git a/libc/musl/src/include/stdio.h b/lib/libc/musl/src/include/stdio.h similarity index 100% rename from libc/musl/src/include/stdio.h rename to lib/libc/musl/src/include/stdio.h diff --git a/libc/musl/src/include/stdlib.h b/lib/libc/musl/src/include/stdlib.h similarity index 100% rename from libc/musl/src/include/stdlib.h rename to lib/libc/musl/src/include/stdlib.h diff --git a/libc/musl/src/include/string.h b/lib/libc/musl/src/include/string.h similarity index 100% rename from libc/musl/src/include/string.h rename to lib/libc/musl/src/include/string.h diff --git a/libc/musl/src/include/sys/auxv.h b/lib/libc/musl/src/include/sys/auxv.h similarity index 100% rename from libc/musl/src/include/sys/auxv.h rename to lib/libc/musl/src/include/sys/auxv.h diff --git a/libc/musl/src/include/sys/mman.h b/lib/libc/musl/src/include/sys/mman.h similarity index 100% rename from libc/musl/src/include/sys/mman.h rename to lib/libc/musl/src/include/sys/mman.h diff --git a/libc/musl/src/include/sys/sysinfo.h b/lib/libc/musl/src/include/sys/sysinfo.h similarity index 100% rename from libc/musl/src/include/sys/sysinfo.h rename to lib/libc/musl/src/include/sys/sysinfo.h diff --git a/libc/musl/src/include/sys/time.h b/lib/libc/musl/src/include/sys/time.h similarity index 100% rename from libc/musl/src/include/sys/time.h rename to lib/libc/musl/src/include/sys/time.h diff --git a/libc/musl/src/include/time.h b/lib/libc/musl/src/include/time.h similarity index 100% rename from libc/musl/src/include/time.h rename to lib/libc/musl/src/include/time.h diff --git a/libc/musl/src/include/unistd.h b/lib/libc/musl/src/include/unistd.h similarity index 100% rename from libc/musl/src/include/unistd.h rename to lib/libc/musl/src/include/unistd.h diff --git a/libc/musl/src/internal/aarch64/syscall.s b/lib/libc/musl/src/internal/aarch64/syscall.s similarity index 100% rename from libc/musl/src/internal/aarch64/syscall.s rename to lib/libc/musl/src/internal/aarch64/syscall.s diff --git a/libc/musl/src/internal/arm/syscall.s b/lib/libc/musl/src/internal/arm/syscall.s similarity index 100% rename from libc/musl/src/internal/arm/syscall.s rename to lib/libc/musl/src/internal/arm/syscall.s diff --git a/libc/musl/src/internal/atomic.h b/lib/libc/musl/src/internal/atomic.h similarity index 100% rename from libc/musl/src/internal/atomic.h rename to lib/libc/musl/src/internal/atomic.h diff --git a/libc/musl/src/internal/dynlink.h b/lib/libc/musl/src/internal/dynlink.h similarity index 100% rename from libc/musl/src/internal/dynlink.h rename to lib/libc/musl/src/internal/dynlink.h diff --git a/libc/musl/src/internal/fdpic_crt.h b/lib/libc/musl/src/internal/fdpic_crt.h similarity index 100% rename from libc/musl/src/internal/fdpic_crt.h rename to lib/libc/musl/src/internal/fdpic_crt.h diff --git a/libc/musl/src/internal/floatscan.c b/lib/libc/musl/src/internal/floatscan.c similarity index 100% rename from libc/musl/src/internal/floatscan.c rename to lib/libc/musl/src/internal/floatscan.c diff --git a/libc/musl/src/internal/floatscan.h b/lib/libc/musl/src/internal/floatscan.h similarity index 100% rename from libc/musl/src/internal/floatscan.h rename to lib/libc/musl/src/internal/floatscan.h diff --git a/libc/musl/src/internal/futex.h b/lib/libc/musl/src/internal/futex.h similarity index 100% rename from libc/musl/src/internal/futex.h rename to lib/libc/musl/src/internal/futex.h diff --git a/libc/musl/src/internal/i386/syscall.s b/lib/libc/musl/src/internal/i386/syscall.s similarity index 100% rename from libc/musl/src/internal/i386/syscall.s rename to lib/libc/musl/src/internal/i386/syscall.s diff --git a/libc/musl/src/internal/intscan.c b/lib/libc/musl/src/internal/intscan.c similarity index 100% rename from libc/musl/src/internal/intscan.c rename to lib/libc/musl/src/internal/intscan.c diff --git a/libc/musl/src/internal/intscan.h b/lib/libc/musl/src/internal/intscan.h similarity index 100% rename from libc/musl/src/internal/intscan.h rename to lib/libc/musl/src/internal/intscan.h diff --git a/libc/musl/src/internal/ksigaction.h b/lib/libc/musl/src/internal/ksigaction.h similarity index 100% rename from libc/musl/src/internal/ksigaction.h rename to lib/libc/musl/src/internal/ksigaction.h diff --git a/libc/musl/src/internal/libc.c b/lib/libc/musl/src/internal/libc.c similarity index 100% rename from libc/musl/src/internal/libc.c rename to lib/libc/musl/src/internal/libc.c diff --git a/libc/musl/src/internal/libc.h b/lib/libc/musl/src/internal/libc.h similarity index 100% rename from libc/musl/src/internal/libc.h rename to lib/libc/musl/src/internal/libc.h diff --git a/libc/musl/src/internal/libm.h b/lib/libc/musl/src/internal/libm.h similarity index 100% rename from libc/musl/src/internal/libm.h rename to lib/libc/musl/src/internal/libm.h diff --git a/libc/musl/src/internal/locale_impl.h b/lib/libc/musl/src/internal/locale_impl.h similarity index 100% rename from libc/musl/src/internal/locale_impl.h rename to lib/libc/musl/src/internal/locale_impl.h diff --git a/libc/musl/src/internal/lock.h b/lib/libc/musl/src/internal/lock.h similarity index 100% rename from libc/musl/src/internal/lock.h rename to lib/libc/musl/src/internal/lock.h diff --git a/libc/musl/src/internal/m68k/syscall.s b/lib/libc/musl/src/internal/m68k/syscall.s similarity index 100% rename from libc/musl/src/internal/m68k/syscall.s rename to lib/libc/musl/src/internal/m68k/syscall.s diff --git a/libc/musl/src/internal/malloc_impl.h b/lib/libc/musl/src/internal/malloc_impl.h similarity index 100% rename from libc/musl/src/internal/malloc_impl.h rename to lib/libc/musl/src/internal/malloc_impl.h diff --git a/libc/musl/src/internal/microblaze/syscall.s b/lib/libc/musl/src/internal/microblaze/syscall.s similarity index 100% rename from libc/musl/src/internal/microblaze/syscall.s rename to lib/libc/musl/src/internal/microblaze/syscall.s diff --git a/libc/musl/src/internal/mips/syscall.s b/lib/libc/musl/src/internal/mips/syscall.s similarity index 100% rename from libc/musl/src/internal/mips/syscall.s rename to lib/libc/musl/src/internal/mips/syscall.s diff --git a/libc/musl/src/internal/mips64/syscall.s b/lib/libc/musl/src/internal/mips64/syscall.s similarity index 100% rename from libc/musl/src/internal/mips64/syscall.s rename to lib/libc/musl/src/internal/mips64/syscall.s diff --git a/libc/musl/src/internal/mipsn32/syscall.s b/lib/libc/musl/src/internal/mipsn32/syscall.s similarity index 100% rename from libc/musl/src/internal/mipsn32/syscall.s rename to lib/libc/musl/src/internal/mipsn32/syscall.s diff --git a/libc/musl/src/internal/or1k/syscall.s b/lib/libc/musl/src/internal/or1k/syscall.s similarity index 100% rename from libc/musl/src/internal/or1k/syscall.s rename to lib/libc/musl/src/internal/or1k/syscall.s diff --git a/libc/musl/src/internal/powerpc/syscall.s b/lib/libc/musl/src/internal/powerpc/syscall.s similarity index 100% rename from libc/musl/src/internal/powerpc/syscall.s rename to lib/libc/musl/src/internal/powerpc/syscall.s diff --git a/libc/musl/src/internal/powerpc64/syscall.s b/lib/libc/musl/src/internal/powerpc64/syscall.s similarity index 100% rename from libc/musl/src/internal/powerpc64/syscall.s rename to lib/libc/musl/src/internal/powerpc64/syscall.s diff --git a/libc/musl/src/internal/procfdname.c b/lib/libc/musl/src/internal/procfdname.c similarity index 100% rename from libc/musl/src/internal/procfdname.c rename to lib/libc/musl/src/internal/procfdname.c diff --git a/libc/musl/src/internal/pthread_impl.h b/lib/libc/musl/src/internal/pthread_impl.h similarity index 100% rename from libc/musl/src/internal/pthread_impl.h rename to lib/libc/musl/src/internal/pthread_impl.h diff --git a/libc/musl/src/internal/s390x/syscall.s b/lib/libc/musl/src/internal/s390x/syscall.s similarity index 100% rename from libc/musl/src/internal/s390x/syscall.s rename to lib/libc/musl/src/internal/s390x/syscall.s diff --git a/libc/musl/src/internal/sh/__shcall.c b/lib/libc/musl/src/internal/sh/__shcall.c similarity index 100% rename from libc/musl/src/internal/sh/__shcall.c rename to lib/libc/musl/src/internal/sh/__shcall.c diff --git a/libc/musl/src/internal/sh/syscall.s b/lib/libc/musl/src/internal/sh/syscall.s similarity index 100% rename from libc/musl/src/internal/sh/syscall.s rename to lib/libc/musl/src/internal/sh/syscall.s diff --git a/libc/musl/src/internal/shgetc.c b/lib/libc/musl/src/internal/shgetc.c similarity index 100% rename from libc/musl/src/internal/shgetc.c rename to lib/libc/musl/src/internal/shgetc.c diff --git a/libc/musl/src/internal/shgetc.h b/lib/libc/musl/src/internal/shgetc.h similarity index 100% rename from libc/musl/src/internal/shgetc.h rename to lib/libc/musl/src/internal/shgetc.h diff --git a/libc/musl/src/internal/stdio_impl.h b/lib/libc/musl/src/internal/stdio_impl.h similarity index 100% rename from libc/musl/src/internal/stdio_impl.h rename to lib/libc/musl/src/internal/stdio_impl.h diff --git a/libc/musl/src/internal/syscall.c b/lib/libc/musl/src/internal/syscall.c similarity index 100% rename from libc/musl/src/internal/syscall.c rename to lib/libc/musl/src/internal/syscall.c diff --git a/libc/musl/src/internal/syscall.h b/lib/libc/musl/src/internal/syscall.h similarity index 100% rename from libc/musl/src/internal/syscall.h rename to lib/libc/musl/src/internal/syscall.h diff --git a/libc/musl/src/internal/syscall_ret.c b/lib/libc/musl/src/internal/syscall_ret.c similarity index 100% rename from libc/musl/src/internal/syscall_ret.c rename to lib/libc/musl/src/internal/syscall_ret.c diff --git a/libc/musl/src/internal/vdso.c b/lib/libc/musl/src/internal/vdso.c similarity index 100% rename from libc/musl/src/internal/vdso.c rename to lib/libc/musl/src/internal/vdso.c diff --git a/libc/musl/src/internal/version.c b/lib/libc/musl/src/internal/version.c similarity index 100% rename from libc/musl/src/internal/version.c rename to lib/libc/musl/src/internal/version.c diff --git a/libc/musl/src/internal/version.h b/lib/libc/musl/src/internal/version.h similarity index 100% rename from libc/musl/src/internal/version.h rename to lib/libc/musl/src/internal/version.h diff --git a/libc/musl/src/internal/x32/syscall.s b/lib/libc/musl/src/internal/x32/syscall.s similarity index 100% rename from libc/musl/src/internal/x32/syscall.s rename to lib/libc/musl/src/internal/x32/syscall.s diff --git a/libc/musl/src/internal/x86_64/syscall.s b/lib/libc/musl/src/internal/x86_64/syscall.s similarity index 100% rename from libc/musl/src/internal/x86_64/syscall.s rename to lib/libc/musl/src/internal/x86_64/syscall.s diff --git a/libc/musl/src/ipc/ftok.c b/lib/libc/musl/src/ipc/ftok.c similarity index 100% rename from libc/musl/src/ipc/ftok.c rename to lib/libc/musl/src/ipc/ftok.c diff --git a/libc/musl/src/ipc/ipc.h b/lib/libc/musl/src/ipc/ipc.h similarity index 100% rename from libc/musl/src/ipc/ipc.h rename to lib/libc/musl/src/ipc/ipc.h diff --git a/libc/musl/src/ipc/msgctl.c b/lib/libc/musl/src/ipc/msgctl.c similarity index 100% rename from libc/musl/src/ipc/msgctl.c rename to lib/libc/musl/src/ipc/msgctl.c diff --git a/libc/musl/src/ipc/msgget.c b/lib/libc/musl/src/ipc/msgget.c similarity index 100% rename from libc/musl/src/ipc/msgget.c rename to lib/libc/musl/src/ipc/msgget.c diff --git a/libc/musl/src/ipc/msgrcv.c b/lib/libc/musl/src/ipc/msgrcv.c similarity index 100% rename from libc/musl/src/ipc/msgrcv.c rename to lib/libc/musl/src/ipc/msgrcv.c diff --git a/libc/musl/src/ipc/msgsnd.c b/lib/libc/musl/src/ipc/msgsnd.c similarity index 100% rename from libc/musl/src/ipc/msgsnd.c rename to lib/libc/musl/src/ipc/msgsnd.c diff --git a/libc/musl/src/ipc/semctl.c b/lib/libc/musl/src/ipc/semctl.c similarity index 100% rename from libc/musl/src/ipc/semctl.c rename to lib/libc/musl/src/ipc/semctl.c diff --git a/libc/musl/src/ipc/semget.c b/lib/libc/musl/src/ipc/semget.c similarity index 100% rename from libc/musl/src/ipc/semget.c rename to lib/libc/musl/src/ipc/semget.c diff --git a/libc/musl/src/ipc/semop.c b/lib/libc/musl/src/ipc/semop.c similarity index 100% rename from libc/musl/src/ipc/semop.c rename to lib/libc/musl/src/ipc/semop.c diff --git a/libc/musl/src/ipc/semtimedop.c b/lib/libc/musl/src/ipc/semtimedop.c similarity index 100% rename from libc/musl/src/ipc/semtimedop.c rename to lib/libc/musl/src/ipc/semtimedop.c diff --git a/libc/musl/src/ipc/shmat.c b/lib/libc/musl/src/ipc/shmat.c similarity index 100% rename from libc/musl/src/ipc/shmat.c rename to lib/libc/musl/src/ipc/shmat.c diff --git a/libc/musl/src/ipc/shmctl.c b/lib/libc/musl/src/ipc/shmctl.c similarity index 100% rename from libc/musl/src/ipc/shmctl.c rename to lib/libc/musl/src/ipc/shmctl.c diff --git a/libc/musl/src/ipc/shmdt.c b/lib/libc/musl/src/ipc/shmdt.c similarity index 100% rename from libc/musl/src/ipc/shmdt.c rename to lib/libc/musl/src/ipc/shmdt.c diff --git a/libc/musl/src/ipc/shmget.c b/lib/libc/musl/src/ipc/shmget.c similarity index 100% rename from libc/musl/src/ipc/shmget.c rename to lib/libc/musl/src/ipc/shmget.c diff --git a/libc/musl/src/ldso/__dlsym.c b/lib/libc/musl/src/ldso/__dlsym.c similarity index 100% rename from libc/musl/src/ldso/__dlsym.c rename to lib/libc/musl/src/ldso/__dlsym.c diff --git a/libc/musl/src/ldso/aarch64/dlsym.s b/lib/libc/musl/src/ldso/aarch64/dlsym.s similarity index 100% rename from libc/musl/src/ldso/aarch64/dlsym.s rename to lib/libc/musl/src/ldso/aarch64/dlsym.s diff --git a/libc/musl/src/ldso/aarch64/tlsdesc.s b/lib/libc/musl/src/ldso/aarch64/tlsdesc.s similarity index 100% rename from libc/musl/src/ldso/aarch64/tlsdesc.s rename to lib/libc/musl/src/ldso/aarch64/tlsdesc.s diff --git a/libc/musl/src/ldso/arm/dlsym.s b/lib/libc/musl/src/ldso/arm/dlsym.s similarity index 100% rename from libc/musl/src/ldso/arm/dlsym.s rename to lib/libc/musl/src/ldso/arm/dlsym.s diff --git a/libc/musl/src/ldso/arm/find_exidx.c b/lib/libc/musl/src/ldso/arm/find_exidx.c similarity index 100% rename from libc/musl/src/ldso/arm/find_exidx.c rename to lib/libc/musl/src/ldso/arm/find_exidx.c diff --git a/libc/musl/src/ldso/arm/tlsdesc.S b/lib/libc/musl/src/ldso/arm/tlsdesc.S similarity index 100% rename from libc/musl/src/ldso/arm/tlsdesc.S rename to lib/libc/musl/src/ldso/arm/tlsdesc.S diff --git a/libc/musl/src/ldso/dl_iterate_phdr.c b/lib/libc/musl/src/ldso/dl_iterate_phdr.c similarity index 100% rename from libc/musl/src/ldso/dl_iterate_phdr.c rename to lib/libc/musl/src/ldso/dl_iterate_phdr.c diff --git a/libc/musl/src/ldso/dladdr.c b/lib/libc/musl/src/ldso/dladdr.c similarity index 100% rename from libc/musl/src/ldso/dladdr.c rename to lib/libc/musl/src/ldso/dladdr.c diff --git a/libc/musl/src/ldso/dlclose.c b/lib/libc/musl/src/ldso/dlclose.c similarity index 100% rename from libc/musl/src/ldso/dlclose.c rename to lib/libc/musl/src/ldso/dlclose.c diff --git a/libc/musl/src/ldso/dlerror.c b/lib/libc/musl/src/ldso/dlerror.c similarity index 100% rename from libc/musl/src/ldso/dlerror.c rename to lib/libc/musl/src/ldso/dlerror.c diff --git a/libc/musl/src/ldso/dlinfo.c b/lib/libc/musl/src/ldso/dlinfo.c similarity index 100% rename from libc/musl/src/ldso/dlinfo.c rename to lib/libc/musl/src/ldso/dlinfo.c diff --git a/libc/musl/src/ldso/dlopen.c b/lib/libc/musl/src/ldso/dlopen.c similarity index 100% rename from libc/musl/src/ldso/dlopen.c rename to lib/libc/musl/src/ldso/dlopen.c diff --git a/libc/musl/src/ldso/dlsym.c b/lib/libc/musl/src/ldso/dlsym.c similarity index 100% rename from libc/musl/src/ldso/dlsym.c rename to lib/libc/musl/src/ldso/dlsym.c diff --git a/libc/musl/src/ldso/i386/dlsym.s b/lib/libc/musl/src/ldso/i386/dlsym.s similarity index 100% rename from libc/musl/src/ldso/i386/dlsym.s rename to lib/libc/musl/src/ldso/i386/dlsym.s diff --git a/libc/musl/src/ldso/i386/tlsdesc.s b/lib/libc/musl/src/ldso/i386/tlsdesc.s similarity index 100% rename from libc/musl/src/ldso/i386/tlsdesc.s rename to lib/libc/musl/src/ldso/i386/tlsdesc.s diff --git a/libc/musl/src/ldso/m68k/dlsym.s b/lib/libc/musl/src/ldso/m68k/dlsym.s similarity index 100% rename from libc/musl/src/ldso/m68k/dlsym.s rename to lib/libc/musl/src/ldso/m68k/dlsym.s diff --git a/libc/musl/src/ldso/microblaze/dlsym.s b/lib/libc/musl/src/ldso/microblaze/dlsym.s similarity index 100% rename from libc/musl/src/ldso/microblaze/dlsym.s rename to lib/libc/musl/src/ldso/microblaze/dlsym.s diff --git a/libc/musl/src/ldso/mips/dlsym.s b/lib/libc/musl/src/ldso/mips/dlsym.s similarity index 100% rename from libc/musl/src/ldso/mips/dlsym.s rename to lib/libc/musl/src/ldso/mips/dlsym.s diff --git a/libc/musl/src/ldso/mips64/dlsym.s b/lib/libc/musl/src/ldso/mips64/dlsym.s similarity index 100% rename from libc/musl/src/ldso/mips64/dlsym.s rename to lib/libc/musl/src/ldso/mips64/dlsym.s diff --git a/libc/musl/src/ldso/mipsn32/dlsym.s b/lib/libc/musl/src/ldso/mipsn32/dlsym.s similarity index 100% rename from libc/musl/src/ldso/mipsn32/dlsym.s rename to lib/libc/musl/src/ldso/mipsn32/dlsym.s diff --git a/libc/musl/src/ldso/or1k/dlsym.s b/lib/libc/musl/src/ldso/or1k/dlsym.s similarity index 100% rename from libc/musl/src/ldso/or1k/dlsym.s rename to lib/libc/musl/src/ldso/or1k/dlsym.s diff --git a/libc/musl/src/ldso/powerpc/dlsym.s b/lib/libc/musl/src/ldso/powerpc/dlsym.s similarity index 100% rename from libc/musl/src/ldso/powerpc/dlsym.s rename to lib/libc/musl/src/ldso/powerpc/dlsym.s diff --git a/libc/musl/src/ldso/powerpc64/dlsym.s b/lib/libc/musl/src/ldso/powerpc64/dlsym.s similarity index 100% rename from libc/musl/src/ldso/powerpc64/dlsym.s rename to lib/libc/musl/src/ldso/powerpc64/dlsym.s diff --git a/libc/musl/src/ldso/s390x/dlsym.s b/lib/libc/musl/src/ldso/s390x/dlsym.s similarity index 100% rename from libc/musl/src/ldso/s390x/dlsym.s rename to lib/libc/musl/src/ldso/s390x/dlsym.s diff --git a/libc/musl/src/ldso/sh/dlsym.s b/lib/libc/musl/src/ldso/sh/dlsym.s similarity index 100% rename from libc/musl/src/ldso/sh/dlsym.s rename to lib/libc/musl/src/ldso/sh/dlsym.s diff --git a/libc/musl/src/ldso/tlsdesc.c b/lib/libc/musl/src/ldso/tlsdesc.c similarity index 100% rename from libc/musl/src/ldso/tlsdesc.c rename to lib/libc/musl/src/ldso/tlsdesc.c diff --git a/libc/musl/src/ldso/x32/dlsym.s b/lib/libc/musl/src/ldso/x32/dlsym.s similarity index 100% rename from libc/musl/src/ldso/x32/dlsym.s rename to lib/libc/musl/src/ldso/x32/dlsym.s diff --git a/libc/musl/src/ldso/x86_64/dlsym.s b/lib/libc/musl/src/ldso/x86_64/dlsym.s similarity index 100% rename from libc/musl/src/ldso/x86_64/dlsym.s rename to lib/libc/musl/src/ldso/x86_64/dlsym.s diff --git a/libc/musl/src/ldso/x86_64/tlsdesc.s b/lib/libc/musl/src/ldso/x86_64/tlsdesc.s similarity index 100% rename from libc/musl/src/ldso/x86_64/tlsdesc.s rename to lib/libc/musl/src/ldso/x86_64/tlsdesc.s diff --git a/libc/musl/src/legacy/cuserid.c b/lib/libc/musl/src/legacy/cuserid.c similarity index 100% rename from libc/musl/src/legacy/cuserid.c rename to lib/libc/musl/src/legacy/cuserid.c diff --git a/libc/musl/src/legacy/daemon.c b/lib/libc/musl/src/legacy/daemon.c similarity index 100% rename from libc/musl/src/legacy/daemon.c rename to lib/libc/musl/src/legacy/daemon.c diff --git a/libc/musl/src/legacy/err.c b/lib/libc/musl/src/legacy/err.c similarity index 100% rename from libc/musl/src/legacy/err.c rename to lib/libc/musl/src/legacy/err.c diff --git a/libc/musl/src/legacy/euidaccess.c b/lib/libc/musl/src/legacy/euidaccess.c similarity index 100% rename from libc/musl/src/legacy/euidaccess.c rename to lib/libc/musl/src/legacy/euidaccess.c diff --git a/libc/musl/src/legacy/ftw.c b/lib/libc/musl/src/legacy/ftw.c similarity index 100% rename from libc/musl/src/legacy/ftw.c rename to lib/libc/musl/src/legacy/ftw.c diff --git a/libc/musl/src/legacy/futimes.c b/lib/libc/musl/src/legacy/futimes.c similarity index 100% rename from libc/musl/src/legacy/futimes.c rename to lib/libc/musl/src/legacy/futimes.c diff --git a/libc/musl/src/legacy/getdtablesize.c b/lib/libc/musl/src/legacy/getdtablesize.c similarity index 100% rename from libc/musl/src/legacy/getdtablesize.c rename to lib/libc/musl/src/legacy/getdtablesize.c diff --git a/libc/musl/src/legacy/getloadavg.c b/lib/libc/musl/src/legacy/getloadavg.c similarity index 100% rename from libc/musl/src/legacy/getloadavg.c rename to lib/libc/musl/src/legacy/getloadavg.c diff --git a/libc/musl/src/legacy/getpagesize.c b/lib/libc/musl/src/legacy/getpagesize.c similarity index 100% rename from libc/musl/src/legacy/getpagesize.c rename to lib/libc/musl/src/legacy/getpagesize.c diff --git a/libc/musl/src/legacy/getpass.c b/lib/libc/musl/src/legacy/getpass.c similarity index 100% rename from libc/musl/src/legacy/getpass.c rename to lib/libc/musl/src/legacy/getpass.c diff --git a/libc/musl/src/legacy/getusershell.c b/lib/libc/musl/src/legacy/getusershell.c similarity index 100% rename from libc/musl/src/legacy/getusershell.c rename to lib/libc/musl/src/legacy/getusershell.c diff --git a/libc/musl/src/legacy/isastream.c b/lib/libc/musl/src/legacy/isastream.c similarity index 100% rename from libc/musl/src/legacy/isastream.c rename to lib/libc/musl/src/legacy/isastream.c diff --git a/libc/musl/src/legacy/lutimes.c b/lib/libc/musl/src/legacy/lutimes.c similarity index 100% rename from libc/musl/src/legacy/lutimes.c rename to lib/libc/musl/src/legacy/lutimes.c diff --git a/libc/musl/src/legacy/ulimit.c b/lib/libc/musl/src/legacy/ulimit.c similarity index 100% rename from libc/musl/src/legacy/ulimit.c rename to lib/libc/musl/src/legacy/ulimit.c diff --git a/libc/musl/src/legacy/utmpx.c b/lib/libc/musl/src/legacy/utmpx.c similarity index 100% rename from libc/musl/src/legacy/utmpx.c rename to lib/libc/musl/src/legacy/utmpx.c diff --git a/libc/musl/src/legacy/valloc.c b/lib/libc/musl/src/legacy/valloc.c similarity index 100% rename from libc/musl/src/legacy/valloc.c rename to lib/libc/musl/src/legacy/valloc.c diff --git a/libc/musl/src/linux/adjtime.c b/lib/libc/musl/src/linux/adjtime.c similarity index 100% rename from libc/musl/src/linux/adjtime.c rename to lib/libc/musl/src/linux/adjtime.c diff --git a/libc/musl/src/linux/adjtimex.c b/lib/libc/musl/src/linux/adjtimex.c similarity index 100% rename from libc/musl/src/linux/adjtimex.c rename to lib/libc/musl/src/linux/adjtimex.c diff --git a/libc/musl/src/linux/arch_prctl.c b/lib/libc/musl/src/linux/arch_prctl.c similarity index 100% rename from libc/musl/src/linux/arch_prctl.c rename to lib/libc/musl/src/linux/arch_prctl.c diff --git a/libc/musl/src/linux/brk.c b/lib/libc/musl/src/linux/brk.c similarity index 100% rename from libc/musl/src/linux/brk.c rename to lib/libc/musl/src/linux/brk.c diff --git a/libc/musl/src/linux/cache.c b/lib/libc/musl/src/linux/cache.c similarity index 100% rename from libc/musl/src/linux/cache.c rename to lib/libc/musl/src/linux/cache.c diff --git a/libc/musl/src/linux/cap.c b/lib/libc/musl/src/linux/cap.c similarity index 100% rename from libc/musl/src/linux/cap.c rename to lib/libc/musl/src/linux/cap.c diff --git a/libc/musl/src/linux/chroot.c b/lib/libc/musl/src/linux/chroot.c similarity index 100% rename from libc/musl/src/linux/chroot.c rename to lib/libc/musl/src/linux/chroot.c diff --git a/libc/musl/src/linux/clock_adjtime.c b/lib/libc/musl/src/linux/clock_adjtime.c similarity index 100% rename from libc/musl/src/linux/clock_adjtime.c rename to lib/libc/musl/src/linux/clock_adjtime.c diff --git a/libc/musl/src/linux/clone.c b/lib/libc/musl/src/linux/clone.c similarity index 100% rename from libc/musl/src/linux/clone.c rename to lib/libc/musl/src/linux/clone.c diff --git a/libc/musl/src/linux/epoll.c b/lib/libc/musl/src/linux/epoll.c similarity index 100% rename from libc/musl/src/linux/epoll.c rename to lib/libc/musl/src/linux/epoll.c diff --git a/libc/musl/src/linux/eventfd.c b/lib/libc/musl/src/linux/eventfd.c similarity index 100% rename from libc/musl/src/linux/eventfd.c rename to lib/libc/musl/src/linux/eventfd.c diff --git a/libc/musl/src/linux/fallocate.c b/lib/libc/musl/src/linux/fallocate.c similarity index 100% rename from libc/musl/src/linux/fallocate.c rename to lib/libc/musl/src/linux/fallocate.c diff --git a/libc/musl/src/linux/fanotify.c b/lib/libc/musl/src/linux/fanotify.c similarity index 100% rename from libc/musl/src/linux/fanotify.c rename to lib/libc/musl/src/linux/fanotify.c diff --git a/libc/musl/src/linux/flock.c b/lib/libc/musl/src/linux/flock.c similarity index 100% rename from libc/musl/src/linux/flock.c rename to lib/libc/musl/src/linux/flock.c diff --git a/libc/musl/src/linux/getdents.c b/lib/libc/musl/src/linux/getdents.c similarity index 100% rename from libc/musl/src/linux/getdents.c rename to lib/libc/musl/src/linux/getdents.c diff --git a/libc/musl/src/linux/getrandom.c b/lib/libc/musl/src/linux/getrandom.c similarity index 100% rename from libc/musl/src/linux/getrandom.c rename to lib/libc/musl/src/linux/getrandom.c diff --git a/libc/musl/src/linux/inotify.c b/lib/libc/musl/src/linux/inotify.c similarity index 100% rename from libc/musl/src/linux/inotify.c rename to lib/libc/musl/src/linux/inotify.c diff --git a/libc/musl/src/linux/ioperm.c b/lib/libc/musl/src/linux/ioperm.c similarity index 100% rename from libc/musl/src/linux/ioperm.c rename to lib/libc/musl/src/linux/ioperm.c diff --git a/libc/musl/src/linux/iopl.c b/lib/libc/musl/src/linux/iopl.c similarity index 100% rename from libc/musl/src/linux/iopl.c rename to lib/libc/musl/src/linux/iopl.c diff --git a/libc/musl/src/linux/klogctl.c b/lib/libc/musl/src/linux/klogctl.c similarity index 100% rename from libc/musl/src/linux/klogctl.c rename to lib/libc/musl/src/linux/klogctl.c diff --git a/libc/musl/src/linux/memfd_create.c b/lib/libc/musl/src/linux/memfd_create.c similarity index 100% rename from libc/musl/src/linux/memfd_create.c rename to lib/libc/musl/src/linux/memfd_create.c diff --git a/libc/musl/src/linux/mlock2.c b/lib/libc/musl/src/linux/mlock2.c similarity index 100% rename from libc/musl/src/linux/mlock2.c rename to lib/libc/musl/src/linux/mlock2.c diff --git a/libc/musl/src/linux/module.c b/lib/libc/musl/src/linux/module.c similarity index 100% rename from libc/musl/src/linux/module.c rename to lib/libc/musl/src/linux/module.c diff --git a/libc/musl/src/linux/mount.c b/lib/libc/musl/src/linux/mount.c similarity index 100% rename from libc/musl/src/linux/mount.c rename to lib/libc/musl/src/linux/mount.c diff --git a/libc/musl/src/linux/name_to_handle_at.c b/lib/libc/musl/src/linux/name_to_handle_at.c similarity index 100% rename from libc/musl/src/linux/name_to_handle_at.c rename to lib/libc/musl/src/linux/name_to_handle_at.c diff --git a/libc/musl/src/linux/open_by_handle_at.c b/lib/libc/musl/src/linux/open_by_handle_at.c similarity index 100% rename from libc/musl/src/linux/open_by_handle_at.c rename to lib/libc/musl/src/linux/open_by_handle_at.c diff --git a/libc/musl/src/linux/personality.c b/lib/libc/musl/src/linux/personality.c similarity index 100% rename from libc/musl/src/linux/personality.c rename to lib/libc/musl/src/linux/personality.c diff --git a/libc/musl/src/linux/pivot_root.c b/lib/libc/musl/src/linux/pivot_root.c similarity index 100% rename from libc/musl/src/linux/pivot_root.c rename to lib/libc/musl/src/linux/pivot_root.c diff --git a/libc/musl/src/linux/ppoll.c b/lib/libc/musl/src/linux/ppoll.c similarity index 100% rename from libc/musl/src/linux/ppoll.c rename to lib/libc/musl/src/linux/ppoll.c diff --git a/libc/musl/src/linux/prctl.c b/lib/libc/musl/src/linux/prctl.c similarity index 100% rename from libc/musl/src/linux/prctl.c rename to lib/libc/musl/src/linux/prctl.c diff --git a/libc/musl/src/linux/prlimit.c b/lib/libc/musl/src/linux/prlimit.c similarity index 100% rename from libc/musl/src/linux/prlimit.c rename to lib/libc/musl/src/linux/prlimit.c diff --git a/libc/musl/src/linux/process_vm.c b/lib/libc/musl/src/linux/process_vm.c similarity index 100% rename from libc/musl/src/linux/process_vm.c rename to lib/libc/musl/src/linux/process_vm.c diff --git a/libc/musl/src/linux/ptrace.c b/lib/libc/musl/src/linux/ptrace.c similarity index 100% rename from libc/musl/src/linux/ptrace.c rename to lib/libc/musl/src/linux/ptrace.c diff --git a/libc/musl/src/linux/quotactl.c b/lib/libc/musl/src/linux/quotactl.c similarity index 100% rename from libc/musl/src/linux/quotactl.c rename to lib/libc/musl/src/linux/quotactl.c diff --git a/libc/musl/src/linux/readahead.c b/lib/libc/musl/src/linux/readahead.c similarity index 100% rename from libc/musl/src/linux/readahead.c rename to lib/libc/musl/src/linux/readahead.c diff --git a/libc/musl/src/linux/reboot.c b/lib/libc/musl/src/linux/reboot.c similarity index 100% rename from libc/musl/src/linux/reboot.c rename to lib/libc/musl/src/linux/reboot.c diff --git a/libc/musl/src/linux/remap_file_pages.c b/lib/libc/musl/src/linux/remap_file_pages.c similarity index 100% rename from libc/musl/src/linux/remap_file_pages.c rename to lib/libc/musl/src/linux/remap_file_pages.c diff --git a/libc/musl/src/linux/sbrk.c b/lib/libc/musl/src/linux/sbrk.c similarity index 100% rename from libc/musl/src/linux/sbrk.c rename to lib/libc/musl/src/linux/sbrk.c diff --git a/libc/musl/src/linux/sendfile.c b/lib/libc/musl/src/linux/sendfile.c similarity index 100% rename from libc/musl/src/linux/sendfile.c rename to lib/libc/musl/src/linux/sendfile.c diff --git a/libc/musl/src/linux/setfsgid.c b/lib/libc/musl/src/linux/setfsgid.c similarity index 100% rename from libc/musl/src/linux/setfsgid.c rename to lib/libc/musl/src/linux/setfsgid.c diff --git a/libc/musl/src/linux/setfsuid.c b/lib/libc/musl/src/linux/setfsuid.c similarity index 100% rename from libc/musl/src/linux/setfsuid.c rename to lib/libc/musl/src/linux/setfsuid.c diff --git a/libc/musl/src/linux/setgroups.c b/lib/libc/musl/src/linux/setgroups.c similarity index 100% rename from libc/musl/src/linux/setgroups.c rename to lib/libc/musl/src/linux/setgroups.c diff --git a/libc/musl/src/linux/sethostname.c b/lib/libc/musl/src/linux/sethostname.c similarity index 100% rename from libc/musl/src/linux/sethostname.c rename to lib/libc/musl/src/linux/sethostname.c diff --git a/libc/musl/src/linux/setns.c b/lib/libc/musl/src/linux/setns.c similarity index 100% rename from libc/musl/src/linux/setns.c rename to lib/libc/musl/src/linux/setns.c diff --git a/libc/musl/src/linux/settimeofday.c b/lib/libc/musl/src/linux/settimeofday.c similarity index 100% rename from libc/musl/src/linux/settimeofday.c rename to lib/libc/musl/src/linux/settimeofday.c diff --git a/libc/musl/src/linux/signalfd.c b/lib/libc/musl/src/linux/signalfd.c similarity index 100% rename from libc/musl/src/linux/signalfd.c rename to lib/libc/musl/src/linux/signalfd.c diff --git a/libc/musl/src/linux/splice.c b/lib/libc/musl/src/linux/splice.c similarity index 100% rename from libc/musl/src/linux/splice.c rename to lib/libc/musl/src/linux/splice.c diff --git a/libc/musl/src/linux/stime.c b/lib/libc/musl/src/linux/stime.c similarity index 100% rename from libc/musl/src/linux/stime.c rename to lib/libc/musl/src/linux/stime.c diff --git a/libc/musl/src/linux/swap.c b/lib/libc/musl/src/linux/swap.c similarity index 100% rename from libc/musl/src/linux/swap.c rename to lib/libc/musl/src/linux/swap.c diff --git a/libc/musl/src/linux/sync_file_range.c b/lib/libc/musl/src/linux/sync_file_range.c similarity index 100% rename from libc/musl/src/linux/sync_file_range.c rename to lib/libc/musl/src/linux/sync_file_range.c diff --git a/libc/musl/src/linux/syncfs.c b/lib/libc/musl/src/linux/syncfs.c similarity index 100% rename from libc/musl/src/linux/syncfs.c rename to lib/libc/musl/src/linux/syncfs.c diff --git a/libc/musl/src/linux/sysinfo.c b/lib/libc/musl/src/linux/sysinfo.c similarity index 100% rename from libc/musl/src/linux/sysinfo.c rename to lib/libc/musl/src/linux/sysinfo.c diff --git a/libc/musl/src/linux/tee.c b/lib/libc/musl/src/linux/tee.c similarity index 100% rename from libc/musl/src/linux/tee.c rename to lib/libc/musl/src/linux/tee.c diff --git a/libc/musl/src/linux/timerfd.c b/lib/libc/musl/src/linux/timerfd.c similarity index 100% rename from libc/musl/src/linux/timerfd.c rename to lib/libc/musl/src/linux/timerfd.c diff --git a/libc/musl/src/linux/unshare.c b/lib/libc/musl/src/linux/unshare.c similarity index 100% rename from libc/musl/src/linux/unshare.c rename to lib/libc/musl/src/linux/unshare.c diff --git a/libc/musl/src/linux/utimes.c b/lib/libc/musl/src/linux/utimes.c similarity index 100% rename from libc/musl/src/linux/utimes.c rename to lib/libc/musl/src/linux/utimes.c diff --git a/libc/musl/src/linux/vhangup.c b/lib/libc/musl/src/linux/vhangup.c similarity index 100% rename from libc/musl/src/linux/vhangup.c rename to lib/libc/musl/src/linux/vhangup.c diff --git a/libc/musl/src/linux/vmsplice.c b/lib/libc/musl/src/linux/vmsplice.c similarity index 100% rename from libc/musl/src/linux/vmsplice.c rename to lib/libc/musl/src/linux/vmsplice.c diff --git a/libc/musl/src/linux/wait3.c b/lib/libc/musl/src/linux/wait3.c similarity index 100% rename from libc/musl/src/linux/wait3.c rename to lib/libc/musl/src/linux/wait3.c diff --git a/libc/musl/src/linux/wait4.c b/lib/libc/musl/src/linux/wait4.c similarity index 100% rename from libc/musl/src/linux/wait4.c rename to lib/libc/musl/src/linux/wait4.c diff --git a/libc/musl/src/linux/x32/sysinfo.c b/lib/libc/musl/src/linux/x32/sysinfo.c similarity index 100% rename from libc/musl/src/linux/x32/sysinfo.c rename to lib/libc/musl/src/linux/x32/sysinfo.c diff --git a/libc/musl/src/linux/xattr.c b/lib/libc/musl/src/linux/xattr.c similarity index 100% rename from libc/musl/src/linux/xattr.c rename to lib/libc/musl/src/linux/xattr.c diff --git a/libc/musl/src/locale/__lctrans.c b/lib/libc/musl/src/locale/__lctrans.c similarity index 100% rename from libc/musl/src/locale/__lctrans.c rename to lib/libc/musl/src/locale/__lctrans.c diff --git a/libc/musl/src/locale/__mo_lookup.c b/lib/libc/musl/src/locale/__mo_lookup.c similarity index 100% rename from libc/musl/src/locale/__mo_lookup.c rename to lib/libc/musl/src/locale/__mo_lookup.c diff --git a/libc/musl/src/locale/big5.h b/lib/libc/musl/src/locale/big5.h similarity index 100% rename from libc/musl/src/locale/big5.h rename to lib/libc/musl/src/locale/big5.h diff --git a/libc/musl/src/locale/bind_textdomain_codeset.c b/lib/libc/musl/src/locale/bind_textdomain_codeset.c similarity index 100% rename from libc/musl/src/locale/bind_textdomain_codeset.c rename to lib/libc/musl/src/locale/bind_textdomain_codeset.c diff --git a/libc/musl/src/locale/c_locale.c b/lib/libc/musl/src/locale/c_locale.c similarity index 100% rename from libc/musl/src/locale/c_locale.c rename to lib/libc/musl/src/locale/c_locale.c diff --git a/libc/musl/src/locale/catclose.c b/lib/libc/musl/src/locale/catclose.c similarity index 100% rename from libc/musl/src/locale/catclose.c rename to lib/libc/musl/src/locale/catclose.c diff --git a/libc/musl/src/locale/catgets.c b/lib/libc/musl/src/locale/catgets.c similarity index 100% rename from libc/musl/src/locale/catgets.c rename to lib/libc/musl/src/locale/catgets.c diff --git a/libc/musl/src/locale/catopen.c b/lib/libc/musl/src/locale/catopen.c similarity index 100% rename from libc/musl/src/locale/catopen.c rename to lib/libc/musl/src/locale/catopen.c diff --git a/libc/musl/src/locale/codepages.h b/lib/libc/musl/src/locale/codepages.h similarity index 100% rename from libc/musl/src/locale/codepages.h rename to lib/libc/musl/src/locale/codepages.h diff --git a/libc/musl/src/locale/dcngettext.c b/lib/libc/musl/src/locale/dcngettext.c similarity index 100% rename from libc/musl/src/locale/dcngettext.c rename to lib/libc/musl/src/locale/dcngettext.c diff --git a/libc/musl/src/locale/duplocale.c b/lib/libc/musl/src/locale/duplocale.c similarity index 100% rename from libc/musl/src/locale/duplocale.c rename to lib/libc/musl/src/locale/duplocale.c diff --git a/libc/musl/src/locale/freelocale.c b/lib/libc/musl/src/locale/freelocale.c similarity index 100% rename from libc/musl/src/locale/freelocale.c rename to lib/libc/musl/src/locale/freelocale.c diff --git a/libc/musl/src/locale/gb18030.h b/lib/libc/musl/src/locale/gb18030.h similarity index 100% rename from libc/musl/src/locale/gb18030.h rename to lib/libc/musl/src/locale/gb18030.h diff --git a/libc/musl/src/locale/hkscs.h b/lib/libc/musl/src/locale/hkscs.h similarity index 100% rename from libc/musl/src/locale/hkscs.h rename to lib/libc/musl/src/locale/hkscs.h diff --git a/libc/musl/src/locale/iconv.c b/lib/libc/musl/src/locale/iconv.c similarity index 100% rename from libc/musl/src/locale/iconv.c rename to lib/libc/musl/src/locale/iconv.c diff --git a/libc/musl/src/locale/iconv_close.c b/lib/libc/musl/src/locale/iconv_close.c similarity index 100% rename from libc/musl/src/locale/iconv_close.c rename to lib/libc/musl/src/locale/iconv_close.c diff --git a/libc/musl/src/locale/jis0208.h b/lib/libc/musl/src/locale/jis0208.h similarity index 100% rename from libc/musl/src/locale/jis0208.h rename to lib/libc/musl/src/locale/jis0208.h diff --git a/libc/musl/src/locale/ksc.h b/lib/libc/musl/src/locale/ksc.h similarity index 100% rename from libc/musl/src/locale/ksc.h rename to lib/libc/musl/src/locale/ksc.h diff --git a/libc/musl/src/locale/langinfo.c b/lib/libc/musl/src/locale/langinfo.c similarity index 100% rename from libc/musl/src/locale/langinfo.c rename to lib/libc/musl/src/locale/langinfo.c diff --git a/libc/musl/src/locale/legacychars.h b/lib/libc/musl/src/locale/legacychars.h similarity index 100% rename from libc/musl/src/locale/legacychars.h rename to lib/libc/musl/src/locale/legacychars.h diff --git a/libc/musl/src/locale/locale_map.c b/lib/libc/musl/src/locale/locale_map.c similarity index 100% rename from libc/musl/src/locale/locale_map.c rename to lib/libc/musl/src/locale/locale_map.c diff --git a/libc/musl/src/locale/localeconv.c b/lib/libc/musl/src/locale/localeconv.c similarity index 100% rename from libc/musl/src/locale/localeconv.c rename to lib/libc/musl/src/locale/localeconv.c diff --git a/libc/musl/src/locale/newlocale.c b/lib/libc/musl/src/locale/newlocale.c similarity index 100% rename from libc/musl/src/locale/newlocale.c rename to lib/libc/musl/src/locale/newlocale.c diff --git a/libc/musl/src/locale/pleval.c b/lib/libc/musl/src/locale/pleval.c similarity index 100% rename from libc/musl/src/locale/pleval.c rename to lib/libc/musl/src/locale/pleval.c diff --git a/libc/musl/src/locale/pleval.h b/lib/libc/musl/src/locale/pleval.h similarity index 100% rename from libc/musl/src/locale/pleval.h rename to lib/libc/musl/src/locale/pleval.h diff --git a/libc/musl/src/locale/revjis.h b/lib/libc/musl/src/locale/revjis.h similarity index 100% rename from libc/musl/src/locale/revjis.h rename to lib/libc/musl/src/locale/revjis.h diff --git a/libc/musl/src/locale/setlocale.c b/lib/libc/musl/src/locale/setlocale.c similarity index 100% rename from libc/musl/src/locale/setlocale.c rename to lib/libc/musl/src/locale/setlocale.c diff --git a/libc/musl/src/locale/strcoll.c b/lib/libc/musl/src/locale/strcoll.c similarity index 100% rename from libc/musl/src/locale/strcoll.c rename to lib/libc/musl/src/locale/strcoll.c diff --git a/libc/musl/src/locale/strfmon.c b/lib/libc/musl/src/locale/strfmon.c similarity index 100% rename from libc/musl/src/locale/strfmon.c rename to lib/libc/musl/src/locale/strfmon.c diff --git a/libc/musl/src/locale/strxfrm.c b/lib/libc/musl/src/locale/strxfrm.c similarity index 100% rename from libc/musl/src/locale/strxfrm.c rename to lib/libc/musl/src/locale/strxfrm.c diff --git a/libc/musl/src/locale/textdomain.c b/lib/libc/musl/src/locale/textdomain.c similarity index 100% rename from libc/musl/src/locale/textdomain.c rename to lib/libc/musl/src/locale/textdomain.c diff --git a/libc/musl/src/locale/uselocale.c b/lib/libc/musl/src/locale/uselocale.c similarity index 100% rename from libc/musl/src/locale/uselocale.c rename to lib/libc/musl/src/locale/uselocale.c diff --git a/libc/musl/src/locale/wcscoll.c b/lib/libc/musl/src/locale/wcscoll.c similarity index 100% rename from libc/musl/src/locale/wcscoll.c rename to lib/libc/musl/src/locale/wcscoll.c diff --git a/libc/musl/src/locale/wcsxfrm.c b/lib/libc/musl/src/locale/wcsxfrm.c similarity index 100% rename from libc/musl/src/locale/wcsxfrm.c rename to lib/libc/musl/src/locale/wcsxfrm.c diff --git a/libc/musl/src/malloc/DESIGN b/lib/libc/musl/src/malloc/DESIGN similarity index 100% rename from libc/musl/src/malloc/DESIGN rename to lib/libc/musl/src/malloc/DESIGN diff --git a/libc/musl/src/malloc/aligned_alloc.c b/lib/libc/musl/src/malloc/aligned_alloc.c similarity index 100% rename from libc/musl/src/malloc/aligned_alloc.c rename to lib/libc/musl/src/malloc/aligned_alloc.c diff --git a/libc/musl/src/malloc/expand_heap.c b/lib/libc/musl/src/malloc/expand_heap.c similarity index 100% rename from libc/musl/src/malloc/expand_heap.c rename to lib/libc/musl/src/malloc/expand_heap.c diff --git a/libc/musl/src/malloc/lite_malloc.c b/lib/libc/musl/src/malloc/lite_malloc.c similarity index 100% rename from libc/musl/src/malloc/lite_malloc.c rename to lib/libc/musl/src/malloc/lite_malloc.c diff --git a/libc/musl/src/malloc/malloc.c b/lib/libc/musl/src/malloc/malloc.c similarity index 100% rename from libc/musl/src/malloc/malloc.c rename to lib/libc/musl/src/malloc/malloc.c diff --git a/libc/musl/src/malloc/malloc_usable_size.c b/lib/libc/musl/src/malloc/malloc_usable_size.c similarity index 100% rename from libc/musl/src/malloc/malloc_usable_size.c rename to lib/libc/musl/src/malloc/malloc_usable_size.c diff --git a/libc/musl/src/malloc/memalign.c b/lib/libc/musl/src/malloc/memalign.c similarity index 100% rename from libc/musl/src/malloc/memalign.c rename to lib/libc/musl/src/malloc/memalign.c diff --git a/libc/musl/src/malloc/posix_memalign.c b/lib/libc/musl/src/malloc/posix_memalign.c similarity index 100% rename from libc/musl/src/malloc/posix_memalign.c rename to lib/libc/musl/src/malloc/posix_memalign.c diff --git a/libc/musl/src/math/__cos.c b/lib/libc/musl/src/math/__cos.c similarity index 100% rename from libc/musl/src/math/__cos.c rename to lib/libc/musl/src/math/__cos.c diff --git a/libc/musl/src/math/__cosdf.c b/lib/libc/musl/src/math/__cosdf.c similarity index 100% rename from libc/musl/src/math/__cosdf.c rename to lib/libc/musl/src/math/__cosdf.c diff --git a/libc/musl/src/math/__cosl.c b/lib/libc/musl/src/math/__cosl.c similarity index 100% rename from libc/musl/src/math/__cosl.c rename to lib/libc/musl/src/math/__cosl.c diff --git a/libc/musl/src/math/__expo2.c b/lib/libc/musl/src/math/__expo2.c similarity index 100% rename from libc/musl/src/math/__expo2.c rename to lib/libc/musl/src/math/__expo2.c diff --git a/libc/musl/src/math/__expo2f.c b/lib/libc/musl/src/math/__expo2f.c similarity index 100% rename from libc/musl/src/math/__expo2f.c rename to lib/libc/musl/src/math/__expo2f.c diff --git a/libc/musl/src/math/__fpclassify.c b/lib/libc/musl/src/math/__fpclassify.c similarity index 100% rename from libc/musl/src/math/__fpclassify.c rename to lib/libc/musl/src/math/__fpclassify.c diff --git a/libc/musl/src/math/__fpclassifyf.c b/lib/libc/musl/src/math/__fpclassifyf.c similarity index 100% rename from libc/musl/src/math/__fpclassifyf.c rename to lib/libc/musl/src/math/__fpclassifyf.c diff --git a/libc/musl/src/math/__fpclassifyl.c b/lib/libc/musl/src/math/__fpclassifyl.c similarity index 100% rename from libc/musl/src/math/__fpclassifyl.c rename to lib/libc/musl/src/math/__fpclassifyl.c diff --git a/libc/musl/src/math/__invtrigl.c b/lib/libc/musl/src/math/__invtrigl.c similarity index 100% rename from libc/musl/src/math/__invtrigl.c rename to lib/libc/musl/src/math/__invtrigl.c diff --git a/libc/musl/src/math/__invtrigl.h b/lib/libc/musl/src/math/__invtrigl.h similarity index 100% rename from libc/musl/src/math/__invtrigl.h rename to lib/libc/musl/src/math/__invtrigl.h diff --git a/libc/musl/src/math/__polevll.c b/lib/libc/musl/src/math/__polevll.c similarity index 100% rename from libc/musl/src/math/__polevll.c rename to lib/libc/musl/src/math/__polevll.c diff --git a/libc/musl/src/math/__rem_pio2.c b/lib/libc/musl/src/math/__rem_pio2.c similarity index 100% rename from libc/musl/src/math/__rem_pio2.c rename to lib/libc/musl/src/math/__rem_pio2.c diff --git a/libc/musl/src/math/__rem_pio2_large.c b/lib/libc/musl/src/math/__rem_pio2_large.c similarity index 100% rename from libc/musl/src/math/__rem_pio2_large.c rename to lib/libc/musl/src/math/__rem_pio2_large.c diff --git a/libc/musl/src/math/__rem_pio2f.c b/lib/libc/musl/src/math/__rem_pio2f.c similarity index 100% rename from libc/musl/src/math/__rem_pio2f.c rename to lib/libc/musl/src/math/__rem_pio2f.c diff --git a/libc/musl/src/math/__rem_pio2l.c b/lib/libc/musl/src/math/__rem_pio2l.c similarity index 100% rename from libc/musl/src/math/__rem_pio2l.c rename to lib/libc/musl/src/math/__rem_pio2l.c diff --git a/libc/musl/src/math/__signbit.c b/lib/libc/musl/src/math/__signbit.c similarity index 100% rename from libc/musl/src/math/__signbit.c rename to lib/libc/musl/src/math/__signbit.c diff --git a/libc/musl/src/math/__signbitf.c b/lib/libc/musl/src/math/__signbitf.c similarity index 100% rename from libc/musl/src/math/__signbitf.c rename to lib/libc/musl/src/math/__signbitf.c diff --git a/libc/musl/src/math/__signbitl.c b/lib/libc/musl/src/math/__signbitl.c similarity index 100% rename from libc/musl/src/math/__signbitl.c rename to lib/libc/musl/src/math/__signbitl.c diff --git a/libc/musl/src/math/__sin.c b/lib/libc/musl/src/math/__sin.c similarity index 100% rename from libc/musl/src/math/__sin.c rename to lib/libc/musl/src/math/__sin.c diff --git a/libc/musl/src/math/__sindf.c b/lib/libc/musl/src/math/__sindf.c similarity index 100% rename from libc/musl/src/math/__sindf.c rename to lib/libc/musl/src/math/__sindf.c diff --git a/libc/musl/src/math/__sinl.c b/lib/libc/musl/src/math/__sinl.c similarity index 100% rename from libc/musl/src/math/__sinl.c rename to lib/libc/musl/src/math/__sinl.c diff --git a/libc/musl/src/math/__tan.c b/lib/libc/musl/src/math/__tan.c similarity index 100% rename from libc/musl/src/math/__tan.c rename to lib/libc/musl/src/math/__tan.c diff --git a/libc/musl/src/math/__tandf.c b/lib/libc/musl/src/math/__tandf.c similarity index 100% rename from libc/musl/src/math/__tandf.c rename to lib/libc/musl/src/math/__tandf.c diff --git a/libc/musl/src/math/__tanl.c b/lib/libc/musl/src/math/__tanl.c similarity index 100% rename from libc/musl/src/math/__tanl.c rename to lib/libc/musl/src/math/__tanl.c diff --git a/libc/musl/src/math/aarch64/ceil.c b/lib/libc/musl/src/math/aarch64/ceil.c similarity index 100% rename from libc/musl/src/math/aarch64/ceil.c rename to lib/libc/musl/src/math/aarch64/ceil.c diff --git a/libc/musl/src/math/aarch64/ceilf.c b/lib/libc/musl/src/math/aarch64/ceilf.c similarity index 100% rename from libc/musl/src/math/aarch64/ceilf.c rename to lib/libc/musl/src/math/aarch64/ceilf.c diff --git a/libc/musl/src/math/aarch64/fabs.c b/lib/libc/musl/src/math/aarch64/fabs.c similarity index 100% rename from libc/musl/src/math/aarch64/fabs.c rename to lib/libc/musl/src/math/aarch64/fabs.c diff --git a/libc/musl/src/math/aarch64/fabsf.c b/lib/libc/musl/src/math/aarch64/fabsf.c similarity index 100% rename from libc/musl/src/math/aarch64/fabsf.c rename to lib/libc/musl/src/math/aarch64/fabsf.c diff --git a/libc/musl/src/math/aarch64/floor.c b/lib/libc/musl/src/math/aarch64/floor.c similarity index 100% rename from libc/musl/src/math/aarch64/floor.c rename to lib/libc/musl/src/math/aarch64/floor.c diff --git a/libc/musl/src/math/aarch64/floorf.c b/lib/libc/musl/src/math/aarch64/floorf.c similarity index 100% rename from libc/musl/src/math/aarch64/floorf.c rename to lib/libc/musl/src/math/aarch64/floorf.c diff --git a/libc/musl/src/math/aarch64/fma.c b/lib/libc/musl/src/math/aarch64/fma.c similarity index 100% rename from libc/musl/src/math/aarch64/fma.c rename to lib/libc/musl/src/math/aarch64/fma.c diff --git a/libc/musl/src/math/aarch64/fmaf.c b/lib/libc/musl/src/math/aarch64/fmaf.c similarity index 100% rename from libc/musl/src/math/aarch64/fmaf.c rename to lib/libc/musl/src/math/aarch64/fmaf.c diff --git a/libc/musl/src/math/aarch64/fmax.c b/lib/libc/musl/src/math/aarch64/fmax.c similarity index 100% rename from libc/musl/src/math/aarch64/fmax.c rename to lib/libc/musl/src/math/aarch64/fmax.c diff --git a/libc/musl/src/math/aarch64/fmaxf.c b/lib/libc/musl/src/math/aarch64/fmaxf.c similarity index 100% rename from libc/musl/src/math/aarch64/fmaxf.c rename to lib/libc/musl/src/math/aarch64/fmaxf.c diff --git a/libc/musl/src/math/aarch64/fmin.c b/lib/libc/musl/src/math/aarch64/fmin.c similarity index 100% rename from libc/musl/src/math/aarch64/fmin.c rename to lib/libc/musl/src/math/aarch64/fmin.c diff --git a/libc/musl/src/math/aarch64/fminf.c b/lib/libc/musl/src/math/aarch64/fminf.c similarity index 100% rename from libc/musl/src/math/aarch64/fminf.c rename to lib/libc/musl/src/math/aarch64/fminf.c diff --git a/libc/musl/src/math/aarch64/llrint.c b/lib/libc/musl/src/math/aarch64/llrint.c similarity index 100% rename from libc/musl/src/math/aarch64/llrint.c rename to lib/libc/musl/src/math/aarch64/llrint.c diff --git a/libc/musl/src/math/aarch64/llrintf.c b/lib/libc/musl/src/math/aarch64/llrintf.c similarity index 100% rename from libc/musl/src/math/aarch64/llrintf.c rename to lib/libc/musl/src/math/aarch64/llrintf.c diff --git a/libc/musl/src/math/aarch64/llround.c b/lib/libc/musl/src/math/aarch64/llround.c similarity index 100% rename from libc/musl/src/math/aarch64/llround.c rename to lib/libc/musl/src/math/aarch64/llround.c diff --git a/libc/musl/src/math/aarch64/llroundf.c b/lib/libc/musl/src/math/aarch64/llroundf.c similarity index 100% rename from libc/musl/src/math/aarch64/llroundf.c rename to lib/libc/musl/src/math/aarch64/llroundf.c diff --git a/libc/musl/src/math/aarch64/lrint.c b/lib/libc/musl/src/math/aarch64/lrint.c similarity index 100% rename from libc/musl/src/math/aarch64/lrint.c rename to lib/libc/musl/src/math/aarch64/lrint.c diff --git a/libc/musl/src/math/aarch64/lrintf.c b/lib/libc/musl/src/math/aarch64/lrintf.c similarity index 100% rename from libc/musl/src/math/aarch64/lrintf.c rename to lib/libc/musl/src/math/aarch64/lrintf.c diff --git a/libc/musl/src/math/aarch64/lround.c b/lib/libc/musl/src/math/aarch64/lround.c similarity index 100% rename from libc/musl/src/math/aarch64/lround.c rename to lib/libc/musl/src/math/aarch64/lround.c diff --git a/libc/musl/src/math/aarch64/lroundf.c b/lib/libc/musl/src/math/aarch64/lroundf.c similarity index 100% rename from libc/musl/src/math/aarch64/lroundf.c rename to lib/libc/musl/src/math/aarch64/lroundf.c diff --git a/libc/musl/src/math/aarch64/nearbyint.c b/lib/libc/musl/src/math/aarch64/nearbyint.c similarity index 100% rename from libc/musl/src/math/aarch64/nearbyint.c rename to lib/libc/musl/src/math/aarch64/nearbyint.c diff --git a/libc/musl/src/math/aarch64/nearbyintf.c b/lib/libc/musl/src/math/aarch64/nearbyintf.c similarity index 100% rename from libc/musl/src/math/aarch64/nearbyintf.c rename to lib/libc/musl/src/math/aarch64/nearbyintf.c diff --git a/libc/musl/src/math/aarch64/rint.c b/lib/libc/musl/src/math/aarch64/rint.c similarity index 100% rename from libc/musl/src/math/aarch64/rint.c rename to lib/libc/musl/src/math/aarch64/rint.c diff --git a/libc/musl/src/math/aarch64/rintf.c b/lib/libc/musl/src/math/aarch64/rintf.c similarity index 100% rename from libc/musl/src/math/aarch64/rintf.c rename to lib/libc/musl/src/math/aarch64/rintf.c diff --git a/libc/musl/src/math/aarch64/round.c b/lib/libc/musl/src/math/aarch64/round.c similarity index 100% rename from libc/musl/src/math/aarch64/round.c rename to lib/libc/musl/src/math/aarch64/round.c diff --git a/libc/musl/src/math/aarch64/roundf.c b/lib/libc/musl/src/math/aarch64/roundf.c similarity index 100% rename from libc/musl/src/math/aarch64/roundf.c rename to lib/libc/musl/src/math/aarch64/roundf.c diff --git a/libc/musl/src/math/aarch64/sqrt.c b/lib/libc/musl/src/math/aarch64/sqrt.c similarity index 100% rename from libc/musl/src/math/aarch64/sqrt.c rename to lib/libc/musl/src/math/aarch64/sqrt.c diff --git a/libc/musl/src/math/aarch64/sqrtf.c b/lib/libc/musl/src/math/aarch64/sqrtf.c similarity index 100% rename from libc/musl/src/math/aarch64/sqrtf.c rename to lib/libc/musl/src/math/aarch64/sqrtf.c diff --git a/libc/musl/src/math/aarch64/trunc.c b/lib/libc/musl/src/math/aarch64/trunc.c similarity index 100% rename from libc/musl/src/math/aarch64/trunc.c rename to lib/libc/musl/src/math/aarch64/trunc.c diff --git a/libc/musl/src/math/aarch64/truncf.c b/lib/libc/musl/src/math/aarch64/truncf.c similarity index 100% rename from libc/musl/src/math/aarch64/truncf.c rename to lib/libc/musl/src/math/aarch64/truncf.c diff --git a/libc/musl/src/math/acos.c b/lib/libc/musl/src/math/acos.c similarity index 100% rename from libc/musl/src/math/acos.c rename to lib/libc/musl/src/math/acos.c diff --git a/libc/musl/src/math/acosf.c b/lib/libc/musl/src/math/acosf.c similarity index 100% rename from libc/musl/src/math/acosf.c rename to lib/libc/musl/src/math/acosf.c diff --git a/libc/musl/src/math/acosh.c b/lib/libc/musl/src/math/acosh.c similarity index 100% rename from libc/musl/src/math/acosh.c rename to lib/libc/musl/src/math/acosh.c diff --git a/libc/musl/src/math/acoshf.c b/lib/libc/musl/src/math/acoshf.c similarity index 100% rename from libc/musl/src/math/acoshf.c rename to lib/libc/musl/src/math/acoshf.c diff --git a/libc/musl/src/math/acoshl.c b/lib/libc/musl/src/math/acoshl.c similarity index 100% rename from libc/musl/src/math/acoshl.c rename to lib/libc/musl/src/math/acoshl.c diff --git a/libc/musl/src/math/acosl.c b/lib/libc/musl/src/math/acosl.c similarity index 100% rename from libc/musl/src/math/acosl.c rename to lib/libc/musl/src/math/acosl.c diff --git a/libc/musl/src/math/arm/fabs.c b/lib/libc/musl/src/math/arm/fabs.c similarity index 100% rename from libc/musl/src/math/arm/fabs.c rename to lib/libc/musl/src/math/arm/fabs.c diff --git a/libc/musl/src/math/arm/fabsf.c b/lib/libc/musl/src/math/arm/fabsf.c similarity index 100% rename from libc/musl/src/math/arm/fabsf.c rename to lib/libc/musl/src/math/arm/fabsf.c diff --git a/libc/musl/src/math/arm/fma.c b/lib/libc/musl/src/math/arm/fma.c similarity index 100% rename from libc/musl/src/math/arm/fma.c rename to lib/libc/musl/src/math/arm/fma.c diff --git a/libc/musl/src/math/arm/fmaf.c b/lib/libc/musl/src/math/arm/fmaf.c similarity index 100% rename from libc/musl/src/math/arm/fmaf.c rename to lib/libc/musl/src/math/arm/fmaf.c diff --git a/libc/musl/src/math/arm/sqrt.c b/lib/libc/musl/src/math/arm/sqrt.c similarity index 100% rename from libc/musl/src/math/arm/sqrt.c rename to lib/libc/musl/src/math/arm/sqrt.c diff --git a/libc/musl/src/math/arm/sqrtf.c b/lib/libc/musl/src/math/arm/sqrtf.c similarity index 100% rename from libc/musl/src/math/arm/sqrtf.c rename to lib/libc/musl/src/math/arm/sqrtf.c diff --git a/libc/musl/src/math/asin.c b/lib/libc/musl/src/math/asin.c similarity index 100% rename from libc/musl/src/math/asin.c rename to lib/libc/musl/src/math/asin.c diff --git a/libc/musl/src/math/asinf.c b/lib/libc/musl/src/math/asinf.c similarity index 100% rename from libc/musl/src/math/asinf.c rename to lib/libc/musl/src/math/asinf.c diff --git a/libc/musl/src/math/asinh.c b/lib/libc/musl/src/math/asinh.c similarity index 100% rename from libc/musl/src/math/asinh.c rename to lib/libc/musl/src/math/asinh.c diff --git a/libc/musl/src/math/asinhf.c b/lib/libc/musl/src/math/asinhf.c similarity index 100% rename from libc/musl/src/math/asinhf.c rename to lib/libc/musl/src/math/asinhf.c diff --git a/libc/musl/src/math/asinhl.c b/lib/libc/musl/src/math/asinhl.c similarity index 100% rename from libc/musl/src/math/asinhl.c rename to lib/libc/musl/src/math/asinhl.c diff --git a/libc/musl/src/math/asinl.c b/lib/libc/musl/src/math/asinl.c similarity index 100% rename from libc/musl/src/math/asinl.c rename to lib/libc/musl/src/math/asinl.c diff --git a/libc/musl/src/math/atan.c b/lib/libc/musl/src/math/atan.c similarity index 100% rename from libc/musl/src/math/atan.c rename to lib/libc/musl/src/math/atan.c diff --git a/libc/musl/src/math/atan2.c b/lib/libc/musl/src/math/atan2.c similarity index 100% rename from libc/musl/src/math/atan2.c rename to lib/libc/musl/src/math/atan2.c diff --git a/libc/musl/src/math/atan2f.c b/lib/libc/musl/src/math/atan2f.c similarity index 100% rename from libc/musl/src/math/atan2f.c rename to lib/libc/musl/src/math/atan2f.c diff --git a/libc/musl/src/math/atan2l.c b/lib/libc/musl/src/math/atan2l.c similarity index 100% rename from libc/musl/src/math/atan2l.c rename to lib/libc/musl/src/math/atan2l.c diff --git a/libc/musl/src/math/atanf.c b/lib/libc/musl/src/math/atanf.c similarity index 100% rename from libc/musl/src/math/atanf.c rename to lib/libc/musl/src/math/atanf.c diff --git a/libc/musl/src/math/atanh.c b/lib/libc/musl/src/math/atanh.c similarity index 100% rename from libc/musl/src/math/atanh.c rename to lib/libc/musl/src/math/atanh.c diff --git a/libc/musl/src/math/atanhf.c b/lib/libc/musl/src/math/atanhf.c similarity index 100% rename from libc/musl/src/math/atanhf.c rename to lib/libc/musl/src/math/atanhf.c diff --git a/libc/musl/src/math/atanhl.c b/lib/libc/musl/src/math/atanhl.c similarity index 100% rename from libc/musl/src/math/atanhl.c rename to lib/libc/musl/src/math/atanhl.c diff --git a/libc/musl/src/math/atanl.c b/lib/libc/musl/src/math/atanl.c similarity index 100% rename from libc/musl/src/math/atanl.c rename to lib/libc/musl/src/math/atanl.c diff --git a/libc/musl/src/math/cbrt.c b/lib/libc/musl/src/math/cbrt.c similarity index 100% rename from libc/musl/src/math/cbrt.c rename to lib/libc/musl/src/math/cbrt.c diff --git a/libc/musl/src/math/cbrtf.c b/lib/libc/musl/src/math/cbrtf.c similarity index 100% rename from libc/musl/src/math/cbrtf.c rename to lib/libc/musl/src/math/cbrtf.c diff --git a/libc/musl/src/math/cbrtl.c b/lib/libc/musl/src/math/cbrtl.c similarity index 100% rename from libc/musl/src/math/cbrtl.c rename to lib/libc/musl/src/math/cbrtl.c diff --git a/libc/musl/src/math/ceil.c b/lib/libc/musl/src/math/ceil.c similarity index 100% rename from libc/musl/src/math/ceil.c rename to lib/libc/musl/src/math/ceil.c diff --git a/libc/musl/src/math/ceilf.c b/lib/libc/musl/src/math/ceilf.c similarity index 100% rename from libc/musl/src/math/ceilf.c rename to lib/libc/musl/src/math/ceilf.c diff --git a/libc/musl/src/math/ceill.c b/lib/libc/musl/src/math/ceill.c similarity index 100% rename from libc/musl/src/math/ceill.c rename to lib/libc/musl/src/math/ceill.c diff --git a/libc/musl/src/math/copysign.c b/lib/libc/musl/src/math/copysign.c similarity index 100% rename from libc/musl/src/math/copysign.c rename to lib/libc/musl/src/math/copysign.c diff --git a/libc/musl/src/math/copysignf.c b/lib/libc/musl/src/math/copysignf.c similarity index 100% rename from libc/musl/src/math/copysignf.c rename to lib/libc/musl/src/math/copysignf.c diff --git a/libc/musl/src/math/copysignl.c b/lib/libc/musl/src/math/copysignl.c similarity index 100% rename from libc/musl/src/math/copysignl.c rename to lib/libc/musl/src/math/copysignl.c diff --git a/libc/musl/src/math/cos.c b/lib/libc/musl/src/math/cos.c similarity index 100% rename from libc/musl/src/math/cos.c rename to lib/libc/musl/src/math/cos.c diff --git a/libc/musl/src/math/cosf.c b/lib/libc/musl/src/math/cosf.c similarity index 100% rename from libc/musl/src/math/cosf.c rename to lib/libc/musl/src/math/cosf.c diff --git a/libc/musl/src/math/cosh.c b/lib/libc/musl/src/math/cosh.c similarity index 100% rename from libc/musl/src/math/cosh.c rename to lib/libc/musl/src/math/cosh.c diff --git a/libc/musl/src/math/coshf.c b/lib/libc/musl/src/math/coshf.c similarity index 100% rename from libc/musl/src/math/coshf.c rename to lib/libc/musl/src/math/coshf.c diff --git a/libc/musl/src/math/coshl.c b/lib/libc/musl/src/math/coshl.c similarity index 100% rename from libc/musl/src/math/coshl.c rename to lib/libc/musl/src/math/coshl.c diff --git a/libc/musl/src/math/cosl.c b/lib/libc/musl/src/math/cosl.c similarity index 100% rename from libc/musl/src/math/cosl.c rename to lib/libc/musl/src/math/cosl.c diff --git a/libc/musl/src/math/erf.c b/lib/libc/musl/src/math/erf.c similarity index 100% rename from libc/musl/src/math/erf.c rename to lib/libc/musl/src/math/erf.c diff --git a/libc/musl/src/math/erff.c b/lib/libc/musl/src/math/erff.c similarity index 100% rename from libc/musl/src/math/erff.c rename to lib/libc/musl/src/math/erff.c diff --git a/libc/musl/src/math/erfl.c b/lib/libc/musl/src/math/erfl.c similarity index 100% rename from libc/musl/src/math/erfl.c rename to lib/libc/musl/src/math/erfl.c diff --git a/libc/musl/src/math/exp.c b/lib/libc/musl/src/math/exp.c similarity index 100% rename from libc/musl/src/math/exp.c rename to lib/libc/musl/src/math/exp.c diff --git a/libc/musl/src/math/exp10.c b/lib/libc/musl/src/math/exp10.c similarity index 100% rename from libc/musl/src/math/exp10.c rename to lib/libc/musl/src/math/exp10.c diff --git a/libc/musl/src/math/exp10f.c b/lib/libc/musl/src/math/exp10f.c similarity index 100% rename from libc/musl/src/math/exp10f.c rename to lib/libc/musl/src/math/exp10f.c diff --git a/libc/musl/src/math/exp10l.c b/lib/libc/musl/src/math/exp10l.c similarity index 100% rename from libc/musl/src/math/exp10l.c rename to lib/libc/musl/src/math/exp10l.c diff --git a/libc/musl/src/math/exp2.c b/lib/libc/musl/src/math/exp2.c similarity index 100% rename from libc/musl/src/math/exp2.c rename to lib/libc/musl/src/math/exp2.c diff --git a/libc/musl/src/math/exp2f.c b/lib/libc/musl/src/math/exp2f.c similarity index 100% rename from libc/musl/src/math/exp2f.c rename to lib/libc/musl/src/math/exp2f.c diff --git a/libc/musl/src/math/exp2l.c b/lib/libc/musl/src/math/exp2l.c similarity index 100% rename from libc/musl/src/math/exp2l.c rename to lib/libc/musl/src/math/exp2l.c diff --git a/libc/musl/src/math/expf.c b/lib/libc/musl/src/math/expf.c similarity index 100% rename from libc/musl/src/math/expf.c rename to lib/libc/musl/src/math/expf.c diff --git a/libc/musl/src/math/expl.c b/lib/libc/musl/src/math/expl.c similarity index 100% rename from libc/musl/src/math/expl.c rename to lib/libc/musl/src/math/expl.c diff --git a/libc/musl/src/math/expm1.c b/lib/libc/musl/src/math/expm1.c similarity index 100% rename from libc/musl/src/math/expm1.c rename to lib/libc/musl/src/math/expm1.c diff --git a/libc/musl/src/math/expm1f.c b/lib/libc/musl/src/math/expm1f.c similarity index 100% rename from libc/musl/src/math/expm1f.c rename to lib/libc/musl/src/math/expm1f.c diff --git a/libc/musl/src/math/expm1l.c b/lib/libc/musl/src/math/expm1l.c similarity index 100% rename from libc/musl/src/math/expm1l.c rename to lib/libc/musl/src/math/expm1l.c diff --git a/libc/musl/src/math/fabs.c b/lib/libc/musl/src/math/fabs.c similarity index 100% rename from libc/musl/src/math/fabs.c rename to lib/libc/musl/src/math/fabs.c diff --git a/libc/musl/src/math/fabsf.c b/lib/libc/musl/src/math/fabsf.c similarity index 100% rename from libc/musl/src/math/fabsf.c rename to lib/libc/musl/src/math/fabsf.c diff --git a/libc/musl/src/math/fabsl.c b/lib/libc/musl/src/math/fabsl.c similarity index 100% rename from libc/musl/src/math/fabsl.c rename to lib/libc/musl/src/math/fabsl.c diff --git a/libc/musl/src/math/fdim.c b/lib/libc/musl/src/math/fdim.c similarity index 100% rename from libc/musl/src/math/fdim.c rename to lib/libc/musl/src/math/fdim.c diff --git a/libc/musl/src/math/fdimf.c b/lib/libc/musl/src/math/fdimf.c similarity index 100% rename from libc/musl/src/math/fdimf.c rename to lib/libc/musl/src/math/fdimf.c diff --git a/libc/musl/src/math/fdiml.c b/lib/libc/musl/src/math/fdiml.c similarity index 100% rename from libc/musl/src/math/fdiml.c rename to lib/libc/musl/src/math/fdiml.c diff --git a/libc/musl/src/math/finite.c b/lib/libc/musl/src/math/finite.c similarity index 100% rename from libc/musl/src/math/finite.c rename to lib/libc/musl/src/math/finite.c diff --git a/libc/musl/src/math/finitef.c b/lib/libc/musl/src/math/finitef.c similarity index 100% rename from libc/musl/src/math/finitef.c rename to lib/libc/musl/src/math/finitef.c diff --git a/libc/musl/src/math/floor.c b/lib/libc/musl/src/math/floor.c similarity index 100% rename from libc/musl/src/math/floor.c rename to lib/libc/musl/src/math/floor.c diff --git a/libc/musl/src/math/floorf.c b/lib/libc/musl/src/math/floorf.c similarity index 100% rename from libc/musl/src/math/floorf.c rename to lib/libc/musl/src/math/floorf.c diff --git a/libc/musl/src/math/floorl.c b/lib/libc/musl/src/math/floorl.c similarity index 100% rename from libc/musl/src/math/floorl.c rename to lib/libc/musl/src/math/floorl.c diff --git a/libc/musl/src/math/fma.c b/lib/libc/musl/src/math/fma.c similarity index 100% rename from libc/musl/src/math/fma.c rename to lib/libc/musl/src/math/fma.c diff --git a/libc/musl/src/math/fmaf.c b/lib/libc/musl/src/math/fmaf.c similarity index 100% rename from libc/musl/src/math/fmaf.c rename to lib/libc/musl/src/math/fmaf.c diff --git a/libc/musl/src/math/fmal.c b/lib/libc/musl/src/math/fmal.c similarity index 100% rename from libc/musl/src/math/fmal.c rename to lib/libc/musl/src/math/fmal.c diff --git a/libc/musl/src/math/fmax.c b/lib/libc/musl/src/math/fmax.c similarity index 100% rename from libc/musl/src/math/fmax.c rename to lib/libc/musl/src/math/fmax.c diff --git a/libc/musl/src/math/fmaxf.c b/lib/libc/musl/src/math/fmaxf.c similarity index 100% rename from libc/musl/src/math/fmaxf.c rename to lib/libc/musl/src/math/fmaxf.c diff --git a/libc/musl/src/math/fmaxl.c b/lib/libc/musl/src/math/fmaxl.c similarity index 100% rename from libc/musl/src/math/fmaxl.c rename to lib/libc/musl/src/math/fmaxl.c diff --git a/libc/musl/src/math/fmin.c b/lib/libc/musl/src/math/fmin.c similarity index 100% rename from libc/musl/src/math/fmin.c rename to lib/libc/musl/src/math/fmin.c diff --git a/libc/musl/src/math/fminf.c b/lib/libc/musl/src/math/fminf.c similarity index 100% rename from libc/musl/src/math/fminf.c rename to lib/libc/musl/src/math/fminf.c diff --git a/libc/musl/src/math/fminl.c b/lib/libc/musl/src/math/fminl.c similarity index 100% rename from libc/musl/src/math/fminl.c rename to lib/libc/musl/src/math/fminl.c diff --git a/libc/musl/src/math/fmod.c b/lib/libc/musl/src/math/fmod.c similarity index 100% rename from libc/musl/src/math/fmod.c rename to lib/libc/musl/src/math/fmod.c diff --git a/libc/musl/src/math/fmodf.c b/lib/libc/musl/src/math/fmodf.c similarity index 100% rename from libc/musl/src/math/fmodf.c rename to lib/libc/musl/src/math/fmodf.c diff --git a/libc/musl/src/math/fmodl.c b/lib/libc/musl/src/math/fmodl.c similarity index 100% rename from libc/musl/src/math/fmodl.c rename to lib/libc/musl/src/math/fmodl.c diff --git a/libc/musl/src/math/frexp.c b/lib/libc/musl/src/math/frexp.c similarity index 100% rename from libc/musl/src/math/frexp.c rename to lib/libc/musl/src/math/frexp.c diff --git a/libc/musl/src/math/frexpf.c b/lib/libc/musl/src/math/frexpf.c similarity index 100% rename from libc/musl/src/math/frexpf.c rename to lib/libc/musl/src/math/frexpf.c diff --git a/libc/musl/src/math/frexpl.c b/lib/libc/musl/src/math/frexpl.c similarity index 100% rename from libc/musl/src/math/frexpl.c rename to lib/libc/musl/src/math/frexpl.c diff --git a/libc/musl/src/math/hypot.c b/lib/libc/musl/src/math/hypot.c similarity index 100% rename from libc/musl/src/math/hypot.c rename to lib/libc/musl/src/math/hypot.c diff --git a/libc/musl/src/math/hypotf.c b/lib/libc/musl/src/math/hypotf.c similarity index 100% rename from libc/musl/src/math/hypotf.c rename to lib/libc/musl/src/math/hypotf.c diff --git a/libc/musl/src/math/hypotl.c b/lib/libc/musl/src/math/hypotl.c similarity index 100% rename from libc/musl/src/math/hypotl.c rename to lib/libc/musl/src/math/hypotl.c diff --git a/libc/musl/src/math/i386/__invtrigl.s b/lib/libc/musl/src/math/i386/__invtrigl.s similarity index 100% rename from libc/musl/src/math/i386/__invtrigl.s rename to lib/libc/musl/src/math/i386/__invtrigl.s diff --git a/libc/musl/src/math/i386/acos.s b/lib/libc/musl/src/math/i386/acos.s similarity index 100% rename from libc/musl/src/math/i386/acos.s rename to lib/libc/musl/src/math/i386/acos.s diff --git a/libc/musl/src/math/i386/acosf.s b/lib/libc/musl/src/math/i386/acosf.s similarity index 100% rename from libc/musl/src/math/i386/acosf.s rename to lib/libc/musl/src/math/i386/acosf.s diff --git a/libc/musl/src/math/i386/acosl.s b/lib/libc/musl/src/math/i386/acosl.s similarity index 100% rename from libc/musl/src/math/i386/acosl.s rename to lib/libc/musl/src/math/i386/acosl.s diff --git a/libc/musl/src/math/i386/asin.s b/lib/libc/musl/src/math/i386/asin.s similarity index 100% rename from libc/musl/src/math/i386/asin.s rename to lib/libc/musl/src/math/i386/asin.s diff --git a/libc/musl/src/math/i386/asinf.s b/lib/libc/musl/src/math/i386/asinf.s similarity index 100% rename from libc/musl/src/math/i386/asinf.s rename to lib/libc/musl/src/math/i386/asinf.s diff --git a/libc/musl/src/math/i386/asinl.s b/lib/libc/musl/src/math/i386/asinl.s similarity index 100% rename from libc/musl/src/math/i386/asinl.s rename to lib/libc/musl/src/math/i386/asinl.s diff --git a/libc/musl/src/math/i386/atan.s b/lib/libc/musl/src/math/i386/atan.s similarity index 100% rename from libc/musl/src/math/i386/atan.s rename to lib/libc/musl/src/math/i386/atan.s diff --git a/libc/musl/src/math/i386/atan2.s b/lib/libc/musl/src/math/i386/atan2.s similarity index 100% rename from libc/musl/src/math/i386/atan2.s rename to lib/libc/musl/src/math/i386/atan2.s diff --git a/libc/musl/src/math/i386/atan2f.s b/lib/libc/musl/src/math/i386/atan2f.s similarity index 100% rename from libc/musl/src/math/i386/atan2f.s rename to lib/libc/musl/src/math/i386/atan2f.s diff --git a/libc/musl/src/math/i386/atan2l.s b/lib/libc/musl/src/math/i386/atan2l.s similarity index 100% rename from libc/musl/src/math/i386/atan2l.s rename to lib/libc/musl/src/math/i386/atan2l.s diff --git a/libc/musl/src/math/i386/atanf.s b/lib/libc/musl/src/math/i386/atanf.s similarity index 100% rename from libc/musl/src/math/i386/atanf.s rename to lib/libc/musl/src/math/i386/atanf.s diff --git a/libc/musl/src/math/i386/atanl.s b/lib/libc/musl/src/math/i386/atanl.s similarity index 100% rename from libc/musl/src/math/i386/atanl.s rename to lib/libc/musl/src/math/i386/atanl.s diff --git a/libc/musl/src/math/i386/ceil.s b/lib/libc/musl/src/math/i386/ceil.s similarity index 100% rename from libc/musl/src/math/i386/ceil.s rename to lib/libc/musl/src/math/i386/ceil.s diff --git a/libc/musl/src/math/i386/ceilf.s b/lib/libc/musl/src/math/i386/ceilf.s similarity index 100% rename from libc/musl/src/math/i386/ceilf.s rename to lib/libc/musl/src/math/i386/ceilf.s diff --git a/libc/musl/src/math/i386/ceill.s b/lib/libc/musl/src/math/i386/ceill.s similarity index 100% rename from libc/musl/src/math/i386/ceill.s rename to lib/libc/musl/src/math/i386/ceill.s diff --git a/libc/musl/src/math/i386/exp.s b/lib/libc/musl/src/math/i386/exp.s similarity index 100% rename from libc/musl/src/math/i386/exp.s rename to lib/libc/musl/src/math/i386/exp.s diff --git a/libc/musl/src/math/i386/exp2.s b/lib/libc/musl/src/math/i386/exp2.s similarity index 100% rename from libc/musl/src/math/i386/exp2.s rename to lib/libc/musl/src/math/i386/exp2.s diff --git a/libc/musl/src/math/i386/exp2f.s b/lib/libc/musl/src/math/i386/exp2f.s similarity index 100% rename from libc/musl/src/math/i386/exp2f.s rename to lib/libc/musl/src/math/i386/exp2f.s diff --git a/libc/musl/src/math/i386/exp2l.s b/lib/libc/musl/src/math/i386/exp2l.s similarity index 100% rename from libc/musl/src/math/i386/exp2l.s rename to lib/libc/musl/src/math/i386/exp2l.s diff --git a/libc/musl/src/math/i386/expf.s b/lib/libc/musl/src/math/i386/expf.s similarity index 100% rename from libc/musl/src/math/i386/expf.s rename to lib/libc/musl/src/math/i386/expf.s diff --git a/libc/musl/src/math/i386/expl.s b/lib/libc/musl/src/math/i386/expl.s similarity index 100% rename from libc/musl/src/math/i386/expl.s rename to lib/libc/musl/src/math/i386/expl.s diff --git a/libc/musl/src/math/i386/expm1.s b/lib/libc/musl/src/math/i386/expm1.s similarity index 100% rename from libc/musl/src/math/i386/expm1.s rename to lib/libc/musl/src/math/i386/expm1.s diff --git a/libc/musl/src/math/i386/expm1f.s b/lib/libc/musl/src/math/i386/expm1f.s similarity index 100% rename from libc/musl/src/math/i386/expm1f.s rename to lib/libc/musl/src/math/i386/expm1f.s diff --git a/libc/musl/src/math/i386/expm1l.s b/lib/libc/musl/src/math/i386/expm1l.s similarity index 100% rename from libc/musl/src/math/i386/expm1l.s rename to lib/libc/musl/src/math/i386/expm1l.s diff --git a/libc/musl/src/math/i386/fabs.s b/lib/libc/musl/src/math/i386/fabs.s similarity index 100% rename from libc/musl/src/math/i386/fabs.s rename to lib/libc/musl/src/math/i386/fabs.s diff --git a/libc/musl/src/math/i386/fabsf.s b/lib/libc/musl/src/math/i386/fabsf.s similarity index 100% rename from libc/musl/src/math/i386/fabsf.s rename to lib/libc/musl/src/math/i386/fabsf.s diff --git a/libc/musl/src/math/i386/fabsl.s b/lib/libc/musl/src/math/i386/fabsl.s similarity index 100% rename from libc/musl/src/math/i386/fabsl.s rename to lib/libc/musl/src/math/i386/fabsl.s diff --git a/libc/musl/src/math/i386/floor.s b/lib/libc/musl/src/math/i386/floor.s similarity index 100% rename from libc/musl/src/math/i386/floor.s rename to lib/libc/musl/src/math/i386/floor.s diff --git a/libc/musl/src/math/i386/floorf.s b/lib/libc/musl/src/math/i386/floorf.s similarity index 100% rename from libc/musl/src/math/i386/floorf.s rename to lib/libc/musl/src/math/i386/floorf.s diff --git a/libc/musl/src/math/i386/floorl.s b/lib/libc/musl/src/math/i386/floorl.s similarity index 100% rename from libc/musl/src/math/i386/floorl.s rename to lib/libc/musl/src/math/i386/floorl.s diff --git a/libc/musl/src/math/i386/fmod.s b/lib/libc/musl/src/math/i386/fmod.s similarity index 100% rename from libc/musl/src/math/i386/fmod.s rename to lib/libc/musl/src/math/i386/fmod.s diff --git a/libc/musl/src/math/i386/fmodf.s b/lib/libc/musl/src/math/i386/fmodf.s similarity index 100% rename from libc/musl/src/math/i386/fmodf.s rename to lib/libc/musl/src/math/i386/fmodf.s diff --git a/libc/musl/src/math/i386/fmodl.s b/lib/libc/musl/src/math/i386/fmodl.s similarity index 100% rename from libc/musl/src/math/i386/fmodl.s rename to lib/libc/musl/src/math/i386/fmodl.s diff --git a/libc/musl/src/math/i386/hypot.s b/lib/libc/musl/src/math/i386/hypot.s similarity index 100% rename from libc/musl/src/math/i386/hypot.s rename to lib/libc/musl/src/math/i386/hypot.s diff --git a/libc/musl/src/math/i386/hypotf.s b/lib/libc/musl/src/math/i386/hypotf.s similarity index 100% rename from libc/musl/src/math/i386/hypotf.s rename to lib/libc/musl/src/math/i386/hypotf.s diff --git a/libc/musl/src/math/i386/ldexp.s b/lib/libc/musl/src/math/i386/ldexp.s similarity index 100% rename from libc/musl/src/math/i386/ldexp.s rename to lib/libc/musl/src/math/i386/ldexp.s diff --git a/libc/musl/src/math/i386/ldexpf.s b/lib/libc/musl/src/math/i386/ldexpf.s similarity index 100% rename from libc/musl/src/math/i386/ldexpf.s rename to lib/libc/musl/src/math/i386/ldexpf.s diff --git a/libc/musl/src/math/i386/ldexpl.s b/lib/libc/musl/src/math/i386/ldexpl.s similarity index 100% rename from libc/musl/src/math/i386/ldexpl.s rename to lib/libc/musl/src/math/i386/ldexpl.s diff --git a/libc/musl/src/math/i386/llrint.s b/lib/libc/musl/src/math/i386/llrint.s similarity index 100% rename from libc/musl/src/math/i386/llrint.s rename to lib/libc/musl/src/math/i386/llrint.s diff --git a/libc/musl/src/math/i386/llrintf.s b/lib/libc/musl/src/math/i386/llrintf.s similarity index 100% rename from libc/musl/src/math/i386/llrintf.s rename to lib/libc/musl/src/math/i386/llrintf.s diff --git a/libc/musl/src/math/i386/llrintl.s b/lib/libc/musl/src/math/i386/llrintl.s similarity index 100% rename from libc/musl/src/math/i386/llrintl.s rename to lib/libc/musl/src/math/i386/llrintl.s diff --git a/libc/musl/src/math/i386/log.s b/lib/libc/musl/src/math/i386/log.s similarity index 100% rename from libc/musl/src/math/i386/log.s rename to lib/libc/musl/src/math/i386/log.s diff --git a/libc/musl/src/math/i386/log10.s b/lib/libc/musl/src/math/i386/log10.s similarity index 100% rename from libc/musl/src/math/i386/log10.s rename to lib/libc/musl/src/math/i386/log10.s diff --git a/libc/musl/src/math/i386/log10f.s b/lib/libc/musl/src/math/i386/log10f.s similarity index 100% rename from libc/musl/src/math/i386/log10f.s rename to lib/libc/musl/src/math/i386/log10f.s diff --git a/libc/musl/src/math/i386/log10l.s b/lib/libc/musl/src/math/i386/log10l.s similarity index 100% rename from libc/musl/src/math/i386/log10l.s rename to lib/libc/musl/src/math/i386/log10l.s diff --git a/libc/musl/src/math/i386/log1p.s b/lib/libc/musl/src/math/i386/log1p.s similarity index 100% rename from libc/musl/src/math/i386/log1p.s rename to lib/libc/musl/src/math/i386/log1p.s diff --git a/libc/musl/src/math/i386/log1pf.s b/lib/libc/musl/src/math/i386/log1pf.s similarity index 100% rename from libc/musl/src/math/i386/log1pf.s rename to lib/libc/musl/src/math/i386/log1pf.s diff --git a/libc/musl/src/math/i386/log1pl.s b/lib/libc/musl/src/math/i386/log1pl.s similarity index 100% rename from libc/musl/src/math/i386/log1pl.s rename to lib/libc/musl/src/math/i386/log1pl.s diff --git a/libc/musl/src/math/i386/log2.s b/lib/libc/musl/src/math/i386/log2.s similarity index 100% rename from libc/musl/src/math/i386/log2.s rename to lib/libc/musl/src/math/i386/log2.s diff --git a/libc/musl/src/math/i386/log2f.s b/lib/libc/musl/src/math/i386/log2f.s similarity index 100% rename from libc/musl/src/math/i386/log2f.s rename to lib/libc/musl/src/math/i386/log2f.s diff --git a/libc/musl/src/math/i386/log2l.s b/lib/libc/musl/src/math/i386/log2l.s similarity index 100% rename from libc/musl/src/math/i386/log2l.s rename to lib/libc/musl/src/math/i386/log2l.s diff --git a/libc/musl/src/math/i386/logf.s b/lib/libc/musl/src/math/i386/logf.s similarity index 100% rename from libc/musl/src/math/i386/logf.s rename to lib/libc/musl/src/math/i386/logf.s diff --git a/libc/musl/src/math/i386/logl.s b/lib/libc/musl/src/math/i386/logl.s similarity index 100% rename from libc/musl/src/math/i386/logl.s rename to lib/libc/musl/src/math/i386/logl.s diff --git a/libc/musl/src/math/i386/lrint.s b/lib/libc/musl/src/math/i386/lrint.s similarity index 100% rename from libc/musl/src/math/i386/lrint.s rename to lib/libc/musl/src/math/i386/lrint.s diff --git a/libc/musl/src/math/i386/lrintf.s b/lib/libc/musl/src/math/i386/lrintf.s similarity index 100% rename from libc/musl/src/math/i386/lrintf.s rename to lib/libc/musl/src/math/i386/lrintf.s diff --git a/libc/musl/src/math/i386/lrintl.s b/lib/libc/musl/src/math/i386/lrintl.s similarity index 100% rename from libc/musl/src/math/i386/lrintl.s rename to lib/libc/musl/src/math/i386/lrintl.s diff --git a/libc/musl/src/math/i386/remainder.s b/lib/libc/musl/src/math/i386/remainder.s similarity index 100% rename from libc/musl/src/math/i386/remainder.s rename to lib/libc/musl/src/math/i386/remainder.s diff --git a/libc/musl/src/math/i386/remainderf.s b/lib/libc/musl/src/math/i386/remainderf.s similarity index 100% rename from libc/musl/src/math/i386/remainderf.s rename to lib/libc/musl/src/math/i386/remainderf.s diff --git a/libc/musl/src/math/i386/remainderl.s b/lib/libc/musl/src/math/i386/remainderl.s similarity index 100% rename from libc/musl/src/math/i386/remainderl.s rename to lib/libc/musl/src/math/i386/remainderl.s diff --git a/libc/musl/src/math/i386/remquo.s b/lib/libc/musl/src/math/i386/remquo.s similarity index 100% rename from libc/musl/src/math/i386/remquo.s rename to lib/libc/musl/src/math/i386/remquo.s diff --git a/libc/musl/src/math/i386/remquof.s b/lib/libc/musl/src/math/i386/remquof.s similarity index 100% rename from libc/musl/src/math/i386/remquof.s rename to lib/libc/musl/src/math/i386/remquof.s diff --git a/libc/musl/src/math/i386/remquol.s b/lib/libc/musl/src/math/i386/remquol.s similarity index 100% rename from libc/musl/src/math/i386/remquol.s rename to lib/libc/musl/src/math/i386/remquol.s diff --git a/libc/musl/src/math/i386/rint.s b/lib/libc/musl/src/math/i386/rint.s similarity index 100% rename from libc/musl/src/math/i386/rint.s rename to lib/libc/musl/src/math/i386/rint.s diff --git a/libc/musl/src/math/i386/rintf.s b/lib/libc/musl/src/math/i386/rintf.s similarity index 100% rename from libc/musl/src/math/i386/rintf.s rename to lib/libc/musl/src/math/i386/rintf.s diff --git a/libc/musl/src/math/i386/rintl.s b/lib/libc/musl/src/math/i386/rintl.s similarity index 100% rename from libc/musl/src/math/i386/rintl.s rename to lib/libc/musl/src/math/i386/rintl.s diff --git a/libc/musl/src/math/i386/scalbln.s b/lib/libc/musl/src/math/i386/scalbln.s similarity index 100% rename from libc/musl/src/math/i386/scalbln.s rename to lib/libc/musl/src/math/i386/scalbln.s diff --git a/libc/musl/src/math/i386/scalblnf.s b/lib/libc/musl/src/math/i386/scalblnf.s similarity index 100% rename from libc/musl/src/math/i386/scalblnf.s rename to lib/libc/musl/src/math/i386/scalblnf.s diff --git a/libc/musl/src/math/i386/scalblnl.s b/lib/libc/musl/src/math/i386/scalblnl.s similarity index 100% rename from libc/musl/src/math/i386/scalblnl.s rename to lib/libc/musl/src/math/i386/scalblnl.s diff --git a/libc/musl/src/math/i386/scalbn.s b/lib/libc/musl/src/math/i386/scalbn.s similarity index 100% rename from libc/musl/src/math/i386/scalbn.s rename to lib/libc/musl/src/math/i386/scalbn.s diff --git a/libc/musl/src/math/i386/scalbnf.s b/lib/libc/musl/src/math/i386/scalbnf.s similarity index 100% rename from libc/musl/src/math/i386/scalbnf.s rename to lib/libc/musl/src/math/i386/scalbnf.s diff --git a/libc/musl/src/math/i386/scalbnl.s b/lib/libc/musl/src/math/i386/scalbnl.s similarity index 100% rename from libc/musl/src/math/i386/scalbnl.s rename to lib/libc/musl/src/math/i386/scalbnl.s diff --git a/libc/musl/src/math/i386/sqrt.s b/lib/libc/musl/src/math/i386/sqrt.s similarity index 100% rename from libc/musl/src/math/i386/sqrt.s rename to lib/libc/musl/src/math/i386/sqrt.s diff --git a/libc/musl/src/math/i386/sqrtf.s b/lib/libc/musl/src/math/i386/sqrtf.s similarity index 100% rename from libc/musl/src/math/i386/sqrtf.s rename to lib/libc/musl/src/math/i386/sqrtf.s diff --git a/libc/musl/src/math/i386/sqrtl.s b/lib/libc/musl/src/math/i386/sqrtl.s similarity index 100% rename from libc/musl/src/math/i386/sqrtl.s rename to lib/libc/musl/src/math/i386/sqrtl.s diff --git a/libc/musl/src/math/i386/trunc.s b/lib/libc/musl/src/math/i386/trunc.s similarity index 100% rename from libc/musl/src/math/i386/trunc.s rename to lib/libc/musl/src/math/i386/trunc.s diff --git a/libc/musl/src/math/i386/truncf.s b/lib/libc/musl/src/math/i386/truncf.s similarity index 100% rename from libc/musl/src/math/i386/truncf.s rename to lib/libc/musl/src/math/i386/truncf.s diff --git a/libc/musl/src/math/i386/truncl.s b/lib/libc/musl/src/math/i386/truncl.s similarity index 100% rename from libc/musl/src/math/i386/truncl.s rename to lib/libc/musl/src/math/i386/truncl.s diff --git a/libc/musl/src/math/ilogb.c b/lib/libc/musl/src/math/ilogb.c similarity index 100% rename from libc/musl/src/math/ilogb.c rename to lib/libc/musl/src/math/ilogb.c diff --git a/libc/musl/src/math/ilogbf.c b/lib/libc/musl/src/math/ilogbf.c similarity index 100% rename from libc/musl/src/math/ilogbf.c rename to lib/libc/musl/src/math/ilogbf.c diff --git a/libc/musl/src/math/ilogbl.c b/lib/libc/musl/src/math/ilogbl.c similarity index 100% rename from libc/musl/src/math/ilogbl.c rename to lib/libc/musl/src/math/ilogbl.c diff --git a/libc/musl/src/math/j0.c b/lib/libc/musl/src/math/j0.c similarity index 100% rename from libc/musl/src/math/j0.c rename to lib/libc/musl/src/math/j0.c diff --git a/libc/musl/src/math/j0f.c b/lib/libc/musl/src/math/j0f.c similarity index 100% rename from libc/musl/src/math/j0f.c rename to lib/libc/musl/src/math/j0f.c diff --git a/libc/musl/src/math/j1.c b/lib/libc/musl/src/math/j1.c similarity index 100% rename from libc/musl/src/math/j1.c rename to lib/libc/musl/src/math/j1.c diff --git a/libc/musl/src/math/j1f.c b/lib/libc/musl/src/math/j1f.c similarity index 100% rename from libc/musl/src/math/j1f.c rename to lib/libc/musl/src/math/j1f.c diff --git a/libc/musl/src/math/jn.c b/lib/libc/musl/src/math/jn.c similarity index 100% rename from libc/musl/src/math/jn.c rename to lib/libc/musl/src/math/jn.c diff --git a/libc/musl/src/math/jnf.c b/lib/libc/musl/src/math/jnf.c similarity index 100% rename from libc/musl/src/math/jnf.c rename to lib/libc/musl/src/math/jnf.c diff --git a/libc/musl/src/math/ldexp.c b/lib/libc/musl/src/math/ldexp.c similarity index 100% rename from libc/musl/src/math/ldexp.c rename to lib/libc/musl/src/math/ldexp.c diff --git a/libc/musl/src/math/ldexpf.c b/lib/libc/musl/src/math/ldexpf.c similarity index 100% rename from libc/musl/src/math/ldexpf.c rename to lib/libc/musl/src/math/ldexpf.c diff --git a/libc/musl/src/math/ldexpl.c b/lib/libc/musl/src/math/ldexpl.c similarity index 100% rename from libc/musl/src/math/ldexpl.c rename to lib/libc/musl/src/math/ldexpl.c diff --git a/libc/musl/src/math/lgamma.c b/lib/libc/musl/src/math/lgamma.c similarity index 100% rename from libc/musl/src/math/lgamma.c rename to lib/libc/musl/src/math/lgamma.c diff --git a/libc/musl/src/math/lgamma_r.c b/lib/libc/musl/src/math/lgamma_r.c similarity index 100% rename from libc/musl/src/math/lgamma_r.c rename to lib/libc/musl/src/math/lgamma_r.c diff --git a/libc/musl/src/math/lgammaf.c b/lib/libc/musl/src/math/lgammaf.c similarity index 100% rename from libc/musl/src/math/lgammaf.c rename to lib/libc/musl/src/math/lgammaf.c diff --git a/libc/musl/src/math/lgammaf_r.c b/lib/libc/musl/src/math/lgammaf_r.c similarity index 100% rename from libc/musl/src/math/lgammaf_r.c rename to lib/libc/musl/src/math/lgammaf_r.c diff --git a/libc/musl/src/math/lgammal.c b/lib/libc/musl/src/math/lgammal.c similarity index 100% rename from libc/musl/src/math/lgammal.c rename to lib/libc/musl/src/math/lgammal.c diff --git a/libc/musl/src/math/llrint.c b/lib/libc/musl/src/math/llrint.c similarity index 100% rename from libc/musl/src/math/llrint.c rename to lib/libc/musl/src/math/llrint.c diff --git a/libc/musl/src/math/llrintf.c b/lib/libc/musl/src/math/llrintf.c similarity index 100% rename from libc/musl/src/math/llrintf.c rename to lib/libc/musl/src/math/llrintf.c diff --git a/libc/musl/src/math/llrintl.c b/lib/libc/musl/src/math/llrintl.c similarity index 100% rename from libc/musl/src/math/llrintl.c rename to lib/libc/musl/src/math/llrintl.c diff --git a/libc/musl/src/math/llround.c b/lib/libc/musl/src/math/llround.c similarity index 100% rename from libc/musl/src/math/llround.c rename to lib/libc/musl/src/math/llround.c diff --git a/libc/musl/src/math/llroundf.c b/lib/libc/musl/src/math/llroundf.c similarity index 100% rename from libc/musl/src/math/llroundf.c rename to lib/libc/musl/src/math/llroundf.c diff --git a/libc/musl/src/math/llroundl.c b/lib/libc/musl/src/math/llroundl.c similarity index 100% rename from libc/musl/src/math/llroundl.c rename to lib/libc/musl/src/math/llroundl.c diff --git a/libc/musl/src/math/log.c b/lib/libc/musl/src/math/log.c similarity index 100% rename from libc/musl/src/math/log.c rename to lib/libc/musl/src/math/log.c diff --git a/libc/musl/src/math/log10.c b/lib/libc/musl/src/math/log10.c similarity index 100% rename from libc/musl/src/math/log10.c rename to lib/libc/musl/src/math/log10.c diff --git a/libc/musl/src/math/log10f.c b/lib/libc/musl/src/math/log10f.c similarity index 100% rename from libc/musl/src/math/log10f.c rename to lib/libc/musl/src/math/log10f.c diff --git a/libc/musl/src/math/log10l.c b/lib/libc/musl/src/math/log10l.c similarity index 100% rename from libc/musl/src/math/log10l.c rename to lib/libc/musl/src/math/log10l.c diff --git a/libc/musl/src/math/log1p.c b/lib/libc/musl/src/math/log1p.c similarity index 100% rename from libc/musl/src/math/log1p.c rename to lib/libc/musl/src/math/log1p.c diff --git a/libc/musl/src/math/log1pf.c b/lib/libc/musl/src/math/log1pf.c similarity index 100% rename from libc/musl/src/math/log1pf.c rename to lib/libc/musl/src/math/log1pf.c diff --git a/libc/musl/src/math/log1pl.c b/lib/libc/musl/src/math/log1pl.c similarity index 100% rename from libc/musl/src/math/log1pl.c rename to lib/libc/musl/src/math/log1pl.c diff --git a/libc/musl/src/math/log2.c b/lib/libc/musl/src/math/log2.c similarity index 100% rename from libc/musl/src/math/log2.c rename to lib/libc/musl/src/math/log2.c diff --git a/libc/musl/src/math/log2f.c b/lib/libc/musl/src/math/log2f.c similarity index 100% rename from libc/musl/src/math/log2f.c rename to lib/libc/musl/src/math/log2f.c diff --git a/libc/musl/src/math/log2l.c b/lib/libc/musl/src/math/log2l.c similarity index 100% rename from libc/musl/src/math/log2l.c rename to lib/libc/musl/src/math/log2l.c diff --git a/libc/musl/src/math/logb.c b/lib/libc/musl/src/math/logb.c similarity index 100% rename from libc/musl/src/math/logb.c rename to lib/libc/musl/src/math/logb.c diff --git a/libc/musl/src/math/logbf.c b/lib/libc/musl/src/math/logbf.c similarity index 100% rename from libc/musl/src/math/logbf.c rename to lib/libc/musl/src/math/logbf.c diff --git a/libc/musl/src/math/logbl.c b/lib/libc/musl/src/math/logbl.c similarity index 100% rename from libc/musl/src/math/logbl.c rename to lib/libc/musl/src/math/logbl.c diff --git a/libc/musl/src/math/logf.c b/lib/libc/musl/src/math/logf.c similarity index 100% rename from libc/musl/src/math/logf.c rename to lib/libc/musl/src/math/logf.c diff --git a/libc/musl/src/math/logl.c b/lib/libc/musl/src/math/logl.c similarity index 100% rename from libc/musl/src/math/logl.c rename to lib/libc/musl/src/math/logl.c diff --git a/libc/musl/src/math/lrint.c b/lib/libc/musl/src/math/lrint.c similarity index 100% rename from libc/musl/src/math/lrint.c rename to lib/libc/musl/src/math/lrint.c diff --git a/libc/musl/src/math/lrintf.c b/lib/libc/musl/src/math/lrintf.c similarity index 100% rename from libc/musl/src/math/lrintf.c rename to lib/libc/musl/src/math/lrintf.c diff --git a/libc/musl/src/math/lrintl.c b/lib/libc/musl/src/math/lrintl.c similarity index 100% rename from libc/musl/src/math/lrintl.c rename to lib/libc/musl/src/math/lrintl.c diff --git a/libc/musl/src/math/lround.c b/lib/libc/musl/src/math/lround.c similarity index 100% rename from libc/musl/src/math/lround.c rename to lib/libc/musl/src/math/lround.c diff --git a/libc/musl/src/math/lroundf.c b/lib/libc/musl/src/math/lroundf.c similarity index 100% rename from libc/musl/src/math/lroundf.c rename to lib/libc/musl/src/math/lroundf.c diff --git a/libc/musl/src/math/lroundl.c b/lib/libc/musl/src/math/lroundl.c similarity index 100% rename from libc/musl/src/math/lroundl.c rename to lib/libc/musl/src/math/lroundl.c diff --git a/libc/musl/src/math/modf.c b/lib/libc/musl/src/math/modf.c similarity index 100% rename from libc/musl/src/math/modf.c rename to lib/libc/musl/src/math/modf.c diff --git a/libc/musl/src/math/modff.c b/lib/libc/musl/src/math/modff.c similarity index 100% rename from libc/musl/src/math/modff.c rename to lib/libc/musl/src/math/modff.c diff --git a/libc/musl/src/math/modfl.c b/lib/libc/musl/src/math/modfl.c similarity index 100% rename from libc/musl/src/math/modfl.c rename to lib/libc/musl/src/math/modfl.c diff --git a/libc/musl/src/math/nan.c b/lib/libc/musl/src/math/nan.c similarity index 100% rename from libc/musl/src/math/nan.c rename to lib/libc/musl/src/math/nan.c diff --git a/libc/musl/src/math/nanf.c b/lib/libc/musl/src/math/nanf.c similarity index 100% rename from libc/musl/src/math/nanf.c rename to lib/libc/musl/src/math/nanf.c diff --git a/libc/musl/src/math/nanl.c b/lib/libc/musl/src/math/nanl.c similarity index 100% rename from libc/musl/src/math/nanl.c rename to lib/libc/musl/src/math/nanl.c diff --git a/libc/musl/src/math/nearbyint.c b/lib/libc/musl/src/math/nearbyint.c similarity index 100% rename from libc/musl/src/math/nearbyint.c rename to lib/libc/musl/src/math/nearbyint.c diff --git a/libc/musl/src/math/nearbyintf.c b/lib/libc/musl/src/math/nearbyintf.c similarity index 100% rename from libc/musl/src/math/nearbyintf.c rename to lib/libc/musl/src/math/nearbyintf.c diff --git a/libc/musl/src/math/nearbyintl.c b/lib/libc/musl/src/math/nearbyintl.c similarity index 100% rename from libc/musl/src/math/nearbyintl.c rename to lib/libc/musl/src/math/nearbyintl.c diff --git a/libc/musl/src/math/nextafter.c b/lib/libc/musl/src/math/nextafter.c similarity index 100% rename from libc/musl/src/math/nextafter.c rename to lib/libc/musl/src/math/nextafter.c diff --git a/libc/musl/src/math/nextafterf.c b/lib/libc/musl/src/math/nextafterf.c similarity index 100% rename from libc/musl/src/math/nextafterf.c rename to lib/libc/musl/src/math/nextafterf.c diff --git a/libc/musl/src/math/nextafterl.c b/lib/libc/musl/src/math/nextafterl.c similarity index 100% rename from libc/musl/src/math/nextafterl.c rename to lib/libc/musl/src/math/nextafterl.c diff --git a/libc/musl/src/math/nexttoward.c b/lib/libc/musl/src/math/nexttoward.c similarity index 100% rename from libc/musl/src/math/nexttoward.c rename to lib/libc/musl/src/math/nexttoward.c diff --git a/libc/musl/src/math/nexttowardf.c b/lib/libc/musl/src/math/nexttowardf.c similarity index 100% rename from libc/musl/src/math/nexttowardf.c rename to lib/libc/musl/src/math/nexttowardf.c diff --git a/libc/musl/src/math/nexttowardl.c b/lib/libc/musl/src/math/nexttowardl.c similarity index 100% rename from libc/musl/src/math/nexttowardl.c rename to lib/libc/musl/src/math/nexttowardl.c diff --git a/libc/musl/src/math/pow.c b/lib/libc/musl/src/math/pow.c similarity index 100% rename from libc/musl/src/math/pow.c rename to lib/libc/musl/src/math/pow.c diff --git a/libc/musl/src/math/powerpc/fabs.c b/lib/libc/musl/src/math/powerpc/fabs.c similarity index 100% rename from libc/musl/src/math/powerpc/fabs.c rename to lib/libc/musl/src/math/powerpc/fabs.c diff --git a/libc/musl/src/math/powerpc/fabsf.c b/lib/libc/musl/src/math/powerpc/fabsf.c similarity index 100% rename from libc/musl/src/math/powerpc/fabsf.c rename to lib/libc/musl/src/math/powerpc/fabsf.c diff --git a/libc/musl/src/math/powerpc/fma.c b/lib/libc/musl/src/math/powerpc/fma.c similarity index 100% rename from libc/musl/src/math/powerpc/fma.c rename to lib/libc/musl/src/math/powerpc/fma.c diff --git a/libc/musl/src/math/powerpc/fmaf.c b/lib/libc/musl/src/math/powerpc/fmaf.c similarity index 100% rename from libc/musl/src/math/powerpc/fmaf.c rename to lib/libc/musl/src/math/powerpc/fmaf.c diff --git a/libc/musl/src/math/powerpc/sqrt.c b/lib/libc/musl/src/math/powerpc/sqrt.c similarity index 100% rename from libc/musl/src/math/powerpc/sqrt.c rename to lib/libc/musl/src/math/powerpc/sqrt.c diff --git a/libc/musl/src/math/powerpc/sqrtf.c b/lib/libc/musl/src/math/powerpc/sqrtf.c similarity index 100% rename from libc/musl/src/math/powerpc/sqrtf.c rename to lib/libc/musl/src/math/powerpc/sqrtf.c diff --git a/libc/musl/src/math/powerpc64/ceil.c b/lib/libc/musl/src/math/powerpc64/ceil.c similarity index 100% rename from libc/musl/src/math/powerpc64/ceil.c rename to lib/libc/musl/src/math/powerpc64/ceil.c diff --git a/libc/musl/src/math/powerpc64/ceilf.c b/lib/libc/musl/src/math/powerpc64/ceilf.c similarity index 100% rename from libc/musl/src/math/powerpc64/ceilf.c rename to lib/libc/musl/src/math/powerpc64/ceilf.c diff --git a/libc/musl/src/math/powerpc64/fabs.c b/lib/libc/musl/src/math/powerpc64/fabs.c similarity index 100% rename from libc/musl/src/math/powerpc64/fabs.c rename to lib/libc/musl/src/math/powerpc64/fabs.c diff --git a/libc/musl/src/math/powerpc64/fabsf.c b/lib/libc/musl/src/math/powerpc64/fabsf.c similarity index 100% rename from libc/musl/src/math/powerpc64/fabsf.c rename to lib/libc/musl/src/math/powerpc64/fabsf.c diff --git a/libc/musl/src/math/powerpc64/floor.c b/lib/libc/musl/src/math/powerpc64/floor.c similarity index 100% rename from libc/musl/src/math/powerpc64/floor.c rename to lib/libc/musl/src/math/powerpc64/floor.c diff --git a/libc/musl/src/math/powerpc64/floorf.c b/lib/libc/musl/src/math/powerpc64/floorf.c similarity index 100% rename from libc/musl/src/math/powerpc64/floorf.c rename to lib/libc/musl/src/math/powerpc64/floorf.c diff --git a/libc/musl/src/math/powerpc64/fma.c b/lib/libc/musl/src/math/powerpc64/fma.c similarity index 100% rename from libc/musl/src/math/powerpc64/fma.c rename to lib/libc/musl/src/math/powerpc64/fma.c diff --git a/libc/musl/src/math/powerpc64/fmaf.c b/lib/libc/musl/src/math/powerpc64/fmaf.c similarity index 100% rename from libc/musl/src/math/powerpc64/fmaf.c rename to lib/libc/musl/src/math/powerpc64/fmaf.c diff --git a/libc/musl/src/math/powerpc64/fmax.c b/lib/libc/musl/src/math/powerpc64/fmax.c similarity index 100% rename from libc/musl/src/math/powerpc64/fmax.c rename to lib/libc/musl/src/math/powerpc64/fmax.c diff --git a/libc/musl/src/math/powerpc64/fmaxf.c b/lib/libc/musl/src/math/powerpc64/fmaxf.c similarity index 100% rename from libc/musl/src/math/powerpc64/fmaxf.c rename to lib/libc/musl/src/math/powerpc64/fmaxf.c diff --git a/libc/musl/src/math/powerpc64/fmin.c b/lib/libc/musl/src/math/powerpc64/fmin.c similarity index 100% rename from libc/musl/src/math/powerpc64/fmin.c rename to lib/libc/musl/src/math/powerpc64/fmin.c diff --git a/libc/musl/src/math/powerpc64/fminf.c b/lib/libc/musl/src/math/powerpc64/fminf.c similarity index 100% rename from libc/musl/src/math/powerpc64/fminf.c rename to lib/libc/musl/src/math/powerpc64/fminf.c diff --git a/libc/musl/src/math/powerpc64/lrint.c b/lib/libc/musl/src/math/powerpc64/lrint.c similarity index 100% rename from libc/musl/src/math/powerpc64/lrint.c rename to lib/libc/musl/src/math/powerpc64/lrint.c diff --git a/libc/musl/src/math/powerpc64/lrintf.c b/lib/libc/musl/src/math/powerpc64/lrintf.c similarity index 100% rename from libc/musl/src/math/powerpc64/lrintf.c rename to lib/libc/musl/src/math/powerpc64/lrintf.c diff --git a/libc/musl/src/math/powerpc64/lround.c b/lib/libc/musl/src/math/powerpc64/lround.c similarity index 100% rename from libc/musl/src/math/powerpc64/lround.c rename to lib/libc/musl/src/math/powerpc64/lround.c diff --git a/libc/musl/src/math/powerpc64/lroundf.c b/lib/libc/musl/src/math/powerpc64/lroundf.c similarity index 100% rename from libc/musl/src/math/powerpc64/lroundf.c rename to lib/libc/musl/src/math/powerpc64/lroundf.c diff --git a/libc/musl/src/math/powerpc64/round.c b/lib/libc/musl/src/math/powerpc64/round.c similarity index 100% rename from libc/musl/src/math/powerpc64/round.c rename to lib/libc/musl/src/math/powerpc64/round.c diff --git a/libc/musl/src/math/powerpc64/roundf.c b/lib/libc/musl/src/math/powerpc64/roundf.c similarity index 100% rename from libc/musl/src/math/powerpc64/roundf.c rename to lib/libc/musl/src/math/powerpc64/roundf.c diff --git a/libc/musl/src/math/powerpc64/sqrt.c b/lib/libc/musl/src/math/powerpc64/sqrt.c similarity index 100% rename from libc/musl/src/math/powerpc64/sqrt.c rename to lib/libc/musl/src/math/powerpc64/sqrt.c diff --git a/libc/musl/src/math/powerpc64/sqrtf.c b/lib/libc/musl/src/math/powerpc64/sqrtf.c similarity index 100% rename from libc/musl/src/math/powerpc64/sqrtf.c rename to lib/libc/musl/src/math/powerpc64/sqrtf.c diff --git a/libc/musl/src/math/powerpc64/trunc.c b/lib/libc/musl/src/math/powerpc64/trunc.c similarity index 100% rename from libc/musl/src/math/powerpc64/trunc.c rename to lib/libc/musl/src/math/powerpc64/trunc.c diff --git a/libc/musl/src/math/powerpc64/truncf.c b/lib/libc/musl/src/math/powerpc64/truncf.c similarity index 100% rename from libc/musl/src/math/powerpc64/truncf.c rename to lib/libc/musl/src/math/powerpc64/truncf.c diff --git a/libc/musl/src/math/powf.c b/lib/libc/musl/src/math/powf.c similarity index 100% rename from libc/musl/src/math/powf.c rename to lib/libc/musl/src/math/powf.c diff --git a/libc/musl/src/math/powl.c b/lib/libc/musl/src/math/powl.c similarity index 100% rename from libc/musl/src/math/powl.c rename to lib/libc/musl/src/math/powl.c diff --git a/libc/musl/src/math/remainder.c b/lib/libc/musl/src/math/remainder.c similarity index 100% rename from libc/musl/src/math/remainder.c rename to lib/libc/musl/src/math/remainder.c diff --git a/libc/musl/src/math/remainderf.c b/lib/libc/musl/src/math/remainderf.c similarity index 100% rename from libc/musl/src/math/remainderf.c rename to lib/libc/musl/src/math/remainderf.c diff --git a/libc/musl/src/math/remainderl.c b/lib/libc/musl/src/math/remainderl.c similarity index 100% rename from libc/musl/src/math/remainderl.c rename to lib/libc/musl/src/math/remainderl.c diff --git a/libc/musl/src/math/remquo.c b/lib/libc/musl/src/math/remquo.c similarity index 100% rename from libc/musl/src/math/remquo.c rename to lib/libc/musl/src/math/remquo.c diff --git a/libc/musl/src/math/remquof.c b/lib/libc/musl/src/math/remquof.c similarity index 100% rename from libc/musl/src/math/remquof.c rename to lib/libc/musl/src/math/remquof.c diff --git a/libc/musl/src/math/remquol.c b/lib/libc/musl/src/math/remquol.c similarity index 100% rename from libc/musl/src/math/remquol.c rename to lib/libc/musl/src/math/remquol.c diff --git a/libc/musl/src/math/rint.c b/lib/libc/musl/src/math/rint.c similarity index 100% rename from libc/musl/src/math/rint.c rename to lib/libc/musl/src/math/rint.c diff --git a/libc/musl/src/math/rintf.c b/lib/libc/musl/src/math/rintf.c similarity index 100% rename from libc/musl/src/math/rintf.c rename to lib/libc/musl/src/math/rintf.c diff --git a/libc/musl/src/math/rintl.c b/lib/libc/musl/src/math/rintl.c similarity index 100% rename from libc/musl/src/math/rintl.c rename to lib/libc/musl/src/math/rintl.c diff --git a/libc/musl/src/math/round.c b/lib/libc/musl/src/math/round.c similarity index 100% rename from libc/musl/src/math/round.c rename to lib/libc/musl/src/math/round.c diff --git a/libc/musl/src/math/roundf.c b/lib/libc/musl/src/math/roundf.c similarity index 100% rename from libc/musl/src/math/roundf.c rename to lib/libc/musl/src/math/roundf.c diff --git a/libc/musl/src/math/roundl.c b/lib/libc/musl/src/math/roundl.c similarity index 100% rename from libc/musl/src/math/roundl.c rename to lib/libc/musl/src/math/roundl.c diff --git a/libc/musl/src/math/s390x/ceil.c b/lib/libc/musl/src/math/s390x/ceil.c similarity index 100% rename from libc/musl/src/math/s390x/ceil.c rename to lib/libc/musl/src/math/s390x/ceil.c diff --git a/libc/musl/src/math/s390x/ceilf.c b/lib/libc/musl/src/math/s390x/ceilf.c similarity index 100% rename from libc/musl/src/math/s390x/ceilf.c rename to lib/libc/musl/src/math/s390x/ceilf.c diff --git a/libc/musl/src/math/s390x/ceill.c b/lib/libc/musl/src/math/s390x/ceill.c similarity index 100% rename from libc/musl/src/math/s390x/ceill.c rename to lib/libc/musl/src/math/s390x/ceill.c diff --git a/libc/musl/src/math/s390x/fabs.c b/lib/libc/musl/src/math/s390x/fabs.c similarity index 100% rename from libc/musl/src/math/s390x/fabs.c rename to lib/libc/musl/src/math/s390x/fabs.c diff --git a/libc/musl/src/math/s390x/fabsf.c b/lib/libc/musl/src/math/s390x/fabsf.c similarity index 100% rename from libc/musl/src/math/s390x/fabsf.c rename to lib/libc/musl/src/math/s390x/fabsf.c diff --git a/libc/musl/src/math/s390x/fabsl.c b/lib/libc/musl/src/math/s390x/fabsl.c similarity index 100% rename from libc/musl/src/math/s390x/fabsl.c rename to lib/libc/musl/src/math/s390x/fabsl.c diff --git a/libc/musl/src/math/s390x/floor.c b/lib/libc/musl/src/math/s390x/floor.c similarity index 100% rename from libc/musl/src/math/s390x/floor.c rename to lib/libc/musl/src/math/s390x/floor.c diff --git a/libc/musl/src/math/s390x/floorf.c b/lib/libc/musl/src/math/s390x/floorf.c similarity index 100% rename from libc/musl/src/math/s390x/floorf.c rename to lib/libc/musl/src/math/s390x/floorf.c diff --git a/libc/musl/src/math/s390x/floorl.c b/lib/libc/musl/src/math/s390x/floorl.c similarity index 100% rename from libc/musl/src/math/s390x/floorl.c rename to lib/libc/musl/src/math/s390x/floorl.c diff --git a/libc/musl/src/math/s390x/fma.c b/lib/libc/musl/src/math/s390x/fma.c similarity index 100% rename from libc/musl/src/math/s390x/fma.c rename to lib/libc/musl/src/math/s390x/fma.c diff --git a/libc/musl/src/math/s390x/fmaf.c b/lib/libc/musl/src/math/s390x/fmaf.c similarity index 100% rename from libc/musl/src/math/s390x/fmaf.c rename to lib/libc/musl/src/math/s390x/fmaf.c diff --git a/libc/musl/src/math/s390x/nearbyint.c b/lib/libc/musl/src/math/s390x/nearbyint.c similarity index 100% rename from libc/musl/src/math/s390x/nearbyint.c rename to lib/libc/musl/src/math/s390x/nearbyint.c diff --git a/libc/musl/src/math/s390x/nearbyintf.c b/lib/libc/musl/src/math/s390x/nearbyintf.c similarity index 100% rename from libc/musl/src/math/s390x/nearbyintf.c rename to lib/libc/musl/src/math/s390x/nearbyintf.c diff --git a/libc/musl/src/math/s390x/nearbyintl.c b/lib/libc/musl/src/math/s390x/nearbyintl.c similarity index 100% rename from libc/musl/src/math/s390x/nearbyintl.c rename to lib/libc/musl/src/math/s390x/nearbyintl.c diff --git a/libc/musl/src/math/s390x/rint.c b/lib/libc/musl/src/math/s390x/rint.c similarity index 100% rename from libc/musl/src/math/s390x/rint.c rename to lib/libc/musl/src/math/s390x/rint.c diff --git a/libc/musl/src/math/s390x/rintf.c b/lib/libc/musl/src/math/s390x/rintf.c similarity index 100% rename from libc/musl/src/math/s390x/rintf.c rename to lib/libc/musl/src/math/s390x/rintf.c diff --git a/libc/musl/src/math/s390x/rintl.c b/lib/libc/musl/src/math/s390x/rintl.c similarity index 100% rename from libc/musl/src/math/s390x/rintl.c rename to lib/libc/musl/src/math/s390x/rintl.c diff --git a/libc/musl/src/math/s390x/round.c b/lib/libc/musl/src/math/s390x/round.c similarity index 100% rename from libc/musl/src/math/s390x/round.c rename to lib/libc/musl/src/math/s390x/round.c diff --git a/libc/musl/src/math/s390x/roundf.c b/lib/libc/musl/src/math/s390x/roundf.c similarity index 100% rename from libc/musl/src/math/s390x/roundf.c rename to lib/libc/musl/src/math/s390x/roundf.c diff --git a/libc/musl/src/math/s390x/roundl.c b/lib/libc/musl/src/math/s390x/roundl.c similarity index 100% rename from libc/musl/src/math/s390x/roundl.c rename to lib/libc/musl/src/math/s390x/roundl.c diff --git a/libc/musl/src/math/s390x/sqrt.c b/lib/libc/musl/src/math/s390x/sqrt.c similarity index 100% rename from libc/musl/src/math/s390x/sqrt.c rename to lib/libc/musl/src/math/s390x/sqrt.c diff --git a/libc/musl/src/math/s390x/sqrtf.c b/lib/libc/musl/src/math/s390x/sqrtf.c similarity index 100% rename from libc/musl/src/math/s390x/sqrtf.c rename to lib/libc/musl/src/math/s390x/sqrtf.c diff --git a/libc/musl/src/math/s390x/sqrtl.c b/lib/libc/musl/src/math/s390x/sqrtl.c similarity index 100% rename from libc/musl/src/math/s390x/sqrtl.c rename to lib/libc/musl/src/math/s390x/sqrtl.c diff --git a/libc/musl/src/math/s390x/trunc.c b/lib/libc/musl/src/math/s390x/trunc.c similarity index 100% rename from libc/musl/src/math/s390x/trunc.c rename to lib/libc/musl/src/math/s390x/trunc.c diff --git a/libc/musl/src/math/s390x/truncf.c b/lib/libc/musl/src/math/s390x/truncf.c similarity index 100% rename from libc/musl/src/math/s390x/truncf.c rename to lib/libc/musl/src/math/s390x/truncf.c diff --git a/libc/musl/src/math/s390x/truncl.c b/lib/libc/musl/src/math/s390x/truncl.c similarity index 100% rename from libc/musl/src/math/s390x/truncl.c rename to lib/libc/musl/src/math/s390x/truncl.c diff --git a/libc/musl/src/math/scalb.c b/lib/libc/musl/src/math/scalb.c similarity index 100% rename from libc/musl/src/math/scalb.c rename to lib/libc/musl/src/math/scalb.c diff --git a/libc/musl/src/math/scalbf.c b/lib/libc/musl/src/math/scalbf.c similarity index 100% rename from libc/musl/src/math/scalbf.c rename to lib/libc/musl/src/math/scalbf.c diff --git a/libc/musl/src/math/scalbln.c b/lib/libc/musl/src/math/scalbln.c similarity index 100% rename from libc/musl/src/math/scalbln.c rename to lib/libc/musl/src/math/scalbln.c diff --git a/libc/musl/src/math/scalblnf.c b/lib/libc/musl/src/math/scalblnf.c similarity index 100% rename from libc/musl/src/math/scalblnf.c rename to lib/libc/musl/src/math/scalblnf.c diff --git a/libc/musl/src/math/scalblnl.c b/lib/libc/musl/src/math/scalblnl.c similarity index 100% rename from libc/musl/src/math/scalblnl.c rename to lib/libc/musl/src/math/scalblnl.c diff --git a/libc/musl/src/math/scalbn.c b/lib/libc/musl/src/math/scalbn.c similarity index 100% rename from libc/musl/src/math/scalbn.c rename to lib/libc/musl/src/math/scalbn.c diff --git a/libc/musl/src/math/scalbnf.c b/lib/libc/musl/src/math/scalbnf.c similarity index 100% rename from libc/musl/src/math/scalbnf.c rename to lib/libc/musl/src/math/scalbnf.c diff --git a/libc/musl/src/math/scalbnl.c b/lib/libc/musl/src/math/scalbnl.c similarity index 100% rename from libc/musl/src/math/scalbnl.c rename to lib/libc/musl/src/math/scalbnl.c diff --git a/libc/musl/src/math/signgam.c b/lib/libc/musl/src/math/signgam.c similarity index 100% rename from libc/musl/src/math/signgam.c rename to lib/libc/musl/src/math/signgam.c diff --git a/libc/musl/src/math/significand.c b/lib/libc/musl/src/math/significand.c similarity index 100% rename from libc/musl/src/math/significand.c rename to lib/libc/musl/src/math/significand.c diff --git a/libc/musl/src/math/significandf.c b/lib/libc/musl/src/math/significandf.c similarity index 100% rename from libc/musl/src/math/significandf.c rename to lib/libc/musl/src/math/significandf.c diff --git a/libc/musl/src/math/sin.c b/lib/libc/musl/src/math/sin.c similarity index 100% rename from libc/musl/src/math/sin.c rename to lib/libc/musl/src/math/sin.c diff --git a/libc/musl/src/math/sincos.c b/lib/libc/musl/src/math/sincos.c similarity index 100% rename from libc/musl/src/math/sincos.c rename to lib/libc/musl/src/math/sincos.c diff --git a/libc/musl/src/math/sincosf.c b/lib/libc/musl/src/math/sincosf.c similarity index 100% rename from libc/musl/src/math/sincosf.c rename to lib/libc/musl/src/math/sincosf.c diff --git a/libc/musl/src/math/sincosl.c b/lib/libc/musl/src/math/sincosl.c similarity index 100% rename from libc/musl/src/math/sincosl.c rename to lib/libc/musl/src/math/sincosl.c diff --git a/libc/musl/src/math/sinf.c b/lib/libc/musl/src/math/sinf.c similarity index 100% rename from libc/musl/src/math/sinf.c rename to lib/libc/musl/src/math/sinf.c diff --git a/libc/musl/src/math/sinh.c b/lib/libc/musl/src/math/sinh.c similarity index 100% rename from libc/musl/src/math/sinh.c rename to lib/libc/musl/src/math/sinh.c diff --git a/libc/musl/src/math/sinhf.c b/lib/libc/musl/src/math/sinhf.c similarity index 100% rename from libc/musl/src/math/sinhf.c rename to lib/libc/musl/src/math/sinhf.c diff --git a/libc/musl/src/math/sinhl.c b/lib/libc/musl/src/math/sinhl.c similarity index 100% rename from libc/musl/src/math/sinhl.c rename to lib/libc/musl/src/math/sinhl.c diff --git a/libc/musl/src/math/sinl.c b/lib/libc/musl/src/math/sinl.c similarity index 100% rename from libc/musl/src/math/sinl.c rename to lib/libc/musl/src/math/sinl.c diff --git a/libc/musl/src/math/sqrt.c b/lib/libc/musl/src/math/sqrt.c similarity index 100% rename from libc/musl/src/math/sqrt.c rename to lib/libc/musl/src/math/sqrt.c diff --git a/libc/musl/src/math/sqrtf.c b/lib/libc/musl/src/math/sqrtf.c similarity index 100% rename from libc/musl/src/math/sqrtf.c rename to lib/libc/musl/src/math/sqrtf.c diff --git a/libc/musl/src/math/sqrtl.c b/lib/libc/musl/src/math/sqrtl.c similarity index 100% rename from libc/musl/src/math/sqrtl.c rename to lib/libc/musl/src/math/sqrtl.c diff --git a/libc/musl/src/math/tan.c b/lib/libc/musl/src/math/tan.c similarity index 100% rename from libc/musl/src/math/tan.c rename to lib/libc/musl/src/math/tan.c diff --git a/libc/musl/src/math/tanf.c b/lib/libc/musl/src/math/tanf.c similarity index 100% rename from libc/musl/src/math/tanf.c rename to lib/libc/musl/src/math/tanf.c diff --git a/libc/musl/src/math/tanh.c b/lib/libc/musl/src/math/tanh.c similarity index 100% rename from libc/musl/src/math/tanh.c rename to lib/libc/musl/src/math/tanh.c diff --git a/libc/musl/src/math/tanhf.c b/lib/libc/musl/src/math/tanhf.c similarity index 100% rename from libc/musl/src/math/tanhf.c rename to lib/libc/musl/src/math/tanhf.c diff --git a/libc/musl/src/math/tanhl.c b/lib/libc/musl/src/math/tanhl.c similarity index 100% rename from libc/musl/src/math/tanhl.c rename to lib/libc/musl/src/math/tanhl.c diff --git a/libc/musl/src/math/tanl.c b/lib/libc/musl/src/math/tanl.c similarity index 100% rename from libc/musl/src/math/tanl.c rename to lib/libc/musl/src/math/tanl.c diff --git a/libc/musl/src/math/tgamma.c b/lib/libc/musl/src/math/tgamma.c similarity index 100% rename from libc/musl/src/math/tgamma.c rename to lib/libc/musl/src/math/tgamma.c diff --git a/libc/musl/src/math/tgammaf.c b/lib/libc/musl/src/math/tgammaf.c similarity index 100% rename from libc/musl/src/math/tgammaf.c rename to lib/libc/musl/src/math/tgammaf.c diff --git a/libc/musl/src/math/tgammal.c b/lib/libc/musl/src/math/tgammal.c similarity index 100% rename from libc/musl/src/math/tgammal.c rename to lib/libc/musl/src/math/tgammal.c diff --git a/libc/musl/src/math/trunc.c b/lib/libc/musl/src/math/trunc.c similarity index 100% rename from libc/musl/src/math/trunc.c rename to lib/libc/musl/src/math/trunc.c diff --git a/libc/musl/src/math/truncf.c b/lib/libc/musl/src/math/truncf.c similarity index 100% rename from libc/musl/src/math/truncf.c rename to lib/libc/musl/src/math/truncf.c diff --git a/libc/musl/src/math/truncl.c b/lib/libc/musl/src/math/truncl.c similarity index 100% rename from libc/musl/src/math/truncl.c rename to lib/libc/musl/src/math/truncl.c diff --git a/libc/musl/src/math/x32/__invtrigl.s b/lib/libc/musl/src/math/x32/__invtrigl.s similarity index 100% rename from libc/musl/src/math/x32/__invtrigl.s rename to lib/libc/musl/src/math/x32/__invtrigl.s diff --git a/libc/musl/src/math/x32/acosl.s b/lib/libc/musl/src/math/x32/acosl.s similarity index 100% rename from libc/musl/src/math/x32/acosl.s rename to lib/libc/musl/src/math/x32/acosl.s diff --git a/libc/musl/src/math/x32/asinl.s b/lib/libc/musl/src/math/x32/asinl.s similarity index 100% rename from libc/musl/src/math/x32/asinl.s rename to lib/libc/musl/src/math/x32/asinl.s diff --git a/libc/musl/src/math/x32/atan2l.s b/lib/libc/musl/src/math/x32/atan2l.s similarity index 100% rename from libc/musl/src/math/x32/atan2l.s rename to lib/libc/musl/src/math/x32/atan2l.s diff --git a/libc/musl/src/math/x32/atanl.s b/lib/libc/musl/src/math/x32/atanl.s similarity index 100% rename from libc/musl/src/math/x32/atanl.s rename to lib/libc/musl/src/math/x32/atanl.s diff --git a/libc/musl/src/math/x32/ceill.s b/lib/libc/musl/src/math/x32/ceill.s similarity index 100% rename from libc/musl/src/math/x32/ceill.s rename to lib/libc/musl/src/math/x32/ceill.s diff --git a/libc/musl/src/math/x32/exp2l.s b/lib/libc/musl/src/math/x32/exp2l.s similarity index 100% rename from libc/musl/src/math/x32/exp2l.s rename to lib/libc/musl/src/math/x32/exp2l.s diff --git a/libc/musl/src/math/x32/expl.s b/lib/libc/musl/src/math/x32/expl.s similarity index 100% rename from libc/musl/src/math/x32/expl.s rename to lib/libc/musl/src/math/x32/expl.s diff --git a/libc/musl/src/math/x32/expm1l.s b/lib/libc/musl/src/math/x32/expm1l.s similarity index 100% rename from libc/musl/src/math/x32/expm1l.s rename to lib/libc/musl/src/math/x32/expm1l.s diff --git a/libc/musl/src/math/x32/fabs.s b/lib/libc/musl/src/math/x32/fabs.s similarity index 100% rename from libc/musl/src/math/x32/fabs.s rename to lib/libc/musl/src/math/x32/fabs.s diff --git a/libc/musl/src/math/x32/fabsf.s b/lib/libc/musl/src/math/x32/fabsf.s similarity index 100% rename from libc/musl/src/math/x32/fabsf.s rename to lib/libc/musl/src/math/x32/fabsf.s diff --git a/libc/musl/src/math/x32/fabsl.s b/lib/libc/musl/src/math/x32/fabsl.s similarity index 100% rename from libc/musl/src/math/x32/fabsl.s rename to lib/libc/musl/src/math/x32/fabsl.s diff --git a/libc/musl/src/math/x32/floorl.s b/lib/libc/musl/src/math/x32/floorl.s similarity index 100% rename from libc/musl/src/math/x32/floorl.s rename to lib/libc/musl/src/math/x32/floorl.s diff --git a/libc/musl/src/math/x32/fma.c b/lib/libc/musl/src/math/x32/fma.c similarity index 100% rename from libc/musl/src/math/x32/fma.c rename to lib/libc/musl/src/math/x32/fma.c diff --git a/libc/musl/src/math/x32/fmaf.c b/lib/libc/musl/src/math/x32/fmaf.c similarity index 100% rename from libc/musl/src/math/x32/fmaf.c rename to lib/libc/musl/src/math/x32/fmaf.c diff --git a/libc/musl/src/math/x32/fmodl.s b/lib/libc/musl/src/math/x32/fmodl.s similarity index 100% rename from libc/musl/src/math/x32/fmodl.s rename to lib/libc/musl/src/math/x32/fmodl.s diff --git a/libc/musl/src/math/x32/llrint.s b/lib/libc/musl/src/math/x32/llrint.s similarity index 100% rename from libc/musl/src/math/x32/llrint.s rename to lib/libc/musl/src/math/x32/llrint.s diff --git a/libc/musl/src/math/x32/llrintf.s b/lib/libc/musl/src/math/x32/llrintf.s similarity index 100% rename from libc/musl/src/math/x32/llrintf.s rename to lib/libc/musl/src/math/x32/llrintf.s diff --git a/libc/musl/src/math/x32/llrintl.s b/lib/libc/musl/src/math/x32/llrintl.s similarity index 100% rename from libc/musl/src/math/x32/llrintl.s rename to lib/libc/musl/src/math/x32/llrintl.s diff --git a/libc/musl/src/math/x32/log10l.s b/lib/libc/musl/src/math/x32/log10l.s similarity index 100% rename from libc/musl/src/math/x32/log10l.s rename to lib/libc/musl/src/math/x32/log10l.s diff --git a/libc/musl/src/math/x32/log1pl.s b/lib/libc/musl/src/math/x32/log1pl.s similarity index 100% rename from libc/musl/src/math/x32/log1pl.s rename to lib/libc/musl/src/math/x32/log1pl.s diff --git a/libc/musl/src/math/x32/log2l.s b/lib/libc/musl/src/math/x32/log2l.s similarity index 100% rename from libc/musl/src/math/x32/log2l.s rename to lib/libc/musl/src/math/x32/log2l.s diff --git a/libc/musl/src/math/x32/logl.s b/lib/libc/musl/src/math/x32/logl.s similarity index 100% rename from libc/musl/src/math/x32/logl.s rename to lib/libc/musl/src/math/x32/logl.s diff --git a/libc/musl/src/math/x32/lrint.s b/lib/libc/musl/src/math/x32/lrint.s similarity index 100% rename from libc/musl/src/math/x32/lrint.s rename to lib/libc/musl/src/math/x32/lrint.s diff --git a/libc/musl/src/math/x32/lrintf.s b/lib/libc/musl/src/math/x32/lrintf.s similarity index 100% rename from libc/musl/src/math/x32/lrintf.s rename to lib/libc/musl/src/math/x32/lrintf.s diff --git a/libc/musl/src/math/x32/lrintl.s b/lib/libc/musl/src/math/x32/lrintl.s similarity index 100% rename from libc/musl/src/math/x32/lrintl.s rename to lib/libc/musl/src/math/x32/lrintl.s diff --git a/libc/musl/src/math/x32/remainderl.s b/lib/libc/musl/src/math/x32/remainderl.s similarity index 100% rename from libc/musl/src/math/x32/remainderl.s rename to lib/libc/musl/src/math/x32/remainderl.s diff --git a/libc/musl/src/math/x32/rintl.s b/lib/libc/musl/src/math/x32/rintl.s similarity index 100% rename from libc/musl/src/math/x32/rintl.s rename to lib/libc/musl/src/math/x32/rintl.s diff --git a/libc/musl/src/math/x32/sqrt.s b/lib/libc/musl/src/math/x32/sqrt.s similarity index 100% rename from libc/musl/src/math/x32/sqrt.s rename to lib/libc/musl/src/math/x32/sqrt.s diff --git a/libc/musl/src/math/x32/sqrtf.s b/lib/libc/musl/src/math/x32/sqrtf.s similarity index 100% rename from libc/musl/src/math/x32/sqrtf.s rename to lib/libc/musl/src/math/x32/sqrtf.s diff --git a/libc/musl/src/math/x32/sqrtl.s b/lib/libc/musl/src/math/x32/sqrtl.s similarity index 100% rename from libc/musl/src/math/x32/sqrtl.s rename to lib/libc/musl/src/math/x32/sqrtl.s diff --git a/libc/musl/src/math/x32/truncl.s b/lib/libc/musl/src/math/x32/truncl.s similarity index 100% rename from libc/musl/src/math/x32/truncl.s rename to lib/libc/musl/src/math/x32/truncl.s diff --git a/libc/musl/src/math/x86_64/__invtrigl.s b/lib/libc/musl/src/math/x86_64/__invtrigl.s similarity index 100% rename from libc/musl/src/math/x86_64/__invtrigl.s rename to lib/libc/musl/src/math/x86_64/__invtrigl.s diff --git a/libc/musl/src/math/x86_64/acosl.s b/lib/libc/musl/src/math/x86_64/acosl.s similarity index 100% rename from libc/musl/src/math/x86_64/acosl.s rename to lib/libc/musl/src/math/x86_64/acosl.s diff --git a/libc/musl/src/math/x86_64/asinl.s b/lib/libc/musl/src/math/x86_64/asinl.s similarity index 100% rename from libc/musl/src/math/x86_64/asinl.s rename to lib/libc/musl/src/math/x86_64/asinl.s diff --git a/libc/musl/src/math/x86_64/atan2l.s b/lib/libc/musl/src/math/x86_64/atan2l.s similarity index 100% rename from libc/musl/src/math/x86_64/atan2l.s rename to lib/libc/musl/src/math/x86_64/atan2l.s diff --git a/libc/musl/src/math/x86_64/atanl.s b/lib/libc/musl/src/math/x86_64/atanl.s similarity index 100% rename from libc/musl/src/math/x86_64/atanl.s rename to lib/libc/musl/src/math/x86_64/atanl.s diff --git a/libc/musl/src/math/x86_64/ceill.s b/lib/libc/musl/src/math/x86_64/ceill.s similarity index 100% rename from libc/musl/src/math/x86_64/ceill.s rename to lib/libc/musl/src/math/x86_64/ceill.s diff --git a/libc/musl/src/math/x86_64/exp2l.s b/lib/libc/musl/src/math/x86_64/exp2l.s similarity index 100% rename from libc/musl/src/math/x86_64/exp2l.s rename to lib/libc/musl/src/math/x86_64/exp2l.s diff --git a/libc/musl/src/math/x86_64/expl.s b/lib/libc/musl/src/math/x86_64/expl.s similarity index 100% rename from libc/musl/src/math/x86_64/expl.s rename to lib/libc/musl/src/math/x86_64/expl.s diff --git a/libc/musl/src/math/x86_64/expm1l.s b/lib/libc/musl/src/math/x86_64/expm1l.s similarity index 100% rename from libc/musl/src/math/x86_64/expm1l.s rename to lib/libc/musl/src/math/x86_64/expm1l.s diff --git a/libc/musl/src/math/x86_64/fabs.s b/lib/libc/musl/src/math/x86_64/fabs.s similarity index 100% rename from libc/musl/src/math/x86_64/fabs.s rename to lib/libc/musl/src/math/x86_64/fabs.s diff --git a/libc/musl/src/math/x86_64/fabsf.s b/lib/libc/musl/src/math/x86_64/fabsf.s similarity index 100% rename from libc/musl/src/math/x86_64/fabsf.s rename to lib/libc/musl/src/math/x86_64/fabsf.s diff --git a/libc/musl/src/math/x86_64/fabsl.s b/lib/libc/musl/src/math/x86_64/fabsl.s similarity index 100% rename from libc/musl/src/math/x86_64/fabsl.s rename to lib/libc/musl/src/math/x86_64/fabsl.s diff --git a/libc/musl/src/math/x86_64/floorl.s b/lib/libc/musl/src/math/x86_64/floorl.s similarity index 100% rename from libc/musl/src/math/x86_64/floorl.s rename to lib/libc/musl/src/math/x86_64/floorl.s diff --git a/libc/musl/src/math/x86_64/fma.c b/lib/libc/musl/src/math/x86_64/fma.c similarity index 100% rename from libc/musl/src/math/x86_64/fma.c rename to lib/libc/musl/src/math/x86_64/fma.c diff --git a/libc/musl/src/math/x86_64/fmaf.c b/lib/libc/musl/src/math/x86_64/fmaf.c similarity index 100% rename from libc/musl/src/math/x86_64/fmaf.c rename to lib/libc/musl/src/math/x86_64/fmaf.c diff --git a/libc/musl/src/math/x86_64/fmodl.s b/lib/libc/musl/src/math/x86_64/fmodl.s similarity index 100% rename from libc/musl/src/math/x86_64/fmodl.s rename to lib/libc/musl/src/math/x86_64/fmodl.s diff --git a/libc/musl/src/math/x86_64/llrint.s b/lib/libc/musl/src/math/x86_64/llrint.s similarity index 100% rename from libc/musl/src/math/x86_64/llrint.s rename to lib/libc/musl/src/math/x86_64/llrint.s diff --git a/libc/musl/src/math/x86_64/llrintf.s b/lib/libc/musl/src/math/x86_64/llrintf.s similarity index 100% rename from libc/musl/src/math/x86_64/llrintf.s rename to lib/libc/musl/src/math/x86_64/llrintf.s diff --git a/libc/musl/src/math/x86_64/llrintl.s b/lib/libc/musl/src/math/x86_64/llrintl.s similarity index 100% rename from libc/musl/src/math/x86_64/llrintl.s rename to lib/libc/musl/src/math/x86_64/llrintl.s diff --git a/libc/musl/src/math/x86_64/log10l.s b/lib/libc/musl/src/math/x86_64/log10l.s similarity index 100% rename from libc/musl/src/math/x86_64/log10l.s rename to lib/libc/musl/src/math/x86_64/log10l.s diff --git a/libc/musl/src/math/x86_64/log1pl.s b/lib/libc/musl/src/math/x86_64/log1pl.s similarity index 100% rename from libc/musl/src/math/x86_64/log1pl.s rename to lib/libc/musl/src/math/x86_64/log1pl.s diff --git a/libc/musl/src/math/x86_64/log2l.s b/lib/libc/musl/src/math/x86_64/log2l.s similarity index 100% rename from libc/musl/src/math/x86_64/log2l.s rename to lib/libc/musl/src/math/x86_64/log2l.s diff --git a/libc/musl/src/math/x86_64/logl.s b/lib/libc/musl/src/math/x86_64/logl.s similarity index 100% rename from libc/musl/src/math/x86_64/logl.s rename to lib/libc/musl/src/math/x86_64/logl.s diff --git a/libc/musl/src/math/x86_64/lrint.s b/lib/libc/musl/src/math/x86_64/lrint.s similarity index 100% rename from libc/musl/src/math/x86_64/lrint.s rename to lib/libc/musl/src/math/x86_64/lrint.s diff --git a/libc/musl/src/math/x86_64/lrintf.s b/lib/libc/musl/src/math/x86_64/lrintf.s similarity index 100% rename from libc/musl/src/math/x86_64/lrintf.s rename to lib/libc/musl/src/math/x86_64/lrintf.s diff --git a/libc/musl/src/math/x86_64/lrintl.s b/lib/libc/musl/src/math/x86_64/lrintl.s similarity index 100% rename from libc/musl/src/math/x86_64/lrintl.s rename to lib/libc/musl/src/math/x86_64/lrintl.s diff --git a/libc/musl/src/math/x86_64/remainderl.s b/lib/libc/musl/src/math/x86_64/remainderl.s similarity index 100% rename from libc/musl/src/math/x86_64/remainderl.s rename to lib/libc/musl/src/math/x86_64/remainderl.s diff --git a/libc/musl/src/math/x86_64/rintl.s b/lib/libc/musl/src/math/x86_64/rintl.s similarity index 100% rename from libc/musl/src/math/x86_64/rintl.s rename to lib/libc/musl/src/math/x86_64/rintl.s diff --git a/libc/musl/src/math/x86_64/sqrt.s b/lib/libc/musl/src/math/x86_64/sqrt.s similarity index 100% rename from libc/musl/src/math/x86_64/sqrt.s rename to lib/libc/musl/src/math/x86_64/sqrt.s diff --git a/libc/musl/src/math/x86_64/sqrtf.s b/lib/libc/musl/src/math/x86_64/sqrtf.s similarity index 100% rename from libc/musl/src/math/x86_64/sqrtf.s rename to lib/libc/musl/src/math/x86_64/sqrtf.s diff --git a/libc/musl/src/math/x86_64/sqrtl.s b/lib/libc/musl/src/math/x86_64/sqrtl.s similarity index 100% rename from libc/musl/src/math/x86_64/sqrtl.s rename to lib/libc/musl/src/math/x86_64/sqrtl.s diff --git a/libc/musl/src/math/x86_64/truncl.s b/lib/libc/musl/src/math/x86_64/truncl.s similarity index 100% rename from libc/musl/src/math/x86_64/truncl.s rename to lib/libc/musl/src/math/x86_64/truncl.s diff --git a/libc/musl/src/misc/a64l.c b/lib/libc/musl/src/misc/a64l.c similarity index 100% rename from libc/musl/src/misc/a64l.c rename to lib/libc/musl/src/misc/a64l.c diff --git a/libc/musl/src/misc/basename.c b/lib/libc/musl/src/misc/basename.c similarity index 100% rename from libc/musl/src/misc/basename.c rename to lib/libc/musl/src/misc/basename.c diff --git a/libc/musl/src/misc/dirname.c b/lib/libc/musl/src/misc/dirname.c similarity index 100% rename from libc/musl/src/misc/dirname.c rename to lib/libc/musl/src/misc/dirname.c diff --git a/libc/musl/src/misc/ffs.c b/lib/libc/musl/src/misc/ffs.c similarity index 100% rename from libc/musl/src/misc/ffs.c rename to lib/libc/musl/src/misc/ffs.c diff --git a/libc/musl/src/misc/ffsl.c b/lib/libc/musl/src/misc/ffsl.c similarity index 100% rename from libc/musl/src/misc/ffsl.c rename to lib/libc/musl/src/misc/ffsl.c diff --git a/libc/musl/src/misc/ffsll.c b/lib/libc/musl/src/misc/ffsll.c similarity index 100% rename from libc/musl/src/misc/ffsll.c rename to lib/libc/musl/src/misc/ffsll.c diff --git a/libc/musl/src/misc/fmtmsg.c b/lib/libc/musl/src/misc/fmtmsg.c similarity index 100% rename from libc/musl/src/misc/fmtmsg.c rename to lib/libc/musl/src/misc/fmtmsg.c diff --git a/libc/musl/src/misc/forkpty.c b/lib/libc/musl/src/misc/forkpty.c similarity index 100% rename from libc/musl/src/misc/forkpty.c rename to lib/libc/musl/src/misc/forkpty.c diff --git a/libc/musl/src/misc/get_current_dir_name.c b/lib/libc/musl/src/misc/get_current_dir_name.c similarity index 100% rename from libc/musl/src/misc/get_current_dir_name.c rename to lib/libc/musl/src/misc/get_current_dir_name.c diff --git a/libc/musl/src/misc/getauxval.c b/lib/libc/musl/src/misc/getauxval.c similarity index 100% rename from libc/musl/src/misc/getauxval.c rename to lib/libc/musl/src/misc/getauxval.c diff --git a/libc/musl/src/misc/getdomainname.c b/lib/libc/musl/src/misc/getdomainname.c similarity index 100% rename from libc/musl/src/misc/getdomainname.c rename to lib/libc/musl/src/misc/getdomainname.c diff --git a/libc/musl/src/misc/getentropy.c b/lib/libc/musl/src/misc/getentropy.c similarity index 100% rename from libc/musl/src/misc/getentropy.c rename to lib/libc/musl/src/misc/getentropy.c diff --git a/libc/musl/src/misc/gethostid.c b/lib/libc/musl/src/misc/gethostid.c similarity index 100% rename from libc/musl/src/misc/gethostid.c rename to lib/libc/musl/src/misc/gethostid.c diff --git a/libc/musl/src/misc/getopt.c b/lib/libc/musl/src/misc/getopt.c similarity index 100% rename from libc/musl/src/misc/getopt.c rename to lib/libc/musl/src/misc/getopt.c diff --git a/libc/musl/src/misc/getopt_long.c b/lib/libc/musl/src/misc/getopt_long.c similarity index 100% rename from libc/musl/src/misc/getopt_long.c rename to lib/libc/musl/src/misc/getopt_long.c diff --git a/libc/musl/src/misc/getpriority.c b/lib/libc/musl/src/misc/getpriority.c similarity index 100% rename from libc/musl/src/misc/getpriority.c rename to lib/libc/musl/src/misc/getpriority.c diff --git a/libc/musl/src/misc/getresgid.c b/lib/libc/musl/src/misc/getresgid.c similarity index 100% rename from libc/musl/src/misc/getresgid.c rename to lib/libc/musl/src/misc/getresgid.c diff --git a/libc/musl/src/misc/getresuid.c b/lib/libc/musl/src/misc/getresuid.c similarity index 100% rename from libc/musl/src/misc/getresuid.c rename to lib/libc/musl/src/misc/getresuid.c diff --git a/libc/musl/src/misc/getrlimit.c b/lib/libc/musl/src/misc/getrlimit.c similarity index 100% rename from libc/musl/src/misc/getrlimit.c rename to lib/libc/musl/src/misc/getrlimit.c diff --git a/libc/musl/src/misc/getrusage.c b/lib/libc/musl/src/misc/getrusage.c similarity index 100% rename from libc/musl/src/misc/getrusage.c rename to lib/libc/musl/src/misc/getrusage.c diff --git a/libc/musl/src/misc/getsubopt.c b/lib/libc/musl/src/misc/getsubopt.c similarity index 100% rename from libc/musl/src/misc/getsubopt.c rename to lib/libc/musl/src/misc/getsubopt.c diff --git a/libc/musl/src/misc/initgroups.c b/lib/libc/musl/src/misc/initgroups.c similarity index 100% rename from libc/musl/src/misc/initgroups.c rename to lib/libc/musl/src/misc/initgroups.c diff --git a/libc/musl/src/misc/ioctl.c b/lib/libc/musl/src/misc/ioctl.c similarity index 100% rename from libc/musl/src/misc/ioctl.c rename to lib/libc/musl/src/misc/ioctl.c diff --git a/libc/musl/src/misc/issetugid.c b/lib/libc/musl/src/misc/issetugid.c similarity index 100% rename from libc/musl/src/misc/issetugid.c rename to lib/libc/musl/src/misc/issetugid.c diff --git a/libc/musl/src/misc/lockf.c b/lib/libc/musl/src/misc/lockf.c similarity index 100% rename from libc/musl/src/misc/lockf.c rename to lib/libc/musl/src/misc/lockf.c diff --git a/libc/musl/src/misc/login_tty.c b/lib/libc/musl/src/misc/login_tty.c similarity index 100% rename from libc/musl/src/misc/login_tty.c rename to lib/libc/musl/src/misc/login_tty.c diff --git a/libc/musl/src/misc/mntent.c b/lib/libc/musl/src/misc/mntent.c similarity index 100% rename from libc/musl/src/misc/mntent.c rename to lib/libc/musl/src/misc/mntent.c diff --git a/libc/musl/src/misc/nftw.c b/lib/libc/musl/src/misc/nftw.c similarity index 100% rename from libc/musl/src/misc/nftw.c rename to lib/libc/musl/src/misc/nftw.c diff --git a/libc/musl/src/misc/openpty.c b/lib/libc/musl/src/misc/openpty.c similarity index 100% rename from libc/musl/src/misc/openpty.c rename to lib/libc/musl/src/misc/openpty.c diff --git a/libc/musl/src/misc/ptsname.c b/lib/libc/musl/src/misc/ptsname.c similarity index 100% rename from libc/musl/src/misc/ptsname.c rename to lib/libc/musl/src/misc/ptsname.c diff --git a/libc/musl/src/misc/pty.c b/lib/libc/musl/src/misc/pty.c similarity index 100% rename from libc/musl/src/misc/pty.c rename to lib/libc/musl/src/misc/pty.c diff --git a/libc/musl/src/misc/realpath.c b/lib/libc/musl/src/misc/realpath.c similarity index 100% rename from libc/musl/src/misc/realpath.c rename to lib/libc/musl/src/misc/realpath.c diff --git a/libc/musl/src/misc/setdomainname.c b/lib/libc/musl/src/misc/setdomainname.c similarity index 100% rename from libc/musl/src/misc/setdomainname.c rename to lib/libc/musl/src/misc/setdomainname.c diff --git a/libc/musl/src/misc/setpriority.c b/lib/libc/musl/src/misc/setpriority.c similarity index 100% rename from libc/musl/src/misc/setpriority.c rename to lib/libc/musl/src/misc/setpriority.c diff --git a/libc/musl/src/misc/setrlimit.c b/lib/libc/musl/src/misc/setrlimit.c similarity index 100% rename from libc/musl/src/misc/setrlimit.c rename to lib/libc/musl/src/misc/setrlimit.c diff --git a/libc/musl/src/misc/syscall.c b/lib/libc/musl/src/misc/syscall.c similarity index 100% rename from libc/musl/src/misc/syscall.c rename to lib/libc/musl/src/misc/syscall.c diff --git a/libc/musl/src/misc/syslog.c b/lib/libc/musl/src/misc/syslog.c similarity index 100% rename from libc/musl/src/misc/syslog.c rename to lib/libc/musl/src/misc/syslog.c diff --git a/libc/musl/src/misc/uname.c b/lib/libc/musl/src/misc/uname.c similarity index 100% rename from libc/musl/src/misc/uname.c rename to lib/libc/musl/src/misc/uname.c diff --git a/libc/musl/src/misc/wordexp.c b/lib/libc/musl/src/misc/wordexp.c similarity index 100% rename from libc/musl/src/misc/wordexp.c rename to lib/libc/musl/src/misc/wordexp.c diff --git a/libc/musl/src/mman/madvise.c b/lib/libc/musl/src/mman/madvise.c similarity index 100% rename from libc/musl/src/mman/madvise.c rename to lib/libc/musl/src/mman/madvise.c diff --git a/libc/musl/src/mman/mincore.c b/lib/libc/musl/src/mman/mincore.c similarity index 100% rename from libc/musl/src/mman/mincore.c rename to lib/libc/musl/src/mman/mincore.c diff --git a/libc/musl/src/mman/mlock.c b/lib/libc/musl/src/mman/mlock.c similarity index 100% rename from libc/musl/src/mman/mlock.c rename to lib/libc/musl/src/mman/mlock.c diff --git a/libc/musl/src/mman/mlockall.c b/lib/libc/musl/src/mman/mlockall.c similarity index 100% rename from libc/musl/src/mman/mlockall.c rename to lib/libc/musl/src/mman/mlockall.c diff --git a/libc/musl/src/mman/mmap.c b/lib/libc/musl/src/mman/mmap.c similarity index 100% rename from libc/musl/src/mman/mmap.c rename to lib/libc/musl/src/mman/mmap.c diff --git a/libc/musl/src/mman/mprotect.c b/lib/libc/musl/src/mman/mprotect.c similarity index 100% rename from libc/musl/src/mman/mprotect.c rename to lib/libc/musl/src/mman/mprotect.c diff --git a/libc/musl/src/mman/mremap.c b/lib/libc/musl/src/mman/mremap.c similarity index 100% rename from libc/musl/src/mman/mremap.c rename to lib/libc/musl/src/mman/mremap.c diff --git a/libc/musl/src/mman/msync.c b/lib/libc/musl/src/mman/msync.c similarity index 100% rename from libc/musl/src/mman/msync.c rename to lib/libc/musl/src/mman/msync.c diff --git a/libc/musl/src/mman/munlock.c b/lib/libc/musl/src/mman/munlock.c similarity index 100% rename from libc/musl/src/mman/munlock.c rename to lib/libc/musl/src/mman/munlock.c diff --git a/libc/musl/src/mman/munlockall.c b/lib/libc/musl/src/mman/munlockall.c similarity index 100% rename from libc/musl/src/mman/munlockall.c rename to lib/libc/musl/src/mman/munlockall.c diff --git a/libc/musl/src/mman/munmap.c b/lib/libc/musl/src/mman/munmap.c similarity index 100% rename from libc/musl/src/mman/munmap.c rename to lib/libc/musl/src/mman/munmap.c diff --git a/libc/musl/src/mman/posix_madvise.c b/lib/libc/musl/src/mman/posix_madvise.c similarity index 100% rename from libc/musl/src/mman/posix_madvise.c rename to lib/libc/musl/src/mman/posix_madvise.c diff --git a/libc/musl/src/mman/shm_open.c b/lib/libc/musl/src/mman/shm_open.c similarity index 100% rename from libc/musl/src/mman/shm_open.c rename to lib/libc/musl/src/mman/shm_open.c diff --git a/libc/musl/src/mq/mq_close.c b/lib/libc/musl/src/mq/mq_close.c similarity index 100% rename from libc/musl/src/mq/mq_close.c rename to lib/libc/musl/src/mq/mq_close.c diff --git a/libc/musl/src/mq/mq_getattr.c b/lib/libc/musl/src/mq/mq_getattr.c similarity index 100% rename from libc/musl/src/mq/mq_getattr.c rename to lib/libc/musl/src/mq/mq_getattr.c diff --git a/libc/musl/src/mq/mq_notify.c b/lib/libc/musl/src/mq/mq_notify.c similarity index 100% rename from libc/musl/src/mq/mq_notify.c rename to lib/libc/musl/src/mq/mq_notify.c diff --git a/libc/musl/src/mq/mq_open.c b/lib/libc/musl/src/mq/mq_open.c similarity index 100% rename from libc/musl/src/mq/mq_open.c rename to lib/libc/musl/src/mq/mq_open.c diff --git a/libc/musl/src/mq/mq_receive.c b/lib/libc/musl/src/mq/mq_receive.c similarity index 100% rename from libc/musl/src/mq/mq_receive.c rename to lib/libc/musl/src/mq/mq_receive.c diff --git a/libc/musl/src/mq/mq_send.c b/lib/libc/musl/src/mq/mq_send.c similarity index 100% rename from libc/musl/src/mq/mq_send.c rename to lib/libc/musl/src/mq/mq_send.c diff --git a/libc/musl/src/mq/mq_setattr.c b/lib/libc/musl/src/mq/mq_setattr.c similarity index 100% rename from libc/musl/src/mq/mq_setattr.c rename to lib/libc/musl/src/mq/mq_setattr.c diff --git a/libc/musl/src/mq/mq_timedreceive.c b/lib/libc/musl/src/mq/mq_timedreceive.c similarity index 100% rename from libc/musl/src/mq/mq_timedreceive.c rename to lib/libc/musl/src/mq/mq_timedreceive.c diff --git a/libc/musl/src/mq/mq_timedsend.c b/lib/libc/musl/src/mq/mq_timedsend.c similarity index 100% rename from libc/musl/src/mq/mq_timedsend.c rename to lib/libc/musl/src/mq/mq_timedsend.c diff --git a/libc/musl/src/mq/mq_unlink.c b/lib/libc/musl/src/mq/mq_unlink.c similarity index 100% rename from libc/musl/src/mq/mq_unlink.c rename to lib/libc/musl/src/mq/mq_unlink.c diff --git a/libc/musl/src/multibyte/btowc.c b/lib/libc/musl/src/multibyte/btowc.c similarity index 100% rename from libc/musl/src/multibyte/btowc.c rename to lib/libc/musl/src/multibyte/btowc.c diff --git a/libc/musl/src/multibyte/c16rtomb.c b/lib/libc/musl/src/multibyte/c16rtomb.c similarity index 100% rename from libc/musl/src/multibyte/c16rtomb.c rename to lib/libc/musl/src/multibyte/c16rtomb.c diff --git a/libc/musl/src/multibyte/c32rtomb.c b/lib/libc/musl/src/multibyte/c32rtomb.c similarity index 100% rename from libc/musl/src/multibyte/c32rtomb.c rename to lib/libc/musl/src/multibyte/c32rtomb.c diff --git a/libc/musl/src/multibyte/internal.c b/lib/libc/musl/src/multibyte/internal.c similarity index 100% rename from libc/musl/src/multibyte/internal.c rename to lib/libc/musl/src/multibyte/internal.c diff --git a/libc/musl/src/multibyte/internal.h b/lib/libc/musl/src/multibyte/internal.h similarity index 100% rename from libc/musl/src/multibyte/internal.h rename to lib/libc/musl/src/multibyte/internal.h diff --git a/libc/musl/src/multibyte/mblen.c b/lib/libc/musl/src/multibyte/mblen.c similarity index 100% rename from libc/musl/src/multibyte/mblen.c rename to lib/libc/musl/src/multibyte/mblen.c diff --git a/libc/musl/src/multibyte/mbrlen.c b/lib/libc/musl/src/multibyte/mbrlen.c similarity index 100% rename from libc/musl/src/multibyte/mbrlen.c rename to lib/libc/musl/src/multibyte/mbrlen.c diff --git a/libc/musl/src/multibyte/mbrtoc16.c b/lib/libc/musl/src/multibyte/mbrtoc16.c similarity index 100% rename from libc/musl/src/multibyte/mbrtoc16.c rename to lib/libc/musl/src/multibyte/mbrtoc16.c diff --git a/libc/musl/src/multibyte/mbrtoc32.c b/lib/libc/musl/src/multibyte/mbrtoc32.c similarity index 100% rename from libc/musl/src/multibyte/mbrtoc32.c rename to lib/libc/musl/src/multibyte/mbrtoc32.c diff --git a/libc/musl/src/multibyte/mbrtowc.c b/lib/libc/musl/src/multibyte/mbrtowc.c similarity index 100% rename from libc/musl/src/multibyte/mbrtowc.c rename to lib/libc/musl/src/multibyte/mbrtowc.c diff --git a/libc/musl/src/multibyte/mbsinit.c b/lib/libc/musl/src/multibyte/mbsinit.c similarity index 100% rename from libc/musl/src/multibyte/mbsinit.c rename to lib/libc/musl/src/multibyte/mbsinit.c diff --git a/libc/musl/src/multibyte/mbsnrtowcs.c b/lib/libc/musl/src/multibyte/mbsnrtowcs.c similarity index 100% rename from libc/musl/src/multibyte/mbsnrtowcs.c rename to lib/libc/musl/src/multibyte/mbsnrtowcs.c diff --git a/libc/musl/src/multibyte/mbsrtowcs.c b/lib/libc/musl/src/multibyte/mbsrtowcs.c similarity index 100% rename from libc/musl/src/multibyte/mbsrtowcs.c rename to lib/libc/musl/src/multibyte/mbsrtowcs.c diff --git a/libc/musl/src/multibyte/mbstowcs.c b/lib/libc/musl/src/multibyte/mbstowcs.c similarity index 100% rename from libc/musl/src/multibyte/mbstowcs.c rename to lib/libc/musl/src/multibyte/mbstowcs.c diff --git a/libc/musl/src/multibyte/mbtowc.c b/lib/libc/musl/src/multibyte/mbtowc.c similarity index 100% rename from libc/musl/src/multibyte/mbtowc.c rename to lib/libc/musl/src/multibyte/mbtowc.c diff --git a/libc/musl/src/multibyte/wcrtomb.c b/lib/libc/musl/src/multibyte/wcrtomb.c similarity index 100% rename from libc/musl/src/multibyte/wcrtomb.c rename to lib/libc/musl/src/multibyte/wcrtomb.c diff --git a/libc/musl/src/multibyte/wcsnrtombs.c b/lib/libc/musl/src/multibyte/wcsnrtombs.c similarity index 100% rename from libc/musl/src/multibyte/wcsnrtombs.c rename to lib/libc/musl/src/multibyte/wcsnrtombs.c diff --git a/libc/musl/src/multibyte/wcsrtombs.c b/lib/libc/musl/src/multibyte/wcsrtombs.c similarity index 100% rename from libc/musl/src/multibyte/wcsrtombs.c rename to lib/libc/musl/src/multibyte/wcsrtombs.c diff --git a/libc/musl/src/multibyte/wcstombs.c b/lib/libc/musl/src/multibyte/wcstombs.c similarity index 100% rename from libc/musl/src/multibyte/wcstombs.c rename to lib/libc/musl/src/multibyte/wcstombs.c diff --git a/libc/musl/src/multibyte/wctob.c b/lib/libc/musl/src/multibyte/wctob.c similarity index 100% rename from libc/musl/src/multibyte/wctob.c rename to lib/libc/musl/src/multibyte/wctob.c diff --git a/libc/musl/src/multibyte/wctomb.c b/lib/libc/musl/src/multibyte/wctomb.c similarity index 100% rename from libc/musl/src/multibyte/wctomb.c rename to lib/libc/musl/src/multibyte/wctomb.c diff --git a/libc/musl/src/network/accept.c b/lib/libc/musl/src/network/accept.c similarity index 100% rename from libc/musl/src/network/accept.c rename to lib/libc/musl/src/network/accept.c diff --git a/libc/musl/src/network/accept4.c b/lib/libc/musl/src/network/accept4.c similarity index 100% rename from libc/musl/src/network/accept4.c rename to lib/libc/musl/src/network/accept4.c diff --git a/libc/musl/src/network/bind.c b/lib/libc/musl/src/network/bind.c similarity index 100% rename from libc/musl/src/network/bind.c rename to lib/libc/musl/src/network/bind.c diff --git a/libc/musl/src/network/connect.c b/lib/libc/musl/src/network/connect.c similarity index 100% rename from libc/musl/src/network/connect.c rename to lib/libc/musl/src/network/connect.c diff --git a/libc/musl/src/network/dn_comp.c b/lib/libc/musl/src/network/dn_comp.c similarity index 100% rename from libc/musl/src/network/dn_comp.c rename to lib/libc/musl/src/network/dn_comp.c diff --git a/libc/musl/src/network/dn_expand.c b/lib/libc/musl/src/network/dn_expand.c similarity index 100% rename from libc/musl/src/network/dn_expand.c rename to lib/libc/musl/src/network/dn_expand.c diff --git a/libc/musl/src/network/dn_skipname.c b/lib/libc/musl/src/network/dn_skipname.c similarity index 100% rename from libc/musl/src/network/dn_skipname.c rename to lib/libc/musl/src/network/dn_skipname.c diff --git a/libc/musl/src/network/dns_parse.c b/lib/libc/musl/src/network/dns_parse.c similarity index 100% rename from libc/musl/src/network/dns_parse.c rename to lib/libc/musl/src/network/dns_parse.c diff --git a/libc/musl/src/network/ent.c b/lib/libc/musl/src/network/ent.c similarity index 100% rename from libc/musl/src/network/ent.c rename to lib/libc/musl/src/network/ent.c diff --git a/libc/musl/src/network/ether.c b/lib/libc/musl/src/network/ether.c similarity index 100% rename from libc/musl/src/network/ether.c rename to lib/libc/musl/src/network/ether.c diff --git a/libc/musl/src/network/freeaddrinfo.c b/lib/libc/musl/src/network/freeaddrinfo.c similarity index 100% rename from libc/musl/src/network/freeaddrinfo.c rename to lib/libc/musl/src/network/freeaddrinfo.c diff --git a/libc/musl/src/network/gai_strerror.c b/lib/libc/musl/src/network/gai_strerror.c similarity index 100% rename from libc/musl/src/network/gai_strerror.c rename to lib/libc/musl/src/network/gai_strerror.c diff --git a/libc/musl/src/network/getaddrinfo.c b/lib/libc/musl/src/network/getaddrinfo.c similarity index 100% rename from libc/musl/src/network/getaddrinfo.c rename to lib/libc/musl/src/network/getaddrinfo.c diff --git a/libc/musl/src/network/gethostbyaddr.c b/lib/libc/musl/src/network/gethostbyaddr.c similarity index 100% rename from libc/musl/src/network/gethostbyaddr.c rename to lib/libc/musl/src/network/gethostbyaddr.c diff --git a/libc/musl/src/network/gethostbyaddr_r.c b/lib/libc/musl/src/network/gethostbyaddr_r.c similarity index 100% rename from libc/musl/src/network/gethostbyaddr_r.c rename to lib/libc/musl/src/network/gethostbyaddr_r.c diff --git a/libc/musl/src/network/gethostbyname.c b/lib/libc/musl/src/network/gethostbyname.c similarity index 100% rename from libc/musl/src/network/gethostbyname.c rename to lib/libc/musl/src/network/gethostbyname.c diff --git a/libc/musl/src/network/gethostbyname2.c b/lib/libc/musl/src/network/gethostbyname2.c similarity index 100% rename from libc/musl/src/network/gethostbyname2.c rename to lib/libc/musl/src/network/gethostbyname2.c diff --git a/libc/musl/src/network/gethostbyname2_r.c b/lib/libc/musl/src/network/gethostbyname2_r.c similarity index 100% rename from libc/musl/src/network/gethostbyname2_r.c rename to lib/libc/musl/src/network/gethostbyname2_r.c diff --git a/libc/musl/src/network/gethostbyname_r.c b/lib/libc/musl/src/network/gethostbyname_r.c similarity index 100% rename from libc/musl/src/network/gethostbyname_r.c rename to lib/libc/musl/src/network/gethostbyname_r.c diff --git a/libc/musl/src/network/getifaddrs.c b/lib/libc/musl/src/network/getifaddrs.c similarity index 100% rename from libc/musl/src/network/getifaddrs.c rename to lib/libc/musl/src/network/getifaddrs.c diff --git a/libc/musl/src/network/getnameinfo.c b/lib/libc/musl/src/network/getnameinfo.c similarity index 100% rename from libc/musl/src/network/getnameinfo.c rename to lib/libc/musl/src/network/getnameinfo.c diff --git a/libc/musl/src/network/getpeername.c b/lib/libc/musl/src/network/getpeername.c similarity index 100% rename from libc/musl/src/network/getpeername.c rename to lib/libc/musl/src/network/getpeername.c diff --git a/libc/musl/src/network/getservbyname.c b/lib/libc/musl/src/network/getservbyname.c similarity index 100% rename from libc/musl/src/network/getservbyname.c rename to lib/libc/musl/src/network/getservbyname.c diff --git a/libc/musl/src/network/getservbyname_r.c b/lib/libc/musl/src/network/getservbyname_r.c similarity index 100% rename from libc/musl/src/network/getservbyname_r.c rename to lib/libc/musl/src/network/getservbyname_r.c diff --git a/libc/musl/src/network/getservbyport.c b/lib/libc/musl/src/network/getservbyport.c similarity index 100% rename from libc/musl/src/network/getservbyport.c rename to lib/libc/musl/src/network/getservbyport.c diff --git a/libc/musl/src/network/getservbyport_r.c b/lib/libc/musl/src/network/getservbyport_r.c similarity index 100% rename from libc/musl/src/network/getservbyport_r.c rename to lib/libc/musl/src/network/getservbyport_r.c diff --git a/libc/musl/src/network/getsockname.c b/lib/libc/musl/src/network/getsockname.c similarity index 100% rename from libc/musl/src/network/getsockname.c rename to lib/libc/musl/src/network/getsockname.c diff --git a/libc/musl/src/network/getsockopt.c b/lib/libc/musl/src/network/getsockopt.c similarity index 100% rename from libc/musl/src/network/getsockopt.c rename to lib/libc/musl/src/network/getsockopt.c diff --git a/libc/musl/src/network/h_errno.c b/lib/libc/musl/src/network/h_errno.c similarity index 100% rename from libc/musl/src/network/h_errno.c rename to lib/libc/musl/src/network/h_errno.c diff --git a/libc/musl/src/network/herror.c b/lib/libc/musl/src/network/herror.c similarity index 100% rename from libc/musl/src/network/herror.c rename to lib/libc/musl/src/network/herror.c diff --git a/libc/musl/src/network/hstrerror.c b/lib/libc/musl/src/network/hstrerror.c similarity index 100% rename from libc/musl/src/network/hstrerror.c rename to lib/libc/musl/src/network/hstrerror.c diff --git a/libc/musl/src/network/htonl.c b/lib/libc/musl/src/network/htonl.c similarity index 100% rename from libc/musl/src/network/htonl.c rename to lib/libc/musl/src/network/htonl.c diff --git a/libc/musl/src/network/htons.c b/lib/libc/musl/src/network/htons.c similarity index 100% rename from libc/musl/src/network/htons.c rename to lib/libc/musl/src/network/htons.c diff --git a/libc/musl/src/network/if_freenameindex.c b/lib/libc/musl/src/network/if_freenameindex.c similarity index 100% rename from libc/musl/src/network/if_freenameindex.c rename to lib/libc/musl/src/network/if_freenameindex.c diff --git a/libc/musl/src/network/if_indextoname.c b/lib/libc/musl/src/network/if_indextoname.c similarity index 100% rename from libc/musl/src/network/if_indextoname.c rename to lib/libc/musl/src/network/if_indextoname.c diff --git a/libc/musl/src/network/if_nameindex.c b/lib/libc/musl/src/network/if_nameindex.c similarity index 100% rename from libc/musl/src/network/if_nameindex.c rename to lib/libc/musl/src/network/if_nameindex.c diff --git a/libc/musl/src/network/if_nametoindex.c b/lib/libc/musl/src/network/if_nametoindex.c similarity index 100% rename from libc/musl/src/network/if_nametoindex.c rename to lib/libc/musl/src/network/if_nametoindex.c diff --git a/libc/musl/src/network/in6addr_any.c b/lib/libc/musl/src/network/in6addr_any.c similarity index 100% rename from libc/musl/src/network/in6addr_any.c rename to lib/libc/musl/src/network/in6addr_any.c diff --git a/libc/musl/src/network/in6addr_loopback.c b/lib/libc/musl/src/network/in6addr_loopback.c similarity index 100% rename from libc/musl/src/network/in6addr_loopback.c rename to lib/libc/musl/src/network/in6addr_loopback.c diff --git a/libc/musl/src/network/inet_addr.c b/lib/libc/musl/src/network/inet_addr.c similarity index 100% rename from libc/musl/src/network/inet_addr.c rename to lib/libc/musl/src/network/inet_addr.c diff --git a/libc/musl/src/network/inet_aton.c b/lib/libc/musl/src/network/inet_aton.c similarity index 100% rename from libc/musl/src/network/inet_aton.c rename to lib/libc/musl/src/network/inet_aton.c diff --git a/libc/musl/src/network/inet_legacy.c b/lib/libc/musl/src/network/inet_legacy.c similarity index 100% rename from libc/musl/src/network/inet_legacy.c rename to lib/libc/musl/src/network/inet_legacy.c diff --git a/libc/musl/src/network/inet_ntoa.c b/lib/libc/musl/src/network/inet_ntoa.c similarity index 100% rename from libc/musl/src/network/inet_ntoa.c rename to lib/libc/musl/src/network/inet_ntoa.c diff --git a/libc/musl/src/network/inet_ntop.c b/lib/libc/musl/src/network/inet_ntop.c similarity index 100% rename from libc/musl/src/network/inet_ntop.c rename to lib/libc/musl/src/network/inet_ntop.c diff --git a/libc/musl/src/network/inet_pton.c b/lib/libc/musl/src/network/inet_pton.c similarity index 100% rename from libc/musl/src/network/inet_pton.c rename to lib/libc/musl/src/network/inet_pton.c diff --git a/libc/musl/src/network/listen.c b/lib/libc/musl/src/network/listen.c similarity index 100% rename from libc/musl/src/network/listen.c rename to lib/libc/musl/src/network/listen.c diff --git a/libc/musl/src/network/lookup.h b/lib/libc/musl/src/network/lookup.h similarity index 100% rename from libc/musl/src/network/lookup.h rename to lib/libc/musl/src/network/lookup.h diff --git a/libc/musl/src/network/lookup_ipliteral.c b/lib/libc/musl/src/network/lookup_ipliteral.c similarity index 100% rename from libc/musl/src/network/lookup_ipliteral.c rename to lib/libc/musl/src/network/lookup_ipliteral.c diff --git a/libc/musl/src/network/lookup_name.c b/lib/libc/musl/src/network/lookup_name.c similarity index 100% rename from libc/musl/src/network/lookup_name.c rename to lib/libc/musl/src/network/lookup_name.c diff --git a/libc/musl/src/network/lookup_serv.c b/lib/libc/musl/src/network/lookup_serv.c similarity index 100% rename from libc/musl/src/network/lookup_serv.c rename to lib/libc/musl/src/network/lookup_serv.c diff --git a/libc/musl/src/network/netlink.c b/lib/libc/musl/src/network/netlink.c similarity index 100% rename from libc/musl/src/network/netlink.c rename to lib/libc/musl/src/network/netlink.c diff --git a/libc/musl/src/network/netlink.h b/lib/libc/musl/src/network/netlink.h similarity index 100% rename from libc/musl/src/network/netlink.h rename to lib/libc/musl/src/network/netlink.h diff --git a/libc/musl/src/network/netname.c b/lib/libc/musl/src/network/netname.c similarity index 100% rename from libc/musl/src/network/netname.c rename to lib/libc/musl/src/network/netname.c diff --git a/libc/musl/src/network/ns_parse.c b/lib/libc/musl/src/network/ns_parse.c similarity index 100% rename from libc/musl/src/network/ns_parse.c rename to lib/libc/musl/src/network/ns_parse.c diff --git a/libc/musl/src/network/ntohl.c b/lib/libc/musl/src/network/ntohl.c similarity index 100% rename from libc/musl/src/network/ntohl.c rename to lib/libc/musl/src/network/ntohl.c diff --git a/libc/musl/src/network/ntohs.c b/lib/libc/musl/src/network/ntohs.c similarity index 100% rename from libc/musl/src/network/ntohs.c rename to lib/libc/musl/src/network/ntohs.c diff --git a/libc/musl/src/network/proto.c b/lib/libc/musl/src/network/proto.c similarity index 100% rename from libc/musl/src/network/proto.c rename to lib/libc/musl/src/network/proto.c diff --git a/libc/musl/src/network/recv.c b/lib/libc/musl/src/network/recv.c similarity index 100% rename from libc/musl/src/network/recv.c rename to lib/libc/musl/src/network/recv.c diff --git a/libc/musl/src/network/recvfrom.c b/lib/libc/musl/src/network/recvfrom.c similarity index 100% rename from libc/musl/src/network/recvfrom.c rename to lib/libc/musl/src/network/recvfrom.c diff --git a/libc/musl/src/network/recvmmsg.c b/lib/libc/musl/src/network/recvmmsg.c similarity index 100% rename from libc/musl/src/network/recvmmsg.c rename to lib/libc/musl/src/network/recvmmsg.c diff --git a/libc/musl/src/network/recvmsg.c b/lib/libc/musl/src/network/recvmsg.c similarity index 100% rename from libc/musl/src/network/recvmsg.c rename to lib/libc/musl/src/network/recvmsg.c diff --git a/libc/musl/src/network/res_init.c b/lib/libc/musl/src/network/res_init.c similarity index 100% rename from libc/musl/src/network/res_init.c rename to lib/libc/musl/src/network/res_init.c diff --git a/libc/musl/src/network/res_mkquery.c b/lib/libc/musl/src/network/res_mkquery.c similarity index 100% rename from libc/musl/src/network/res_mkquery.c rename to lib/libc/musl/src/network/res_mkquery.c diff --git a/libc/musl/src/network/res_msend.c b/lib/libc/musl/src/network/res_msend.c similarity index 100% rename from libc/musl/src/network/res_msend.c rename to lib/libc/musl/src/network/res_msend.c diff --git a/libc/musl/src/network/res_query.c b/lib/libc/musl/src/network/res_query.c similarity index 100% rename from libc/musl/src/network/res_query.c rename to lib/libc/musl/src/network/res_query.c diff --git a/libc/musl/src/network/res_querydomain.c b/lib/libc/musl/src/network/res_querydomain.c similarity index 100% rename from libc/musl/src/network/res_querydomain.c rename to lib/libc/musl/src/network/res_querydomain.c diff --git a/libc/musl/src/network/res_send.c b/lib/libc/musl/src/network/res_send.c similarity index 100% rename from libc/musl/src/network/res_send.c rename to lib/libc/musl/src/network/res_send.c diff --git a/libc/musl/src/network/res_state.c b/lib/libc/musl/src/network/res_state.c similarity index 100% rename from libc/musl/src/network/res_state.c rename to lib/libc/musl/src/network/res_state.c diff --git a/libc/musl/src/network/resolvconf.c b/lib/libc/musl/src/network/resolvconf.c similarity index 100% rename from libc/musl/src/network/resolvconf.c rename to lib/libc/musl/src/network/resolvconf.c diff --git a/libc/musl/src/network/send.c b/lib/libc/musl/src/network/send.c similarity index 100% rename from libc/musl/src/network/send.c rename to lib/libc/musl/src/network/send.c diff --git a/libc/musl/src/network/sendmmsg.c b/lib/libc/musl/src/network/sendmmsg.c similarity index 100% rename from libc/musl/src/network/sendmmsg.c rename to lib/libc/musl/src/network/sendmmsg.c diff --git a/libc/musl/src/network/sendmsg.c b/lib/libc/musl/src/network/sendmsg.c similarity index 100% rename from libc/musl/src/network/sendmsg.c rename to lib/libc/musl/src/network/sendmsg.c diff --git a/libc/musl/src/network/sendto.c b/lib/libc/musl/src/network/sendto.c similarity index 100% rename from libc/musl/src/network/sendto.c rename to lib/libc/musl/src/network/sendto.c diff --git a/libc/musl/src/network/serv.c b/lib/libc/musl/src/network/serv.c similarity index 100% rename from libc/musl/src/network/serv.c rename to lib/libc/musl/src/network/serv.c diff --git a/libc/musl/src/network/setsockopt.c b/lib/libc/musl/src/network/setsockopt.c similarity index 100% rename from libc/musl/src/network/setsockopt.c rename to lib/libc/musl/src/network/setsockopt.c diff --git a/libc/musl/src/network/shutdown.c b/lib/libc/musl/src/network/shutdown.c similarity index 100% rename from libc/musl/src/network/shutdown.c rename to lib/libc/musl/src/network/shutdown.c diff --git a/libc/musl/src/network/sockatmark.c b/lib/libc/musl/src/network/sockatmark.c similarity index 100% rename from libc/musl/src/network/sockatmark.c rename to lib/libc/musl/src/network/sockatmark.c diff --git a/libc/musl/src/network/socket.c b/lib/libc/musl/src/network/socket.c similarity index 100% rename from libc/musl/src/network/socket.c rename to lib/libc/musl/src/network/socket.c diff --git a/libc/musl/src/network/socketpair.c b/lib/libc/musl/src/network/socketpair.c similarity index 100% rename from libc/musl/src/network/socketpair.c rename to lib/libc/musl/src/network/socketpair.c diff --git a/libc/musl/src/passwd/fgetgrent.c b/lib/libc/musl/src/passwd/fgetgrent.c similarity index 100% rename from libc/musl/src/passwd/fgetgrent.c rename to lib/libc/musl/src/passwd/fgetgrent.c diff --git a/libc/musl/src/passwd/fgetpwent.c b/lib/libc/musl/src/passwd/fgetpwent.c similarity index 100% rename from libc/musl/src/passwd/fgetpwent.c rename to lib/libc/musl/src/passwd/fgetpwent.c diff --git a/libc/musl/src/passwd/fgetspent.c b/lib/libc/musl/src/passwd/fgetspent.c similarity index 100% rename from libc/musl/src/passwd/fgetspent.c rename to lib/libc/musl/src/passwd/fgetspent.c diff --git a/libc/musl/src/passwd/getgr_a.c b/lib/libc/musl/src/passwd/getgr_a.c similarity index 100% rename from libc/musl/src/passwd/getgr_a.c rename to lib/libc/musl/src/passwd/getgr_a.c diff --git a/libc/musl/src/passwd/getgr_r.c b/lib/libc/musl/src/passwd/getgr_r.c similarity index 100% rename from libc/musl/src/passwd/getgr_r.c rename to lib/libc/musl/src/passwd/getgr_r.c diff --git a/libc/musl/src/passwd/getgrent.c b/lib/libc/musl/src/passwd/getgrent.c similarity index 100% rename from libc/musl/src/passwd/getgrent.c rename to lib/libc/musl/src/passwd/getgrent.c diff --git a/libc/musl/src/passwd/getgrent_a.c b/lib/libc/musl/src/passwd/getgrent_a.c similarity index 100% rename from libc/musl/src/passwd/getgrent_a.c rename to lib/libc/musl/src/passwd/getgrent_a.c diff --git a/libc/musl/src/passwd/getgrouplist.c b/lib/libc/musl/src/passwd/getgrouplist.c similarity index 100% rename from libc/musl/src/passwd/getgrouplist.c rename to lib/libc/musl/src/passwd/getgrouplist.c diff --git a/libc/musl/src/passwd/getpw_a.c b/lib/libc/musl/src/passwd/getpw_a.c similarity index 100% rename from libc/musl/src/passwd/getpw_a.c rename to lib/libc/musl/src/passwd/getpw_a.c diff --git a/libc/musl/src/passwd/getpw_r.c b/lib/libc/musl/src/passwd/getpw_r.c similarity index 100% rename from libc/musl/src/passwd/getpw_r.c rename to lib/libc/musl/src/passwd/getpw_r.c diff --git a/libc/musl/src/passwd/getpwent.c b/lib/libc/musl/src/passwd/getpwent.c similarity index 100% rename from libc/musl/src/passwd/getpwent.c rename to lib/libc/musl/src/passwd/getpwent.c diff --git a/libc/musl/src/passwd/getpwent_a.c b/lib/libc/musl/src/passwd/getpwent_a.c similarity index 100% rename from libc/musl/src/passwd/getpwent_a.c rename to lib/libc/musl/src/passwd/getpwent_a.c diff --git a/libc/musl/src/passwd/getspent.c b/lib/libc/musl/src/passwd/getspent.c similarity index 100% rename from libc/musl/src/passwd/getspent.c rename to lib/libc/musl/src/passwd/getspent.c diff --git a/libc/musl/src/passwd/getspnam.c b/lib/libc/musl/src/passwd/getspnam.c similarity index 100% rename from libc/musl/src/passwd/getspnam.c rename to lib/libc/musl/src/passwd/getspnam.c diff --git a/libc/musl/src/passwd/getspnam_r.c b/lib/libc/musl/src/passwd/getspnam_r.c similarity index 100% rename from libc/musl/src/passwd/getspnam_r.c rename to lib/libc/musl/src/passwd/getspnam_r.c diff --git a/libc/musl/src/passwd/lckpwdf.c b/lib/libc/musl/src/passwd/lckpwdf.c similarity index 100% rename from libc/musl/src/passwd/lckpwdf.c rename to lib/libc/musl/src/passwd/lckpwdf.c diff --git a/libc/musl/src/passwd/nscd.h b/lib/libc/musl/src/passwd/nscd.h similarity index 100% rename from libc/musl/src/passwd/nscd.h rename to lib/libc/musl/src/passwd/nscd.h diff --git a/libc/musl/src/passwd/nscd_query.c b/lib/libc/musl/src/passwd/nscd_query.c similarity index 100% rename from libc/musl/src/passwd/nscd_query.c rename to lib/libc/musl/src/passwd/nscd_query.c diff --git a/libc/musl/src/passwd/putgrent.c b/lib/libc/musl/src/passwd/putgrent.c similarity index 100% rename from libc/musl/src/passwd/putgrent.c rename to lib/libc/musl/src/passwd/putgrent.c diff --git a/libc/musl/src/passwd/putpwent.c b/lib/libc/musl/src/passwd/putpwent.c similarity index 100% rename from libc/musl/src/passwd/putpwent.c rename to lib/libc/musl/src/passwd/putpwent.c diff --git a/libc/musl/src/passwd/putspent.c b/lib/libc/musl/src/passwd/putspent.c similarity index 100% rename from libc/musl/src/passwd/putspent.c rename to lib/libc/musl/src/passwd/putspent.c diff --git a/libc/musl/src/passwd/pwf.h b/lib/libc/musl/src/passwd/pwf.h similarity index 100% rename from libc/musl/src/passwd/pwf.h rename to lib/libc/musl/src/passwd/pwf.h diff --git a/libc/musl/src/prng/__rand48_step.c b/lib/libc/musl/src/prng/__rand48_step.c similarity index 100% rename from libc/musl/src/prng/__rand48_step.c rename to lib/libc/musl/src/prng/__rand48_step.c diff --git a/libc/musl/src/prng/__seed48.c b/lib/libc/musl/src/prng/__seed48.c similarity index 100% rename from libc/musl/src/prng/__seed48.c rename to lib/libc/musl/src/prng/__seed48.c diff --git a/libc/musl/src/prng/drand48.c b/lib/libc/musl/src/prng/drand48.c similarity index 100% rename from libc/musl/src/prng/drand48.c rename to lib/libc/musl/src/prng/drand48.c diff --git a/libc/musl/src/prng/lcong48.c b/lib/libc/musl/src/prng/lcong48.c similarity index 100% rename from libc/musl/src/prng/lcong48.c rename to lib/libc/musl/src/prng/lcong48.c diff --git a/libc/musl/src/prng/lrand48.c b/lib/libc/musl/src/prng/lrand48.c similarity index 100% rename from libc/musl/src/prng/lrand48.c rename to lib/libc/musl/src/prng/lrand48.c diff --git a/libc/musl/src/prng/mrand48.c b/lib/libc/musl/src/prng/mrand48.c similarity index 100% rename from libc/musl/src/prng/mrand48.c rename to lib/libc/musl/src/prng/mrand48.c diff --git a/libc/musl/src/prng/rand.c b/lib/libc/musl/src/prng/rand.c similarity index 100% rename from libc/musl/src/prng/rand.c rename to lib/libc/musl/src/prng/rand.c diff --git a/libc/musl/src/prng/rand48.h b/lib/libc/musl/src/prng/rand48.h similarity index 100% rename from libc/musl/src/prng/rand48.h rename to lib/libc/musl/src/prng/rand48.h diff --git a/libc/musl/src/prng/rand_r.c b/lib/libc/musl/src/prng/rand_r.c similarity index 100% rename from libc/musl/src/prng/rand_r.c rename to lib/libc/musl/src/prng/rand_r.c diff --git a/libc/musl/src/prng/random.c b/lib/libc/musl/src/prng/random.c similarity index 100% rename from libc/musl/src/prng/random.c rename to lib/libc/musl/src/prng/random.c diff --git a/libc/musl/src/prng/seed48.c b/lib/libc/musl/src/prng/seed48.c similarity index 100% rename from libc/musl/src/prng/seed48.c rename to lib/libc/musl/src/prng/seed48.c diff --git a/libc/musl/src/prng/srand48.c b/lib/libc/musl/src/prng/srand48.c similarity index 100% rename from libc/musl/src/prng/srand48.c rename to lib/libc/musl/src/prng/srand48.c diff --git a/libc/musl/src/process/arm/vfork.s b/lib/libc/musl/src/process/arm/vfork.s similarity index 100% rename from libc/musl/src/process/arm/vfork.s rename to lib/libc/musl/src/process/arm/vfork.s diff --git a/libc/musl/src/process/execl.c b/lib/libc/musl/src/process/execl.c similarity index 100% rename from libc/musl/src/process/execl.c rename to lib/libc/musl/src/process/execl.c diff --git a/libc/musl/src/process/execle.c b/lib/libc/musl/src/process/execle.c similarity index 100% rename from libc/musl/src/process/execle.c rename to lib/libc/musl/src/process/execle.c diff --git a/libc/musl/src/process/execlp.c b/lib/libc/musl/src/process/execlp.c similarity index 100% rename from libc/musl/src/process/execlp.c rename to lib/libc/musl/src/process/execlp.c diff --git a/libc/musl/src/process/execv.c b/lib/libc/musl/src/process/execv.c similarity index 100% rename from libc/musl/src/process/execv.c rename to lib/libc/musl/src/process/execv.c diff --git a/libc/musl/src/process/execve.c b/lib/libc/musl/src/process/execve.c similarity index 100% rename from libc/musl/src/process/execve.c rename to lib/libc/musl/src/process/execve.c diff --git a/libc/musl/src/process/execvp.c b/lib/libc/musl/src/process/execvp.c similarity index 100% rename from libc/musl/src/process/execvp.c rename to lib/libc/musl/src/process/execvp.c diff --git a/libc/musl/src/process/fdop.h b/lib/libc/musl/src/process/fdop.h similarity index 100% rename from libc/musl/src/process/fdop.h rename to lib/libc/musl/src/process/fdop.h diff --git a/libc/musl/src/process/fexecve.c b/lib/libc/musl/src/process/fexecve.c similarity index 100% rename from libc/musl/src/process/fexecve.c rename to lib/libc/musl/src/process/fexecve.c diff --git a/libc/musl/src/process/fork.c b/lib/libc/musl/src/process/fork.c similarity index 100% rename from libc/musl/src/process/fork.c rename to lib/libc/musl/src/process/fork.c diff --git a/libc/musl/src/process/i386/vfork.s b/lib/libc/musl/src/process/i386/vfork.s similarity index 100% rename from libc/musl/src/process/i386/vfork.s rename to lib/libc/musl/src/process/i386/vfork.s diff --git a/libc/musl/src/process/posix_spawn.c b/lib/libc/musl/src/process/posix_spawn.c similarity index 100% rename from libc/musl/src/process/posix_spawn.c rename to lib/libc/musl/src/process/posix_spawn.c diff --git a/libc/musl/src/process/posix_spawn_file_actions_addclose.c b/lib/libc/musl/src/process/posix_spawn_file_actions_addclose.c similarity index 100% rename from libc/musl/src/process/posix_spawn_file_actions_addclose.c rename to lib/libc/musl/src/process/posix_spawn_file_actions_addclose.c diff --git a/libc/musl/src/process/posix_spawn_file_actions_adddup2.c b/lib/libc/musl/src/process/posix_spawn_file_actions_adddup2.c similarity index 100% rename from libc/musl/src/process/posix_spawn_file_actions_adddup2.c rename to lib/libc/musl/src/process/posix_spawn_file_actions_adddup2.c diff --git a/libc/musl/src/process/posix_spawn_file_actions_addopen.c b/lib/libc/musl/src/process/posix_spawn_file_actions_addopen.c similarity index 100% rename from libc/musl/src/process/posix_spawn_file_actions_addopen.c rename to lib/libc/musl/src/process/posix_spawn_file_actions_addopen.c diff --git a/libc/musl/src/process/posix_spawn_file_actions_destroy.c b/lib/libc/musl/src/process/posix_spawn_file_actions_destroy.c similarity index 100% rename from libc/musl/src/process/posix_spawn_file_actions_destroy.c rename to lib/libc/musl/src/process/posix_spawn_file_actions_destroy.c diff --git a/libc/musl/src/process/posix_spawn_file_actions_init.c b/lib/libc/musl/src/process/posix_spawn_file_actions_init.c similarity index 100% rename from libc/musl/src/process/posix_spawn_file_actions_init.c rename to lib/libc/musl/src/process/posix_spawn_file_actions_init.c diff --git a/libc/musl/src/process/posix_spawnattr_destroy.c b/lib/libc/musl/src/process/posix_spawnattr_destroy.c similarity index 100% rename from libc/musl/src/process/posix_spawnattr_destroy.c rename to lib/libc/musl/src/process/posix_spawnattr_destroy.c diff --git a/libc/musl/src/process/posix_spawnattr_getflags.c b/lib/libc/musl/src/process/posix_spawnattr_getflags.c similarity index 100% rename from libc/musl/src/process/posix_spawnattr_getflags.c rename to lib/libc/musl/src/process/posix_spawnattr_getflags.c diff --git a/libc/musl/src/process/posix_spawnattr_getpgroup.c b/lib/libc/musl/src/process/posix_spawnattr_getpgroup.c similarity index 100% rename from libc/musl/src/process/posix_spawnattr_getpgroup.c rename to lib/libc/musl/src/process/posix_spawnattr_getpgroup.c diff --git a/libc/musl/src/process/posix_spawnattr_getsigdefault.c b/lib/libc/musl/src/process/posix_spawnattr_getsigdefault.c similarity index 100% rename from libc/musl/src/process/posix_spawnattr_getsigdefault.c rename to lib/libc/musl/src/process/posix_spawnattr_getsigdefault.c diff --git a/libc/musl/src/process/posix_spawnattr_getsigmask.c b/lib/libc/musl/src/process/posix_spawnattr_getsigmask.c similarity index 100% rename from libc/musl/src/process/posix_spawnattr_getsigmask.c rename to lib/libc/musl/src/process/posix_spawnattr_getsigmask.c diff --git a/libc/musl/src/process/posix_spawnattr_init.c b/lib/libc/musl/src/process/posix_spawnattr_init.c similarity index 100% rename from libc/musl/src/process/posix_spawnattr_init.c rename to lib/libc/musl/src/process/posix_spawnattr_init.c diff --git a/libc/musl/src/process/posix_spawnattr_sched.c b/lib/libc/musl/src/process/posix_spawnattr_sched.c similarity index 100% rename from libc/musl/src/process/posix_spawnattr_sched.c rename to lib/libc/musl/src/process/posix_spawnattr_sched.c diff --git a/libc/musl/src/process/posix_spawnattr_setflags.c b/lib/libc/musl/src/process/posix_spawnattr_setflags.c similarity index 100% rename from libc/musl/src/process/posix_spawnattr_setflags.c rename to lib/libc/musl/src/process/posix_spawnattr_setflags.c diff --git a/libc/musl/src/process/posix_spawnattr_setpgroup.c b/lib/libc/musl/src/process/posix_spawnattr_setpgroup.c similarity index 100% rename from libc/musl/src/process/posix_spawnattr_setpgroup.c rename to lib/libc/musl/src/process/posix_spawnattr_setpgroup.c diff --git a/libc/musl/src/process/posix_spawnattr_setsigdefault.c b/lib/libc/musl/src/process/posix_spawnattr_setsigdefault.c similarity index 100% rename from libc/musl/src/process/posix_spawnattr_setsigdefault.c rename to lib/libc/musl/src/process/posix_spawnattr_setsigdefault.c diff --git a/libc/musl/src/process/posix_spawnattr_setsigmask.c b/lib/libc/musl/src/process/posix_spawnattr_setsigmask.c similarity index 100% rename from libc/musl/src/process/posix_spawnattr_setsigmask.c rename to lib/libc/musl/src/process/posix_spawnattr_setsigmask.c diff --git a/libc/musl/src/process/posix_spawnp.c b/lib/libc/musl/src/process/posix_spawnp.c similarity index 100% rename from libc/musl/src/process/posix_spawnp.c rename to lib/libc/musl/src/process/posix_spawnp.c diff --git a/libc/musl/src/process/s390x/vfork.s b/lib/libc/musl/src/process/s390x/vfork.s similarity index 100% rename from libc/musl/src/process/s390x/vfork.s rename to lib/libc/musl/src/process/s390x/vfork.s diff --git a/libc/musl/src/process/sh/vfork.s b/lib/libc/musl/src/process/sh/vfork.s similarity index 100% rename from libc/musl/src/process/sh/vfork.s rename to lib/libc/musl/src/process/sh/vfork.s diff --git a/libc/musl/src/process/system.c b/lib/libc/musl/src/process/system.c similarity index 100% rename from libc/musl/src/process/system.c rename to lib/libc/musl/src/process/system.c diff --git a/libc/musl/src/process/vfork.c b/lib/libc/musl/src/process/vfork.c similarity index 100% rename from libc/musl/src/process/vfork.c rename to lib/libc/musl/src/process/vfork.c diff --git a/libc/musl/src/process/wait.c b/lib/libc/musl/src/process/wait.c similarity index 100% rename from libc/musl/src/process/wait.c rename to lib/libc/musl/src/process/wait.c diff --git a/libc/musl/src/process/waitid.c b/lib/libc/musl/src/process/waitid.c similarity index 100% rename from libc/musl/src/process/waitid.c rename to lib/libc/musl/src/process/waitid.c diff --git a/libc/musl/src/process/waitpid.c b/lib/libc/musl/src/process/waitpid.c similarity index 100% rename from libc/musl/src/process/waitpid.c rename to lib/libc/musl/src/process/waitpid.c diff --git a/libc/musl/src/process/x32/vfork.s b/lib/libc/musl/src/process/x32/vfork.s similarity index 100% rename from libc/musl/src/process/x32/vfork.s rename to lib/libc/musl/src/process/x32/vfork.s diff --git a/libc/musl/src/process/x86_64/vfork.s b/lib/libc/musl/src/process/x86_64/vfork.s similarity index 100% rename from libc/musl/src/process/x86_64/vfork.s rename to lib/libc/musl/src/process/x86_64/vfork.s diff --git a/libc/musl/src/regex/fnmatch.c b/lib/libc/musl/src/regex/fnmatch.c similarity index 100% rename from libc/musl/src/regex/fnmatch.c rename to lib/libc/musl/src/regex/fnmatch.c diff --git a/libc/musl/src/regex/glob.c b/lib/libc/musl/src/regex/glob.c similarity index 100% rename from libc/musl/src/regex/glob.c rename to lib/libc/musl/src/regex/glob.c diff --git a/libc/musl/src/regex/regcomp.c b/lib/libc/musl/src/regex/regcomp.c similarity index 100% rename from libc/musl/src/regex/regcomp.c rename to lib/libc/musl/src/regex/regcomp.c diff --git a/libc/musl/src/regex/regerror.c b/lib/libc/musl/src/regex/regerror.c similarity index 100% rename from libc/musl/src/regex/regerror.c rename to lib/libc/musl/src/regex/regerror.c diff --git a/libc/musl/src/regex/regexec.c b/lib/libc/musl/src/regex/regexec.c similarity index 100% rename from libc/musl/src/regex/regexec.c rename to lib/libc/musl/src/regex/regexec.c diff --git a/libc/musl/src/regex/tre-mem.c b/lib/libc/musl/src/regex/tre-mem.c similarity index 100% rename from libc/musl/src/regex/tre-mem.c rename to lib/libc/musl/src/regex/tre-mem.c diff --git a/libc/musl/src/regex/tre.h b/lib/libc/musl/src/regex/tre.h similarity index 100% rename from libc/musl/src/regex/tre.h rename to lib/libc/musl/src/regex/tre.h diff --git a/libc/musl/src/sched/affinity.c b/lib/libc/musl/src/sched/affinity.c similarity index 100% rename from libc/musl/src/sched/affinity.c rename to lib/libc/musl/src/sched/affinity.c diff --git a/libc/musl/src/sched/sched_cpucount.c b/lib/libc/musl/src/sched/sched_cpucount.c similarity index 100% rename from libc/musl/src/sched/sched_cpucount.c rename to lib/libc/musl/src/sched/sched_cpucount.c diff --git a/libc/musl/src/sched/sched_get_priority_max.c b/lib/libc/musl/src/sched/sched_get_priority_max.c similarity index 100% rename from libc/musl/src/sched/sched_get_priority_max.c rename to lib/libc/musl/src/sched/sched_get_priority_max.c diff --git a/libc/musl/src/sched/sched_getcpu.c b/lib/libc/musl/src/sched/sched_getcpu.c similarity index 100% rename from libc/musl/src/sched/sched_getcpu.c rename to lib/libc/musl/src/sched/sched_getcpu.c diff --git a/libc/musl/src/sched/sched_getparam.c b/lib/libc/musl/src/sched/sched_getparam.c similarity index 100% rename from libc/musl/src/sched/sched_getparam.c rename to lib/libc/musl/src/sched/sched_getparam.c diff --git a/libc/musl/src/sched/sched_getscheduler.c b/lib/libc/musl/src/sched/sched_getscheduler.c similarity index 100% rename from libc/musl/src/sched/sched_getscheduler.c rename to lib/libc/musl/src/sched/sched_getscheduler.c diff --git a/libc/musl/src/sched/sched_rr_get_interval.c b/lib/libc/musl/src/sched/sched_rr_get_interval.c similarity index 100% rename from libc/musl/src/sched/sched_rr_get_interval.c rename to lib/libc/musl/src/sched/sched_rr_get_interval.c diff --git a/libc/musl/src/sched/sched_setparam.c b/lib/libc/musl/src/sched/sched_setparam.c similarity index 100% rename from libc/musl/src/sched/sched_setparam.c rename to lib/libc/musl/src/sched/sched_setparam.c diff --git a/libc/musl/src/sched/sched_setscheduler.c b/lib/libc/musl/src/sched/sched_setscheduler.c similarity index 100% rename from libc/musl/src/sched/sched_setscheduler.c rename to lib/libc/musl/src/sched/sched_setscheduler.c diff --git a/libc/musl/src/sched/sched_yield.c b/lib/libc/musl/src/sched/sched_yield.c similarity index 100% rename from libc/musl/src/sched/sched_yield.c rename to lib/libc/musl/src/sched/sched_yield.c diff --git a/libc/musl/src/search/hsearch.c b/lib/libc/musl/src/search/hsearch.c similarity index 100% rename from libc/musl/src/search/hsearch.c rename to lib/libc/musl/src/search/hsearch.c diff --git a/libc/musl/src/search/insque.c b/lib/libc/musl/src/search/insque.c similarity index 100% rename from libc/musl/src/search/insque.c rename to lib/libc/musl/src/search/insque.c diff --git a/libc/musl/src/search/lsearch.c b/lib/libc/musl/src/search/lsearch.c similarity index 100% rename from libc/musl/src/search/lsearch.c rename to lib/libc/musl/src/search/lsearch.c diff --git a/libc/musl/src/search/tdelete.c b/lib/libc/musl/src/search/tdelete.c similarity index 100% rename from libc/musl/src/search/tdelete.c rename to lib/libc/musl/src/search/tdelete.c diff --git a/libc/musl/src/search/tdestroy.c b/lib/libc/musl/src/search/tdestroy.c similarity index 100% rename from libc/musl/src/search/tdestroy.c rename to lib/libc/musl/src/search/tdestroy.c diff --git a/libc/musl/src/search/tfind.c b/lib/libc/musl/src/search/tfind.c similarity index 100% rename from libc/musl/src/search/tfind.c rename to lib/libc/musl/src/search/tfind.c diff --git a/libc/musl/src/search/tsearch.c b/lib/libc/musl/src/search/tsearch.c similarity index 100% rename from libc/musl/src/search/tsearch.c rename to lib/libc/musl/src/search/tsearch.c diff --git a/libc/musl/src/search/tsearch.h b/lib/libc/musl/src/search/tsearch.h similarity index 100% rename from libc/musl/src/search/tsearch.h rename to lib/libc/musl/src/search/tsearch.h diff --git a/libc/musl/src/search/twalk.c b/lib/libc/musl/src/search/twalk.c similarity index 100% rename from libc/musl/src/search/twalk.c rename to lib/libc/musl/src/search/twalk.c diff --git a/libc/musl/src/select/poll.c b/lib/libc/musl/src/select/poll.c similarity index 100% rename from libc/musl/src/select/poll.c rename to lib/libc/musl/src/select/poll.c diff --git a/libc/musl/src/select/pselect.c b/lib/libc/musl/src/select/pselect.c similarity index 100% rename from libc/musl/src/select/pselect.c rename to lib/libc/musl/src/select/pselect.c diff --git a/libc/musl/src/select/select.c b/lib/libc/musl/src/select/select.c similarity index 100% rename from libc/musl/src/select/select.c rename to lib/libc/musl/src/select/select.c diff --git a/libc/musl/src/setjmp/aarch64/longjmp.s b/lib/libc/musl/src/setjmp/aarch64/longjmp.s similarity index 100% rename from libc/musl/src/setjmp/aarch64/longjmp.s rename to lib/libc/musl/src/setjmp/aarch64/longjmp.s diff --git a/libc/musl/src/setjmp/aarch64/setjmp.s b/lib/libc/musl/src/setjmp/aarch64/setjmp.s similarity index 100% rename from libc/musl/src/setjmp/aarch64/setjmp.s rename to lib/libc/musl/src/setjmp/aarch64/setjmp.s diff --git a/libc/musl/src/setjmp/arm/longjmp.s b/lib/libc/musl/src/setjmp/arm/longjmp.s similarity index 100% rename from libc/musl/src/setjmp/arm/longjmp.s rename to lib/libc/musl/src/setjmp/arm/longjmp.s diff --git a/libc/musl/src/setjmp/arm/setjmp.s b/lib/libc/musl/src/setjmp/arm/setjmp.s similarity index 100% rename from libc/musl/src/setjmp/arm/setjmp.s rename to lib/libc/musl/src/setjmp/arm/setjmp.s diff --git a/libc/musl/src/setjmp/i386/longjmp.s b/lib/libc/musl/src/setjmp/i386/longjmp.s similarity index 100% rename from libc/musl/src/setjmp/i386/longjmp.s rename to lib/libc/musl/src/setjmp/i386/longjmp.s diff --git a/libc/musl/src/setjmp/i386/setjmp.s b/lib/libc/musl/src/setjmp/i386/setjmp.s similarity index 100% rename from libc/musl/src/setjmp/i386/setjmp.s rename to lib/libc/musl/src/setjmp/i386/setjmp.s diff --git a/libc/musl/src/setjmp/longjmp.c b/lib/libc/musl/src/setjmp/longjmp.c similarity index 100% rename from libc/musl/src/setjmp/longjmp.c rename to lib/libc/musl/src/setjmp/longjmp.c diff --git a/libc/musl/src/setjmp/m68k/longjmp.s b/lib/libc/musl/src/setjmp/m68k/longjmp.s similarity index 100% rename from libc/musl/src/setjmp/m68k/longjmp.s rename to lib/libc/musl/src/setjmp/m68k/longjmp.s diff --git a/libc/musl/src/setjmp/m68k/setjmp.s b/lib/libc/musl/src/setjmp/m68k/setjmp.s similarity index 100% rename from libc/musl/src/setjmp/m68k/setjmp.s rename to lib/libc/musl/src/setjmp/m68k/setjmp.s diff --git a/libc/musl/src/setjmp/microblaze/longjmp.s b/lib/libc/musl/src/setjmp/microblaze/longjmp.s similarity index 100% rename from libc/musl/src/setjmp/microblaze/longjmp.s rename to lib/libc/musl/src/setjmp/microblaze/longjmp.s diff --git a/libc/musl/src/setjmp/microblaze/setjmp.s b/lib/libc/musl/src/setjmp/microblaze/setjmp.s similarity index 100% rename from libc/musl/src/setjmp/microblaze/setjmp.s rename to lib/libc/musl/src/setjmp/microblaze/setjmp.s diff --git a/libc/musl/src/setjmp/mips/longjmp.S b/lib/libc/musl/src/setjmp/mips/longjmp.S similarity index 100% rename from libc/musl/src/setjmp/mips/longjmp.S rename to lib/libc/musl/src/setjmp/mips/longjmp.S diff --git a/libc/musl/src/setjmp/mips/setjmp.S b/lib/libc/musl/src/setjmp/mips/setjmp.S similarity index 100% rename from libc/musl/src/setjmp/mips/setjmp.S rename to lib/libc/musl/src/setjmp/mips/setjmp.S diff --git a/libc/musl/src/setjmp/mips64/longjmp.S b/lib/libc/musl/src/setjmp/mips64/longjmp.S similarity index 100% rename from libc/musl/src/setjmp/mips64/longjmp.S rename to lib/libc/musl/src/setjmp/mips64/longjmp.S diff --git a/libc/musl/src/setjmp/mips64/setjmp.S b/lib/libc/musl/src/setjmp/mips64/setjmp.S similarity index 100% rename from libc/musl/src/setjmp/mips64/setjmp.S rename to lib/libc/musl/src/setjmp/mips64/setjmp.S diff --git a/libc/musl/src/setjmp/mipsn32/longjmp.S b/lib/libc/musl/src/setjmp/mipsn32/longjmp.S similarity index 100% rename from libc/musl/src/setjmp/mipsn32/longjmp.S rename to lib/libc/musl/src/setjmp/mipsn32/longjmp.S diff --git a/libc/musl/src/setjmp/mipsn32/setjmp.S b/lib/libc/musl/src/setjmp/mipsn32/setjmp.S similarity index 100% rename from libc/musl/src/setjmp/mipsn32/setjmp.S rename to lib/libc/musl/src/setjmp/mipsn32/setjmp.S diff --git a/libc/musl/src/setjmp/or1k/longjmp.s b/lib/libc/musl/src/setjmp/or1k/longjmp.s similarity index 100% rename from libc/musl/src/setjmp/or1k/longjmp.s rename to lib/libc/musl/src/setjmp/or1k/longjmp.s diff --git a/libc/musl/src/setjmp/or1k/setjmp.s b/lib/libc/musl/src/setjmp/or1k/setjmp.s similarity index 100% rename from libc/musl/src/setjmp/or1k/setjmp.s rename to lib/libc/musl/src/setjmp/or1k/setjmp.s diff --git a/libc/musl/src/setjmp/powerpc/longjmp.S b/lib/libc/musl/src/setjmp/powerpc/longjmp.S similarity index 100% rename from libc/musl/src/setjmp/powerpc/longjmp.S rename to lib/libc/musl/src/setjmp/powerpc/longjmp.S diff --git a/libc/musl/src/setjmp/powerpc/setjmp.S b/lib/libc/musl/src/setjmp/powerpc/setjmp.S similarity index 100% rename from libc/musl/src/setjmp/powerpc/setjmp.S rename to lib/libc/musl/src/setjmp/powerpc/setjmp.S diff --git a/libc/musl/src/setjmp/powerpc64/longjmp.s b/lib/libc/musl/src/setjmp/powerpc64/longjmp.s similarity index 100% rename from libc/musl/src/setjmp/powerpc64/longjmp.s rename to lib/libc/musl/src/setjmp/powerpc64/longjmp.s diff --git a/libc/musl/src/setjmp/powerpc64/setjmp.s b/lib/libc/musl/src/setjmp/powerpc64/setjmp.s similarity index 100% rename from libc/musl/src/setjmp/powerpc64/setjmp.s rename to lib/libc/musl/src/setjmp/powerpc64/setjmp.s diff --git a/libc/musl/src/setjmp/s390x/longjmp.s b/lib/libc/musl/src/setjmp/s390x/longjmp.s similarity index 100% rename from libc/musl/src/setjmp/s390x/longjmp.s rename to lib/libc/musl/src/setjmp/s390x/longjmp.s diff --git a/libc/musl/src/setjmp/s390x/setjmp.s b/lib/libc/musl/src/setjmp/s390x/setjmp.s similarity index 100% rename from libc/musl/src/setjmp/s390x/setjmp.s rename to lib/libc/musl/src/setjmp/s390x/setjmp.s diff --git a/libc/musl/src/setjmp/setjmp.c b/lib/libc/musl/src/setjmp/setjmp.c similarity index 100% rename from libc/musl/src/setjmp/setjmp.c rename to lib/libc/musl/src/setjmp/setjmp.c diff --git a/libc/musl/src/setjmp/sh/longjmp.S b/lib/libc/musl/src/setjmp/sh/longjmp.S similarity index 100% rename from libc/musl/src/setjmp/sh/longjmp.S rename to lib/libc/musl/src/setjmp/sh/longjmp.S diff --git a/libc/musl/src/setjmp/sh/setjmp.S b/lib/libc/musl/src/setjmp/sh/setjmp.S similarity index 100% rename from libc/musl/src/setjmp/sh/setjmp.S rename to lib/libc/musl/src/setjmp/sh/setjmp.S diff --git a/libc/musl/src/setjmp/x32/longjmp.s b/lib/libc/musl/src/setjmp/x32/longjmp.s similarity index 100% rename from libc/musl/src/setjmp/x32/longjmp.s rename to lib/libc/musl/src/setjmp/x32/longjmp.s diff --git a/libc/musl/src/setjmp/x32/setjmp.s b/lib/libc/musl/src/setjmp/x32/setjmp.s similarity index 100% rename from libc/musl/src/setjmp/x32/setjmp.s rename to lib/libc/musl/src/setjmp/x32/setjmp.s diff --git a/libc/musl/src/setjmp/x86_64/longjmp.s b/lib/libc/musl/src/setjmp/x86_64/longjmp.s similarity index 100% rename from libc/musl/src/setjmp/x86_64/longjmp.s rename to lib/libc/musl/src/setjmp/x86_64/longjmp.s diff --git a/libc/musl/src/setjmp/x86_64/setjmp.s b/lib/libc/musl/src/setjmp/x86_64/setjmp.s similarity index 100% rename from libc/musl/src/setjmp/x86_64/setjmp.s rename to lib/libc/musl/src/setjmp/x86_64/setjmp.s diff --git a/libc/musl/src/signal/aarch64/restore.s b/lib/libc/musl/src/signal/aarch64/restore.s similarity index 100% rename from libc/musl/src/signal/aarch64/restore.s rename to lib/libc/musl/src/signal/aarch64/restore.s diff --git a/libc/musl/src/signal/aarch64/sigsetjmp.s b/lib/libc/musl/src/signal/aarch64/sigsetjmp.s similarity index 100% rename from libc/musl/src/signal/aarch64/sigsetjmp.s rename to lib/libc/musl/src/signal/aarch64/sigsetjmp.s diff --git a/libc/musl/src/signal/arm/restore.s b/lib/libc/musl/src/signal/arm/restore.s similarity index 100% rename from libc/musl/src/signal/arm/restore.s rename to lib/libc/musl/src/signal/arm/restore.s diff --git a/libc/musl/src/signal/arm/sigsetjmp.s b/lib/libc/musl/src/signal/arm/sigsetjmp.s similarity index 100% rename from libc/musl/src/signal/arm/sigsetjmp.s rename to lib/libc/musl/src/signal/arm/sigsetjmp.s diff --git a/libc/musl/src/signal/block.c b/lib/libc/musl/src/signal/block.c similarity index 100% rename from libc/musl/src/signal/block.c rename to lib/libc/musl/src/signal/block.c diff --git a/libc/musl/src/signal/getitimer.c b/lib/libc/musl/src/signal/getitimer.c similarity index 100% rename from libc/musl/src/signal/getitimer.c rename to lib/libc/musl/src/signal/getitimer.c diff --git a/libc/musl/src/signal/i386/restore.s b/lib/libc/musl/src/signal/i386/restore.s similarity index 100% rename from libc/musl/src/signal/i386/restore.s rename to lib/libc/musl/src/signal/i386/restore.s diff --git a/libc/musl/src/signal/i386/sigsetjmp.s b/lib/libc/musl/src/signal/i386/sigsetjmp.s similarity index 100% rename from libc/musl/src/signal/i386/sigsetjmp.s rename to lib/libc/musl/src/signal/i386/sigsetjmp.s diff --git a/libc/musl/src/signal/kill.c b/lib/libc/musl/src/signal/kill.c similarity index 100% rename from libc/musl/src/signal/kill.c rename to lib/libc/musl/src/signal/kill.c diff --git a/libc/musl/src/signal/killpg.c b/lib/libc/musl/src/signal/killpg.c similarity index 100% rename from libc/musl/src/signal/killpg.c rename to lib/libc/musl/src/signal/killpg.c diff --git a/libc/musl/src/signal/m68k/sigsetjmp.s b/lib/libc/musl/src/signal/m68k/sigsetjmp.s similarity index 100% rename from libc/musl/src/signal/m68k/sigsetjmp.s rename to lib/libc/musl/src/signal/m68k/sigsetjmp.s diff --git a/libc/musl/src/signal/microblaze/restore.s b/lib/libc/musl/src/signal/microblaze/restore.s similarity index 100% rename from libc/musl/src/signal/microblaze/restore.s rename to lib/libc/musl/src/signal/microblaze/restore.s diff --git a/libc/musl/src/signal/microblaze/sigsetjmp.s b/lib/libc/musl/src/signal/microblaze/sigsetjmp.s similarity index 100% rename from libc/musl/src/signal/microblaze/sigsetjmp.s rename to lib/libc/musl/src/signal/microblaze/sigsetjmp.s diff --git a/libc/musl/src/signal/mips/restore.s b/lib/libc/musl/src/signal/mips/restore.s similarity index 100% rename from libc/musl/src/signal/mips/restore.s rename to lib/libc/musl/src/signal/mips/restore.s diff --git a/libc/musl/src/signal/mips/sigsetjmp.s b/lib/libc/musl/src/signal/mips/sigsetjmp.s similarity index 100% rename from libc/musl/src/signal/mips/sigsetjmp.s rename to lib/libc/musl/src/signal/mips/sigsetjmp.s diff --git a/libc/musl/src/signal/mips64/restore.s b/lib/libc/musl/src/signal/mips64/restore.s similarity index 100% rename from libc/musl/src/signal/mips64/restore.s rename to lib/libc/musl/src/signal/mips64/restore.s diff --git a/libc/musl/src/signal/mips64/sigsetjmp.s b/lib/libc/musl/src/signal/mips64/sigsetjmp.s similarity index 100% rename from libc/musl/src/signal/mips64/sigsetjmp.s rename to lib/libc/musl/src/signal/mips64/sigsetjmp.s diff --git a/libc/musl/src/signal/mipsn32/restore.s b/lib/libc/musl/src/signal/mipsn32/restore.s similarity index 100% rename from libc/musl/src/signal/mipsn32/restore.s rename to lib/libc/musl/src/signal/mipsn32/restore.s diff --git a/libc/musl/src/signal/mipsn32/sigsetjmp.s b/lib/libc/musl/src/signal/mipsn32/sigsetjmp.s similarity index 100% rename from libc/musl/src/signal/mipsn32/sigsetjmp.s rename to lib/libc/musl/src/signal/mipsn32/sigsetjmp.s diff --git a/libc/musl/src/signal/or1k/sigsetjmp.s b/lib/libc/musl/src/signal/or1k/sigsetjmp.s similarity index 100% rename from libc/musl/src/signal/or1k/sigsetjmp.s rename to lib/libc/musl/src/signal/or1k/sigsetjmp.s diff --git a/libc/musl/src/signal/powerpc/restore.s b/lib/libc/musl/src/signal/powerpc/restore.s similarity index 100% rename from libc/musl/src/signal/powerpc/restore.s rename to lib/libc/musl/src/signal/powerpc/restore.s diff --git a/libc/musl/src/signal/powerpc/sigsetjmp.s b/lib/libc/musl/src/signal/powerpc/sigsetjmp.s similarity index 100% rename from libc/musl/src/signal/powerpc/sigsetjmp.s rename to lib/libc/musl/src/signal/powerpc/sigsetjmp.s diff --git a/libc/musl/src/signal/powerpc64/restore.s b/lib/libc/musl/src/signal/powerpc64/restore.s similarity index 100% rename from libc/musl/src/signal/powerpc64/restore.s rename to lib/libc/musl/src/signal/powerpc64/restore.s diff --git a/libc/musl/src/signal/powerpc64/sigsetjmp.s b/lib/libc/musl/src/signal/powerpc64/sigsetjmp.s similarity index 100% rename from libc/musl/src/signal/powerpc64/sigsetjmp.s rename to lib/libc/musl/src/signal/powerpc64/sigsetjmp.s diff --git a/libc/musl/src/signal/psiginfo.c b/lib/libc/musl/src/signal/psiginfo.c similarity index 100% rename from libc/musl/src/signal/psiginfo.c rename to lib/libc/musl/src/signal/psiginfo.c diff --git a/libc/musl/src/signal/psignal.c b/lib/libc/musl/src/signal/psignal.c similarity index 100% rename from libc/musl/src/signal/psignal.c rename to lib/libc/musl/src/signal/psignal.c diff --git a/libc/musl/src/signal/raise.c b/lib/libc/musl/src/signal/raise.c similarity index 100% rename from libc/musl/src/signal/raise.c rename to lib/libc/musl/src/signal/raise.c diff --git a/libc/musl/src/signal/restore.c b/lib/libc/musl/src/signal/restore.c similarity index 100% rename from libc/musl/src/signal/restore.c rename to lib/libc/musl/src/signal/restore.c diff --git a/libc/musl/src/signal/s390x/restore.s b/lib/libc/musl/src/signal/s390x/restore.s similarity index 100% rename from libc/musl/src/signal/s390x/restore.s rename to lib/libc/musl/src/signal/s390x/restore.s diff --git a/libc/musl/src/signal/s390x/sigsetjmp.s b/lib/libc/musl/src/signal/s390x/sigsetjmp.s similarity index 100% rename from libc/musl/src/signal/s390x/sigsetjmp.s rename to lib/libc/musl/src/signal/s390x/sigsetjmp.s diff --git a/libc/musl/src/signal/setitimer.c b/lib/libc/musl/src/signal/setitimer.c similarity index 100% rename from libc/musl/src/signal/setitimer.c rename to lib/libc/musl/src/signal/setitimer.c diff --git a/libc/musl/src/signal/sh/restore.s b/lib/libc/musl/src/signal/sh/restore.s similarity index 100% rename from libc/musl/src/signal/sh/restore.s rename to lib/libc/musl/src/signal/sh/restore.s diff --git a/libc/musl/src/signal/sh/sigsetjmp.s b/lib/libc/musl/src/signal/sh/sigsetjmp.s similarity index 100% rename from libc/musl/src/signal/sh/sigsetjmp.s rename to lib/libc/musl/src/signal/sh/sigsetjmp.s diff --git a/libc/musl/src/signal/sigaction.c b/lib/libc/musl/src/signal/sigaction.c similarity index 100% rename from libc/musl/src/signal/sigaction.c rename to lib/libc/musl/src/signal/sigaction.c diff --git a/libc/musl/src/signal/sigaddset.c b/lib/libc/musl/src/signal/sigaddset.c similarity index 100% rename from libc/musl/src/signal/sigaddset.c rename to lib/libc/musl/src/signal/sigaddset.c diff --git a/libc/musl/src/signal/sigaltstack.c b/lib/libc/musl/src/signal/sigaltstack.c similarity index 100% rename from libc/musl/src/signal/sigaltstack.c rename to lib/libc/musl/src/signal/sigaltstack.c diff --git a/libc/musl/src/signal/sigandset.c b/lib/libc/musl/src/signal/sigandset.c similarity index 100% rename from libc/musl/src/signal/sigandset.c rename to lib/libc/musl/src/signal/sigandset.c diff --git a/libc/musl/src/signal/sigdelset.c b/lib/libc/musl/src/signal/sigdelset.c similarity index 100% rename from libc/musl/src/signal/sigdelset.c rename to lib/libc/musl/src/signal/sigdelset.c diff --git a/libc/musl/src/signal/sigemptyset.c b/lib/libc/musl/src/signal/sigemptyset.c similarity index 100% rename from libc/musl/src/signal/sigemptyset.c rename to lib/libc/musl/src/signal/sigemptyset.c diff --git a/libc/musl/src/signal/sigfillset.c b/lib/libc/musl/src/signal/sigfillset.c similarity index 100% rename from libc/musl/src/signal/sigfillset.c rename to lib/libc/musl/src/signal/sigfillset.c diff --git a/libc/musl/src/signal/sighold.c b/lib/libc/musl/src/signal/sighold.c similarity index 100% rename from libc/musl/src/signal/sighold.c rename to lib/libc/musl/src/signal/sighold.c diff --git a/libc/musl/src/signal/sigignore.c b/lib/libc/musl/src/signal/sigignore.c similarity index 100% rename from libc/musl/src/signal/sigignore.c rename to lib/libc/musl/src/signal/sigignore.c diff --git a/libc/musl/src/signal/siginterrupt.c b/lib/libc/musl/src/signal/siginterrupt.c similarity index 100% rename from libc/musl/src/signal/siginterrupt.c rename to lib/libc/musl/src/signal/siginterrupt.c diff --git a/libc/musl/src/signal/sigisemptyset.c b/lib/libc/musl/src/signal/sigisemptyset.c similarity index 100% rename from libc/musl/src/signal/sigisemptyset.c rename to lib/libc/musl/src/signal/sigisemptyset.c diff --git a/libc/musl/src/signal/sigismember.c b/lib/libc/musl/src/signal/sigismember.c similarity index 100% rename from libc/musl/src/signal/sigismember.c rename to lib/libc/musl/src/signal/sigismember.c diff --git a/libc/musl/src/signal/siglongjmp.c b/lib/libc/musl/src/signal/siglongjmp.c similarity index 100% rename from libc/musl/src/signal/siglongjmp.c rename to lib/libc/musl/src/signal/siglongjmp.c diff --git a/libc/musl/src/signal/signal.c b/lib/libc/musl/src/signal/signal.c similarity index 100% rename from libc/musl/src/signal/signal.c rename to lib/libc/musl/src/signal/signal.c diff --git a/libc/musl/src/signal/sigorset.c b/lib/libc/musl/src/signal/sigorset.c similarity index 100% rename from libc/musl/src/signal/sigorset.c rename to lib/libc/musl/src/signal/sigorset.c diff --git a/libc/musl/src/signal/sigpause.c b/lib/libc/musl/src/signal/sigpause.c similarity index 100% rename from libc/musl/src/signal/sigpause.c rename to lib/libc/musl/src/signal/sigpause.c diff --git a/libc/musl/src/signal/sigpending.c b/lib/libc/musl/src/signal/sigpending.c similarity index 100% rename from libc/musl/src/signal/sigpending.c rename to lib/libc/musl/src/signal/sigpending.c diff --git a/libc/musl/src/signal/sigprocmask.c b/lib/libc/musl/src/signal/sigprocmask.c similarity index 100% rename from libc/musl/src/signal/sigprocmask.c rename to lib/libc/musl/src/signal/sigprocmask.c diff --git a/libc/musl/src/signal/sigqueue.c b/lib/libc/musl/src/signal/sigqueue.c similarity index 100% rename from libc/musl/src/signal/sigqueue.c rename to lib/libc/musl/src/signal/sigqueue.c diff --git a/libc/musl/src/signal/sigrelse.c b/lib/libc/musl/src/signal/sigrelse.c similarity index 100% rename from libc/musl/src/signal/sigrelse.c rename to lib/libc/musl/src/signal/sigrelse.c diff --git a/libc/musl/src/signal/sigrtmax.c b/lib/libc/musl/src/signal/sigrtmax.c similarity index 100% rename from libc/musl/src/signal/sigrtmax.c rename to lib/libc/musl/src/signal/sigrtmax.c diff --git a/libc/musl/src/signal/sigrtmin.c b/lib/libc/musl/src/signal/sigrtmin.c similarity index 100% rename from libc/musl/src/signal/sigrtmin.c rename to lib/libc/musl/src/signal/sigrtmin.c diff --git a/libc/musl/src/signal/sigset.c b/lib/libc/musl/src/signal/sigset.c similarity index 100% rename from libc/musl/src/signal/sigset.c rename to lib/libc/musl/src/signal/sigset.c diff --git a/libc/musl/src/signal/sigsetjmp.c b/lib/libc/musl/src/signal/sigsetjmp.c similarity index 100% rename from libc/musl/src/signal/sigsetjmp.c rename to lib/libc/musl/src/signal/sigsetjmp.c diff --git a/libc/musl/src/signal/sigsetjmp_tail.c b/lib/libc/musl/src/signal/sigsetjmp_tail.c similarity index 100% rename from libc/musl/src/signal/sigsetjmp_tail.c rename to lib/libc/musl/src/signal/sigsetjmp_tail.c diff --git a/libc/musl/src/signal/sigsuspend.c b/lib/libc/musl/src/signal/sigsuspend.c similarity index 100% rename from libc/musl/src/signal/sigsuspend.c rename to lib/libc/musl/src/signal/sigsuspend.c diff --git a/libc/musl/src/signal/sigtimedwait.c b/lib/libc/musl/src/signal/sigtimedwait.c similarity index 100% rename from libc/musl/src/signal/sigtimedwait.c rename to lib/libc/musl/src/signal/sigtimedwait.c diff --git a/libc/musl/src/signal/sigwait.c b/lib/libc/musl/src/signal/sigwait.c similarity index 100% rename from libc/musl/src/signal/sigwait.c rename to lib/libc/musl/src/signal/sigwait.c diff --git a/libc/musl/src/signal/sigwaitinfo.c b/lib/libc/musl/src/signal/sigwaitinfo.c similarity index 100% rename from libc/musl/src/signal/sigwaitinfo.c rename to lib/libc/musl/src/signal/sigwaitinfo.c diff --git a/libc/musl/src/signal/x32/restore.s b/lib/libc/musl/src/signal/x32/restore.s similarity index 100% rename from libc/musl/src/signal/x32/restore.s rename to lib/libc/musl/src/signal/x32/restore.s diff --git a/libc/musl/src/signal/x32/sigsetjmp.s b/lib/libc/musl/src/signal/x32/sigsetjmp.s similarity index 100% rename from libc/musl/src/signal/x32/sigsetjmp.s rename to lib/libc/musl/src/signal/x32/sigsetjmp.s diff --git a/libc/musl/src/signal/x86_64/restore.s b/lib/libc/musl/src/signal/x86_64/restore.s similarity index 100% rename from libc/musl/src/signal/x86_64/restore.s rename to lib/libc/musl/src/signal/x86_64/restore.s diff --git a/libc/musl/src/signal/x86_64/sigsetjmp.s b/lib/libc/musl/src/signal/x86_64/sigsetjmp.s similarity index 100% rename from libc/musl/src/signal/x86_64/sigsetjmp.s rename to lib/libc/musl/src/signal/x86_64/sigsetjmp.s diff --git a/libc/musl/src/stat/__xstat.c b/lib/libc/musl/src/stat/__xstat.c similarity index 100% rename from libc/musl/src/stat/__xstat.c rename to lib/libc/musl/src/stat/__xstat.c diff --git a/libc/musl/src/stat/chmod.c b/lib/libc/musl/src/stat/chmod.c similarity index 100% rename from libc/musl/src/stat/chmod.c rename to lib/libc/musl/src/stat/chmod.c diff --git a/libc/musl/src/stat/fchmod.c b/lib/libc/musl/src/stat/fchmod.c similarity index 100% rename from libc/musl/src/stat/fchmod.c rename to lib/libc/musl/src/stat/fchmod.c diff --git a/libc/musl/src/stat/fchmodat.c b/lib/libc/musl/src/stat/fchmodat.c similarity index 100% rename from libc/musl/src/stat/fchmodat.c rename to lib/libc/musl/src/stat/fchmodat.c diff --git a/libc/musl/src/stat/fstat.c b/lib/libc/musl/src/stat/fstat.c similarity index 100% rename from libc/musl/src/stat/fstat.c rename to lib/libc/musl/src/stat/fstat.c diff --git a/libc/musl/src/stat/fstatat.c b/lib/libc/musl/src/stat/fstatat.c similarity index 100% rename from libc/musl/src/stat/fstatat.c rename to lib/libc/musl/src/stat/fstatat.c diff --git a/libc/musl/src/stat/futimens.c b/lib/libc/musl/src/stat/futimens.c similarity index 100% rename from libc/musl/src/stat/futimens.c rename to lib/libc/musl/src/stat/futimens.c diff --git a/libc/musl/src/stat/futimesat.c b/lib/libc/musl/src/stat/futimesat.c similarity index 100% rename from libc/musl/src/stat/futimesat.c rename to lib/libc/musl/src/stat/futimesat.c diff --git a/libc/musl/src/stat/lchmod.c b/lib/libc/musl/src/stat/lchmod.c similarity index 100% rename from libc/musl/src/stat/lchmod.c rename to lib/libc/musl/src/stat/lchmod.c diff --git a/libc/musl/src/stat/lstat.c b/lib/libc/musl/src/stat/lstat.c similarity index 100% rename from libc/musl/src/stat/lstat.c rename to lib/libc/musl/src/stat/lstat.c diff --git a/libc/musl/src/stat/mkdir.c b/lib/libc/musl/src/stat/mkdir.c similarity index 100% rename from libc/musl/src/stat/mkdir.c rename to lib/libc/musl/src/stat/mkdir.c diff --git a/libc/musl/src/stat/mkdirat.c b/lib/libc/musl/src/stat/mkdirat.c similarity index 100% rename from libc/musl/src/stat/mkdirat.c rename to lib/libc/musl/src/stat/mkdirat.c diff --git a/libc/musl/src/stat/mkfifo.c b/lib/libc/musl/src/stat/mkfifo.c similarity index 100% rename from libc/musl/src/stat/mkfifo.c rename to lib/libc/musl/src/stat/mkfifo.c diff --git a/libc/musl/src/stat/mkfifoat.c b/lib/libc/musl/src/stat/mkfifoat.c similarity index 100% rename from libc/musl/src/stat/mkfifoat.c rename to lib/libc/musl/src/stat/mkfifoat.c diff --git a/libc/musl/src/stat/mknod.c b/lib/libc/musl/src/stat/mknod.c similarity index 100% rename from libc/musl/src/stat/mknod.c rename to lib/libc/musl/src/stat/mknod.c diff --git a/libc/musl/src/stat/mknodat.c b/lib/libc/musl/src/stat/mknodat.c similarity index 100% rename from libc/musl/src/stat/mknodat.c rename to lib/libc/musl/src/stat/mknodat.c diff --git a/libc/musl/src/stat/stat.c b/lib/libc/musl/src/stat/stat.c similarity index 100% rename from libc/musl/src/stat/stat.c rename to lib/libc/musl/src/stat/stat.c diff --git a/libc/musl/src/stat/statvfs.c b/lib/libc/musl/src/stat/statvfs.c similarity index 100% rename from libc/musl/src/stat/statvfs.c rename to lib/libc/musl/src/stat/statvfs.c diff --git a/libc/musl/src/stat/umask.c b/lib/libc/musl/src/stat/umask.c similarity index 100% rename from libc/musl/src/stat/umask.c rename to lib/libc/musl/src/stat/umask.c diff --git a/libc/musl/src/stat/utimensat.c b/lib/libc/musl/src/stat/utimensat.c similarity index 100% rename from libc/musl/src/stat/utimensat.c rename to lib/libc/musl/src/stat/utimensat.c diff --git a/libc/musl/src/stdio/__fclose_ca.c b/lib/libc/musl/src/stdio/__fclose_ca.c similarity index 100% rename from libc/musl/src/stdio/__fclose_ca.c rename to lib/libc/musl/src/stdio/__fclose_ca.c diff --git a/libc/musl/src/stdio/__fdopen.c b/lib/libc/musl/src/stdio/__fdopen.c similarity index 100% rename from libc/musl/src/stdio/__fdopen.c rename to lib/libc/musl/src/stdio/__fdopen.c diff --git a/libc/musl/src/stdio/__fmodeflags.c b/lib/libc/musl/src/stdio/__fmodeflags.c similarity index 100% rename from libc/musl/src/stdio/__fmodeflags.c rename to lib/libc/musl/src/stdio/__fmodeflags.c diff --git a/libc/musl/src/stdio/__fopen_rb_ca.c b/lib/libc/musl/src/stdio/__fopen_rb_ca.c similarity index 100% rename from libc/musl/src/stdio/__fopen_rb_ca.c rename to lib/libc/musl/src/stdio/__fopen_rb_ca.c diff --git a/libc/musl/src/stdio/__lockfile.c b/lib/libc/musl/src/stdio/__lockfile.c similarity index 100% rename from libc/musl/src/stdio/__lockfile.c rename to lib/libc/musl/src/stdio/__lockfile.c diff --git a/libc/musl/src/stdio/__overflow.c b/lib/libc/musl/src/stdio/__overflow.c similarity index 100% rename from libc/musl/src/stdio/__overflow.c rename to lib/libc/musl/src/stdio/__overflow.c diff --git a/libc/musl/src/stdio/__stdio_close.c b/lib/libc/musl/src/stdio/__stdio_close.c similarity index 100% rename from libc/musl/src/stdio/__stdio_close.c rename to lib/libc/musl/src/stdio/__stdio_close.c diff --git a/libc/musl/src/stdio/__stdio_exit.c b/lib/libc/musl/src/stdio/__stdio_exit.c similarity index 100% rename from libc/musl/src/stdio/__stdio_exit.c rename to lib/libc/musl/src/stdio/__stdio_exit.c diff --git a/libc/musl/src/stdio/__stdio_read.c b/lib/libc/musl/src/stdio/__stdio_read.c similarity index 100% rename from libc/musl/src/stdio/__stdio_read.c rename to lib/libc/musl/src/stdio/__stdio_read.c diff --git a/libc/musl/src/stdio/__stdio_seek.c b/lib/libc/musl/src/stdio/__stdio_seek.c similarity index 100% rename from libc/musl/src/stdio/__stdio_seek.c rename to lib/libc/musl/src/stdio/__stdio_seek.c diff --git a/libc/musl/src/stdio/__stdio_write.c b/lib/libc/musl/src/stdio/__stdio_write.c similarity index 100% rename from libc/musl/src/stdio/__stdio_write.c rename to lib/libc/musl/src/stdio/__stdio_write.c diff --git a/libc/musl/src/stdio/__stdout_write.c b/lib/libc/musl/src/stdio/__stdout_write.c similarity index 100% rename from libc/musl/src/stdio/__stdout_write.c rename to lib/libc/musl/src/stdio/__stdout_write.c diff --git a/libc/musl/src/stdio/__string_read.c b/lib/libc/musl/src/stdio/__string_read.c similarity index 100% rename from libc/musl/src/stdio/__string_read.c rename to lib/libc/musl/src/stdio/__string_read.c diff --git a/libc/musl/src/stdio/__toread.c b/lib/libc/musl/src/stdio/__toread.c similarity index 100% rename from libc/musl/src/stdio/__toread.c rename to lib/libc/musl/src/stdio/__toread.c diff --git a/libc/musl/src/stdio/__towrite.c b/lib/libc/musl/src/stdio/__towrite.c similarity index 100% rename from libc/musl/src/stdio/__towrite.c rename to lib/libc/musl/src/stdio/__towrite.c diff --git a/libc/musl/src/stdio/__uflow.c b/lib/libc/musl/src/stdio/__uflow.c similarity index 100% rename from libc/musl/src/stdio/__uflow.c rename to lib/libc/musl/src/stdio/__uflow.c diff --git a/libc/musl/src/stdio/asprintf.c b/lib/libc/musl/src/stdio/asprintf.c similarity index 100% rename from libc/musl/src/stdio/asprintf.c rename to lib/libc/musl/src/stdio/asprintf.c diff --git a/libc/musl/src/stdio/clearerr.c b/lib/libc/musl/src/stdio/clearerr.c similarity index 100% rename from libc/musl/src/stdio/clearerr.c rename to lib/libc/musl/src/stdio/clearerr.c diff --git a/libc/musl/src/stdio/dprintf.c b/lib/libc/musl/src/stdio/dprintf.c similarity index 100% rename from libc/musl/src/stdio/dprintf.c rename to lib/libc/musl/src/stdio/dprintf.c diff --git a/libc/musl/src/stdio/ext.c b/lib/libc/musl/src/stdio/ext.c similarity index 100% rename from libc/musl/src/stdio/ext.c rename to lib/libc/musl/src/stdio/ext.c diff --git a/libc/musl/src/stdio/ext2.c b/lib/libc/musl/src/stdio/ext2.c similarity index 100% rename from libc/musl/src/stdio/ext2.c rename to lib/libc/musl/src/stdio/ext2.c diff --git a/libc/musl/src/stdio/fclose.c b/lib/libc/musl/src/stdio/fclose.c similarity index 100% rename from libc/musl/src/stdio/fclose.c rename to lib/libc/musl/src/stdio/fclose.c diff --git a/libc/musl/src/stdio/feof.c b/lib/libc/musl/src/stdio/feof.c similarity index 100% rename from libc/musl/src/stdio/feof.c rename to lib/libc/musl/src/stdio/feof.c diff --git a/libc/musl/src/stdio/ferror.c b/lib/libc/musl/src/stdio/ferror.c similarity index 100% rename from libc/musl/src/stdio/ferror.c rename to lib/libc/musl/src/stdio/ferror.c diff --git a/libc/musl/src/stdio/fflush.c b/lib/libc/musl/src/stdio/fflush.c similarity index 100% rename from libc/musl/src/stdio/fflush.c rename to lib/libc/musl/src/stdio/fflush.c diff --git a/libc/musl/src/stdio/fgetc.c b/lib/libc/musl/src/stdio/fgetc.c similarity index 100% rename from libc/musl/src/stdio/fgetc.c rename to lib/libc/musl/src/stdio/fgetc.c diff --git a/libc/musl/src/stdio/fgetln.c b/lib/libc/musl/src/stdio/fgetln.c similarity index 100% rename from libc/musl/src/stdio/fgetln.c rename to lib/libc/musl/src/stdio/fgetln.c diff --git a/libc/musl/src/stdio/fgetpos.c b/lib/libc/musl/src/stdio/fgetpos.c similarity index 100% rename from libc/musl/src/stdio/fgetpos.c rename to lib/libc/musl/src/stdio/fgetpos.c diff --git a/libc/musl/src/stdio/fgets.c b/lib/libc/musl/src/stdio/fgets.c similarity index 100% rename from libc/musl/src/stdio/fgets.c rename to lib/libc/musl/src/stdio/fgets.c diff --git a/libc/musl/src/stdio/fgetwc.c b/lib/libc/musl/src/stdio/fgetwc.c similarity index 100% rename from libc/musl/src/stdio/fgetwc.c rename to lib/libc/musl/src/stdio/fgetwc.c diff --git a/libc/musl/src/stdio/fgetws.c b/lib/libc/musl/src/stdio/fgetws.c similarity index 100% rename from libc/musl/src/stdio/fgetws.c rename to lib/libc/musl/src/stdio/fgetws.c diff --git a/libc/musl/src/stdio/fileno.c b/lib/libc/musl/src/stdio/fileno.c similarity index 100% rename from libc/musl/src/stdio/fileno.c rename to lib/libc/musl/src/stdio/fileno.c diff --git a/libc/musl/src/stdio/flockfile.c b/lib/libc/musl/src/stdio/flockfile.c similarity index 100% rename from libc/musl/src/stdio/flockfile.c rename to lib/libc/musl/src/stdio/flockfile.c diff --git a/libc/musl/src/stdio/fmemopen.c b/lib/libc/musl/src/stdio/fmemopen.c similarity index 100% rename from libc/musl/src/stdio/fmemopen.c rename to lib/libc/musl/src/stdio/fmemopen.c diff --git a/libc/musl/src/stdio/fopen.c b/lib/libc/musl/src/stdio/fopen.c similarity index 100% rename from libc/musl/src/stdio/fopen.c rename to lib/libc/musl/src/stdio/fopen.c diff --git a/libc/musl/src/stdio/fopencookie.c b/lib/libc/musl/src/stdio/fopencookie.c similarity index 100% rename from libc/musl/src/stdio/fopencookie.c rename to lib/libc/musl/src/stdio/fopencookie.c diff --git a/libc/musl/src/stdio/fprintf.c b/lib/libc/musl/src/stdio/fprintf.c similarity index 100% rename from libc/musl/src/stdio/fprintf.c rename to lib/libc/musl/src/stdio/fprintf.c diff --git a/libc/musl/src/stdio/fputc.c b/lib/libc/musl/src/stdio/fputc.c similarity index 100% rename from libc/musl/src/stdio/fputc.c rename to lib/libc/musl/src/stdio/fputc.c diff --git a/libc/musl/src/stdio/fputs.c b/lib/libc/musl/src/stdio/fputs.c similarity index 100% rename from libc/musl/src/stdio/fputs.c rename to lib/libc/musl/src/stdio/fputs.c diff --git a/libc/musl/src/stdio/fputwc.c b/lib/libc/musl/src/stdio/fputwc.c similarity index 100% rename from libc/musl/src/stdio/fputwc.c rename to lib/libc/musl/src/stdio/fputwc.c diff --git a/libc/musl/src/stdio/fputws.c b/lib/libc/musl/src/stdio/fputws.c similarity index 100% rename from libc/musl/src/stdio/fputws.c rename to lib/libc/musl/src/stdio/fputws.c diff --git a/libc/musl/src/stdio/fread.c b/lib/libc/musl/src/stdio/fread.c similarity index 100% rename from libc/musl/src/stdio/fread.c rename to lib/libc/musl/src/stdio/fread.c diff --git a/libc/musl/src/stdio/freopen.c b/lib/libc/musl/src/stdio/freopen.c similarity index 100% rename from libc/musl/src/stdio/freopen.c rename to lib/libc/musl/src/stdio/freopen.c diff --git a/libc/musl/src/stdio/fscanf.c b/lib/libc/musl/src/stdio/fscanf.c similarity index 100% rename from libc/musl/src/stdio/fscanf.c rename to lib/libc/musl/src/stdio/fscanf.c diff --git a/libc/musl/src/stdio/fseek.c b/lib/libc/musl/src/stdio/fseek.c similarity index 100% rename from libc/musl/src/stdio/fseek.c rename to lib/libc/musl/src/stdio/fseek.c diff --git a/libc/musl/src/stdio/fsetpos.c b/lib/libc/musl/src/stdio/fsetpos.c similarity index 100% rename from libc/musl/src/stdio/fsetpos.c rename to lib/libc/musl/src/stdio/fsetpos.c diff --git a/libc/musl/src/stdio/ftell.c b/lib/libc/musl/src/stdio/ftell.c similarity index 100% rename from libc/musl/src/stdio/ftell.c rename to lib/libc/musl/src/stdio/ftell.c diff --git a/libc/musl/src/stdio/ftrylockfile.c b/lib/libc/musl/src/stdio/ftrylockfile.c similarity index 100% rename from libc/musl/src/stdio/ftrylockfile.c rename to lib/libc/musl/src/stdio/ftrylockfile.c diff --git a/libc/musl/src/stdio/funlockfile.c b/lib/libc/musl/src/stdio/funlockfile.c similarity index 100% rename from libc/musl/src/stdio/funlockfile.c rename to lib/libc/musl/src/stdio/funlockfile.c diff --git a/libc/musl/src/stdio/fwide.c b/lib/libc/musl/src/stdio/fwide.c similarity index 100% rename from libc/musl/src/stdio/fwide.c rename to lib/libc/musl/src/stdio/fwide.c diff --git a/libc/musl/src/stdio/fwprintf.c b/lib/libc/musl/src/stdio/fwprintf.c similarity index 100% rename from libc/musl/src/stdio/fwprintf.c rename to lib/libc/musl/src/stdio/fwprintf.c diff --git a/libc/musl/src/stdio/fwrite.c b/lib/libc/musl/src/stdio/fwrite.c similarity index 100% rename from libc/musl/src/stdio/fwrite.c rename to lib/libc/musl/src/stdio/fwrite.c diff --git a/libc/musl/src/stdio/fwscanf.c b/lib/libc/musl/src/stdio/fwscanf.c similarity index 100% rename from libc/musl/src/stdio/fwscanf.c rename to lib/libc/musl/src/stdio/fwscanf.c diff --git a/libc/musl/src/stdio/getc.c b/lib/libc/musl/src/stdio/getc.c similarity index 100% rename from libc/musl/src/stdio/getc.c rename to lib/libc/musl/src/stdio/getc.c diff --git a/libc/musl/src/stdio/getc.h b/lib/libc/musl/src/stdio/getc.h similarity index 100% rename from libc/musl/src/stdio/getc.h rename to lib/libc/musl/src/stdio/getc.h diff --git a/libc/musl/src/stdio/getc_unlocked.c b/lib/libc/musl/src/stdio/getc_unlocked.c similarity index 100% rename from libc/musl/src/stdio/getc_unlocked.c rename to lib/libc/musl/src/stdio/getc_unlocked.c diff --git a/libc/musl/src/stdio/getchar.c b/lib/libc/musl/src/stdio/getchar.c similarity index 100% rename from libc/musl/src/stdio/getchar.c rename to lib/libc/musl/src/stdio/getchar.c diff --git a/libc/musl/src/stdio/getchar_unlocked.c b/lib/libc/musl/src/stdio/getchar_unlocked.c similarity index 100% rename from libc/musl/src/stdio/getchar_unlocked.c rename to lib/libc/musl/src/stdio/getchar_unlocked.c diff --git a/libc/musl/src/stdio/getdelim.c b/lib/libc/musl/src/stdio/getdelim.c similarity index 100% rename from libc/musl/src/stdio/getdelim.c rename to lib/libc/musl/src/stdio/getdelim.c diff --git a/libc/musl/src/stdio/getline.c b/lib/libc/musl/src/stdio/getline.c similarity index 100% rename from libc/musl/src/stdio/getline.c rename to lib/libc/musl/src/stdio/getline.c diff --git a/libc/musl/src/stdio/gets.c b/lib/libc/musl/src/stdio/gets.c similarity index 100% rename from libc/musl/src/stdio/gets.c rename to lib/libc/musl/src/stdio/gets.c diff --git a/libc/musl/src/stdio/getw.c b/lib/libc/musl/src/stdio/getw.c similarity index 100% rename from libc/musl/src/stdio/getw.c rename to lib/libc/musl/src/stdio/getw.c diff --git a/libc/musl/src/stdio/getwc.c b/lib/libc/musl/src/stdio/getwc.c similarity index 100% rename from libc/musl/src/stdio/getwc.c rename to lib/libc/musl/src/stdio/getwc.c diff --git a/libc/musl/src/stdio/getwchar.c b/lib/libc/musl/src/stdio/getwchar.c similarity index 100% rename from libc/musl/src/stdio/getwchar.c rename to lib/libc/musl/src/stdio/getwchar.c diff --git a/libc/musl/src/stdio/ofl.c b/lib/libc/musl/src/stdio/ofl.c similarity index 100% rename from libc/musl/src/stdio/ofl.c rename to lib/libc/musl/src/stdio/ofl.c diff --git a/libc/musl/src/stdio/ofl_add.c b/lib/libc/musl/src/stdio/ofl_add.c similarity index 100% rename from libc/musl/src/stdio/ofl_add.c rename to lib/libc/musl/src/stdio/ofl_add.c diff --git a/libc/musl/src/stdio/open_memstream.c b/lib/libc/musl/src/stdio/open_memstream.c similarity index 100% rename from libc/musl/src/stdio/open_memstream.c rename to lib/libc/musl/src/stdio/open_memstream.c diff --git a/libc/musl/src/stdio/open_wmemstream.c b/lib/libc/musl/src/stdio/open_wmemstream.c similarity index 100% rename from libc/musl/src/stdio/open_wmemstream.c rename to lib/libc/musl/src/stdio/open_wmemstream.c diff --git a/libc/musl/src/stdio/pclose.c b/lib/libc/musl/src/stdio/pclose.c similarity index 100% rename from libc/musl/src/stdio/pclose.c rename to lib/libc/musl/src/stdio/pclose.c diff --git a/libc/musl/src/stdio/perror.c b/lib/libc/musl/src/stdio/perror.c similarity index 100% rename from libc/musl/src/stdio/perror.c rename to lib/libc/musl/src/stdio/perror.c diff --git a/libc/musl/src/stdio/popen.c b/lib/libc/musl/src/stdio/popen.c similarity index 100% rename from libc/musl/src/stdio/popen.c rename to lib/libc/musl/src/stdio/popen.c diff --git a/libc/musl/src/stdio/printf.c b/lib/libc/musl/src/stdio/printf.c similarity index 100% rename from libc/musl/src/stdio/printf.c rename to lib/libc/musl/src/stdio/printf.c diff --git a/libc/musl/src/stdio/putc.c b/lib/libc/musl/src/stdio/putc.c similarity index 100% rename from libc/musl/src/stdio/putc.c rename to lib/libc/musl/src/stdio/putc.c diff --git a/libc/musl/src/stdio/putc.h b/lib/libc/musl/src/stdio/putc.h similarity index 100% rename from libc/musl/src/stdio/putc.h rename to lib/libc/musl/src/stdio/putc.h diff --git a/libc/musl/src/stdio/putc_unlocked.c b/lib/libc/musl/src/stdio/putc_unlocked.c similarity index 100% rename from libc/musl/src/stdio/putc_unlocked.c rename to lib/libc/musl/src/stdio/putc_unlocked.c diff --git a/libc/musl/src/stdio/putchar.c b/lib/libc/musl/src/stdio/putchar.c similarity index 100% rename from libc/musl/src/stdio/putchar.c rename to lib/libc/musl/src/stdio/putchar.c diff --git a/libc/musl/src/stdio/putchar_unlocked.c b/lib/libc/musl/src/stdio/putchar_unlocked.c similarity index 100% rename from libc/musl/src/stdio/putchar_unlocked.c rename to lib/libc/musl/src/stdio/putchar_unlocked.c diff --git a/libc/musl/src/stdio/puts.c b/lib/libc/musl/src/stdio/puts.c similarity index 100% rename from libc/musl/src/stdio/puts.c rename to lib/libc/musl/src/stdio/puts.c diff --git a/libc/musl/src/stdio/putw.c b/lib/libc/musl/src/stdio/putw.c similarity index 100% rename from libc/musl/src/stdio/putw.c rename to lib/libc/musl/src/stdio/putw.c diff --git a/libc/musl/src/stdio/putwc.c b/lib/libc/musl/src/stdio/putwc.c similarity index 100% rename from libc/musl/src/stdio/putwc.c rename to lib/libc/musl/src/stdio/putwc.c diff --git a/libc/musl/src/stdio/putwchar.c b/lib/libc/musl/src/stdio/putwchar.c similarity index 100% rename from libc/musl/src/stdio/putwchar.c rename to lib/libc/musl/src/stdio/putwchar.c diff --git a/libc/musl/src/stdio/remove.c b/lib/libc/musl/src/stdio/remove.c similarity index 100% rename from libc/musl/src/stdio/remove.c rename to lib/libc/musl/src/stdio/remove.c diff --git a/libc/musl/src/stdio/rename.c b/lib/libc/musl/src/stdio/rename.c similarity index 100% rename from libc/musl/src/stdio/rename.c rename to lib/libc/musl/src/stdio/rename.c diff --git a/libc/musl/src/stdio/rewind.c b/lib/libc/musl/src/stdio/rewind.c similarity index 100% rename from libc/musl/src/stdio/rewind.c rename to lib/libc/musl/src/stdio/rewind.c diff --git a/libc/musl/src/stdio/scanf.c b/lib/libc/musl/src/stdio/scanf.c similarity index 100% rename from libc/musl/src/stdio/scanf.c rename to lib/libc/musl/src/stdio/scanf.c diff --git a/libc/musl/src/stdio/setbuf.c b/lib/libc/musl/src/stdio/setbuf.c similarity index 100% rename from libc/musl/src/stdio/setbuf.c rename to lib/libc/musl/src/stdio/setbuf.c diff --git a/libc/musl/src/stdio/setbuffer.c b/lib/libc/musl/src/stdio/setbuffer.c similarity index 100% rename from libc/musl/src/stdio/setbuffer.c rename to lib/libc/musl/src/stdio/setbuffer.c diff --git a/libc/musl/src/stdio/setlinebuf.c b/lib/libc/musl/src/stdio/setlinebuf.c similarity index 100% rename from libc/musl/src/stdio/setlinebuf.c rename to lib/libc/musl/src/stdio/setlinebuf.c diff --git a/libc/musl/src/stdio/setvbuf.c b/lib/libc/musl/src/stdio/setvbuf.c similarity index 100% rename from libc/musl/src/stdio/setvbuf.c rename to lib/libc/musl/src/stdio/setvbuf.c diff --git a/libc/musl/src/stdio/snprintf.c b/lib/libc/musl/src/stdio/snprintf.c similarity index 100% rename from libc/musl/src/stdio/snprintf.c rename to lib/libc/musl/src/stdio/snprintf.c diff --git a/libc/musl/src/stdio/sprintf.c b/lib/libc/musl/src/stdio/sprintf.c similarity index 100% rename from libc/musl/src/stdio/sprintf.c rename to lib/libc/musl/src/stdio/sprintf.c diff --git a/libc/musl/src/stdio/sscanf.c b/lib/libc/musl/src/stdio/sscanf.c similarity index 100% rename from libc/musl/src/stdio/sscanf.c rename to lib/libc/musl/src/stdio/sscanf.c diff --git a/libc/musl/src/stdio/stderr.c b/lib/libc/musl/src/stdio/stderr.c similarity index 100% rename from libc/musl/src/stdio/stderr.c rename to lib/libc/musl/src/stdio/stderr.c diff --git a/libc/musl/src/stdio/stdin.c b/lib/libc/musl/src/stdio/stdin.c similarity index 100% rename from libc/musl/src/stdio/stdin.c rename to lib/libc/musl/src/stdio/stdin.c diff --git a/libc/musl/src/stdio/stdout.c b/lib/libc/musl/src/stdio/stdout.c similarity index 100% rename from libc/musl/src/stdio/stdout.c rename to lib/libc/musl/src/stdio/stdout.c diff --git a/libc/musl/src/stdio/swprintf.c b/lib/libc/musl/src/stdio/swprintf.c similarity index 100% rename from libc/musl/src/stdio/swprintf.c rename to lib/libc/musl/src/stdio/swprintf.c diff --git a/libc/musl/src/stdio/swscanf.c b/lib/libc/musl/src/stdio/swscanf.c similarity index 100% rename from libc/musl/src/stdio/swscanf.c rename to lib/libc/musl/src/stdio/swscanf.c diff --git a/libc/musl/src/stdio/tempnam.c b/lib/libc/musl/src/stdio/tempnam.c similarity index 100% rename from libc/musl/src/stdio/tempnam.c rename to lib/libc/musl/src/stdio/tempnam.c diff --git a/libc/musl/src/stdio/tmpfile.c b/lib/libc/musl/src/stdio/tmpfile.c similarity index 100% rename from libc/musl/src/stdio/tmpfile.c rename to lib/libc/musl/src/stdio/tmpfile.c diff --git a/libc/musl/src/stdio/tmpnam.c b/lib/libc/musl/src/stdio/tmpnam.c similarity index 100% rename from libc/musl/src/stdio/tmpnam.c rename to lib/libc/musl/src/stdio/tmpnam.c diff --git a/libc/musl/src/stdio/ungetc.c b/lib/libc/musl/src/stdio/ungetc.c similarity index 100% rename from libc/musl/src/stdio/ungetc.c rename to lib/libc/musl/src/stdio/ungetc.c diff --git a/libc/musl/src/stdio/ungetwc.c b/lib/libc/musl/src/stdio/ungetwc.c similarity index 100% rename from libc/musl/src/stdio/ungetwc.c rename to lib/libc/musl/src/stdio/ungetwc.c diff --git a/libc/musl/src/stdio/vasprintf.c b/lib/libc/musl/src/stdio/vasprintf.c similarity index 100% rename from libc/musl/src/stdio/vasprintf.c rename to lib/libc/musl/src/stdio/vasprintf.c diff --git a/libc/musl/src/stdio/vdprintf.c b/lib/libc/musl/src/stdio/vdprintf.c similarity index 100% rename from libc/musl/src/stdio/vdprintf.c rename to lib/libc/musl/src/stdio/vdprintf.c diff --git a/libc/musl/src/stdio/vfprintf.c b/lib/libc/musl/src/stdio/vfprintf.c similarity index 100% rename from libc/musl/src/stdio/vfprintf.c rename to lib/libc/musl/src/stdio/vfprintf.c diff --git a/libc/musl/src/stdio/vfscanf.c b/lib/libc/musl/src/stdio/vfscanf.c similarity index 100% rename from libc/musl/src/stdio/vfscanf.c rename to lib/libc/musl/src/stdio/vfscanf.c diff --git a/libc/musl/src/stdio/vfwprintf.c b/lib/libc/musl/src/stdio/vfwprintf.c similarity index 100% rename from libc/musl/src/stdio/vfwprintf.c rename to lib/libc/musl/src/stdio/vfwprintf.c diff --git a/libc/musl/src/stdio/vfwscanf.c b/lib/libc/musl/src/stdio/vfwscanf.c similarity index 100% rename from libc/musl/src/stdio/vfwscanf.c rename to lib/libc/musl/src/stdio/vfwscanf.c diff --git a/libc/musl/src/stdio/vprintf.c b/lib/libc/musl/src/stdio/vprintf.c similarity index 100% rename from libc/musl/src/stdio/vprintf.c rename to lib/libc/musl/src/stdio/vprintf.c diff --git a/libc/musl/src/stdio/vscanf.c b/lib/libc/musl/src/stdio/vscanf.c similarity index 100% rename from libc/musl/src/stdio/vscanf.c rename to lib/libc/musl/src/stdio/vscanf.c diff --git a/libc/musl/src/stdio/vsnprintf.c b/lib/libc/musl/src/stdio/vsnprintf.c similarity index 100% rename from libc/musl/src/stdio/vsnprintf.c rename to lib/libc/musl/src/stdio/vsnprintf.c diff --git a/libc/musl/src/stdio/vsprintf.c b/lib/libc/musl/src/stdio/vsprintf.c similarity index 100% rename from libc/musl/src/stdio/vsprintf.c rename to lib/libc/musl/src/stdio/vsprintf.c diff --git a/libc/musl/src/stdio/vsscanf.c b/lib/libc/musl/src/stdio/vsscanf.c similarity index 100% rename from libc/musl/src/stdio/vsscanf.c rename to lib/libc/musl/src/stdio/vsscanf.c diff --git a/libc/musl/src/stdio/vswprintf.c b/lib/libc/musl/src/stdio/vswprintf.c similarity index 100% rename from libc/musl/src/stdio/vswprintf.c rename to lib/libc/musl/src/stdio/vswprintf.c diff --git a/libc/musl/src/stdio/vswscanf.c b/lib/libc/musl/src/stdio/vswscanf.c similarity index 100% rename from libc/musl/src/stdio/vswscanf.c rename to lib/libc/musl/src/stdio/vswscanf.c diff --git a/libc/musl/src/stdio/vwprintf.c b/lib/libc/musl/src/stdio/vwprintf.c similarity index 100% rename from libc/musl/src/stdio/vwprintf.c rename to lib/libc/musl/src/stdio/vwprintf.c diff --git a/libc/musl/src/stdio/vwscanf.c b/lib/libc/musl/src/stdio/vwscanf.c similarity index 100% rename from libc/musl/src/stdio/vwscanf.c rename to lib/libc/musl/src/stdio/vwscanf.c diff --git a/libc/musl/src/stdio/wprintf.c b/lib/libc/musl/src/stdio/wprintf.c similarity index 100% rename from libc/musl/src/stdio/wprintf.c rename to lib/libc/musl/src/stdio/wprintf.c diff --git a/libc/musl/src/stdio/wscanf.c b/lib/libc/musl/src/stdio/wscanf.c similarity index 100% rename from libc/musl/src/stdio/wscanf.c rename to lib/libc/musl/src/stdio/wscanf.c diff --git a/libc/musl/src/stdlib/abs.c b/lib/libc/musl/src/stdlib/abs.c similarity index 100% rename from libc/musl/src/stdlib/abs.c rename to lib/libc/musl/src/stdlib/abs.c diff --git a/libc/musl/src/stdlib/atof.c b/lib/libc/musl/src/stdlib/atof.c similarity index 100% rename from libc/musl/src/stdlib/atof.c rename to lib/libc/musl/src/stdlib/atof.c diff --git a/libc/musl/src/stdlib/atoi.c b/lib/libc/musl/src/stdlib/atoi.c similarity index 100% rename from libc/musl/src/stdlib/atoi.c rename to lib/libc/musl/src/stdlib/atoi.c diff --git a/libc/musl/src/stdlib/atol.c b/lib/libc/musl/src/stdlib/atol.c similarity index 100% rename from libc/musl/src/stdlib/atol.c rename to lib/libc/musl/src/stdlib/atol.c diff --git a/libc/musl/src/stdlib/atoll.c b/lib/libc/musl/src/stdlib/atoll.c similarity index 100% rename from libc/musl/src/stdlib/atoll.c rename to lib/libc/musl/src/stdlib/atoll.c diff --git a/libc/musl/src/stdlib/bsearch.c b/lib/libc/musl/src/stdlib/bsearch.c similarity index 100% rename from libc/musl/src/stdlib/bsearch.c rename to lib/libc/musl/src/stdlib/bsearch.c diff --git a/libc/musl/src/stdlib/div.c b/lib/libc/musl/src/stdlib/div.c similarity index 100% rename from libc/musl/src/stdlib/div.c rename to lib/libc/musl/src/stdlib/div.c diff --git a/libc/musl/src/stdlib/ecvt.c b/lib/libc/musl/src/stdlib/ecvt.c similarity index 100% rename from libc/musl/src/stdlib/ecvt.c rename to lib/libc/musl/src/stdlib/ecvt.c diff --git a/libc/musl/src/stdlib/fcvt.c b/lib/libc/musl/src/stdlib/fcvt.c similarity index 100% rename from libc/musl/src/stdlib/fcvt.c rename to lib/libc/musl/src/stdlib/fcvt.c diff --git a/libc/musl/src/stdlib/gcvt.c b/lib/libc/musl/src/stdlib/gcvt.c similarity index 100% rename from libc/musl/src/stdlib/gcvt.c rename to lib/libc/musl/src/stdlib/gcvt.c diff --git a/libc/musl/src/stdlib/imaxabs.c b/lib/libc/musl/src/stdlib/imaxabs.c similarity index 100% rename from libc/musl/src/stdlib/imaxabs.c rename to lib/libc/musl/src/stdlib/imaxabs.c diff --git a/libc/musl/src/stdlib/imaxdiv.c b/lib/libc/musl/src/stdlib/imaxdiv.c similarity index 100% rename from libc/musl/src/stdlib/imaxdiv.c rename to lib/libc/musl/src/stdlib/imaxdiv.c diff --git a/libc/musl/src/stdlib/labs.c b/lib/libc/musl/src/stdlib/labs.c similarity index 100% rename from libc/musl/src/stdlib/labs.c rename to lib/libc/musl/src/stdlib/labs.c diff --git a/libc/musl/src/stdlib/ldiv.c b/lib/libc/musl/src/stdlib/ldiv.c similarity index 100% rename from libc/musl/src/stdlib/ldiv.c rename to lib/libc/musl/src/stdlib/ldiv.c diff --git a/libc/musl/src/stdlib/llabs.c b/lib/libc/musl/src/stdlib/llabs.c similarity index 100% rename from libc/musl/src/stdlib/llabs.c rename to lib/libc/musl/src/stdlib/llabs.c diff --git a/libc/musl/src/stdlib/lldiv.c b/lib/libc/musl/src/stdlib/lldiv.c similarity index 100% rename from libc/musl/src/stdlib/lldiv.c rename to lib/libc/musl/src/stdlib/lldiv.c diff --git a/libc/musl/src/stdlib/qsort.c b/lib/libc/musl/src/stdlib/qsort.c similarity index 100% rename from libc/musl/src/stdlib/qsort.c rename to lib/libc/musl/src/stdlib/qsort.c diff --git a/libc/musl/src/stdlib/strtod.c b/lib/libc/musl/src/stdlib/strtod.c similarity index 100% rename from libc/musl/src/stdlib/strtod.c rename to lib/libc/musl/src/stdlib/strtod.c diff --git a/libc/musl/src/stdlib/strtol.c b/lib/libc/musl/src/stdlib/strtol.c similarity index 100% rename from libc/musl/src/stdlib/strtol.c rename to lib/libc/musl/src/stdlib/strtol.c diff --git a/libc/musl/src/stdlib/wcstod.c b/lib/libc/musl/src/stdlib/wcstod.c similarity index 100% rename from libc/musl/src/stdlib/wcstod.c rename to lib/libc/musl/src/stdlib/wcstod.c diff --git a/libc/musl/src/stdlib/wcstol.c b/lib/libc/musl/src/stdlib/wcstol.c similarity index 100% rename from libc/musl/src/stdlib/wcstol.c rename to lib/libc/musl/src/stdlib/wcstol.c diff --git a/libc/musl/src/string/arm/__aeabi_memcpy.s b/lib/libc/musl/src/string/arm/__aeabi_memcpy.s similarity index 100% rename from libc/musl/src/string/arm/__aeabi_memcpy.s rename to lib/libc/musl/src/string/arm/__aeabi_memcpy.s diff --git a/libc/musl/src/string/arm/__aeabi_memset.s b/lib/libc/musl/src/string/arm/__aeabi_memset.s similarity index 100% rename from libc/musl/src/string/arm/__aeabi_memset.s rename to lib/libc/musl/src/string/arm/__aeabi_memset.s diff --git a/libc/musl/src/string/arm/memcpy.c b/lib/libc/musl/src/string/arm/memcpy.c similarity index 100% rename from libc/musl/src/string/arm/memcpy.c rename to lib/libc/musl/src/string/arm/memcpy.c diff --git a/libc/musl/src/string/arm/memcpy_le.S b/lib/libc/musl/src/string/arm/memcpy_le.S similarity index 100% rename from libc/musl/src/string/arm/memcpy_le.S rename to lib/libc/musl/src/string/arm/memcpy_le.S diff --git a/libc/musl/src/string/bcmp.c b/lib/libc/musl/src/string/bcmp.c similarity index 100% rename from libc/musl/src/string/bcmp.c rename to lib/libc/musl/src/string/bcmp.c diff --git a/libc/musl/src/string/bcopy.c b/lib/libc/musl/src/string/bcopy.c similarity index 100% rename from libc/musl/src/string/bcopy.c rename to lib/libc/musl/src/string/bcopy.c diff --git a/libc/musl/src/string/bzero.c b/lib/libc/musl/src/string/bzero.c similarity index 100% rename from libc/musl/src/string/bzero.c rename to lib/libc/musl/src/string/bzero.c diff --git a/libc/musl/src/string/explicit_bzero.c b/lib/libc/musl/src/string/explicit_bzero.c similarity index 100% rename from libc/musl/src/string/explicit_bzero.c rename to lib/libc/musl/src/string/explicit_bzero.c diff --git a/libc/musl/src/string/i386/memcpy.s b/lib/libc/musl/src/string/i386/memcpy.s similarity index 100% rename from libc/musl/src/string/i386/memcpy.s rename to lib/libc/musl/src/string/i386/memcpy.s diff --git a/libc/musl/src/string/i386/memmove.s b/lib/libc/musl/src/string/i386/memmove.s similarity index 100% rename from libc/musl/src/string/i386/memmove.s rename to lib/libc/musl/src/string/i386/memmove.s diff --git a/libc/musl/src/string/i386/memset.s b/lib/libc/musl/src/string/i386/memset.s similarity index 100% rename from libc/musl/src/string/i386/memset.s rename to lib/libc/musl/src/string/i386/memset.s diff --git a/libc/musl/src/string/index.c b/lib/libc/musl/src/string/index.c similarity index 100% rename from libc/musl/src/string/index.c rename to lib/libc/musl/src/string/index.c diff --git a/libc/musl/src/string/memccpy.c b/lib/libc/musl/src/string/memccpy.c similarity index 100% rename from libc/musl/src/string/memccpy.c rename to lib/libc/musl/src/string/memccpy.c diff --git a/libc/musl/src/string/memchr.c b/lib/libc/musl/src/string/memchr.c similarity index 100% rename from libc/musl/src/string/memchr.c rename to lib/libc/musl/src/string/memchr.c diff --git a/libc/musl/src/string/memcmp.c b/lib/libc/musl/src/string/memcmp.c similarity index 100% rename from libc/musl/src/string/memcmp.c rename to lib/libc/musl/src/string/memcmp.c diff --git a/libc/musl/src/string/memcpy.c b/lib/libc/musl/src/string/memcpy.c similarity index 100% rename from libc/musl/src/string/memcpy.c rename to lib/libc/musl/src/string/memcpy.c diff --git a/libc/musl/src/string/memmem.c b/lib/libc/musl/src/string/memmem.c similarity index 100% rename from libc/musl/src/string/memmem.c rename to lib/libc/musl/src/string/memmem.c diff --git a/libc/musl/src/string/memmove.c b/lib/libc/musl/src/string/memmove.c similarity index 100% rename from libc/musl/src/string/memmove.c rename to lib/libc/musl/src/string/memmove.c diff --git a/libc/musl/src/string/mempcpy.c b/lib/libc/musl/src/string/mempcpy.c similarity index 100% rename from libc/musl/src/string/mempcpy.c rename to lib/libc/musl/src/string/mempcpy.c diff --git a/libc/musl/src/string/memrchr.c b/lib/libc/musl/src/string/memrchr.c similarity index 100% rename from libc/musl/src/string/memrchr.c rename to lib/libc/musl/src/string/memrchr.c diff --git a/libc/musl/src/string/memset.c b/lib/libc/musl/src/string/memset.c similarity index 100% rename from libc/musl/src/string/memset.c rename to lib/libc/musl/src/string/memset.c diff --git a/libc/musl/src/string/rindex.c b/lib/libc/musl/src/string/rindex.c similarity index 100% rename from libc/musl/src/string/rindex.c rename to lib/libc/musl/src/string/rindex.c diff --git a/libc/musl/src/string/stpcpy.c b/lib/libc/musl/src/string/stpcpy.c similarity index 100% rename from libc/musl/src/string/stpcpy.c rename to lib/libc/musl/src/string/stpcpy.c diff --git a/libc/musl/src/string/stpncpy.c b/lib/libc/musl/src/string/stpncpy.c similarity index 100% rename from libc/musl/src/string/stpncpy.c rename to lib/libc/musl/src/string/stpncpy.c diff --git a/libc/musl/src/string/strcasecmp.c b/lib/libc/musl/src/string/strcasecmp.c similarity index 100% rename from libc/musl/src/string/strcasecmp.c rename to lib/libc/musl/src/string/strcasecmp.c diff --git a/libc/musl/src/string/strcasestr.c b/lib/libc/musl/src/string/strcasestr.c similarity index 100% rename from libc/musl/src/string/strcasestr.c rename to lib/libc/musl/src/string/strcasestr.c diff --git a/libc/musl/src/string/strcat.c b/lib/libc/musl/src/string/strcat.c similarity index 100% rename from libc/musl/src/string/strcat.c rename to lib/libc/musl/src/string/strcat.c diff --git a/libc/musl/src/string/strchr.c b/lib/libc/musl/src/string/strchr.c similarity index 100% rename from libc/musl/src/string/strchr.c rename to lib/libc/musl/src/string/strchr.c diff --git a/libc/musl/src/string/strchrnul.c b/lib/libc/musl/src/string/strchrnul.c similarity index 100% rename from libc/musl/src/string/strchrnul.c rename to lib/libc/musl/src/string/strchrnul.c diff --git a/libc/musl/src/string/strcmp.c b/lib/libc/musl/src/string/strcmp.c similarity index 100% rename from libc/musl/src/string/strcmp.c rename to lib/libc/musl/src/string/strcmp.c diff --git a/libc/musl/src/string/strcpy.c b/lib/libc/musl/src/string/strcpy.c similarity index 100% rename from libc/musl/src/string/strcpy.c rename to lib/libc/musl/src/string/strcpy.c diff --git a/libc/musl/src/string/strcspn.c b/lib/libc/musl/src/string/strcspn.c similarity index 100% rename from libc/musl/src/string/strcspn.c rename to lib/libc/musl/src/string/strcspn.c diff --git a/libc/musl/src/string/strdup.c b/lib/libc/musl/src/string/strdup.c similarity index 100% rename from libc/musl/src/string/strdup.c rename to lib/libc/musl/src/string/strdup.c diff --git a/libc/musl/src/string/strerror_r.c b/lib/libc/musl/src/string/strerror_r.c similarity index 100% rename from libc/musl/src/string/strerror_r.c rename to lib/libc/musl/src/string/strerror_r.c diff --git a/libc/musl/src/string/strlcat.c b/lib/libc/musl/src/string/strlcat.c similarity index 100% rename from libc/musl/src/string/strlcat.c rename to lib/libc/musl/src/string/strlcat.c diff --git a/libc/musl/src/string/strlcpy.c b/lib/libc/musl/src/string/strlcpy.c similarity index 100% rename from libc/musl/src/string/strlcpy.c rename to lib/libc/musl/src/string/strlcpy.c diff --git a/libc/musl/src/string/strlen.c b/lib/libc/musl/src/string/strlen.c similarity index 100% rename from libc/musl/src/string/strlen.c rename to lib/libc/musl/src/string/strlen.c diff --git a/libc/musl/src/string/strncasecmp.c b/lib/libc/musl/src/string/strncasecmp.c similarity index 100% rename from libc/musl/src/string/strncasecmp.c rename to lib/libc/musl/src/string/strncasecmp.c diff --git a/libc/musl/src/string/strncat.c b/lib/libc/musl/src/string/strncat.c similarity index 100% rename from libc/musl/src/string/strncat.c rename to lib/libc/musl/src/string/strncat.c diff --git a/libc/musl/src/string/strncmp.c b/lib/libc/musl/src/string/strncmp.c similarity index 100% rename from libc/musl/src/string/strncmp.c rename to lib/libc/musl/src/string/strncmp.c diff --git a/libc/musl/src/string/strncpy.c b/lib/libc/musl/src/string/strncpy.c similarity index 100% rename from libc/musl/src/string/strncpy.c rename to lib/libc/musl/src/string/strncpy.c diff --git a/libc/musl/src/string/strndup.c b/lib/libc/musl/src/string/strndup.c similarity index 100% rename from libc/musl/src/string/strndup.c rename to lib/libc/musl/src/string/strndup.c diff --git a/libc/musl/src/string/strnlen.c b/lib/libc/musl/src/string/strnlen.c similarity index 100% rename from libc/musl/src/string/strnlen.c rename to lib/libc/musl/src/string/strnlen.c diff --git a/libc/musl/src/string/strpbrk.c b/lib/libc/musl/src/string/strpbrk.c similarity index 100% rename from libc/musl/src/string/strpbrk.c rename to lib/libc/musl/src/string/strpbrk.c diff --git a/libc/musl/src/string/strrchr.c b/lib/libc/musl/src/string/strrchr.c similarity index 100% rename from libc/musl/src/string/strrchr.c rename to lib/libc/musl/src/string/strrchr.c diff --git a/libc/musl/src/string/strsep.c b/lib/libc/musl/src/string/strsep.c similarity index 100% rename from libc/musl/src/string/strsep.c rename to lib/libc/musl/src/string/strsep.c diff --git a/libc/musl/src/string/strsignal.c b/lib/libc/musl/src/string/strsignal.c similarity index 100% rename from libc/musl/src/string/strsignal.c rename to lib/libc/musl/src/string/strsignal.c diff --git a/libc/musl/src/string/strspn.c b/lib/libc/musl/src/string/strspn.c similarity index 100% rename from libc/musl/src/string/strspn.c rename to lib/libc/musl/src/string/strspn.c diff --git a/libc/musl/src/string/strstr.c b/lib/libc/musl/src/string/strstr.c similarity index 100% rename from libc/musl/src/string/strstr.c rename to lib/libc/musl/src/string/strstr.c diff --git a/libc/musl/src/string/strtok.c b/lib/libc/musl/src/string/strtok.c similarity index 100% rename from libc/musl/src/string/strtok.c rename to lib/libc/musl/src/string/strtok.c diff --git a/libc/musl/src/string/strtok_r.c b/lib/libc/musl/src/string/strtok_r.c similarity index 100% rename from libc/musl/src/string/strtok_r.c rename to lib/libc/musl/src/string/strtok_r.c diff --git a/libc/musl/src/string/strverscmp.c b/lib/libc/musl/src/string/strverscmp.c similarity index 100% rename from libc/musl/src/string/strverscmp.c rename to lib/libc/musl/src/string/strverscmp.c diff --git a/libc/musl/src/string/swab.c b/lib/libc/musl/src/string/swab.c similarity index 100% rename from libc/musl/src/string/swab.c rename to lib/libc/musl/src/string/swab.c diff --git a/libc/musl/src/string/wcpcpy.c b/lib/libc/musl/src/string/wcpcpy.c similarity index 100% rename from libc/musl/src/string/wcpcpy.c rename to lib/libc/musl/src/string/wcpcpy.c diff --git a/libc/musl/src/string/wcpncpy.c b/lib/libc/musl/src/string/wcpncpy.c similarity index 100% rename from libc/musl/src/string/wcpncpy.c rename to lib/libc/musl/src/string/wcpncpy.c diff --git a/libc/musl/src/string/wcscasecmp.c b/lib/libc/musl/src/string/wcscasecmp.c similarity index 100% rename from libc/musl/src/string/wcscasecmp.c rename to lib/libc/musl/src/string/wcscasecmp.c diff --git a/libc/musl/src/string/wcscasecmp_l.c b/lib/libc/musl/src/string/wcscasecmp_l.c similarity index 100% rename from libc/musl/src/string/wcscasecmp_l.c rename to lib/libc/musl/src/string/wcscasecmp_l.c diff --git a/libc/musl/src/string/wcscat.c b/lib/libc/musl/src/string/wcscat.c similarity index 100% rename from libc/musl/src/string/wcscat.c rename to lib/libc/musl/src/string/wcscat.c diff --git a/libc/musl/src/string/wcschr.c b/lib/libc/musl/src/string/wcschr.c similarity index 100% rename from libc/musl/src/string/wcschr.c rename to lib/libc/musl/src/string/wcschr.c diff --git a/libc/musl/src/string/wcscmp.c b/lib/libc/musl/src/string/wcscmp.c similarity index 100% rename from libc/musl/src/string/wcscmp.c rename to lib/libc/musl/src/string/wcscmp.c diff --git a/libc/musl/src/string/wcscpy.c b/lib/libc/musl/src/string/wcscpy.c similarity index 100% rename from libc/musl/src/string/wcscpy.c rename to lib/libc/musl/src/string/wcscpy.c diff --git a/libc/musl/src/string/wcscspn.c b/lib/libc/musl/src/string/wcscspn.c similarity index 100% rename from libc/musl/src/string/wcscspn.c rename to lib/libc/musl/src/string/wcscspn.c diff --git a/libc/musl/src/string/wcsdup.c b/lib/libc/musl/src/string/wcsdup.c similarity index 100% rename from libc/musl/src/string/wcsdup.c rename to lib/libc/musl/src/string/wcsdup.c diff --git a/libc/musl/src/string/wcslen.c b/lib/libc/musl/src/string/wcslen.c similarity index 100% rename from libc/musl/src/string/wcslen.c rename to lib/libc/musl/src/string/wcslen.c diff --git a/libc/musl/src/string/wcsncasecmp.c b/lib/libc/musl/src/string/wcsncasecmp.c similarity index 100% rename from libc/musl/src/string/wcsncasecmp.c rename to lib/libc/musl/src/string/wcsncasecmp.c diff --git a/libc/musl/src/string/wcsncasecmp_l.c b/lib/libc/musl/src/string/wcsncasecmp_l.c similarity index 100% rename from libc/musl/src/string/wcsncasecmp_l.c rename to lib/libc/musl/src/string/wcsncasecmp_l.c diff --git a/libc/musl/src/string/wcsncat.c b/lib/libc/musl/src/string/wcsncat.c similarity index 100% rename from libc/musl/src/string/wcsncat.c rename to lib/libc/musl/src/string/wcsncat.c diff --git a/libc/musl/src/string/wcsncmp.c b/lib/libc/musl/src/string/wcsncmp.c similarity index 100% rename from libc/musl/src/string/wcsncmp.c rename to lib/libc/musl/src/string/wcsncmp.c diff --git a/libc/musl/src/string/wcsncpy.c b/lib/libc/musl/src/string/wcsncpy.c similarity index 100% rename from libc/musl/src/string/wcsncpy.c rename to lib/libc/musl/src/string/wcsncpy.c diff --git a/libc/musl/src/string/wcsnlen.c b/lib/libc/musl/src/string/wcsnlen.c similarity index 100% rename from libc/musl/src/string/wcsnlen.c rename to lib/libc/musl/src/string/wcsnlen.c diff --git a/libc/musl/src/string/wcspbrk.c b/lib/libc/musl/src/string/wcspbrk.c similarity index 100% rename from libc/musl/src/string/wcspbrk.c rename to lib/libc/musl/src/string/wcspbrk.c diff --git a/libc/musl/src/string/wcsrchr.c b/lib/libc/musl/src/string/wcsrchr.c similarity index 100% rename from libc/musl/src/string/wcsrchr.c rename to lib/libc/musl/src/string/wcsrchr.c diff --git a/libc/musl/src/string/wcsspn.c b/lib/libc/musl/src/string/wcsspn.c similarity index 100% rename from libc/musl/src/string/wcsspn.c rename to lib/libc/musl/src/string/wcsspn.c diff --git a/libc/musl/src/string/wcsstr.c b/lib/libc/musl/src/string/wcsstr.c similarity index 100% rename from libc/musl/src/string/wcsstr.c rename to lib/libc/musl/src/string/wcsstr.c diff --git a/libc/musl/src/string/wcstok.c b/lib/libc/musl/src/string/wcstok.c similarity index 100% rename from libc/musl/src/string/wcstok.c rename to lib/libc/musl/src/string/wcstok.c diff --git a/libc/musl/src/string/wcswcs.c b/lib/libc/musl/src/string/wcswcs.c similarity index 100% rename from libc/musl/src/string/wcswcs.c rename to lib/libc/musl/src/string/wcswcs.c diff --git a/libc/musl/src/string/wmemchr.c b/lib/libc/musl/src/string/wmemchr.c similarity index 100% rename from libc/musl/src/string/wmemchr.c rename to lib/libc/musl/src/string/wmemchr.c diff --git a/libc/musl/src/string/wmemcmp.c b/lib/libc/musl/src/string/wmemcmp.c similarity index 100% rename from libc/musl/src/string/wmemcmp.c rename to lib/libc/musl/src/string/wmemcmp.c diff --git a/libc/musl/src/string/wmemcpy.c b/lib/libc/musl/src/string/wmemcpy.c similarity index 100% rename from libc/musl/src/string/wmemcpy.c rename to lib/libc/musl/src/string/wmemcpy.c diff --git a/libc/musl/src/string/wmemmove.c b/lib/libc/musl/src/string/wmemmove.c similarity index 100% rename from libc/musl/src/string/wmemmove.c rename to lib/libc/musl/src/string/wmemmove.c diff --git a/libc/musl/src/string/wmemset.c b/lib/libc/musl/src/string/wmemset.c similarity index 100% rename from libc/musl/src/string/wmemset.c rename to lib/libc/musl/src/string/wmemset.c diff --git a/libc/musl/src/string/x86_64/memcpy.s b/lib/libc/musl/src/string/x86_64/memcpy.s similarity index 100% rename from libc/musl/src/string/x86_64/memcpy.s rename to lib/libc/musl/src/string/x86_64/memcpy.s diff --git a/libc/musl/src/string/x86_64/memmove.s b/lib/libc/musl/src/string/x86_64/memmove.s similarity index 100% rename from libc/musl/src/string/x86_64/memmove.s rename to lib/libc/musl/src/string/x86_64/memmove.s diff --git a/libc/musl/src/string/x86_64/memset.s b/lib/libc/musl/src/string/x86_64/memset.s similarity index 100% rename from libc/musl/src/string/x86_64/memset.s rename to lib/libc/musl/src/string/x86_64/memset.s diff --git a/libc/musl/src/temp/__randname.c b/lib/libc/musl/src/temp/__randname.c similarity index 100% rename from libc/musl/src/temp/__randname.c rename to lib/libc/musl/src/temp/__randname.c diff --git a/libc/musl/src/temp/mkdtemp.c b/lib/libc/musl/src/temp/mkdtemp.c similarity index 100% rename from libc/musl/src/temp/mkdtemp.c rename to lib/libc/musl/src/temp/mkdtemp.c diff --git a/libc/musl/src/temp/mkostemp.c b/lib/libc/musl/src/temp/mkostemp.c similarity index 100% rename from libc/musl/src/temp/mkostemp.c rename to lib/libc/musl/src/temp/mkostemp.c diff --git a/libc/musl/src/temp/mkostemps.c b/lib/libc/musl/src/temp/mkostemps.c similarity index 100% rename from libc/musl/src/temp/mkostemps.c rename to lib/libc/musl/src/temp/mkostemps.c diff --git a/libc/musl/src/temp/mkstemp.c b/lib/libc/musl/src/temp/mkstemp.c similarity index 100% rename from libc/musl/src/temp/mkstemp.c rename to lib/libc/musl/src/temp/mkstemp.c diff --git a/libc/musl/src/temp/mkstemps.c b/lib/libc/musl/src/temp/mkstemps.c similarity index 100% rename from libc/musl/src/temp/mkstemps.c rename to lib/libc/musl/src/temp/mkstemps.c diff --git a/libc/musl/src/temp/mktemp.c b/lib/libc/musl/src/temp/mktemp.c similarity index 100% rename from libc/musl/src/temp/mktemp.c rename to lib/libc/musl/src/temp/mktemp.c diff --git a/libc/musl/src/termios/cfgetospeed.c b/lib/libc/musl/src/termios/cfgetospeed.c similarity index 100% rename from libc/musl/src/termios/cfgetospeed.c rename to lib/libc/musl/src/termios/cfgetospeed.c diff --git a/libc/musl/src/termios/cfmakeraw.c b/lib/libc/musl/src/termios/cfmakeraw.c similarity index 100% rename from libc/musl/src/termios/cfmakeraw.c rename to lib/libc/musl/src/termios/cfmakeraw.c diff --git a/libc/musl/src/termios/cfsetospeed.c b/lib/libc/musl/src/termios/cfsetospeed.c similarity index 100% rename from libc/musl/src/termios/cfsetospeed.c rename to lib/libc/musl/src/termios/cfsetospeed.c diff --git a/libc/musl/src/termios/tcdrain.c b/lib/libc/musl/src/termios/tcdrain.c similarity index 100% rename from libc/musl/src/termios/tcdrain.c rename to lib/libc/musl/src/termios/tcdrain.c diff --git a/libc/musl/src/termios/tcflow.c b/lib/libc/musl/src/termios/tcflow.c similarity index 100% rename from libc/musl/src/termios/tcflow.c rename to lib/libc/musl/src/termios/tcflow.c diff --git a/libc/musl/src/termios/tcflush.c b/lib/libc/musl/src/termios/tcflush.c similarity index 100% rename from libc/musl/src/termios/tcflush.c rename to lib/libc/musl/src/termios/tcflush.c diff --git a/libc/musl/src/termios/tcgetattr.c b/lib/libc/musl/src/termios/tcgetattr.c similarity index 100% rename from libc/musl/src/termios/tcgetattr.c rename to lib/libc/musl/src/termios/tcgetattr.c diff --git a/libc/musl/src/termios/tcgetsid.c b/lib/libc/musl/src/termios/tcgetsid.c similarity index 100% rename from libc/musl/src/termios/tcgetsid.c rename to lib/libc/musl/src/termios/tcgetsid.c diff --git a/libc/musl/src/termios/tcsendbreak.c b/lib/libc/musl/src/termios/tcsendbreak.c similarity index 100% rename from libc/musl/src/termios/tcsendbreak.c rename to lib/libc/musl/src/termios/tcsendbreak.c diff --git a/libc/musl/src/termios/tcsetattr.c b/lib/libc/musl/src/termios/tcsetattr.c similarity index 100% rename from libc/musl/src/termios/tcsetattr.c rename to lib/libc/musl/src/termios/tcsetattr.c diff --git a/libc/musl/src/thread/__lock.c b/lib/libc/musl/src/thread/__lock.c similarity index 100% rename from libc/musl/src/thread/__lock.c rename to lib/libc/musl/src/thread/__lock.c diff --git a/libc/musl/src/thread/__set_thread_area.c b/lib/libc/musl/src/thread/__set_thread_area.c similarity index 100% rename from libc/musl/src/thread/__set_thread_area.c rename to lib/libc/musl/src/thread/__set_thread_area.c diff --git a/libc/musl/src/thread/__syscall_cp.c b/lib/libc/musl/src/thread/__syscall_cp.c similarity index 100% rename from libc/musl/src/thread/__syscall_cp.c rename to lib/libc/musl/src/thread/__syscall_cp.c diff --git a/libc/musl/src/thread/__timedwait.c b/lib/libc/musl/src/thread/__timedwait.c similarity index 100% rename from libc/musl/src/thread/__timedwait.c rename to lib/libc/musl/src/thread/__timedwait.c diff --git a/libc/musl/src/thread/__tls_get_addr.c b/lib/libc/musl/src/thread/__tls_get_addr.c similarity index 100% rename from libc/musl/src/thread/__tls_get_addr.c rename to lib/libc/musl/src/thread/__tls_get_addr.c diff --git a/libc/musl/src/thread/__unmapself.c b/lib/libc/musl/src/thread/__unmapself.c similarity index 100% rename from libc/musl/src/thread/__unmapself.c rename to lib/libc/musl/src/thread/__unmapself.c diff --git a/libc/musl/src/thread/__wait.c b/lib/libc/musl/src/thread/__wait.c similarity index 100% rename from libc/musl/src/thread/__wait.c rename to lib/libc/musl/src/thread/__wait.c diff --git a/libc/musl/src/thread/aarch64/__set_thread_area.s b/lib/libc/musl/src/thread/aarch64/__set_thread_area.s similarity index 100% rename from libc/musl/src/thread/aarch64/__set_thread_area.s rename to lib/libc/musl/src/thread/aarch64/__set_thread_area.s diff --git a/libc/musl/src/thread/aarch64/__unmapself.s b/lib/libc/musl/src/thread/aarch64/__unmapself.s similarity index 100% rename from libc/musl/src/thread/aarch64/__unmapself.s rename to lib/libc/musl/src/thread/aarch64/__unmapself.s diff --git a/libc/musl/src/thread/aarch64/clone.s b/lib/libc/musl/src/thread/aarch64/clone.s similarity index 100% rename from libc/musl/src/thread/aarch64/clone.s rename to lib/libc/musl/src/thread/aarch64/clone.s diff --git a/libc/musl/src/thread/aarch64/syscall_cp.s b/lib/libc/musl/src/thread/aarch64/syscall_cp.s similarity index 100% rename from libc/musl/src/thread/aarch64/syscall_cp.s rename to lib/libc/musl/src/thread/aarch64/syscall_cp.s diff --git a/libc/musl/src/thread/arm/__aeabi_read_tp.s b/lib/libc/musl/src/thread/arm/__aeabi_read_tp.s similarity index 100% rename from libc/musl/src/thread/arm/__aeabi_read_tp.s rename to lib/libc/musl/src/thread/arm/__aeabi_read_tp.s diff --git a/libc/musl/src/thread/arm/__set_thread_area.c b/lib/libc/musl/src/thread/arm/__set_thread_area.c similarity index 100% rename from libc/musl/src/thread/arm/__set_thread_area.c rename to lib/libc/musl/src/thread/arm/__set_thread_area.c diff --git a/libc/musl/src/thread/arm/__unmapself.s b/lib/libc/musl/src/thread/arm/__unmapself.s similarity index 100% rename from libc/musl/src/thread/arm/__unmapself.s rename to lib/libc/musl/src/thread/arm/__unmapself.s diff --git a/libc/musl/src/thread/arm/atomics.s b/lib/libc/musl/src/thread/arm/atomics.s similarity index 100% rename from libc/musl/src/thread/arm/atomics.s rename to lib/libc/musl/src/thread/arm/atomics.s diff --git a/libc/musl/src/thread/arm/clone.s b/lib/libc/musl/src/thread/arm/clone.s similarity index 100% rename from libc/musl/src/thread/arm/clone.s rename to lib/libc/musl/src/thread/arm/clone.s diff --git a/libc/musl/src/thread/arm/syscall_cp.s b/lib/libc/musl/src/thread/arm/syscall_cp.s similarity index 100% rename from libc/musl/src/thread/arm/syscall_cp.s rename to lib/libc/musl/src/thread/arm/syscall_cp.s diff --git a/libc/musl/src/thread/call_once.c b/lib/libc/musl/src/thread/call_once.c similarity index 100% rename from libc/musl/src/thread/call_once.c rename to lib/libc/musl/src/thread/call_once.c diff --git a/libc/musl/src/thread/clone.c b/lib/libc/musl/src/thread/clone.c similarity index 100% rename from libc/musl/src/thread/clone.c rename to lib/libc/musl/src/thread/clone.c diff --git a/libc/musl/src/thread/cnd_broadcast.c b/lib/libc/musl/src/thread/cnd_broadcast.c similarity index 100% rename from libc/musl/src/thread/cnd_broadcast.c rename to lib/libc/musl/src/thread/cnd_broadcast.c diff --git a/libc/musl/src/thread/cnd_destroy.c b/lib/libc/musl/src/thread/cnd_destroy.c similarity index 100% rename from libc/musl/src/thread/cnd_destroy.c rename to lib/libc/musl/src/thread/cnd_destroy.c diff --git a/libc/musl/src/thread/cnd_init.c b/lib/libc/musl/src/thread/cnd_init.c similarity index 100% rename from libc/musl/src/thread/cnd_init.c rename to lib/libc/musl/src/thread/cnd_init.c diff --git a/libc/musl/src/thread/cnd_signal.c b/lib/libc/musl/src/thread/cnd_signal.c similarity index 100% rename from libc/musl/src/thread/cnd_signal.c rename to lib/libc/musl/src/thread/cnd_signal.c diff --git a/libc/musl/src/thread/cnd_timedwait.c b/lib/libc/musl/src/thread/cnd_timedwait.c similarity index 100% rename from libc/musl/src/thread/cnd_timedwait.c rename to lib/libc/musl/src/thread/cnd_timedwait.c diff --git a/libc/musl/src/thread/cnd_wait.c b/lib/libc/musl/src/thread/cnd_wait.c similarity index 100% rename from libc/musl/src/thread/cnd_wait.c rename to lib/libc/musl/src/thread/cnd_wait.c diff --git a/libc/musl/src/thread/default_attr.c b/lib/libc/musl/src/thread/default_attr.c similarity index 100% rename from libc/musl/src/thread/default_attr.c rename to lib/libc/musl/src/thread/default_attr.c diff --git a/libc/musl/src/thread/i386/__set_thread_area.s b/lib/libc/musl/src/thread/i386/__set_thread_area.s similarity index 100% rename from libc/musl/src/thread/i386/__set_thread_area.s rename to lib/libc/musl/src/thread/i386/__set_thread_area.s diff --git a/libc/musl/src/thread/i386/__unmapself.s b/lib/libc/musl/src/thread/i386/__unmapself.s similarity index 100% rename from libc/musl/src/thread/i386/__unmapself.s rename to lib/libc/musl/src/thread/i386/__unmapself.s diff --git a/libc/musl/src/thread/i386/clone.s b/lib/libc/musl/src/thread/i386/clone.s similarity index 100% rename from libc/musl/src/thread/i386/clone.s rename to lib/libc/musl/src/thread/i386/clone.s diff --git a/libc/musl/src/thread/i386/syscall_cp.s b/lib/libc/musl/src/thread/i386/syscall_cp.s similarity index 100% rename from libc/musl/src/thread/i386/syscall_cp.s rename to lib/libc/musl/src/thread/i386/syscall_cp.s diff --git a/libc/musl/src/thread/i386/tls.s b/lib/libc/musl/src/thread/i386/tls.s similarity index 100% rename from libc/musl/src/thread/i386/tls.s rename to lib/libc/musl/src/thread/i386/tls.s diff --git a/libc/musl/src/thread/lock_ptc.c b/lib/libc/musl/src/thread/lock_ptc.c similarity index 100% rename from libc/musl/src/thread/lock_ptc.c rename to lib/libc/musl/src/thread/lock_ptc.c diff --git a/libc/musl/src/thread/m68k/__m68k_read_tp.s b/lib/libc/musl/src/thread/m68k/__m68k_read_tp.s similarity index 100% rename from libc/musl/src/thread/m68k/__m68k_read_tp.s rename to lib/libc/musl/src/thread/m68k/__m68k_read_tp.s diff --git a/libc/musl/src/thread/m68k/clone.s b/lib/libc/musl/src/thread/m68k/clone.s similarity index 100% rename from libc/musl/src/thread/m68k/clone.s rename to lib/libc/musl/src/thread/m68k/clone.s diff --git a/libc/musl/src/thread/m68k/syscall_cp.s b/lib/libc/musl/src/thread/m68k/syscall_cp.s similarity index 100% rename from libc/musl/src/thread/m68k/syscall_cp.s rename to lib/libc/musl/src/thread/m68k/syscall_cp.s diff --git a/libc/musl/src/thread/microblaze/__set_thread_area.s b/lib/libc/musl/src/thread/microblaze/__set_thread_area.s similarity index 100% rename from libc/musl/src/thread/microblaze/__set_thread_area.s rename to lib/libc/musl/src/thread/microblaze/__set_thread_area.s diff --git a/libc/musl/src/thread/microblaze/__unmapself.s b/lib/libc/musl/src/thread/microblaze/__unmapself.s similarity index 100% rename from libc/musl/src/thread/microblaze/__unmapself.s rename to lib/libc/musl/src/thread/microblaze/__unmapself.s diff --git a/libc/musl/src/thread/microblaze/clone.s b/lib/libc/musl/src/thread/microblaze/clone.s similarity index 100% rename from libc/musl/src/thread/microblaze/clone.s rename to lib/libc/musl/src/thread/microblaze/clone.s diff --git a/libc/musl/src/thread/microblaze/syscall_cp.s b/lib/libc/musl/src/thread/microblaze/syscall_cp.s similarity index 100% rename from libc/musl/src/thread/microblaze/syscall_cp.s rename to lib/libc/musl/src/thread/microblaze/syscall_cp.s diff --git a/libc/musl/src/thread/mips/__unmapself.s b/lib/libc/musl/src/thread/mips/__unmapself.s similarity index 100% rename from libc/musl/src/thread/mips/__unmapself.s rename to lib/libc/musl/src/thread/mips/__unmapself.s diff --git a/libc/musl/src/thread/mips/clone.s b/lib/libc/musl/src/thread/mips/clone.s similarity index 100% rename from libc/musl/src/thread/mips/clone.s rename to lib/libc/musl/src/thread/mips/clone.s diff --git a/libc/musl/src/thread/mips/syscall_cp.s b/lib/libc/musl/src/thread/mips/syscall_cp.s similarity index 100% rename from libc/musl/src/thread/mips/syscall_cp.s rename to lib/libc/musl/src/thread/mips/syscall_cp.s diff --git a/libc/musl/src/thread/mips64/__unmapself.s b/lib/libc/musl/src/thread/mips64/__unmapself.s similarity index 100% rename from libc/musl/src/thread/mips64/__unmapself.s rename to lib/libc/musl/src/thread/mips64/__unmapself.s diff --git a/libc/musl/src/thread/mips64/clone.s b/lib/libc/musl/src/thread/mips64/clone.s similarity index 100% rename from libc/musl/src/thread/mips64/clone.s rename to lib/libc/musl/src/thread/mips64/clone.s diff --git a/libc/musl/src/thread/mips64/syscall_cp.s b/lib/libc/musl/src/thread/mips64/syscall_cp.s similarity index 100% rename from libc/musl/src/thread/mips64/syscall_cp.s rename to lib/libc/musl/src/thread/mips64/syscall_cp.s diff --git a/libc/musl/src/thread/mipsn32/__unmapself.s b/lib/libc/musl/src/thread/mipsn32/__unmapself.s similarity index 100% rename from libc/musl/src/thread/mipsn32/__unmapself.s rename to lib/libc/musl/src/thread/mipsn32/__unmapself.s diff --git a/libc/musl/src/thread/mipsn32/clone.s b/lib/libc/musl/src/thread/mipsn32/clone.s similarity index 100% rename from libc/musl/src/thread/mipsn32/clone.s rename to lib/libc/musl/src/thread/mipsn32/clone.s diff --git a/libc/musl/src/thread/mipsn32/syscall_cp.s b/lib/libc/musl/src/thread/mipsn32/syscall_cp.s similarity index 100% rename from libc/musl/src/thread/mipsn32/syscall_cp.s rename to lib/libc/musl/src/thread/mipsn32/syscall_cp.s diff --git a/libc/musl/src/thread/mtx_destroy.c b/lib/libc/musl/src/thread/mtx_destroy.c similarity index 100% rename from libc/musl/src/thread/mtx_destroy.c rename to lib/libc/musl/src/thread/mtx_destroy.c diff --git a/libc/musl/src/thread/mtx_init.c b/lib/libc/musl/src/thread/mtx_init.c similarity index 100% rename from libc/musl/src/thread/mtx_init.c rename to lib/libc/musl/src/thread/mtx_init.c diff --git a/libc/musl/src/thread/mtx_lock.c b/lib/libc/musl/src/thread/mtx_lock.c similarity index 100% rename from libc/musl/src/thread/mtx_lock.c rename to lib/libc/musl/src/thread/mtx_lock.c diff --git a/libc/musl/src/thread/mtx_timedlock.c b/lib/libc/musl/src/thread/mtx_timedlock.c similarity index 100% rename from libc/musl/src/thread/mtx_timedlock.c rename to lib/libc/musl/src/thread/mtx_timedlock.c diff --git a/libc/musl/src/thread/mtx_trylock.c b/lib/libc/musl/src/thread/mtx_trylock.c similarity index 100% rename from libc/musl/src/thread/mtx_trylock.c rename to lib/libc/musl/src/thread/mtx_trylock.c diff --git a/libc/musl/src/thread/mtx_unlock.c b/lib/libc/musl/src/thread/mtx_unlock.c similarity index 100% rename from libc/musl/src/thread/mtx_unlock.c rename to lib/libc/musl/src/thread/mtx_unlock.c diff --git a/libc/musl/src/thread/or1k/__set_thread_area.s b/lib/libc/musl/src/thread/or1k/__set_thread_area.s similarity index 100% rename from libc/musl/src/thread/or1k/__set_thread_area.s rename to lib/libc/musl/src/thread/or1k/__set_thread_area.s diff --git a/libc/musl/src/thread/or1k/__unmapself.s b/lib/libc/musl/src/thread/or1k/__unmapself.s similarity index 100% rename from libc/musl/src/thread/or1k/__unmapself.s rename to lib/libc/musl/src/thread/or1k/__unmapself.s diff --git a/libc/musl/src/thread/or1k/clone.s b/lib/libc/musl/src/thread/or1k/clone.s similarity index 100% rename from libc/musl/src/thread/or1k/clone.s rename to lib/libc/musl/src/thread/or1k/clone.s diff --git a/libc/musl/src/thread/or1k/syscall_cp.s b/lib/libc/musl/src/thread/or1k/syscall_cp.s similarity index 100% rename from libc/musl/src/thread/or1k/syscall_cp.s rename to lib/libc/musl/src/thread/or1k/syscall_cp.s diff --git a/libc/musl/src/thread/powerpc/__set_thread_area.s b/lib/libc/musl/src/thread/powerpc/__set_thread_area.s similarity index 100% rename from libc/musl/src/thread/powerpc/__set_thread_area.s rename to lib/libc/musl/src/thread/powerpc/__set_thread_area.s diff --git a/libc/musl/src/thread/powerpc/__unmapself.s b/lib/libc/musl/src/thread/powerpc/__unmapself.s similarity index 100% rename from libc/musl/src/thread/powerpc/__unmapself.s rename to lib/libc/musl/src/thread/powerpc/__unmapself.s diff --git a/libc/musl/src/thread/powerpc/clone.s b/lib/libc/musl/src/thread/powerpc/clone.s similarity index 100% rename from libc/musl/src/thread/powerpc/clone.s rename to lib/libc/musl/src/thread/powerpc/clone.s diff --git a/libc/musl/src/thread/powerpc/syscall_cp.s b/lib/libc/musl/src/thread/powerpc/syscall_cp.s similarity index 100% rename from libc/musl/src/thread/powerpc/syscall_cp.s rename to lib/libc/musl/src/thread/powerpc/syscall_cp.s diff --git a/libc/musl/src/thread/powerpc64/__set_thread_area.s b/lib/libc/musl/src/thread/powerpc64/__set_thread_area.s similarity index 100% rename from libc/musl/src/thread/powerpc64/__set_thread_area.s rename to lib/libc/musl/src/thread/powerpc64/__set_thread_area.s diff --git a/libc/musl/src/thread/powerpc64/__unmapself.s b/lib/libc/musl/src/thread/powerpc64/__unmapself.s similarity index 100% rename from libc/musl/src/thread/powerpc64/__unmapself.s rename to lib/libc/musl/src/thread/powerpc64/__unmapself.s diff --git a/libc/musl/src/thread/powerpc64/clone.s b/lib/libc/musl/src/thread/powerpc64/clone.s similarity index 100% rename from libc/musl/src/thread/powerpc64/clone.s rename to lib/libc/musl/src/thread/powerpc64/clone.s diff --git a/libc/musl/src/thread/powerpc64/syscall_cp.s b/lib/libc/musl/src/thread/powerpc64/syscall_cp.s similarity index 100% rename from libc/musl/src/thread/powerpc64/syscall_cp.s rename to lib/libc/musl/src/thread/powerpc64/syscall_cp.s diff --git a/libc/musl/src/thread/pthread_atfork.c b/lib/libc/musl/src/thread/pthread_atfork.c similarity index 100% rename from libc/musl/src/thread/pthread_atfork.c rename to lib/libc/musl/src/thread/pthread_atfork.c diff --git a/libc/musl/src/thread/pthread_attr_destroy.c b/lib/libc/musl/src/thread/pthread_attr_destroy.c similarity index 100% rename from libc/musl/src/thread/pthread_attr_destroy.c rename to lib/libc/musl/src/thread/pthread_attr_destroy.c diff --git a/libc/musl/src/thread/pthread_attr_get.c b/lib/libc/musl/src/thread/pthread_attr_get.c similarity index 100% rename from libc/musl/src/thread/pthread_attr_get.c rename to lib/libc/musl/src/thread/pthread_attr_get.c diff --git a/libc/musl/src/thread/pthread_attr_init.c b/lib/libc/musl/src/thread/pthread_attr_init.c similarity index 100% rename from libc/musl/src/thread/pthread_attr_init.c rename to lib/libc/musl/src/thread/pthread_attr_init.c diff --git a/libc/musl/src/thread/pthread_attr_setdetachstate.c b/lib/libc/musl/src/thread/pthread_attr_setdetachstate.c similarity index 100% rename from libc/musl/src/thread/pthread_attr_setdetachstate.c rename to lib/libc/musl/src/thread/pthread_attr_setdetachstate.c diff --git a/libc/musl/src/thread/pthread_attr_setguardsize.c b/lib/libc/musl/src/thread/pthread_attr_setguardsize.c similarity index 100% rename from libc/musl/src/thread/pthread_attr_setguardsize.c rename to lib/libc/musl/src/thread/pthread_attr_setguardsize.c diff --git a/libc/musl/src/thread/pthread_attr_setinheritsched.c b/lib/libc/musl/src/thread/pthread_attr_setinheritsched.c similarity index 100% rename from libc/musl/src/thread/pthread_attr_setinheritsched.c rename to lib/libc/musl/src/thread/pthread_attr_setinheritsched.c diff --git a/libc/musl/src/thread/pthread_attr_setschedparam.c b/lib/libc/musl/src/thread/pthread_attr_setschedparam.c similarity index 100% rename from libc/musl/src/thread/pthread_attr_setschedparam.c rename to lib/libc/musl/src/thread/pthread_attr_setschedparam.c diff --git a/libc/musl/src/thread/pthread_attr_setschedpolicy.c b/lib/libc/musl/src/thread/pthread_attr_setschedpolicy.c similarity index 100% rename from libc/musl/src/thread/pthread_attr_setschedpolicy.c rename to lib/libc/musl/src/thread/pthread_attr_setschedpolicy.c diff --git a/libc/musl/src/thread/pthread_attr_setscope.c b/lib/libc/musl/src/thread/pthread_attr_setscope.c similarity index 100% rename from libc/musl/src/thread/pthread_attr_setscope.c rename to lib/libc/musl/src/thread/pthread_attr_setscope.c diff --git a/libc/musl/src/thread/pthread_attr_setstack.c b/lib/libc/musl/src/thread/pthread_attr_setstack.c similarity index 100% rename from libc/musl/src/thread/pthread_attr_setstack.c rename to lib/libc/musl/src/thread/pthread_attr_setstack.c diff --git a/libc/musl/src/thread/pthread_attr_setstacksize.c b/lib/libc/musl/src/thread/pthread_attr_setstacksize.c similarity index 100% rename from libc/musl/src/thread/pthread_attr_setstacksize.c rename to lib/libc/musl/src/thread/pthread_attr_setstacksize.c diff --git a/libc/musl/src/thread/pthread_barrier_destroy.c b/lib/libc/musl/src/thread/pthread_barrier_destroy.c similarity index 100% rename from libc/musl/src/thread/pthread_barrier_destroy.c rename to lib/libc/musl/src/thread/pthread_barrier_destroy.c diff --git a/libc/musl/src/thread/pthread_barrier_init.c b/lib/libc/musl/src/thread/pthread_barrier_init.c similarity index 100% rename from libc/musl/src/thread/pthread_barrier_init.c rename to lib/libc/musl/src/thread/pthread_barrier_init.c diff --git a/libc/musl/src/thread/pthread_barrier_wait.c b/lib/libc/musl/src/thread/pthread_barrier_wait.c similarity index 100% rename from libc/musl/src/thread/pthread_barrier_wait.c rename to lib/libc/musl/src/thread/pthread_barrier_wait.c diff --git a/libc/musl/src/thread/pthread_barrierattr_destroy.c b/lib/libc/musl/src/thread/pthread_barrierattr_destroy.c similarity index 100% rename from libc/musl/src/thread/pthread_barrierattr_destroy.c rename to lib/libc/musl/src/thread/pthread_barrierattr_destroy.c diff --git a/libc/musl/src/thread/pthread_barrierattr_init.c b/lib/libc/musl/src/thread/pthread_barrierattr_init.c similarity index 100% rename from libc/musl/src/thread/pthread_barrierattr_init.c rename to lib/libc/musl/src/thread/pthread_barrierattr_init.c diff --git a/libc/musl/src/thread/pthread_barrierattr_setpshared.c b/lib/libc/musl/src/thread/pthread_barrierattr_setpshared.c similarity index 100% rename from libc/musl/src/thread/pthread_barrierattr_setpshared.c rename to lib/libc/musl/src/thread/pthread_barrierattr_setpshared.c diff --git a/libc/musl/src/thread/pthread_cancel.c b/lib/libc/musl/src/thread/pthread_cancel.c similarity index 100% rename from libc/musl/src/thread/pthread_cancel.c rename to lib/libc/musl/src/thread/pthread_cancel.c diff --git a/libc/musl/src/thread/pthread_cleanup_push.c b/lib/libc/musl/src/thread/pthread_cleanup_push.c similarity index 100% rename from libc/musl/src/thread/pthread_cleanup_push.c rename to lib/libc/musl/src/thread/pthread_cleanup_push.c diff --git a/libc/musl/src/thread/pthread_cond_broadcast.c b/lib/libc/musl/src/thread/pthread_cond_broadcast.c similarity index 100% rename from libc/musl/src/thread/pthread_cond_broadcast.c rename to lib/libc/musl/src/thread/pthread_cond_broadcast.c diff --git a/libc/musl/src/thread/pthread_cond_destroy.c b/lib/libc/musl/src/thread/pthread_cond_destroy.c similarity index 100% rename from libc/musl/src/thread/pthread_cond_destroy.c rename to lib/libc/musl/src/thread/pthread_cond_destroy.c diff --git a/libc/musl/src/thread/pthread_cond_init.c b/lib/libc/musl/src/thread/pthread_cond_init.c similarity index 100% rename from libc/musl/src/thread/pthread_cond_init.c rename to lib/libc/musl/src/thread/pthread_cond_init.c diff --git a/libc/musl/src/thread/pthread_cond_signal.c b/lib/libc/musl/src/thread/pthread_cond_signal.c similarity index 100% rename from libc/musl/src/thread/pthread_cond_signal.c rename to lib/libc/musl/src/thread/pthread_cond_signal.c diff --git a/libc/musl/src/thread/pthread_cond_timedwait.c b/lib/libc/musl/src/thread/pthread_cond_timedwait.c similarity index 100% rename from libc/musl/src/thread/pthread_cond_timedwait.c rename to lib/libc/musl/src/thread/pthread_cond_timedwait.c diff --git a/libc/musl/src/thread/pthread_cond_wait.c b/lib/libc/musl/src/thread/pthread_cond_wait.c similarity index 100% rename from libc/musl/src/thread/pthread_cond_wait.c rename to lib/libc/musl/src/thread/pthread_cond_wait.c diff --git a/libc/musl/src/thread/pthread_condattr_destroy.c b/lib/libc/musl/src/thread/pthread_condattr_destroy.c similarity index 100% rename from libc/musl/src/thread/pthread_condattr_destroy.c rename to lib/libc/musl/src/thread/pthread_condattr_destroy.c diff --git a/libc/musl/src/thread/pthread_condattr_init.c b/lib/libc/musl/src/thread/pthread_condattr_init.c similarity index 100% rename from libc/musl/src/thread/pthread_condattr_init.c rename to lib/libc/musl/src/thread/pthread_condattr_init.c diff --git a/libc/musl/src/thread/pthread_condattr_setclock.c b/lib/libc/musl/src/thread/pthread_condattr_setclock.c similarity index 100% rename from libc/musl/src/thread/pthread_condattr_setclock.c rename to lib/libc/musl/src/thread/pthread_condattr_setclock.c diff --git a/libc/musl/src/thread/pthread_condattr_setpshared.c b/lib/libc/musl/src/thread/pthread_condattr_setpshared.c similarity index 100% rename from libc/musl/src/thread/pthread_condattr_setpshared.c rename to lib/libc/musl/src/thread/pthread_condattr_setpshared.c diff --git a/libc/musl/src/thread/pthread_create.c b/lib/libc/musl/src/thread/pthread_create.c similarity index 100% rename from libc/musl/src/thread/pthread_create.c rename to lib/libc/musl/src/thread/pthread_create.c diff --git a/libc/musl/src/thread/pthread_detach.c b/lib/libc/musl/src/thread/pthread_detach.c similarity index 100% rename from libc/musl/src/thread/pthread_detach.c rename to lib/libc/musl/src/thread/pthread_detach.c diff --git a/libc/musl/src/thread/pthread_equal.c b/lib/libc/musl/src/thread/pthread_equal.c similarity index 100% rename from libc/musl/src/thread/pthread_equal.c rename to lib/libc/musl/src/thread/pthread_equal.c diff --git a/libc/musl/src/thread/pthread_getattr_np.c b/lib/libc/musl/src/thread/pthread_getattr_np.c similarity index 100% rename from libc/musl/src/thread/pthread_getattr_np.c rename to lib/libc/musl/src/thread/pthread_getattr_np.c diff --git a/libc/musl/src/thread/pthread_getconcurrency.c b/lib/libc/musl/src/thread/pthread_getconcurrency.c similarity index 100% rename from libc/musl/src/thread/pthread_getconcurrency.c rename to lib/libc/musl/src/thread/pthread_getconcurrency.c diff --git a/libc/musl/src/thread/pthread_getcpuclockid.c b/lib/libc/musl/src/thread/pthread_getcpuclockid.c similarity index 100% rename from libc/musl/src/thread/pthread_getcpuclockid.c rename to lib/libc/musl/src/thread/pthread_getcpuclockid.c diff --git a/libc/musl/src/thread/pthread_getschedparam.c b/lib/libc/musl/src/thread/pthread_getschedparam.c similarity index 100% rename from libc/musl/src/thread/pthread_getschedparam.c rename to lib/libc/musl/src/thread/pthread_getschedparam.c diff --git a/libc/musl/src/thread/pthread_getspecific.c b/lib/libc/musl/src/thread/pthread_getspecific.c similarity index 100% rename from libc/musl/src/thread/pthread_getspecific.c rename to lib/libc/musl/src/thread/pthread_getspecific.c diff --git a/libc/musl/src/thread/pthread_join.c b/lib/libc/musl/src/thread/pthread_join.c similarity index 100% rename from libc/musl/src/thread/pthread_join.c rename to lib/libc/musl/src/thread/pthread_join.c diff --git a/libc/musl/src/thread/pthread_key_create.c b/lib/libc/musl/src/thread/pthread_key_create.c similarity index 100% rename from libc/musl/src/thread/pthread_key_create.c rename to lib/libc/musl/src/thread/pthread_key_create.c diff --git a/libc/musl/src/thread/pthread_key_delete.c b/lib/libc/musl/src/thread/pthread_key_delete.c similarity index 100% rename from libc/musl/src/thread/pthread_key_delete.c rename to lib/libc/musl/src/thread/pthread_key_delete.c diff --git a/libc/musl/src/thread/pthread_kill.c b/lib/libc/musl/src/thread/pthread_kill.c similarity index 100% rename from libc/musl/src/thread/pthread_kill.c rename to lib/libc/musl/src/thread/pthread_kill.c diff --git a/libc/musl/src/thread/pthread_mutex_consistent.c b/lib/libc/musl/src/thread/pthread_mutex_consistent.c similarity index 100% rename from libc/musl/src/thread/pthread_mutex_consistent.c rename to lib/libc/musl/src/thread/pthread_mutex_consistent.c diff --git a/libc/musl/src/thread/pthread_mutex_destroy.c b/lib/libc/musl/src/thread/pthread_mutex_destroy.c similarity index 100% rename from libc/musl/src/thread/pthread_mutex_destroy.c rename to lib/libc/musl/src/thread/pthread_mutex_destroy.c diff --git a/libc/musl/src/thread/pthread_mutex_getprioceiling.c b/lib/libc/musl/src/thread/pthread_mutex_getprioceiling.c similarity index 100% rename from libc/musl/src/thread/pthread_mutex_getprioceiling.c rename to lib/libc/musl/src/thread/pthread_mutex_getprioceiling.c diff --git a/libc/musl/src/thread/pthread_mutex_init.c b/lib/libc/musl/src/thread/pthread_mutex_init.c similarity index 100% rename from libc/musl/src/thread/pthread_mutex_init.c rename to lib/libc/musl/src/thread/pthread_mutex_init.c diff --git a/libc/musl/src/thread/pthread_mutex_lock.c b/lib/libc/musl/src/thread/pthread_mutex_lock.c similarity index 100% rename from libc/musl/src/thread/pthread_mutex_lock.c rename to lib/libc/musl/src/thread/pthread_mutex_lock.c diff --git a/libc/musl/src/thread/pthread_mutex_setprioceiling.c b/lib/libc/musl/src/thread/pthread_mutex_setprioceiling.c similarity index 100% rename from libc/musl/src/thread/pthread_mutex_setprioceiling.c rename to lib/libc/musl/src/thread/pthread_mutex_setprioceiling.c diff --git a/libc/musl/src/thread/pthread_mutex_timedlock.c b/lib/libc/musl/src/thread/pthread_mutex_timedlock.c similarity index 100% rename from libc/musl/src/thread/pthread_mutex_timedlock.c rename to lib/libc/musl/src/thread/pthread_mutex_timedlock.c diff --git a/libc/musl/src/thread/pthread_mutex_trylock.c b/lib/libc/musl/src/thread/pthread_mutex_trylock.c similarity index 100% rename from libc/musl/src/thread/pthread_mutex_trylock.c rename to lib/libc/musl/src/thread/pthread_mutex_trylock.c diff --git a/libc/musl/src/thread/pthread_mutex_unlock.c b/lib/libc/musl/src/thread/pthread_mutex_unlock.c similarity index 100% rename from libc/musl/src/thread/pthread_mutex_unlock.c rename to lib/libc/musl/src/thread/pthread_mutex_unlock.c diff --git a/libc/musl/src/thread/pthread_mutexattr_destroy.c b/lib/libc/musl/src/thread/pthread_mutexattr_destroy.c similarity index 100% rename from libc/musl/src/thread/pthread_mutexattr_destroy.c rename to lib/libc/musl/src/thread/pthread_mutexattr_destroy.c diff --git a/libc/musl/src/thread/pthread_mutexattr_init.c b/lib/libc/musl/src/thread/pthread_mutexattr_init.c similarity index 100% rename from libc/musl/src/thread/pthread_mutexattr_init.c rename to lib/libc/musl/src/thread/pthread_mutexattr_init.c diff --git a/libc/musl/src/thread/pthread_mutexattr_setprotocol.c b/lib/libc/musl/src/thread/pthread_mutexattr_setprotocol.c similarity index 100% rename from libc/musl/src/thread/pthread_mutexattr_setprotocol.c rename to lib/libc/musl/src/thread/pthread_mutexattr_setprotocol.c diff --git a/libc/musl/src/thread/pthread_mutexattr_setpshared.c b/lib/libc/musl/src/thread/pthread_mutexattr_setpshared.c similarity index 100% rename from libc/musl/src/thread/pthread_mutexattr_setpshared.c rename to lib/libc/musl/src/thread/pthread_mutexattr_setpshared.c diff --git a/libc/musl/src/thread/pthread_mutexattr_setrobust.c b/lib/libc/musl/src/thread/pthread_mutexattr_setrobust.c similarity index 100% rename from libc/musl/src/thread/pthread_mutexattr_setrobust.c rename to lib/libc/musl/src/thread/pthread_mutexattr_setrobust.c diff --git a/libc/musl/src/thread/pthread_mutexattr_settype.c b/lib/libc/musl/src/thread/pthread_mutexattr_settype.c similarity index 100% rename from libc/musl/src/thread/pthread_mutexattr_settype.c rename to lib/libc/musl/src/thread/pthread_mutexattr_settype.c diff --git a/libc/musl/src/thread/pthread_once.c b/lib/libc/musl/src/thread/pthread_once.c similarity index 100% rename from libc/musl/src/thread/pthread_once.c rename to lib/libc/musl/src/thread/pthread_once.c diff --git a/libc/musl/src/thread/pthread_rwlock_destroy.c b/lib/libc/musl/src/thread/pthread_rwlock_destroy.c similarity index 100% rename from libc/musl/src/thread/pthread_rwlock_destroy.c rename to lib/libc/musl/src/thread/pthread_rwlock_destroy.c diff --git a/libc/musl/src/thread/pthread_rwlock_init.c b/lib/libc/musl/src/thread/pthread_rwlock_init.c similarity index 100% rename from libc/musl/src/thread/pthread_rwlock_init.c rename to lib/libc/musl/src/thread/pthread_rwlock_init.c diff --git a/libc/musl/src/thread/pthread_rwlock_rdlock.c b/lib/libc/musl/src/thread/pthread_rwlock_rdlock.c similarity index 100% rename from libc/musl/src/thread/pthread_rwlock_rdlock.c rename to lib/libc/musl/src/thread/pthread_rwlock_rdlock.c diff --git a/libc/musl/src/thread/pthread_rwlock_timedrdlock.c b/lib/libc/musl/src/thread/pthread_rwlock_timedrdlock.c similarity index 100% rename from libc/musl/src/thread/pthread_rwlock_timedrdlock.c rename to lib/libc/musl/src/thread/pthread_rwlock_timedrdlock.c diff --git a/libc/musl/src/thread/pthread_rwlock_timedwrlock.c b/lib/libc/musl/src/thread/pthread_rwlock_timedwrlock.c similarity index 100% rename from libc/musl/src/thread/pthread_rwlock_timedwrlock.c rename to lib/libc/musl/src/thread/pthread_rwlock_timedwrlock.c diff --git a/libc/musl/src/thread/pthread_rwlock_tryrdlock.c b/lib/libc/musl/src/thread/pthread_rwlock_tryrdlock.c similarity index 100% rename from libc/musl/src/thread/pthread_rwlock_tryrdlock.c rename to lib/libc/musl/src/thread/pthread_rwlock_tryrdlock.c diff --git a/libc/musl/src/thread/pthread_rwlock_trywrlock.c b/lib/libc/musl/src/thread/pthread_rwlock_trywrlock.c similarity index 100% rename from libc/musl/src/thread/pthread_rwlock_trywrlock.c rename to lib/libc/musl/src/thread/pthread_rwlock_trywrlock.c diff --git a/libc/musl/src/thread/pthread_rwlock_unlock.c b/lib/libc/musl/src/thread/pthread_rwlock_unlock.c similarity index 100% rename from libc/musl/src/thread/pthread_rwlock_unlock.c rename to lib/libc/musl/src/thread/pthread_rwlock_unlock.c diff --git a/libc/musl/src/thread/pthread_rwlock_wrlock.c b/lib/libc/musl/src/thread/pthread_rwlock_wrlock.c similarity index 100% rename from libc/musl/src/thread/pthread_rwlock_wrlock.c rename to lib/libc/musl/src/thread/pthread_rwlock_wrlock.c diff --git a/libc/musl/src/thread/pthread_rwlockattr_destroy.c b/lib/libc/musl/src/thread/pthread_rwlockattr_destroy.c similarity index 100% rename from libc/musl/src/thread/pthread_rwlockattr_destroy.c rename to lib/libc/musl/src/thread/pthread_rwlockattr_destroy.c diff --git a/libc/musl/src/thread/pthread_rwlockattr_init.c b/lib/libc/musl/src/thread/pthread_rwlockattr_init.c similarity index 100% rename from libc/musl/src/thread/pthread_rwlockattr_init.c rename to lib/libc/musl/src/thread/pthread_rwlockattr_init.c diff --git a/libc/musl/src/thread/pthread_rwlockattr_setpshared.c b/lib/libc/musl/src/thread/pthread_rwlockattr_setpshared.c similarity index 100% rename from libc/musl/src/thread/pthread_rwlockattr_setpshared.c rename to lib/libc/musl/src/thread/pthread_rwlockattr_setpshared.c diff --git a/libc/musl/src/thread/pthread_self.c b/lib/libc/musl/src/thread/pthread_self.c similarity index 100% rename from libc/musl/src/thread/pthread_self.c rename to lib/libc/musl/src/thread/pthread_self.c diff --git a/libc/musl/src/thread/pthread_setattr_default_np.c b/lib/libc/musl/src/thread/pthread_setattr_default_np.c similarity index 100% rename from libc/musl/src/thread/pthread_setattr_default_np.c rename to lib/libc/musl/src/thread/pthread_setattr_default_np.c diff --git a/libc/musl/src/thread/pthread_setcancelstate.c b/lib/libc/musl/src/thread/pthread_setcancelstate.c similarity index 100% rename from libc/musl/src/thread/pthread_setcancelstate.c rename to lib/libc/musl/src/thread/pthread_setcancelstate.c diff --git a/libc/musl/src/thread/pthread_setcanceltype.c b/lib/libc/musl/src/thread/pthread_setcanceltype.c similarity index 100% rename from libc/musl/src/thread/pthread_setcanceltype.c rename to lib/libc/musl/src/thread/pthread_setcanceltype.c diff --git a/libc/musl/src/thread/pthread_setconcurrency.c b/lib/libc/musl/src/thread/pthread_setconcurrency.c similarity index 100% rename from libc/musl/src/thread/pthread_setconcurrency.c rename to lib/libc/musl/src/thread/pthread_setconcurrency.c diff --git a/libc/musl/src/thread/pthread_setname_np.c b/lib/libc/musl/src/thread/pthread_setname_np.c similarity index 100% rename from libc/musl/src/thread/pthread_setname_np.c rename to lib/libc/musl/src/thread/pthread_setname_np.c diff --git a/libc/musl/src/thread/pthread_setschedparam.c b/lib/libc/musl/src/thread/pthread_setschedparam.c similarity index 100% rename from libc/musl/src/thread/pthread_setschedparam.c rename to lib/libc/musl/src/thread/pthread_setschedparam.c diff --git a/libc/musl/src/thread/pthread_setschedprio.c b/lib/libc/musl/src/thread/pthread_setschedprio.c similarity index 100% rename from libc/musl/src/thread/pthread_setschedprio.c rename to lib/libc/musl/src/thread/pthread_setschedprio.c diff --git a/libc/musl/src/thread/pthread_setspecific.c b/lib/libc/musl/src/thread/pthread_setspecific.c similarity index 100% rename from libc/musl/src/thread/pthread_setspecific.c rename to lib/libc/musl/src/thread/pthread_setspecific.c diff --git a/libc/musl/src/thread/pthread_sigmask.c b/lib/libc/musl/src/thread/pthread_sigmask.c similarity index 100% rename from libc/musl/src/thread/pthread_sigmask.c rename to lib/libc/musl/src/thread/pthread_sigmask.c diff --git a/libc/musl/src/thread/pthread_spin_destroy.c b/lib/libc/musl/src/thread/pthread_spin_destroy.c similarity index 100% rename from libc/musl/src/thread/pthread_spin_destroy.c rename to lib/libc/musl/src/thread/pthread_spin_destroy.c diff --git a/libc/musl/src/thread/pthread_spin_init.c b/lib/libc/musl/src/thread/pthread_spin_init.c similarity index 100% rename from libc/musl/src/thread/pthread_spin_init.c rename to lib/libc/musl/src/thread/pthread_spin_init.c diff --git a/libc/musl/src/thread/pthread_spin_lock.c b/lib/libc/musl/src/thread/pthread_spin_lock.c similarity index 100% rename from libc/musl/src/thread/pthread_spin_lock.c rename to lib/libc/musl/src/thread/pthread_spin_lock.c diff --git a/libc/musl/src/thread/pthread_spin_trylock.c b/lib/libc/musl/src/thread/pthread_spin_trylock.c similarity index 100% rename from libc/musl/src/thread/pthread_spin_trylock.c rename to lib/libc/musl/src/thread/pthread_spin_trylock.c diff --git a/libc/musl/src/thread/pthread_spin_unlock.c b/lib/libc/musl/src/thread/pthread_spin_unlock.c similarity index 100% rename from libc/musl/src/thread/pthread_spin_unlock.c rename to lib/libc/musl/src/thread/pthread_spin_unlock.c diff --git a/libc/musl/src/thread/pthread_testcancel.c b/lib/libc/musl/src/thread/pthread_testcancel.c similarity index 100% rename from libc/musl/src/thread/pthread_testcancel.c rename to lib/libc/musl/src/thread/pthread_testcancel.c diff --git a/libc/musl/src/thread/s390x/__set_thread_area.s b/lib/libc/musl/src/thread/s390x/__set_thread_area.s similarity index 100% rename from libc/musl/src/thread/s390x/__set_thread_area.s rename to lib/libc/musl/src/thread/s390x/__set_thread_area.s diff --git a/libc/musl/src/thread/s390x/__tls_get_offset.s b/lib/libc/musl/src/thread/s390x/__tls_get_offset.s similarity index 100% rename from libc/musl/src/thread/s390x/__tls_get_offset.s rename to lib/libc/musl/src/thread/s390x/__tls_get_offset.s diff --git a/libc/musl/src/thread/s390x/__unmapself.s b/lib/libc/musl/src/thread/s390x/__unmapself.s similarity index 100% rename from libc/musl/src/thread/s390x/__unmapself.s rename to lib/libc/musl/src/thread/s390x/__unmapself.s diff --git a/libc/musl/src/thread/s390x/clone.s b/lib/libc/musl/src/thread/s390x/clone.s similarity index 100% rename from libc/musl/src/thread/s390x/clone.s rename to lib/libc/musl/src/thread/s390x/clone.s diff --git a/libc/musl/src/thread/s390x/syscall_cp.s b/lib/libc/musl/src/thread/s390x/syscall_cp.s similarity index 100% rename from libc/musl/src/thread/s390x/syscall_cp.s rename to lib/libc/musl/src/thread/s390x/syscall_cp.s diff --git a/libc/musl/src/thread/sem_destroy.c b/lib/libc/musl/src/thread/sem_destroy.c similarity index 100% rename from libc/musl/src/thread/sem_destroy.c rename to lib/libc/musl/src/thread/sem_destroy.c diff --git a/libc/musl/src/thread/sem_getvalue.c b/lib/libc/musl/src/thread/sem_getvalue.c similarity index 100% rename from libc/musl/src/thread/sem_getvalue.c rename to lib/libc/musl/src/thread/sem_getvalue.c diff --git a/libc/musl/src/thread/sem_init.c b/lib/libc/musl/src/thread/sem_init.c similarity index 100% rename from libc/musl/src/thread/sem_init.c rename to lib/libc/musl/src/thread/sem_init.c diff --git a/libc/musl/src/thread/sem_open.c b/lib/libc/musl/src/thread/sem_open.c similarity index 100% rename from libc/musl/src/thread/sem_open.c rename to lib/libc/musl/src/thread/sem_open.c diff --git a/libc/musl/src/thread/sem_post.c b/lib/libc/musl/src/thread/sem_post.c similarity index 100% rename from libc/musl/src/thread/sem_post.c rename to lib/libc/musl/src/thread/sem_post.c diff --git a/libc/musl/src/thread/sem_timedwait.c b/lib/libc/musl/src/thread/sem_timedwait.c similarity index 100% rename from libc/musl/src/thread/sem_timedwait.c rename to lib/libc/musl/src/thread/sem_timedwait.c diff --git a/libc/musl/src/thread/sem_trywait.c b/lib/libc/musl/src/thread/sem_trywait.c similarity index 100% rename from libc/musl/src/thread/sem_trywait.c rename to lib/libc/musl/src/thread/sem_trywait.c diff --git a/libc/musl/src/thread/sem_unlink.c b/lib/libc/musl/src/thread/sem_unlink.c similarity index 100% rename from libc/musl/src/thread/sem_unlink.c rename to lib/libc/musl/src/thread/sem_unlink.c diff --git a/libc/musl/src/thread/sem_wait.c b/lib/libc/musl/src/thread/sem_wait.c similarity index 100% rename from libc/musl/src/thread/sem_wait.c rename to lib/libc/musl/src/thread/sem_wait.c diff --git a/libc/musl/src/thread/sh/__set_thread_area.c b/lib/libc/musl/src/thread/sh/__set_thread_area.c similarity index 100% rename from libc/musl/src/thread/sh/__set_thread_area.c rename to lib/libc/musl/src/thread/sh/__set_thread_area.c diff --git a/libc/musl/src/thread/sh/__unmapself.c b/lib/libc/musl/src/thread/sh/__unmapself.c similarity index 100% rename from libc/musl/src/thread/sh/__unmapself.c rename to lib/libc/musl/src/thread/sh/__unmapself.c diff --git a/libc/musl/src/thread/sh/__unmapself_mmu.s b/lib/libc/musl/src/thread/sh/__unmapself_mmu.s similarity index 100% rename from libc/musl/src/thread/sh/__unmapself_mmu.s rename to lib/libc/musl/src/thread/sh/__unmapself_mmu.s diff --git a/libc/musl/src/thread/sh/atomics.s b/lib/libc/musl/src/thread/sh/atomics.s similarity index 100% rename from libc/musl/src/thread/sh/atomics.s rename to lib/libc/musl/src/thread/sh/atomics.s diff --git a/libc/musl/src/thread/sh/clone.s b/lib/libc/musl/src/thread/sh/clone.s similarity index 100% rename from libc/musl/src/thread/sh/clone.s rename to lib/libc/musl/src/thread/sh/clone.s diff --git a/libc/musl/src/thread/sh/syscall_cp.s b/lib/libc/musl/src/thread/sh/syscall_cp.s similarity index 100% rename from libc/musl/src/thread/sh/syscall_cp.s rename to lib/libc/musl/src/thread/sh/syscall_cp.s diff --git a/libc/musl/src/thread/synccall.c b/lib/libc/musl/src/thread/synccall.c similarity index 100% rename from libc/musl/src/thread/synccall.c rename to lib/libc/musl/src/thread/synccall.c diff --git a/libc/musl/src/thread/syscall_cp.c b/lib/libc/musl/src/thread/syscall_cp.c similarity index 100% rename from libc/musl/src/thread/syscall_cp.c rename to lib/libc/musl/src/thread/syscall_cp.c diff --git a/libc/musl/src/thread/thrd_create.c b/lib/libc/musl/src/thread/thrd_create.c similarity index 100% rename from libc/musl/src/thread/thrd_create.c rename to lib/libc/musl/src/thread/thrd_create.c diff --git a/libc/musl/src/thread/thrd_exit.c b/lib/libc/musl/src/thread/thrd_exit.c similarity index 100% rename from libc/musl/src/thread/thrd_exit.c rename to lib/libc/musl/src/thread/thrd_exit.c diff --git a/libc/musl/src/thread/thrd_join.c b/lib/libc/musl/src/thread/thrd_join.c similarity index 100% rename from libc/musl/src/thread/thrd_join.c rename to lib/libc/musl/src/thread/thrd_join.c diff --git a/libc/musl/src/thread/thrd_sleep.c b/lib/libc/musl/src/thread/thrd_sleep.c similarity index 100% rename from libc/musl/src/thread/thrd_sleep.c rename to lib/libc/musl/src/thread/thrd_sleep.c diff --git a/libc/musl/src/thread/thrd_yield.c b/lib/libc/musl/src/thread/thrd_yield.c similarity index 100% rename from libc/musl/src/thread/thrd_yield.c rename to lib/libc/musl/src/thread/thrd_yield.c diff --git a/libc/musl/src/thread/tls.c b/lib/libc/musl/src/thread/tls.c similarity index 100% rename from libc/musl/src/thread/tls.c rename to lib/libc/musl/src/thread/tls.c diff --git a/libc/musl/src/thread/tss_create.c b/lib/libc/musl/src/thread/tss_create.c similarity index 100% rename from libc/musl/src/thread/tss_create.c rename to lib/libc/musl/src/thread/tss_create.c diff --git a/libc/musl/src/thread/tss_delete.c b/lib/libc/musl/src/thread/tss_delete.c similarity index 100% rename from libc/musl/src/thread/tss_delete.c rename to lib/libc/musl/src/thread/tss_delete.c diff --git a/libc/musl/src/thread/tss_set.c b/lib/libc/musl/src/thread/tss_set.c similarity index 100% rename from libc/musl/src/thread/tss_set.c rename to lib/libc/musl/src/thread/tss_set.c diff --git a/libc/musl/src/thread/vmlock.c b/lib/libc/musl/src/thread/vmlock.c similarity index 100% rename from libc/musl/src/thread/vmlock.c rename to lib/libc/musl/src/thread/vmlock.c diff --git a/libc/musl/src/thread/x32/__set_thread_area.s b/lib/libc/musl/src/thread/x32/__set_thread_area.s similarity index 100% rename from libc/musl/src/thread/x32/__set_thread_area.s rename to lib/libc/musl/src/thread/x32/__set_thread_area.s diff --git a/libc/musl/src/thread/x32/__unmapself.s b/lib/libc/musl/src/thread/x32/__unmapself.s similarity index 100% rename from libc/musl/src/thread/x32/__unmapself.s rename to lib/libc/musl/src/thread/x32/__unmapself.s diff --git a/libc/musl/src/thread/x32/clone.s b/lib/libc/musl/src/thread/x32/clone.s similarity index 100% rename from libc/musl/src/thread/x32/clone.s rename to lib/libc/musl/src/thread/x32/clone.s diff --git a/libc/musl/src/thread/x32/syscall_cp.s b/lib/libc/musl/src/thread/x32/syscall_cp.s similarity index 100% rename from libc/musl/src/thread/x32/syscall_cp.s rename to lib/libc/musl/src/thread/x32/syscall_cp.s diff --git a/libc/musl/src/thread/x32/syscall_cp_fixup.c b/lib/libc/musl/src/thread/x32/syscall_cp_fixup.c similarity index 100% rename from libc/musl/src/thread/x32/syscall_cp_fixup.c rename to lib/libc/musl/src/thread/x32/syscall_cp_fixup.c diff --git a/libc/musl/src/thread/x86_64/__set_thread_area.s b/lib/libc/musl/src/thread/x86_64/__set_thread_area.s similarity index 100% rename from libc/musl/src/thread/x86_64/__set_thread_area.s rename to lib/libc/musl/src/thread/x86_64/__set_thread_area.s diff --git a/libc/musl/src/thread/x86_64/__unmapself.s b/lib/libc/musl/src/thread/x86_64/__unmapself.s similarity index 100% rename from libc/musl/src/thread/x86_64/__unmapself.s rename to lib/libc/musl/src/thread/x86_64/__unmapself.s diff --git a/libc/musl/src/thread/x86_64/clone.s b/lib/libc/musl/src/thread/x86_64/clone.s similarity index 100% rename from libc/musl/src/thread/x86_64/clone.s rename to lib/libc/musl/src/thread/x86_64/clone.s diff --git a/libc/musl/src/thread/x86_64/syscall_cp.s b/lib/libc/musl/src/thread/x86_64/syscall_cp.s similarity index 100% rename from libc/musl/src/thread/x86_64/syscall_cp.s rename to lib/libc/musl/src/thread/x86_64/syscall_cp.s diff --git a/libc/musl/src/time/__map_file.c b/lib/libc/musl/src/time/__map_file.c similarity index 100% rename from libc/musl/src/time/__map_file.c rename to lib/libc/musl/src/time/__map_file.c diff --git a/libc/musl/src/time/__month_to_secs.c b/lib/libc/musl/src/time/__month_to_secs.c similarity index 100% rename from libc/musl/src/time/__month_to_secs.c rename to lib/libc/musl/src/time/__month_to_secs.c diff --git a/libc/musl/src/time/__secs_to_tm.c b/lib/libc/musl/src/time/__secs_to_tm.c similarity index 100% rename from libc/musl/src/time/__secs_to_tm.c rename to lib/libc/musl/src/time/__secs_to_tm.c diff --git a/libc/musl/src/time/__tm_to_secs.c b/lib/libc/musl/src/time/__tm_to_secs.c similarity index 100% rename from libc/musl/src/time/__tm_to_secs.c rename to lib/libc/musl/src/time/__tm_to_secs.c diff --git a/libc/musl/src/time/__tz.c b/lib/libc/musl/src/time/__tz.c similarity index 100% rename from libc/musl/src/time/__tz.c rename to lib/libc/musl/src/time/__tz.c diff --git a/libc/musl/src/time/__year_to_secs.c b/lib/libc/musl/src/time/__year_to_secs.c similarity index 100% rename from libc/musl/src/time/__year_to_secs.c rename to lib/libc/musl/src/time/__year_to_secs.c diff --git a/libc/musl/src/time/asctime.c b/lib/libc/musl/src/time/asctime.c similarity index 100% rename from libc/musl/src/time/asctime.c rename to lib/libc/musl/src/time/asctime.c diff --git a/libc/musl/src/time/asctime_r.c b/lib/libc/musl/src/time/asctime_r.c similarity index 100% rename from libc/musl/src/time/asctime_r.c rename to lib/libc/musl/src/time/asctime_r.c diff --git a/libc/musl/src/time/clock.c b/lib/libc/musl/src/time/clock.c similarity index 100% rename from libc/musl/src/time/clock.c rename to lib/libc/musl/src/time/clock.c diff --git a/libc/musl/src/time/clock_getcpuclockid.c b/lib/libc/musl/src/time/clock_getcpuclockid.c similarity index 100% rename from libc/musl/src/time/clock_getcpuclockid.c rename to lib/libc/musl/src/time/clock_getcpuclockid.c diff --git a/libc/musl/src/time/clock_getres.c b/lib/libc/musl/src/time/clock_getres.c similarity index 100% rename from libc/musl/src/time/clock_getres.c rename to lib/libc/musl/src/time/clock_getres.c diff --git a/libc/musl/src/time/clock_gettime.c b/lib/libc/musl/src/time/clock_gettime.c similarity index 100% rename from libc/musl/src/time/clock_gettime.c rename to lib/libc/musl/src/time/clock_gettime.c diff --git a/libc/musl/src/time/clock_nanosleep.c b/lib/libc/musl/src/time/clock_nanosleep.c similarity index 100% rename from libc/musl/src/time/clock_nanosleep.c rename to lib/libc/musl/src/time/clock_nanosleep.c diff --git a/libc/musl/src/time/clock_settime.c b/lib/libc/musl/src/time/clock_settime.c similarity index 100% rename from libc/musl/src/time/clock_settime.c rename to lib/libc/musl/src/time/clock_settime.c diff --git a/libc/musl/src/time/ctime.c b/lib/libc/musl/src/time/ctime.c similarity index 100% rename from libc/musl/src/time/ctime.c rename to lib/libc/musl/src/time/ctime.c diff --git a/libc/musl/src/time/ctime_r.c b/lib/libc/musl/src/time/ctime_r.c similarity index 100% rename from libc/musl/src/time/ctime_r.c rename to lib/libc/musl/src/time/ctime_r.c diff --git a/libc/musl/src/time/difftime.c b/lib/libc/musl/src/time/difftime.c similarity index 100% rename from libc/musl/src/time/difftime.c rename to lib/libc/musl/src/time/difftime.c diff --git a/libc/musl/src/time/ftime.c b/lib/libc/musl/src/time/ftime.c similarity index 100% rename from libc/musl/src/time/ftime.c rename to lib/libc/musl/src/time/ftime.c diff --git a/libc/musl/src/time/getdate.c b/lib/libc/musl/src/time/getdate.c similarity index 100% rename from libc/musl/src/time/getdate.c rename to lib/libc/musl/src/time/getdate.c diff --git a/libc/musl/src/time/gettimeofday.c b/lib/libc/musl/src/time/gettimeofday.c similarity index 100% rename from libc/musl/src/time/gettimeofday.c rename to lib/libc/musl/src/time/gettimeofday.c diff --git a/libc/musl/src/time/gmtime.c b/lib/libc/musl/src/time/gmtime.c similarity index 100% rename from libc/musl/src/time/gmtime.c rename to lib/libc/musl/src/time/gmtime.c diff --git a/libc/musl/src/time/gmtime_r.c b/lib/libc/musl/src/time/gmtime_r.c similarity index 100% rename from libc/musl/src/time/gmtime_r.c rename to lib/libc/musl/src/time/gmtime_r.c diff --git a/libc/musl/src/time/localtime.c b/lib/libc/musl/src/time/localtime.c similarity index 100% rename from libc/musl/src/time/localtime.c rename to lib/libc/musl/src/time/localtime.c diff --git a/libc/musl/src/time/localtime_r.c b/lib/libc/musl/src/time/localtime_r.c similarity index 100% rename from libc/musl/src/time/localtime_r.c rename to lib/libc/musl/src/time/localtime_r.c diff --git a/libc/musl/src/time/mktime.c b/lib/libc/musl/src/time/mktime.c similarity index 100% rename from libc/musl/src/time/mktime.c rename to lib/libc/musl/src/time/mktime.c diff --git a/libc/musl/src/time/nanosleep.c b/lib/libc/musl/src/time/nanosleep.c similarity index 100% rename from libc/musl/src/time/nanosleep.c rename to lib/libc/musl/src/time/nanosleep.c diff --git a/libc/musl/src/time/strftime.c b/lib/libc/musl/src/time/strftime.c similarity index 100% rename from libc/musl/src/time/strftime.c rename to lib/libc/musl/src/time/strftime.c diff --git a/libc/musl/src/time/strptime.c b/lib/libc/musl/src/time/strptime.c similarity index 100% rename from libc/musl/src/time/strptime.c rename to lib/libc/musl/src/time/strptime.c diff --git a/libc/musl/src/time/time.c b/lib/libc/musl/src/time/time.c similarity index 100% rename from libc/musl/src/time/time.c rename to lib/libc/musl/src/time/time.c diff --git a/libc/musl/src/time/time_impl.h b/lib/libc/musl/src/time/time_impl.h similarity index 100% rename from libc/musl/src/time/time_impl.h rename to lib/libc/musl/src/time/time_impl.h diff --git a/libc/musl/src/time/timegm.c b/lib/libc/musl/src/time/timegm.c similarity index 100% rename from libc/musl/src/time/timegm.c rename to lib/libc/musl/src/time/timegm.c diff --git a/libc/musl/src/time/timer_create.c b/lib/libc/musl/src/time/timer_create.c similarity index 100% rename from libc/musl/src/time/timer_create.c rename to lib/libc/musl/src/time/timer_create.c diff --git a/libc/musl/src/time/timer_delete.c b/lib/libc/musl/src/time/timer_delete.c similarity index 100% rename from libc/musl/src/time/timer_delete.c rename to lib/libc/musl/src/time/timer_delete.c diff --git a/libc/musl/src/time/timer_getoverrun.c b/lib/libc/musl/src/time/timer_getoverrun.c similarity index 100% rename from libc/musl/src/time/timer_getoverrun.c rename to lib/libc/musl/src/time/timer_getoverrun.c diff --git a/libc/musl/src/time/timer_gettime.c b/lib/libc/musl/src/time/timer_gettime.c similarity index 100% rename from libc/musl/src/time/timer_gettime.c rename to lib/libc/musl/src/time/timer_gettime.c diff --git a/libc/musl/src/time/timer_settime.c b/lib/libc/musl/src/time/timer_settime.c similarity index 100% rename from libc/musl/src/time/timer_settime.c rename to lib/libc/musl/src/time/timer_settime.c diff --git a/libc/musl/src/time/times.c b/lib/libc/musl/src/time/times.c similarity index 100% rename from libc/musl/src/time/times.c rename to lib/libc/musl/src/time/times.c diff --git a/libc/musl/src/time/timespec_get.c b/lib/libc/musl/src/time/timespec_get.c similarity index 100% rename from libc/musl/src/time/timespec_get.c rename to lib/libc/musl/src/time/timespec_get.c diff --git a/libc/musl/src/time/utime.c b/lib/libc/musl/src/time/utime.c similarity index 100% rename from libc/musl/src/time/utime.c rename to lib/libc/musl/src/time/utime.c diff --git a/libc/musl/src/time/wcsftime.c b/lib/libc/musl/src/time/wcsftime.c similarity index 100% rename from libc/musl/src/time/wcsftime.c rename to lib/libc/musl/src/time/wcsftime.c diff --git a/libc/musl/src/unistd/_exit.c b/lib/libc/musl/src/unistd/_exit.c similarity index 100% rename from libc/musl/src/unistd/_exit.c rename to lib/libc/musl/src/unistd/_exit.c diff --git a/libc/musl/src/unistd/access.c b/lib/libc/musl/src/unistd/access.c similarity index 100% rename from libc/musl/src/unistd/access.c rename to lib/libc/musl/src/unistd/access.c diff --git a/libc/musl/src/unistd/acct.c b/lib/libc/musl/src/unistd/acct.c similarity index 100% rename from libc/musl/src/unistd/acct.c rename to lib/libc/musl/src/unistd/acct.c diff --git a/libc/musl/src/unistd/alarm.c b/lib/libc/musl/src/unistd/alarm.c similarity index 100% rename from libc/musl/src/unistd/alarm.c rename to lib/libc/musl/src/unistd/alarm.c diff --git a/libc/musl/src/unistd/chdir.c b/lib/libc/musl/src/unistd/chdir.c similarity index 100% rename from libc/musl/src/unistd/chdir.c rename to lib/libc/musl/src/unistd/chdir.c diff --git a/libc/musl/src/unistd/chown.c b/lib/libc/musl/src/unistd/chown.c similarity index 100% rename from libc/musl/src/unistd/chown.c rename to lib/libc/musl/src/unistd/chown.c diff --git a/libc/musl/src/unistd/close.c b/lib/libc/musl/src/unistd/close.c similarity index 100% rename from libc/musl/src/unistd/close.c rename to lib/libc/musl/src/unistd/close.c diff --git a/libc/musl/src/unistd/ctermid.c b/lib/libc/musl/src/unistd/ctermid.c similarity index 100% rename from libc/musl/src/unistd/ctermid.c rename to lib/libc/musl/src/unistd/ctermid.c diff --git a/libc/musl/src/unistd/dup.c b/lib/libc/musl/src/unistd/dup.c similarity index 100% rename from libc/musl/src/unistd/dup.c rename to lib/libc/musl/src/unistd/dup.c diff --git a/libc/musl/src/unistd/dup2.c b/lib/libc/musl/src/unistd/dup2.c similarity index 100% rename from libc/musl/src/unistd/dup2.c rename to lib/libc/musl/src/unistd/dup2.c diff --git a/libc/musl/src/unistd/dup3.c b/lib/libc/musl/src/unistd/dup3.c similarity index 100% rename from libc/musl/src/unistd/dup3.c rename to lib/libc/musl/src/unistd/dup3.c diff --git a/libc/musl/src/unistd/faccessat.c b/lib/libc/musl/src/unistd/faccessat.c similarity index 100% rename from libc/musl/src/unistd/faccessat.c rename to lib/libc/musl/src/unistd/faccessat.c diff --git a/libc/musl/src/unistd/fchdir.c b/lib/libc/musl/src/unistd/fchdir.c similarity index 100% rename from libc/musl/src/unistd/fchdir.c rename to lib/libc/musl/src/unistd/fchdir.c diff --git a/libc/musl/src/unistd/fchown.c b/lib/libc/musl/src/unistd/fchown.c similarity index 100% rename from libc/musl/src/unistd/fchown.c rename to lib/libc/musl/src/unistd/fchown.c diff --git a/libc/musl/src/unistd/fchownat.c b/lib/libc/musl/src/unistd/fchownat.c similarity index 100% rename from libc/musl/src/unistd/fchownat.c rename to lib/libc/musl/src/unistd/fchownat.c diff --git a/libc/musl/src/unistd/fdatasync.c b/lib/libc/musl/src/unistd/fdatasync.c similarity index 100% rename from libc/musl/src/unistd/fdatasync.c rename to lib/libc/musl/src/unistd/fdatasync.c diff --git a/libc/musl/src/unistd/fsync.c b/lib/libc/musl/src/unistd/fsync.c similarity index 100% rename from libc/musl/src/unistd/fsync.c rename to lib/libc/musl/src/unistd/fsync.c diff --git a/libc/musl/src/unistd/ftruncate.c b/lib/libc/musl/src/unistd/ftruncate.c similarity index 100% rename from libc/musl/src/unistd/ftruncate.c rename to lib/libc/musl/src/unistd/ftruncate.c diff --git a/libc/musl/src/unistd/getcwd.c b/lib/libc/musl/src/unistd/getcwd.c similarity index 100% rename from libc/musl/src/unistd/getcwd.c rename to lib/libc/musl/src/unistd/getcwd.c diff --git a/libc/musl/src/unistd/getegid.c b/lib/libc/musl/src/unistd/getegid.c similarity index 100% rename from libc/musl/src/unistd/getegid.c rename to lib/libc/musl/src/unistd/getegid.c diff --git a/libc/musl/src/unistd/geteuid.c b/lib/libc/musl/src/unistd/geteuid.c similarity index 100% rename from libc/musl/src/unistd/geteuid.c rename to lib/libc/musl/src/unistd/geteuid.c diff --git a/libc/musl/src/unistd/getgid.c b/lib/libc/musl/src/unistd/getgid.c similarity index 100% rename from libc/musl/src/unistd/getgid.c rename to lib/libc/musl/src/unistd/getgid.c diff --git a/libc/musl/src/unistd/getgroups.c b/lib/libc/musl/src/unistd/getgroups.c similarity index 100% rename from libc/musl/src/unistd/getgroups.c rename to lib/libc/musl/src/unistd/getgroups.c diff --git a/libc/musl/src/unistd/gethostname.c b/lib/libc/musl/src/unistd/gethostname.c similarity index 100% rename from libc/musl/src/unistd/gethostname.c rename to lib/libc/musl/src/unistd/gethostname.c diff --git a/libc/musl/src/unistd/getlogin.c b/lib/libc/musl/src/unistd/getlogin.c similarity index 100% rename from libc/musl/src/unistd/getlogin.c rename to lib/libc/musl/src/unistd/getlogin.c diff --git a/libc/musl/src/unistd/getlogin_r.c b/lib/libc/musl/src/unistd/getlogin_r.c similarity index 100% rename from libc/musl/src/unistd/getlogin_r.c rename to lib/libc/musl/src/unistd/getlogin_r.c diff --git a/libc/musl/src/unistd/getpgid.c b/lib/libc/musl/src/unistd/getpgid.c similarity index 100% rename from libc/musl/src/unistd/getpgid.c rename to lib/libc/musl/src/unistd/getpgid.c diff --git a/libc/musl/src/unistd/getpgrp.c b/lib/libc/musl/src/unistd/getpgrp.c similarity index 100% rename from libc/musl/src/unistd/getpgrp.c rename to lib/libc/musl/src/unistd/getpgrp.c diff --git a/libc/musl/src/unistd/getpid.c b/lib/libc/musl/src/unistd/getpid.c similarity index 100% rename from libc/musl/src/unistd/getpid.c rename to lib/libc/musl/src/unistd/getpid.c diff --git a/libc/musl/src/unistd/getppid.c b/lib/libc/musl/src/unistd/getppid.c similarity index 100% rename from libc/musl/src/unistd/getppid.c rename to lib/libc/musl/src/unistd/getppid.c diff --git a/libc/musl/src/unistd/getsid.c b/lib/libc/musl/src/unistd/getsid.c similarity index 100% rename from libc/musl/src/unistd/getsid.c rename to lib/libc/musl/src/unistd/getsid.c diff --git a/libc/musl/src/unistd/getuid.c b/lib/libc/musl/src/unistd/getuid.c similarity index 100% rename from libc/musl/src/unistd/getuid.c rename to lib/libc/musl/src/unistd/getuid.c diff --git a/libc/musl/src/unistd/isatty.c b/lib/libc/musl/src/unistd/isatty.c similarity index 100% rename from libc/musl/src/unistd/isatty.c rename to lib/libc/musl/src/unistd/isatty.c diff --git a/libc/musl/src/unistd/lchown.c b/lib/libc/musl/src/unistd/lchown.c similarity index 100% rename from libc/musl/src/unistd/lchown.c rename to lib/libc/musl/src/unistd/lchown.c diff --git a/libc/musl/src/unistd/link.c b/lib/libc/musl/src/unistd/link.c similarity index 100% rename from libc/musl/src/unistd/link.c rename to lib/libc/musl/src/unistd/link.c diff --git a/libc/musl/src/unistd/linkat.c b/lib/libc/musl/src/unistd/linkat.c similarity index 100% rename from libc/musl/src/unistd/linkat.c rename to lib/libc/musl/src/unistd/linkat.c diff --git a/libc/musl/src/unistd/lseek.c b/lib/libc/musl/src/unistd/lseek.c similarity index 100% rename from libc/musl/src/unistd/lseek.c rename to lib/libc/musl/src/unistd/lseek.c diff --git a/libc/musl/src/unistd/mips/pipe.s b/lib/libc/musl/src/unistd/mips/pipe.s similarity index 100% rename from libc/musl/src/unistd/mips/pipe.s rename to lib/libc/musl/src/unistd/mips/pipe.s diff --git a/libc/musl/src/unistd/mips64/pipe.s b/lib/libc/musl/src/unistd/mips64/pipe.s similarity index 100% rename from libc/musl/src/unistd/mips64/pipe.s rename to lib/libc/musl/src/unistd/mips64/pipe.s diff --git a/libc/musl/src/unistd/mipsn32/pipe.s b/lib/libc/musl/src/unistd/mipsn32/pipe.s similarity index 100% rename from libc/musl/src/unistd/mipsn32/pipe.s rename to lib/libc/musl/src/unistd/mipsn32/pipe.s diff --git a/libc/musl/src/unistd/nice.c b/lib/libc/musl/src/unistd/nice.c similarity index 100% rename from libc/musl/src/unistd/nice.c rename to lib/libc/musl/src/unistd/nice.c diff --git a/libc/musl/src/unistd/pause.c b/lib/libc/musl/src/unistd/pause.c similarity index 100% rename from libc/musl/src/unistd/pause.c rename to lib/libc/musl/src/unistd/pause.c diff --git a/libc/musl/src/unistd/pipe.c b/lib/libc/musl/src/unistd/pipe.c similarity index 100% rename from libc/musl/src/unistd/pipe.c rename to lib/libc/musl/src/unistd/pipe.c diff --git a/libc/musl/src/unistd/pipe2.c b/lib/libc/musl/src/unistd/pipe2.c similarity index 100% rename from libc/musl/src/unistd/pipe2.c rename to lib/libc/musl/src/unistd/pipe2.c diff --git a/libc/musl/src/unistd/posix_close.c b/lib/libc/musl/src/unistd/posix_close.c similarity index 100% rename from libc/musl/src/unistd/posix_close.c rename to lib/libc/musl/src/unistd/posix_close.c diff --git a/libc/musl/src/unistd/pread.c b/lib/libc/musl/src/unistd/pread.c similarity index 100% rename from libc/musl/src/unistd/pread.c rename to lib/libc/musl/src/unistd/pread.c diff --git a/libc/musl/src/unistd/preadv.c b/lib/libc/musl/src/unistd/preadv.c similarity index 100% rename from libc/musl/src/unistd/preadv.c rename to lib/libc/musl/src/unistd/preadv.c diff --git a/libc/musl/src/unistd/pwrite.c b/lib/libc/musl/src/unistd/pwrite.c similarity index 100% rename from libc/musl/src/unistd/pwrite.c rename to lib/libc/musl/src/unistd/pwrite.c diff --git a/libc/musl/src/unistd/pwritev.c b/lib/libc/musl/src/unistd/pwritev.c similarity index 100% rename from libc/musl/src/unistd/pwritev.c rename to lib/libc/musl/src/unistd/pwritev.c diff --git a/libc/musl/src/unistd/read.c b/lib/libc/musl/src/unistd/read.c similarity index 100% rename from libc/musl/src/unistd/read.c rename to lib/libc/musl/src/unistd/read.c diff --git a/libc/musl/src/unistd/readlink.c b/lib/libc/musl/src/unistd/readlink.c similarity index 100% rename from libc/musl/src/unistd/readlink.c rename to lib/libc/musl/src/unistd/readlink.c diff --git a/libc/musl/src/unistd/readlinkat.c b/lib/libc/musl/src/unistd/readlinkat.c similarity index 100% rename from libc/musl/src/unistd/readlinkat.c rename to lib/libc/musl/src/unistd/readlinkat.c diff --git a/libc/musl/src/unistd/readv.c b/lib/libc/musl/src/unistd/readv.c similarity index 100% rename from libc/musl/src/unistd/readv.c rename to lib/libc/musl/src/unistd/readv.c diff --git a/libc/musl/src/unistd/renameat.c b/lib/libc/musl/src/unistd/renameat.c similarity index 100% rename from libc/musl/src/unistd/renameat.c rename to lib/libc/musl/src/unistd/renameat.c diff --git a/libc/musl/src/unistd/rmdir.c b/lib/libc/musl/src/unistd/rmdir.c similarity index 100% rename from libc/musl/src/unistd/rmdir.c rename to lib/libc/musl/src/unistd/rmdir.c diff --git a/libc/musl/src/unistd/setegid.c b/lib/libc/musl/src/unistd/setegid.c similarity index 100% rename from libc/musl/src/unistd/setegid.c rename to lib/libc/musl/src/unistd/setegid.c diff --git a/libc/musl/src/unistd/seteuid.c b/lib/libc/musl/src/unistd/seteuid.c similarity index 100% rename from libc/musl/src/unistd/seteuid.c rename to lib/libc/musl/src/unistd/seteuid.c diff --git a/libc/musl/src/unistd/setgid.c b/lib/libc/musl/src/unistd/setgid.c similarity index 100% rename from libc/musl/src/unistd/setgid.c rename to lib/libc/musl/src/unistd/setgid.c diff --git a/libc/musl/src/unistd/setpgid.c b/lib/libc/musl/src/unistd/setpgid.c similarity index 100% rename from libc/musl/src/unistd/setpgid.c rename to lib/libc/musl/src/unistd/setpgid.c diff --git a/libc/musl/src/unistd/setpgrp.c b/lib/libc/musl/src/unistd/setpgrp.c similarity index 100% rename from libc/musl/src/unistd/setpgrp.c rename to lib/libc/musl/src/unistd/setpgrp.c diff --git a/libc/musl/src/unistd/setregid.c b/lib/libc/musl/src/unistd/setregid.c similarity index 100% rename from libc/musl/src/unistd/setregid.c rename to lib/libc/musl/src/unistd/setregid.c diff --git a/libc/musl/src/unistd/setresgid.c b/lib/libc/musl/src/unistd/setresgid.c similarity index 100% rename from libc/musl/src/unistd/setresgid.c rename to lib/libc/musl/src/unistd/setresgid.c diff --git a/libc/musl/src/unistd/setresuid.c b/lib/libc/musl/src/unistd/setresuid.c similarity index 100% rename from libc/musl/src/unistd/setresuid.c rename to lib/libc/musl/src/unistd/setresuid.c diff --git a/libc/musl/src/unistd/setreuid.c b/lib/libc/musl/src/unistd/setreuid.c similarity index 100% rename from libc/musl/src/unistd/setreuid.c rename to lib/libc/musl/src/unistd/setreuid.c diff --git a/libc/musl/src/unistd/setsid.c b/lib/libc/musl/src/unistd/setsid.c similarity index 100% rename from libc/musl/src/unistd/setsid.c rename to lib/libc/musl/src/unistd/setsid.c diff --git a/libc/musl/src/unistd/setuid.c b/lib/libc/musl/src/unistd/setuid.c similarity index 100% rename from libc/musl/src/unistd/setuid.c rename to lib/libc/musl/src/unistd/setuid.c diff --git a/libc/musl/src/unistd/setxid.c b/lib/libc/musl/src/unistd/setxid.c similarity index 100% rename from libc/musl/src/unistd/setxid.c rename to lib/libc/musl/src/unistd/setxid.c diff --git a/libc/musl/src/unistd/sh/pipe.s b/lib/libc/musl/src/unistd/sh/pipe.s similarity index 100% rename from libc/musl/src/unistd/sh/pipe.s rename to lib/libc/musl/src/unistd/sh/pipe.s diff --git a/libc/musl/src/unistd/sleep.c b/lib/libc/musl/src/unistd/sleep.c similarity index 100% rename from libc/musl/src/unistd/sleep.c rename to lib/libc/musl/src/unistd/sleep.c diff --git a/libc/musl/src/unistd/symlink.c b/lib/libc/musl/src/unistd/symlink.c similarity index 100% rename from libc/musl/src/unistd/symlink.c rename to lib/libc/musl/src/unistd/symlink.c diff --git a/libc/musl/src/unistd/symlinkat.c b/lib/libc/musl/src/unistd/symlinkat.c similarity index 100% rename from libc/musl/src/unistd/symlinkat.c rename to lib/libc/musl/src/unistd/symlinkat.c diff --git a/libc/musl/src/unistd/sync.c b/lib/libc/musl/src/unistd/sync.c similarity index 100% rename from libc/musl/src/unistd/sync.c rename to lib/libc/musl/src/unistd/sync.c diff --git a/libc/musl/src/unistd/tcgetpgrp.c b/lib/libc/musl/src/unistd/tcgetpgrp.c similarity index 100% rename from libc/musl/src/unistd/tcgetpgrp.c rename to lib/libc/musl/src/unistd/tcgetpgrp.c diff --git a/libc/musl/src/unistd/tcsetpgrp.c b/lib/libc/musl/src/unistd/tcsetpgrp.c similarity index 100% rename from libc/musl/src/unistd/tcsetpgrp.c rename to lib/libc/musl/src/unistd/tcsetpgrp.c diff --git a/libc/musl/src/unistd/truncate.c b/lib/libc/musl/src/unistd/truncate.c similarity index 100% rename from libc/musl/src/unistd/truncate.c rename to lib/libc/musl/src/unistd/truncate.c diff --git a/libc/musl/src/unistd/ttyname.c b/lib/libc/musl/src/unistd/ttyname.c similarity index 100% rename from libc/musl/src/unistd/ttyname.c rename to lib/libc/musl/src/unistd/ttyname.c diff --git a/libc/musl/src/unistd/ttyname_r.c b/lib/libc/musl/src/unistd/ttyname_r.c similarity index 100% rename from libc/musl/src/unistd/ttyname_r.c rename to lib/libc/musl/src/unistd/ttyname_r.c diff --git a/libc/musl/src/unistd/ualarm.c b/lib/libc/musl/src/unistd/ualarm.c similarity index 100% rename from libc/musl/src/unistd/ualarm.c rename to lib/libc/musl/src/unistd/ualarm.c diff --git a/libc/musl/src/unistd/unlink.c b/lib/libc/musl/src/unistd/unlink.c similarity index 100% rename from libc/musl/src/unistd/unlink.c rename to lib/libc/musl/src/unistd/unlink.c diff --git a/libc/musl/src/unistd/unlinkat.c b/lib/libc/musl/src/unistd/unlinkat.c similarity index 100% rename from libc/musl/src/unistd/unlinkat.c rename to lib/libc/musl/src/unistd/unlinkat.c diff --git a/libc/musl/src/unistd/usleep.c b/lib/libc/musl/src/unistd/usleep.c similarity index 100% rename from libc/musl/src/unistd/usleep.c rename to lib/libc/musl/src/unistd/usleep.c diff --git a/libc/musl/src/unistd/write.c b/lib/libc/musl/src/unistd/write.c similarity index 100% rename from libc/musl/src/unistd/write.c rename to lib/libc/musl/src/unistd/write.c diff --git a/libc/musl/src/unistd/writev.c b/lib/libc/musl/src/unistd/writev.c similarity index 100% rename from libc/musl/src/unistd/writev.c rename to lib/libc/musl/src/unistd/writev.c diff --git a/libcxx/include/CMakeLists.txt b/lib/libcxx/include/CMakeLists.txt similarity index 100% rename from libcxx/include/CMakeLists.txt rename to lib/libcxx/include/CMakeLists.txt diff --git a/libcxx/include/__bit_reference b/lib/libcxx/include/__bit_reference similarity index 100% rename from libcxx/include/__bit_reference rename to lib/libcxx/include/__bit_reference diff --git a/libcxx/include/__bsd_locale_defaults.h b/lib/libcxx/include/__bsd_locale_defaults.h similarity index 100% rename from libcxx/include/__bsd_locale_defaults.h rename to lib/libcxx/include/__bsd_locale_defaults.h diff --git a/libcxx/include/__bsd_locale_fallbacks.h b/lib/libcxx/include/__bsd_locale_fallbacks.h similarity index 100% rename from libcxx/include/__bsd_locale_fallbacks.h rename to lib/libcxx/include/__bsd_locale_fallbacks.h diff --git a/libcxx/include/__config b/lib/libcxx/include/__config similarity index 100% rename from libcxx/include/__config rename to lib/libcxx/include/__config diff --git a/libcxx/include/__config_site.in b/lib/libcxx/include/__config_site.in similarity index 100% rename from libcxx/include/__config_site.in rename to lib/libcxx/include/__config_site.in diff --git a/libcxx/include/__debug b/lib/libcxx/include/__debug similarity index 100% rename from libcxx/include/__debug rename to lib/libcxx/include/__debug diff --git a/libcxx/include/__errc b/lib/libcxx/include/__errc similarity index 100% rename from libcxx/include/__errc rename to lib/libcxx/include/__errc diff --git a/libcxx/include/__functional_03 b/lib/libcxx/include/__functional_03 similarity index 100% rename from libcxx/include/__functional_03 rename to lib/libcxx/include/__functional_03 diff --git a/libcxx/include/__functional_base b/lib/libcxx/include/__functional_base similarity index 100% rename from libcxx/include/__functional_base rename to lib/libcxx/include/__functional_base diff --git a/libcxx/include/__functional_base_03 b/lib/libcxx/include/__functional_base_03 similarity index 100% rename from libcxx/include/__functional_base_03 rename to lib/libcxx/include/__functional_base_03 diff --git a/libcxx/include/__hash_table b/lib/libcxx/include/__hash_table similarity index 100% rename from libcxx/include/__hash_table rename to lib/libcxx/include/__hash_table diff --git a/libcxx/include/__libcpp_version b/lib/libcxx/include/__libcpp_version similarity index 100% rename from libcxx/include/__libcpp_version rename to lib/libcxx/include/__libcpp_version diff --git a/libcxx/include/__locale b/lib/libcxx/include/__locale similarity index 100% rename from libcxx/include/__locale rename to lib/libcxx/include/__locale diff --git a/libcxx/include/__mutex_base b/lib/libcxx/include/__mutex_base similarity index 100% rename from libcxx/include/__mutex_base rename to lib/libcxx/include/__mutex_base diff --git a/libcxx/include/__node_handle b/lib/libcxx/include/__node_handle similarity index 100% rename from libcxx/include/__node_handle rename to lib/libcxx/include/__node_handle diff --git a/libcxx/include/__nullptr b/lib/libcxx/include/__nullptr similarity index 100% rename from libcxx/include/__nullptr rename to lib/libcxx/include/__nullptr diff --git a/libcxx/include/__split_buffer b/lib/libcxx/include/__split_buffer similarity index 100% rename from libcxx/include/__split_buffer rename to lib/libcxx/include/__split_buffer diff --git a/libcxx/include/__sso_allocator b/lib/libcxx/include/__sso_allocator similarity index 100% rename from libcxx/include/__sso_allocator rename to lib/libcxx/include/__sso_allocator diff --git a/libcxx/include/__std_stream b/lib/libcxx/include/__std_stream similarity index 100% rename from libcxx/include/__std_stream rename to lib/libcxx/include/__std_stream diff --git a/libcxx/include/__string b/lib/libcxx/include/__string similarity index 100% rename from libcxx/include/__string rename to lib/libcxx/include/__string diff --git a/libcxx/include/__threading_support b/lib/libcxx/include/__threading_support similarity index 100% rename from libcxx/include/__threading_support rename to lib/libcxx/include/__threading_support diff --git a/libcxx/include/__tree b/lib/libcxx/include/__tree similarity index 100% rename from libcxx/include/__tree rename to lib/libcxx/include/__tree diff --git a/libcxx/include/__tuple b/lib/libcxx/include/__tuple similarity index 100% rename from libcxx/include/__tuple rename to lib/libcxx/include/__tuple diff --git a/libcxx/include/__undef_macros b/lib/libcxx/include/__undef_macros similarity index 100% rename from libcxx/include/__undef_macros rename to lib/libcxx/include/__undef_macros diff --git a/libcxx/include/algorithm b/lib/libcxx/include/algorithm similarity index 100% rename from libcxx/include/algorithm rename to lib/libcxx/include/algorithm diff --git a/libcxx/include/any b/lib/libcxx/include/any similarity index 100% rename from libcxx/include/any rename to lib/libcxx/include/any diff --git a/libcxx/include/array b/lib/libcxx/include/array similarity index 100% rename from libcxx/include/array rename to lib/libcxx/include/array diff --git a/libcxx/include/atomic b/lib/libcxx/include/atomic similarity index 100% rename from libcxx/include/atomic rename to lib/libcxx/include/atomic diff --git a/libcxx/include/bit b/lib/libcxx/include/bit similarity index 100% rename from libcxx/include/bit rename to lib/libcxx/include/bit diff --git a/libcxx/include/bitset b/lib/libcxx/include/bitset similarity index 100% rename from libcxx/include/bitset rename to lib/libcxx/include/bitset diff --git a/libcxx/include/cassert b/lib/libcxx/include/cassert similarity index 100% rename from libcxx/include/cassert rename to lib/libcxx/include/cassert diff --git a/libcxx/include/ccomplex b/lib/libcxx/include/ccomplex similarity index 100% rename from libcxx/include/ccomplex rename to lib/libcxx/include/ccomplex diff --git a/libcxx/include/cctype b/lib/libcxx/include/cctype similarity index 100% rename from libcxx/include/cctype rename to lib/libcxx/include/cctype diff --git a/libcxx/include/cerrno b/lib/libcxx/include/cerrno similarity index 100% rename from libcxx/include/cerrno rename to lib/libcxx/include/cerrno diff --git a/libcxx/include/cfenv b/lib/libcxx/include/cfenv similarity index 100% rename from libcxx/include/cfenv rename to lib/libcxx/include/cfenv diff --git a/libcxx/include/cfloat b/lib/libcxx/include/cfloat similarity index 100% rename from libcxx/include/cfloat rename to lib/libcxx/include/cfloat diff --git a/libcxx/include/charconv b/lib/libcxx/include/charconv similarity index 100% rename from libcxx/include/charconv rename to lib/libcxx/include/charconv diff --git a/libcxx/include/chrono b/lib/libcxx/include/chrono similarity index 100% rename from libcxx/include/chrono rename to lib/libcxx/include/chrono diff --git a/libcxx/include/cinttypes b/lib/libcxx/include/cinttypes similarity index 100% rename from libcxx/include/cinttypes rename to lib/libcxx/include/cinttypes diff --git a/libcxx/include/ciso646 b/lib/libcxx/include/ciso646 similarity index 100% rename from libcxx/include/ciso646 rename to lib/libcxx/include/ciso646 diff --git a/libcxx/include/climits b/lib/libcxx/include/climits similarity index 100% rename from libcxx/include/climits rename to lib/libcxx/include/climits diff --git a/libcxx/include/clocale b/lib/libcxx/include/clocale similarity index 100% rename from libcxx/include/clocale rename to lib/libcxx/include/clocale diff --git a/libcxx/include/cmath b/lib/libcxx/include/cmath similarity index 100% rename from libcxx/include/cmath rename to lib/libcxx/include/cmath diff --git a/libcxx/include/codecvt b/lib/libcxx/include/codecvt similarity index 100% rename from libcxx/include/codecvt rename to lib/libcxx/include/codecvt diff --git a/libcxx/include/compare b/lib/libcxx/include/compare similarity index 100% rename from libcxx/include/compare rename to lib/libcxx/include/compare diff --git a/libcxx/include/complex b/lib/libcxx/include/complex similarity index 100% rename from libcxx/include/complex rename to lib/libcxx/include/complex diff --git a/libcxx/include/complex.h b/lib/libcxx/include/complex.h similarity index 100% rename from libcxx/include/complex.h rename to lib/libcxx/include/complex.h diff --git a/libcxx/include/condition_variable b/lib/libcxx/include/condition_variable similarity index 100% rename from libcxx/include/condition_variable rename to lib/libcxx/include/condition_variable diff --git a/libcxx/include/csetjmp b/lib/libcxx/include/csetjmp similarity index 100% rename from libcxx/include/csetjmp rename to lib/libcxx/include/csetjmp diff --git a/libcxx/include/csignal b/lib/libcxx/include/csignal similarity index 100% rename from libcxx/include/csignal rename to lib/libcxx/include/csignal diff --git a/libcxx/include/cstdarg b/lib/libcxx/include/cstdarg similarity index 100% rename from libcxx/include/cstdarg rename to lib/libcxx/include/cstdarg diff --git a/libcxx/include/cstdbool b/lib/libcxx/include/cstdbool similarity index 100% rename from libcxx/include/cstdbool rename to lib/libcxx/include/cstdbool diff --git a/libcxx/include/cstddef b/lib/libcxx/include/cstddef similarity index 100% rename from libcxx/include/cstddef rename to lib/libcxx/include/cstddef diff --git a/libcxx/include/cstdint b/lib/libcxx/include/cstdint similarity index 100% rename from libcxx/include/cstdint rename to lib/libcxx/include/cstdint diff --git a/libcxx/include/cstdio b/lib/libcxx/include/cstdio similarity index 100% rename from libcxx/include/cstdio rename to lib/libcxx/include/cstdio diff --git a/libcxx/include/cstdlib b/lib/libcxx/include/cstdlib similarity index 100% rename from libcxx/include/cstdlib rename to lib/libcxx/include/cstdlib diff --git a/libcxx/include/cstring b/lib/libcxx/include/cstring similarity index 100% rename from libcxx/include/cstring rename to lib/libcxx/include/cstring diff --git a/libcxx/include/ctgmath b/lib/libcxx/include/ctgmath similarity index 100% rename from libcxx/include/ctgmath rename to lib/libcxx/include/ctgmath diff --git a/libcxx/include/ctime b/lib/libcxx/include/ctime similarity index 100% rename from libcxx/include/ctime rename to lib/libcxx/include/ctime diff --git a/libcxx/include/ctype.h b/lib/libcxx/include/ctype.h similarity index 100% rename from libcxx/include/ctype.h rename to lib/libcxx/include/ctype.h diff --git a/libcxx/include/cwchar b/lib/libcxx/include/cwchar similarity index 100% rename from libcxx/include/cwchar rename to lib/libcxx/include/cwchar diff --git a/libcxx/include/cwctype b/lib/libcxx/include/cwctype similarity index 100% rename from libcxx/include/cwctype rename to lib/libcxx/include/cwctype diff --git a/libcxx/include/deque b/lib/libcxx/include/deque similarity index 100% rename from libcxx/include/deque rename to lib/libcxx/include/deque diff --git a/libcxx/include/errno.h b/lib/libcxx/include/errno.h similarity index 100% rename from libcxx/include/errno.h rename to lib/libcxx/include/errno.h diff --git a/libcxx/include/exception b/lib/libcxx/include/exception similarity index 100% rename from libcxx/include/exception rename to lib/libcxx/include/exception diff --git a/libcxx/include/experimental/__config b/lib/libcxx/include/experimental/__config similarity index 100% rename from libcxx/include/experimental/__config rename to lib/libcxx/include/experimental/__config diff --git a/libcxx/include/experimental/__memory b/lib/libcxx/include/experimental/__memory similarity index 100% rename from libcxx/include/experimental/__memory rename to lib/libcxx/include/experimental/__memory diff --git a/libcxx/include/experimental/algorithm b/lib/libcxx/include/experimental/algorithm similarity index 100% rename from libcxx/include/experimental/algorithm rename to lib/libcxx/include/experimental/algorithm diff --git a/libcxx/include/experimental/any b/lib/libcxx/include/experimental/any similarity index 100% rename from libcxx/include/experimental/any rename to lib/libcxx/include/experimental/any diff --git a/libcxx/include/experimental/chrono b/lib/libcxx/include/experimental/chrono similarity index 100% rename from libcxx/include/experimental/chrono rename to lib/libcxx/include/experimental/chrono diff --git a/libcxx/include/experimental/coroutine b/lib/libcxx/include/experimental/coroutine similarity index 100% rename from libcxx/include/experimental/coroutine rename to lib/libcxx/include/experimental/coroutine diff --git a/libcxx/include/experimental/deque b/lib/libcxx/include/experimental/deque similarity index 100% rename from libcxx/include/experimental/deque rename to lib/libcxx/include/experimental/deque diff --git a/libcxx/include/experimental/filesystem b/lib/libcxx/include/experimental/filesystem similarity index 100% rename from libcxx/include/experimental/filesystem rename to lib/libcxx/include/experimental/filesystem diff --git a/libcxx/include/experimental/forward_list b/lib/libcxx/include/experimental/forward_list similarity index 100% rename from libcxx/include/experimental/forward_list rename to lib/libcxx/include/experimental/forward_list diff --git a/libcxx/include/experimental/functional b/lib/libcxx/include/experimental/functional similarity index 100% rename from libcxx/include/experimental/functional rename to lib/libcxx/include/experimental/functional diff --git a/libcxx/include/experimental/iterator b/lib/libcxx/include/experimental/iterator similarity index 100% rename from libcxx/include/experimental/iterator rename to lib/libcxx/include/experimental/iterator diff --git a/libcxx/include/experimental/list b/lib/libcxx/include/experimental/list similarity index 100% rename from libcxx/include/experimental/list rename to lib/libcxx/include/experimental/list diff --git a/libcxx/include/experimental/map b/lib/libcxx/include/experimental/map similarity index 100% rename from libcxx/include/experimental/map rename to lib/libcxx/include/experimental/map diff --git a/libcxx/include/experimental/memory_resource b/lib/libcxx/include/experimental/memory_resource similarity index 100% rename from libcxx/include/experimental/memory_resource rename to lib/libcxx/include/experimental/memory_resource diff --git a/libcxx/include/experimental/numeric b/lib/libcxx/include/experimental/numeric similarity index 100% rename from libcxx/include/experimental/numeric rename to lib/libcxx/include/experimental/numeric diff --git a/libcxx/include/experimental/optional b/lib/libcxx/include/experimental/optional similarity index 100% rename from libcxx/include/experimental/optional rename to lib/libcxx/include/experimental/optional diff --git a/libcxx/include/experimental/propagate_const b/lib/libcxx/include/experimental/propagate_const similarity index 100% rename from libcxx/include/experimental/propagate_const rename to lib/libcxx/include/experimental/propagate_const diff --git a/libcxx/include/experimental/ratio b/lib/libcxx/include/experimental/ratio similarity index 100% rename from libcxx/include/experimental/ratio rename to lib/libcxx/include/experimental/ratio diff --git a/libcxx/include/experimental/regex b/lib/libcxx/include/experimental/regex similarity index 100% rename from libcxx/include/experimental/regex rename to lib/libcxx/include/experimental/regex diff --git a/libcxx/include/experimental/set b/lib/libcxx/include/experimental/set similarity index 100% rename from libcxx/include/experimental/set rename to lib/libcxx/include/experimental/set diff --git a/libcxx/include/experimental/simd b/lib/libcxx/include/experimental/simd similarity index 100% rename from libcxx/include/experimental/simd rename to lib/libcxx/include/experimental/simd diff --git a/libcxx/include/experimental/string b/lib/libcxx/include/experimental/string similarity index 100% rename from libcxx/include/experimental/string rename to lib/libcxx/include/experimental/string diff --git a/libcxx/include/experimental/string_view b/lib/libcxx/include/experimental/string_view similarity index 100% rename from libcxx/include/experimental/string_view rename to lib/libcxx/include/experimental/string_view diff --git a/libcxx/include/experimental/system_error b/lib/libcxx/include/experimental/system_error similarity index 100% rename from libcxx/include/experimental/system_error rename to lib/libcxx/include/experimental/system_error diff --git a/libcxx/include/experimental/tuple b/lib/libcxx/include/experimental/tuple similarity index 100% rename from libcxx/include/experimental/tuple rename to lib/libcxx/include/experimental/tuple diff --git a/libcxx/include/experimental/type_traits b/lib/libcxx/include/experimental/type_traits similarity index 100% rename from libcxx/include/experimental/type_traits rename to lib/libcxx/include/experimental/type_traits diff --git a/libcxx/include/experimental/unordered_map b/lib/libcxx/include/experimental/unordered_map similarity index 100% rename from libcxx/include/experimental/unordered_map rename to lib/libcxx/include/experimental/unordered_map diff --git a/libcxx/include/experimental/unordered_set b/lib/libcxx/include/experimental/unordered_set similarity index 100% rename from libcxx/include/experimental/unordered_set rename to lib/libcxx/include/experimental/unordered_set diff --git a/libcxx/include/experimental/utility b/lib/libcxx/include/experimental/utility similarity index 100% rename from libcxx/include/experimental/utility rename to lib/libcxx/include/experimental/utility diff --git a/libcxx/include/experimental/vector b/lib/libcxx/include/experimental/vector similarity index 100% rename from libcxx/include/experimental/vector rename to lib/libcxx/include/experimental/vector diff --git a/libcxx/include/ext/__hash b/lib/libcxx/include/ext/__hash similarity index 100% rename from libcxx/include/ext/__hash rename to lib/libcxx/include/ext/__hash diff --git a/libcxx/include/ext/hash_map b/lib/libcxx/include/ext/hash_map similarity index 100% rename from libcxx/include/ext/hash_map rename to lib/libcxx/include/ext/hash_map diff --git a/libcxx/include/ext/hash_set b/lib/libcxx/include/ext/hash_set similarity index 100% rename from libcxx/include/ext/hash_set rename to lib/libcxx/include/ext/hash_set diff --git a/libcxx/include/filesystem b/lib/libcxx/include/filesystem similarity index 100% rename from libcxx/include/filesystem rename to lib/libcxx/include/filesystem diff --git a/libcxx/include/float.h b/lib/libcxx/include/float.h similarity index 100% rename from libcxx/include/float.h rename to lib/libcxx/include/float.h diff --git a/libcxx/include/forward_list b/lib/libcxx/include/forward_list similarity index 100% rename from libcxx/include/forward_list rename to lib/libcxx/include/forward_list diff --git a/libcxx/include/fstream b/lib/libcxx/include/fstream similarity index 100% rename from libcxx/include/fstream rename to lib/libcxx/include/fstream diff --git a/libcxx/include/functional b/lib/libcxx/include/functional similarity index 100% rename from libcxx/include/functional rename to lib/libcxx/include/functional diff --git a/libcxx/include/future b/lib/libcxx/include/future similarity index 100% rename from libcxx/include/future rename to lib/libcxx/include/future diff --git a/libcxx/include/initializer_list b/lib/libcxx/include/initializer_list similarity index 100% rename from libcxx/include/initializer_list rename to lib/libcxx/include/initializer_list diff --git a/libcxx/include/inttypes.h b/lib/libcxx/include/inttypes.h similarity index 100% rename from libcxx/include/inttypes.h rename to lib/libcxx/include/inttypes.h diff --git a/libcxx/include/iomanip b/lib/libcxx/include/iomanip similarity index 100% rename from libcxx/include/iomanip rename to lib/libcxx/include/iomanip diff --git a/libcxx/include/ios b/lib/libcxx/include/ios similarity index 100% rename from libcxx/include/ios rename to lib/libcxx/include/ios diff --git a/libcxx/include/iosfwd b/lib/libcxx/include/iosfwd similarity index 100% rename from libcxx/include/iosfwd rename to lib/libcxx/include/iosfwd diff --git a/libcxx/include/iostream b/lib/libcxx/include/iostream similarity index 100% rename from libcxx/include/iostream rename to lib/libcxx/include/iostream diff --git a/libcxx/include/istream b/lib/libcxx/include/istream similarity index 100% rename from libcxx/include/istream rename to lib/libcxx/include/istream diff --git a/libcxx/include/iterator b/lib/libcxx/include/iterator similarity index 100% rename from libcxx/include/iterator rename to lib/libcxx/include/iterator diff --git a/libcxx/include/limits b/lib/libcxx/include/limits similarity index 100% rename from libcxx/include/limits rename to lib/libcxx/include/limits diff --git a/libcxx/include/limits.h b/lib/libcxx/include/limits.h similarity index 100% rename from libcxx/include/limits.h rename to lib/libcxx/include/limits.h diff --git a/libcxx/include/list b/lib/libcxx/include/list similarity index 100% rename from libcxx/include/list rename to lib/libcxx/include/list diff --git a/libcxx/include/locale b/lib/libcxx/include/locale similarity index 100% rename from libcxx/include/locale rename to lib/libcxx/include/locale diff --git a/libcxx/include/locale.h b/lib/libcxx/include/locale.h similarity index 100% rename from libcxx/include/locale.h rename to lib/libcxx/include/locale.h diff --git a/libcxx/include/map b/lib/libcxx/include/map similarity index 100% rename from libcxx/include/map rename to lib/libcxx/include/map diff --git a/libcxx/include/math.h b/lib/libcxx/include/math.h similarity index 100% rename from libcxx/include/math.h rename to lib/libcxx/include/math.h diff --git a/libcxx/include/memory b/lib/libcxx/include/memory similarity index 100% rename from libcxx/include/memory rename to lib/libcxx/include/memory diff --git a/libcxx/include/module.modulemap b/lib/libcxx/include/module.modulemap similarity index 100% rename from libcxx/include/module.modulemap rename to lib/libcxx/include/module.modulemap diff --git a/libcxx/include/mutex b/lib/libcxx/include/mutex similarity index 100% rename from libcxx/include/mutex rename to lib/libcxx/include/mutex diff --git a/libcxx/include/new b/lib/libcxx/include/new similarity index 100% rename from libcxx/include/new rename to lib/libcxx/include/new diff --git a/libcxx/include/numeric b/lib/libcxx/include/numeric similarity index 100% rename from libcxx/include/numeric rename to lib/libcxx/include/numeric diff --git a/libcxx/include/optional b/lib/libcxx/include/optional similarity index 100% rename from libcxx/include/optional rename to lib/libcxx/include/optional diff --git a/libcxx/include/ostream b/lib/libcxx/include/ostream similarity index 100% rename from libcxx/include/ostream rename to lib/libcxx/include/ostream diff --git a/libcxx/include/queue b/lib/libcxx/include/queue similarity index 100% rename from libcxx/include/queue rename to lib/libcxx/include/queue diff --git a/libcxx/include/random b/lib/libcxx/include/random similarity index 100% rename from libcxx/include/random rename to lib/libcxx/include/random diff --git a/libcxx/include/ratio b/lib/libcxx/include/ratio similarity index 100% rename from libcxx/include/ratio rename to lib/libcxx/include/ratio diff --git a/libcxx/include/regex b/lib/libcxx/include/regex similarity index 100% rename from libcxx/include/regex rename to lib/libcxx/include/regex diff --git a/libcxx/include/scoped_allocator b/lib/libcxx/include/scoped_allocator similarity index 100% rename from libcxx/include/scoped_allocator rename to lib/libcxx/include/scoped_allocator diff --git a/libcxx/include/set b/lib/libcxx/include/set similarity index 100% rename from libcxx/include/set rename to lib/libcxx/include/set diff --git a/libcxx/include/setjmp.h b/lib/libcxx/include/setjmp.h similarity index 100% rename from libcxx/include/setjmp.h rename to lib/libcxx/include/setjmp.h diff --git a/libcxx/include/shared_mutex b/lib/libcxx/include/shared_mutex similarity index 100% rename from libcxx/include/shared_mutex rename to lib/libcxx/include/shared_mutex diff --git a/libcxx/include/span b/lib/libcxx/include/span similarity index 100% rename from libcxx/include/span rename to lib/libcxx/include/span diff --git a/libcxx/include/sstream b/lib/libcxx/include/sstream similarity index 100% rename from libcxx/include/sstream rename to lib/libcxx/include/sstream diff --git a/libcxx/include/stack b/lib/libcxx/include/stack similarity index 100% rename from libcxx/include/stack rename to lib/libcxx/include/stack diff --git a/libcxx/include/stdbool.h b/lib/libcxx/include/stdbool.h similarity index 100% rename from libcxx/include/stdbool.h rename to lib/libcxx/include/stdbool.h diff --git a/libcxx/include/stddef.h b/lib/libcxx/include/stddef.h similarity index 100% rename from libcxx/include/stddef.h rename to lib/libcxx/include/stddef.h diff --git a/libcxx/include/stdexcept b/lib/libcxx/include/stdexcept similarity index 100% rename from libcxx/include/stdexcept rename to lib/libcxx/include/stdexcept diff --git a/libcxx/include/stdint.h b/lib/libcxx/include/stdint.h similarity index 100% rename from libcxx/include/stdint.h rename to lib/libcxx/include/stdint.h diff --git a/libcxx/include/stdio.h b/lib/libcxx/include/stdio.h similarity index 100% rename from libcxx/include/stdio.h rename to lib/libcxx/include/stdio.h diff --git a/libcxx/include/stdlib.h b/lib/libcxx/include/stdlib.h similarity index 100% rename from libcxx/include/stdlib.h rename to lib/libcxx/include/stdlib.h diff --git a/libcxx/include/streambuf b/lib/libcxx/include/streambuf similarity index 100% rename from libcxx/include/streambuf rename to lib/libcxx/include/streambuf diff --git a/libcxx/include/string b/lib/libcxx/include/string similarity index 100% rename from libcxx/include/string rename to lib/libcxx/include/string diff --git a/libcxx/include/string.h b/lib/libcxx/include/string.h similarity index 100% rename from libcxx/include/string.h rename to lib/libcxx/include/string.h diff --git a/libcxx/include/string_view b/lib/libcxx/include/string_view similarity index 100% rename from libcxx/include/string_view rename to lib/libcxx/include/string_view diff --git a/libcxx/include/strstream b/lib/libcxx/include/strstream similarity index 100% rename from libcxx/include/strstream rename to lib/libcxx/include/strstream diff --git a/libcxx/include/support/android/locale_bionic.h b/lib/libcxx/include/support/android/locale_bionic.h similarity index 100% rename from libcxx/include/support/android/locale_bionic.h rename to lib/libcxx/include/support/android/locale_bionic.h diff --git a/libcxx/include/support/fuchsia/xlocale.h b/lib/libcxx/include/support/fuchsia/xlocale.h similarity index 100% rename from libcxx/include/support/fuchsia/xlocale.h rename to lib/libcxx/include/support/fuchsia/xlocale.h diff --git a/libcxx/include/support/ibm/limits.h b/lib/libcxx/include/support/ibm/limits.h similarity index 100% rename from libcxx/include/support/ibm/limits.h rename to lib/libcxx/include/support/ibm/limits.h diff --git a/libcxx/include/support/ibm/locale_mgmt_aix.h b/lib/libcxx/include/support/ibm/locale_mgmt_aix.h similarity index 100% rename from libcxx/include/support/ibm/locale_mgmt_aix.h rename to lib/libcxx/include/support/ibm/locale_mgmt_aix.h diff --git a/libcxx/include/support/ibm/support.h b/lib/libcxx/include/support/ibm/support.h similarity index 100% rename from libcxx/include/support/ibm/support.h rename to lib/libcxx/include/support/ibm/support.h diff --git a/libcxx/include/support/ibm/xlocale.h b/lib/libcxx/include/support/ibm/xlocale.h similarity index 100% rename from libcxx/include/support/ibm/xlocale.h rename to lib/libcxx/include/support/ibm/xlocale.h diff --git a/libcxx/include/support/musl/xlocale.h b/lib/libcxx/include/support/musl/xlocale.h similarity index 100% rename from libcxx/include/support/musl/xlocale.h rename to lib/libcxx/include/support/musl/xlocale.h diff --git a/libcxx/include/support/newlib/xlocale.h b/lib/libcxx/include/support/newlib/xlocale.h similarity index 100% rename from libcxx/include/support/newlib/xlocale.h rename to lib/libcxx/include/support/newlib/xlocale.h diff --git a/libcxx/include/support/solaris/floatingpoint.h b/lib/libcxx/include/support/solaris/floatingpoint.h similarity index 100% rename from libcxx/include/support/solaris/floatingpoint.h rename to lib/libcxx/include/support/solaris/floatingpoint.h diff --git a/libcxx/include/support/solaris/wchar.h b/lib/libcxx/include/support/solaris/wchar.h similarity index 100% rename from libcxx/include/support/solaris/wchar.h rename to lib/libcxx/include/support/solaris/wchar.h diff --git a/libcxx/include/support/solaris/xlocale.h b/lib/libcxx/include/support/solaris/xlocale.h similarity index 100% rename from libcxx/include/support/solaris/xlocale.h rename to lib/libcxx/include/support/solaris/xlocale.h diff --git a/libcxx/include/support/win32/limits_msvc_win32.h b/lib/libcxx/include/support/win32/limits_msvc_win32.h similarity index 100% rename from libcxx/include/support/win32/limits_msvc_win32.h rename to lib/libcxx/include/support/win32/limits_msvc_win32.h diff --git a/libcxx/include/support/win32/locale_win32.h b/lib/libcxx/include/support/win32/locale_win32.h similarity index 100% rename from libcxx/include/support/win32/locale_win32.h rename to lib/libcxx/include/support/win32/locale_win32.h diff --git a/libcxx/include/support/xlocale/__nop_locale_mgmt.h b/lib/libcxx/include/support/xlocale/__nop_locale_mgmt.h similarity index 100% rename from libcxx/include/support/xlocale/__nop_locale_mgmt.h rename to lib/libcxx/include/support/xlocale/__nop_locale_mgmt.h diff --git a/libcxx/include/support/xlocale/__posix_l_fallback.h b/lib/libcxx/include/support/xlocale/__posix_l_fallback.h similarity index 100% rename from libcxx/include/support/xlocale/__posix_l_fallback.h rename to lib/libcxx/include/support/xlocale/__posix_l_fallback.h diff --git a/libcxx/include/support/xlocale/__strtonum_fallback.h b/lib/libcxx/include/support/xlocale/__strtonum_fallback.h similarity index 100% rename from libcxx/include/support/xlocale/__strtonum_fallback.h rename to lib/libcxx/include/support/xlocale/__strtonum_fallback.h diff --git a/libcxx/include/support/xlocale/xlocale.h b/lib/libcxx/include/support/xlocale/xlocale.h similarity index 100% rename from libcxx/include/support/xlocale/xlocale.h rename to lib/libcxx/include/support/xlocale/xlocale.h diff --git a/libcxx/include/system_error b/lib/libcxx/include/system_error similarity index 100% rename from libcxx/include/system_error rename to lib/libcxx/include/system_error diff --git a/libcxx/include/tgmath.h b/lib/libcxx/include/tgmath.h similarity index 100% rename from libcxx/include/tgmath.h rename to lib/libcxx/include/tgmath.h diff --git a/libcxx/include/thread b/lib/libcxx/include/thread similarity index 100% rename from libcxx/include/thread rename to lib/libcxx/include/thread diff --git a/libcxx/include/tuple b/lib/libcxx/include/tuple similarity index 100% rename from libcxx/include/tuple rename to lib/libcxx/include/tuple diff --git a/libcxx/include/type_traits b/lib/libcxx/include/type_traits similarity index 100% rename from libcxx/include/type_traits rename to lib/libcxx/include/type_traits diff --git a/libcxx/include/typeindex b/lib/libcxx/include/typeindex similarity index 100% rename from libcxx/include/typeindex rename to lib/libcxx/include/typeindex diff --git a/libcxx/include/typeinfo b/lib/libcxx/include/typeinfo similarity index 100% rename from libcxx/include/typeinfo rename to lib/libcxx/include/typeinfo diff --git a/libcxx/include/unordered_map b/lib/libcxx/include/unordered_map similarity index 100% rename from libcxx/include/unordered_map rename to lib/libcxx/include/unordered_map diff --git a/libcxx/include/unordered_set b/lib/libcxx/include/unordered_set similarity index 100% rename from libcxx/include/unordered_set rename to lib/libcxx/include/unordered_set diff --git a/libcxx/include/utility b/lib/libcxx/include/utility similarity index 100% rename from libcxx/include/utility rename to lib/libcxx/include/utility diff --git a/libcxx/include/valarray b/lib/libcxx/include/valarray similarity index 100% rename from libcxx/include/valarray rename to lib/libcxx/include/valarray diff --git a/libcxx/include/variant b/lib/libcxx/include/variant similarity index 100% rename from libcxx/include/variant rename to lib/libcxx/include/variant diff --git a/libcxx/include/vector b/lib/libcxx/include/vector similarity index 100% rename from libcxx/include/vector rename to lib/libcxx/include/vector diff --git a/libcxx/include/version b/lib/libcxx/include/version similarity index 100% rename from libcxx/include/version rename to lib/libcxx/include/version diff --git a/libcxx/include/wchar.h b/lib/libcxx/include/wchar.h similarity index 100% rename from libcxx/include/wchar.h rename to lib/libcxx/include/wchar.h diff --git a/libcxx/include/wctype.h b/lib/libcxx/include/wctype.h similarity index 100% rename from libcxx/include/wctype.h rename to lib/libcxx/include/wctype.h diff --git a/libunwind/include/__libunwind_config.h b/lib/libunwind/include/__libunwind_config.h similarity index 100% rename from libunwind/include/__libunwind_config.h rename to lib/libunwind/include/__libunwind_config.h diff --git a/libunwind/include/libunwind.h b/lib/libunwind/include/libunwind.h similarity index 100% rename from libunwind/include/libunwind.h rename to lib/libunwind/include/libunwind.h diff --git a/libunwind/include/mach-o/compact_unwind_encoding.h b/lib/libunwind/include/mach-o/compact_unwind_encoding.h similarity index 100% rename from libunwind/include/mach-o/compact_unwind_encoding.h rename to lib/libunwind/include/mach-o/compact_unwind_encoding.h diff --git a/libunwind/include/unwind.h b/lib/libunwind/include/unwind.h similarity index 100% rename from libunwind/include/unwind.h rename to lib/libunwind/include/unwind.h diff --git a/libunwind/src/AddressSpace.hpp b/lib/libunwind/src/AddressSpace.hpp similarity index 100% rename from libunwind/src/AddressSpace.hpp rename to lib/libunwind/src/AddressSpace.hpp diff --git a/libunwind/src/CompactUnwinder.hpp b/lib/libunwind/src/CompactUnwinder.hpp similarity index 100% rename from libunwind/src/CompactUnwinder.hpp rename to lib/libunwind/src/CompactUnwinder.hpp diff --git a/libunwind/src/DwarfInstructions.hpp b/lib/libunwind/src/DwarfInstructions.hpp similarity index 100% rename from libunwind/src/DwarfInstructions.hpp rename to lib/libunwind/src/DwarfInstructions.hpp diff --git a/libunwind/src/DwarfParser.hpp b/lib/libunwind/src/DwarfParser.hpp similarity index 100% rename from libunwind/src/DwarfParser.hpp rename to lib/libunwind/src/DwarfParser.hpp diff --git a/libunwind/src/EHHeaderParser.hpp b/lib/libunwind/src/EHHeaderParser.hpp similarity index 100% rename from libunwind/src/EHHeaderParser.hpp rename to lib/libunwind/src/EHHeaderParser.hpp diff --git a/libunwind/src/RWMutex.hpp b/lib/libunwind/src/RWMutex.hpp similarity index 100% rename from libunwind/src/RWMutex.hpp rename to lib/libunwind/src/RWMutex.hpp diff --git a/libunwind/src/Registers.hpp b/lib/libunwind/src/Registers.hpp similarity index 100% rename from libunwind/src/Registers.hpp rename to lib/libunwind/src/Registers.hpp diff --git a/libunwind/src/Unwind-EHABI.cpp b/lib/libunwind/src/Unwind-EHABI.cpp similarity index 100% rename from libunwind/src/Unwind-EHABI.cpp rename to lib/libunwind/src/Unwind-EHABI.cpp diff --git a/libunwind/src/Unwind-EHABI.h b/lib/libunwind/src/Unwind-EHABI.h similarity index 100% rename from libunwind/src/Unwind-EHABI.h rename to lib/libunwind/src/Unwind-EHABI.h diff --git a/libunwind/src/Unwind-seh.cpp b/lib/libunwind/src/Unwind-seh.cpp similarity index 100% rename from libunwind/src/Unwind-seh.cpp rename to lib/libunwind/src/Unwind-seh.cpp diff --git a/libunwind/src/Unwind-sjlj.c b/lib/libunwind/src/Unwind-sjlj.c similarity index 100% rename from libunwind/src/Unwind-sjlj.c rename to lib/libunwind/src/Unwind-sjlj.c diff --git a/libunwind/src/UnwindCursor.hpp b/lib/libunwind/src/UnwindCursor.hpp similarity index 100% rename from libunwind/src/UnwindCursor.hpp rename to lib/libunwind/src/UnwindCursor.hpp diff --git a/libunwind/src/UnwindLevel1-gcc-ext.c b/lib/libunwind/src/UnwindLevel1-gcc-ext.c similarity index 100% rename from libunwind/src/UnwindLevel1-gcc-ext.c rename to lib/libunwind/src/UnwindLevel1-gcc-ext.c diff --git a/libunwind/src/UnwindLevel1.c b/lib/libunwind/src/UnwindLevel1.c similarity index 100% rename from libunwind/src/UnwindLevel1.c rename to lib/libunwind/src/UnwindLevel1.c diff --git a/libunwind/src/UnwindRegistersRestore.S b/lib/libunwind/src/UnwindRegistersRestore.S similarity index 100% rename from libunwind/src/UnwindRegistersRestore.S rename to lib/libunwind/src/UnwindRegistersRestore.S diff --git a/libunwind/src/UnwindRegistersSave.S b/lib/libunwind/src/UnwindRegistersSave.S similarity index 100% rename from libunwind/src/UnwindRegistersSave.S rename to lib/libunwind/src/UnwindRegistersSave.S diff --git a/libunwind/src/Unwind_AppleExtras.cpp b/lib/libunwind/src/Unwind_AppleExtras.cpp similarity index 100% rename from libunwind/src/Unwind_AppleExtras.cpp rename to lib/libunwind/src/Unwind_AppleExtras.cpp diff --git a/libunwind/src/assembly.h b/lib/libunwind/src/assembly.h similarity index 100% rename from libunwind/src/assembly.h rename to lib/libunwind/src/assembly.h diff --git a/libunwind/src/config.h b/lib/libunwind/src/config.h similarity index 100% rename from libunwind/src/config.h rename to lib/libunwind/src/config.h diff --git a/libunwind/src/dwarf2.h b/lib/libunwind/src/dwarf2.h similarity index 100% rename from libunwind/src/dwarf2.h rename to lib/libunwind/src/dwarf2.h diff --git a/libunwind/src/libunwind.cpp b/lib/libunwind/src/libunwind.cpp similarity index 100% rename from libunwind/src/libunwind.cpp rename to lib/libunwind/src/libunwind.cpp diff --git a/libunwind/src/libunwind_ext.h b/lib/libunwind/src/libunwind_ext.h similarity index 100% rename from libunwind/src/libunwind_ext.h rename to lib/libunwind/src/libunwind_ext.h diff --git a/std/fs.zig b/std/fs.zig index 6b860ad2a2..a638a95fc5 100644 --- a/std/fs.zig +++ b/std/fs.zig @@ -642,8 +642,7 @@ pub const Dir = struct { const attrs = self.handle.find_file_data.dwFileAttributes; if (attrs & os.windows.FILE_ATTRIBUTE_DIRECTORY != 0) break :blk Entry.Kind.Directory; if (attrs & os.windows.FILE_ATTRIBUTE_REPARSE_POINT != 0) break :blk Entry.Kind.SymLink; - if (attrs & os.windows.FILE_ATTRIBUTE_NORMAL != 0) break :blk Entry.Kind.File; - break :blk Entry.Kind.Unknown; + break :blk Entry.Kind.File; }; return Entry{ .name = name_utf8, diff --git a/std/fs/file.zig b/std/fs/file.zig index bf0ef20034..df4067b661 100644 --- a/std/fs/file.zig +++ b/std/fs/file.zig @@ -237,13 +237,20 @@ pub const File = struct { pub fn stat(self: File) StatError!Stat { if (windows.is_the_target) { - const info = try windows.GetFileInformationByHandle(self.handle); + var io_status_block: windows.IO_STATUS_BLOCK = undefined; + var info: windows.FILE_ALL_INFORMATION = undefined; + const rc = windows.ntdll.NtQueryInformationFile(self.handle, &io_status_block, &info, @sizeOf(windows.FILE_ALL_INFORMATION), .FileAllInformation); + switch (rc) { + windows.STATUS.SUCCESS => {}, + windows.STATUS.BUFFER_OVERFLOW => {}, + else => return windows.unexpectedStatus(rc), + } return Stat{ - .size = (u64(info.nFileSizeHigh) << 32) | u64(info.nFileSizeLow), + .size = @bitCast(u64, info.StandardInformation.EndOfFile), .mode = {}, - .atime = windows.fileTimeToNanoSeconds(info.ftLastAccessTime), - .mtime = windows.fileTimeToNanoSeconds(info.ftLastWriteTime), - .ctime = windows.fileTimeToNanoSeconds(info.ftCreationTime), + .atime = windows.fromSysTime(info.BasicInformation.LastAccessTime), + .mtime = windows.fromSysTime(info.BasicInformation.LastWriteTime), + .ctime = windows.fromSysTime(info.BasicInformation.CreationTime), }; } diff --git a/std/os/windows.zig b/std/os/windows.zig index 68c643db81..aa97671298 100644 --- a/std/os/windows.zig +++ b/std/os/windows.zig @@ -267,7 +267,7 @@ pub fn GetQueuedCompletionStatus( } pub fn CloseHandle(hObject: HANDLE) void { - assert(kernel32.CloseHandle(hObject) != 0); + assert(ntdll.NtClose(hObject) == STATUS.SUCCESS); } pub fn FindClose(hFindFile: HANDLE) void { @@ -758,7 +758,7 @@ pub fn GetFileInformationByHandle( hFile: HANDLE, ) GetFileInformationByHandleError!BY_HANDLE_FILE_INFORMATION { var info: BY_HANDLE_FILE_INFORMATION = undefined; - const rc = kernel32.GetFileInformationByHandle(hFile, &info); + const rc = ntdll.GetFileInformationByHandle(hFile, &info); if (rc == 0) { switch (kernel32.GetLastError()) { else => |err| return unexpectedError(err), @@ -788,19 +788,27 @@ pub fn SetFileTime( /// Universal Time (UTC). /// This function returns the number of nanoseconds since the canonical epoch, /// which is the POSIX one (Jan 01, 1970 AD). -pub fn fileTimeToNanoSeconds(ft: FILETIME) i64 { - const hns = @bitCast(i64, (u64(ft.dwHighDateTime) << 32) | ft.dwLowDateTime); +pub fn fromSysTime(hns: i64) i64 { const adjusted_epoch = hns + std.time.epoch.windows * (std.time.ns_per_s / 100); return adjusted_epoch * 100; } +pub fn toSysTime(ns: i64) i64 { + const hns = @divFloor(ns, 100); + return hns - std.time.epoch.windows * (std.time.ns_per_s / 100); +} + +pub fn fileTimeToNanoSeconds(ft: FILETIME) i64 { + const hns = @bitCast(i64, (u64(ft.dwHighDateTime) << 32) | ft.dwLowDateTime); + return fromSysTime(hns); +} + /// Converts a number of nanoseconds since the POSIX epoch to a Windows FILETIME. pub fn nanoSecondsToFileTime(ns: i64) FILETIME { - const hns = @divFloor(ns, 100); - const adjusted_epoch = hns - std.time.epoch.windows * (std.time.ns_per_s / 100); + const adjusted = @bitCast(u64, toSysTime(ns)); return FILETIME{ - .dwHighDateTime = @truncate(u32, @bitCast(u64, adjusted_epoch) >> 32), - .dwLowDateTime = @truncate(u32, @bitCast(u64, adjusted_epoch)), + .dwHighDateTime = @truncate(u32, adjusted >> 32), + .dwLowDateTime = @truncate(u32, adjusted), }; } @@ -812,10 +820,24 @@ pub fn sliceToPrefixedFileW(s: []const u8) ![PATH_MAX_WIDE + 1]u16 { return sliceToPrefixedSuffixedFileW(s, [_]u16{0}); } -pub fn sliceToPrefixedSuffixedFileW(s: []const u8, comptime suffix: []const u16) ![PATH_MAX_WIDE + suffix.len]u16 { - // TODO well defined copy elision - var result: [PATH_MAX_WIDE + suffix.len]u16 = undefined; +/// TODO once https://github.com/ziglang/zig/issues/2765 and https://github.com/ziglang/zig/issues/2761 are both solved, +/// this can be removed. Callsites that do not have performance bottlenecks +/// in this function should call `sliceToPrefixedFileW` to be future-proof. +pub fn sliceToPrefixedFileW_elidecopy(s: []const u8, result: *[PATH_MAX_WIDE + 1]u16) !void { + return sliceToPrefixedSuffixedFileW_elidecopy(s, [_]u16{0}, result); +} +pub fn sliceToPrefixedSuffixedFileW(s: []const u8, comptime suffix: []const u16) ![PATH_MAX_WIDE + suffix.len]u16 { + // TODO https://github.com/ziglang/zig/issues/2765 + var result: [PATH_MAX_WIDE + suffix.len]u16 = undefined; + try sliceToPrefixedSuffixedFileW_elidecopy(s, suffix, &result); + return result; +} + +/// TODO once https://github.com/ziglang/zig/issues/2765 and https://github.com/ziglang/zig/issues/2761 are both solved, +/// this can be removed. Callsites that do not have performance bottlenecks +/// in this function should call `sliceToPrefixedSuffixedFileW` to be future-proof. +pub fn sliceToPrefixedSuffixedFileW_elidecopy(s: []const u8, comptime suffix: []const u16, result: *[PATH_MAX_WIDE + suffix.len]u16) !void { // > File I/O functions in the Windows API convert "/" to "\" as part of // > converting the name to an NT-style name, except when using the "\\?\" // > prefix as detailed in the following sections. @@ -837,7 +859,6 @@ pub fn sliceToPrefixedSuffixedFileW(s: []const u8, comptime suffix: []const u16) assert(end_index <= result.len); if (end_index + suffix.len > result.len) return error.NameTooLong; mem.copy(u16, result[end_index..], suffix); - return result; } inline fn MAKELANGID(p: c_ushort, s: c_ushort) LANGID { @@ -858,3 +879,14 @@ pub fn unexpectedError(err: DWORD) std.os.UnexpectedError { } return error.Unexpected; } + + +/// Call this when you made a windows NtDll call +/// and you get an unexpected status. +pub fn unexpectedStatus(status: NTSTATUS) std.os.UnexpectedError { + if (std.os.unexpected_error_tracing) { + std.debug.warn("error.Unexpected NTSTATUS={}\n", status); + std.debug.dumpCurrentStackTrace(null); + } + return error.Unexpected; +} diff --git a/std/os/windows/bits.zig b/std/os/windows/bits.zig index 338e47a467..79697995f4 100644 --- a/std/os/windows/bits.zig +++ b/std/os/windows/bits.zig @@ -6,6 +6,7 @@ const assert = std.debug.assert; const maxInt = std.math.maxInt; pub const ERROR = @import("error.zig"); +pub const STATUS = @import("status.zig"); pub const LANG = @import("lang.zig"); pub const SUBLANG = @import("sublang.zig"); @@ -59,6 +60,7 @@ pub const ULONGLONG = u64; pub const LONGLONG = i64; pub const HLOCAL = HANDLE; pub const LANGID = c_ushort; +pub const NTSTATUS = ULONG; pub const va_list = *@OpaqueType(); @@ -69,6 +71,147 @@ pub const INVALID_HANDLE_VALUE = @intToPtr(HANDLE, maxInt(usize)); pub const INVALID_FILE_ATTRIBUTES = DWORD(maxInt(DWORD)); +pub const FILE_ALL_INFORMATION = extern struct { + BasicInformation: FILE_BASIC_INFORMATION, + StandardInformation: FILE_STANDARD_INFORMATION, + InternalInformation: FILE_INTERNAL_INFORMATION, + EaInformation: FILE_EA_INFORMATION, + AccessInformation: FILE_ACCESS_INFORMATION, + PositionInformation: FILE_POSITION_INFORMATION, + ModeInformation: FILE_MODE_INFORMATION, + AlignmentInformation: FILE_ALIGNMENT_INFORMATION, + NameInformation: FILE_NAME_INFORMATION, +}; + +pub const FILE_BASIC_INFORMATION = extern struct { + CreationTime: LARGE_INTEGER, + LastAccessTime: LARGE_INTEGER, + LastWriteTime: LARGE_INTEGER, + ChangeTime: LARGE_INTEGER, + FileAttributes: ULONG, +}; + +pub const FILE_STANDARD_INFORMATION = extern struct { + AllocationSize: LARGE_INTEGER, + EndOfFile: LARGE_INTEGER, + NumberOfLinks: ULONG, + DeletePending: BOOLEAN, + Directory: BOOLEAN, +}; + +pub const FILE_INTERNAL_INFORMATION = extern struct { + IndexNumber: LARGE_INTEGER, +}; + +pub const FILE_EA_INFORMATION = extern struct { + EaSize: ULONG, +}; + +pub const FILE_ACCESS_INFORMATION = extern struct { + AccessFlags: ACCESS_MASK, +}; + +pub const FILE_POSITION_INFORMATION = extern struct { + CurrentByteOffset: LARGE_INTEGER, +}; + +pub const FILE_MODE_INFORMATION = extern struct { + Mode: ULONG, +}; + +pub const FILE_ALIGNMENT_INFORMATION = extern struct { + AlignmentRequirement: ULONG, +}; + +pub const FILE_NAME_INFORMATION = extern struct { + FileNameLength: ULONG, + FileName: [1]WCHAR, +}; + +pub const IO_STATUS_BLOCK = extern struct { + Status: usize, + Information: ULONG_PTR, +}; + +pub const FILE_INFORMATION_CLASS = extern enum { + FileDirectoryInformation = 1, + FileFullDirectoryInformation, + FileBothDirectoryInformation, + FileBasicInformation, + FileStandardInformation, + FileInternalInformation, + FileEaInformation, + FileAccessInformation, + FileNameInformation, + FileRenameInformation, + FileLinkInformation, + FileNamesInformation, + FileDispositionInformation, + FilePositionInformation, + FileFullEaInformation, + FileModeInformation, + FileAlignmentInformation, + FileAllInformation, + FileAllocationInformation, + FileEndOfFileInformation, + FileAlternateNameInformation, + FileStreamInformation, + FilePipeInformation, + FilePipeLocalInformation, + FilePipeRemoteInformation, + FileMailslotQueryInformation, + FileMailslotSetInformation, + FileCompressionInformation, + FileObjectIdInformation, + FileCompletionInformation, + FileMoveClusterInformation, + FileQuotaInformation, + FileReparsePointInformation, + FileNetworkOpenInformation, + FileAttributeTagInformation, + FileTrackingInformation, + FileIdBothDirectoryInformation, + FileIdFullDirectoryInformation, + FileValidDataLengthInformation, + FileShortNameInformation, + FileIoCompletionNotificationInformation, + FileIoStatusBlockRangeInformation, + FileIoPriorityHintInformation, + FileSfioReserveInformation, + FileSfioVolumeInformation, + FileHardLinkInformation, + FileProcessIdsUsingFileInformation, + FileNormalizedNameInformation, + FileNetworkPhysicalNameInformation, + FileIdGlobalTxDirectoryInformation, + FileIsRemoteDeviceInformation, + FileUnusedInformation, + FileNumaNodeInformation, + FileStandardLinkInformation, + FileRemoteProtocolInformation, + FileRenameInformationBypassAccessCheck, + FileLinkInformationBypassAccessCheck, + FileVolumeNameInformation, + FileIdInformation, + FileIdExtdDirectoryInformation, + FileReplaceCompletionInformation, + FileHardLinkFullIdInformation, + FileIdExtdBothDirectoryInformation, + FileDispositionInformationEx, + FileRenameInformationEx, + FileRenameInformationExBypassAccessCheck, + FileDesiredStorageClassInformation, + FileStatInformation, + FileMemoryPartitionInformation, + FileStatLxInformation, + FileCaseSensitiveInformation, + FileLinkInformationEx, + FileLinkInformationExBypassAccessCheck, + FileStorageReserveIdInformation, + FileCaseSensitiveInformationForceAccessCheck, + FileMaximumInformation +}; + pub const OVERLAPPED = extern struct { Internal: ULONG_PTR, InternalHigh: ULONG_PTR, @@ -574,3 +717,18 @@ pub const EXCEPTION_POINTERS = extern struct { }; pub const VECTORED_EXCEPTION_HANDLER = stdcallcc fn (ExceptionInfo: *EXCEPTION_POINTERS) c_long; + +pub const OBJECT_ATTRIBUTES = extern struct { + Length: ULONG, + RootDirectory: HANDLE, + ObjectName: *UNICODE_STRING, + Attributes: ULONG, + SecurityDescriptor: ?*c_void, + SecurityQualityOfService: ?*c_void, +}; + +pub const UNICODE_STRING = extern struct { + Length: USHORT, + MaximumLength: USHORT, + Buffer: [*]WCHAR, +}; \ No newline at end of file diff --git a/std/os/windows/ntdll.zig b/std/os/windows/ntdll.zig index e5469cdcf9..746403fa6d 100644 --- a/std/os/windows/ntdll.zig +++ b/std/os/windows/ntdll.zig @@ -1,3 +1,18 @@ usingnamespace @import("bits.zig"); pub extern "NtDll" stdcallcc fn RtlCaptureStackBackTrace(FramesToSkip: DWORD, FramesToCapture: DWORD, BackTrace: **c_void, BackTraceHash: ?*DWORD) WORD; +pub extern "NtDll" stdcallcc fn NtQueryInformationFile(FileHandle: HANDLE, IoStatusBlock: *IO_STATUS_BLOCK, FileInformation: *c_void, Length: ULONG, FileInformationClass: FILE_INFORMATION_CLASS,) NTSTATUS; +pub extern "NtDll" stdcallcc fn NtCreateFile( + FileHandle: *HANDLE, + DesiredAccess: ACCESS_MASK, + ObjectAttributes: *OBJECT_ATTRIBUTES, + IoStatusBlock: *IO_STATUS_BLOCK, + AllocationSize: *LARGE_INTEGER, + FileAttributes: ULONG, + ShareAccess: ULONG, + CreateDisposition: ULONG, + CreateOptions: ULONG, + EaBuffer: *c_void, + EaLength: ULONG, +) NTSTATUS; +pub extern "NtDll" stdcallcc fn NtClose(Handle: HANDLE) NTSTATUS; \ No newline at end of file diff --git a/std/os/windows/status.zig b/std/os/windows/status.zig new file mode 100644 index 0000000000..668a736e90 --- /dev/null +++ b/std/os/windows/status.zig @@ -0,0 +1,5 @@ +/// The operation completed successfully. +pub const SUCCESS = 0x00000000; + +/// The data was too large to fit into the specified buffer. +pub const BUFFER_OVERFLOW = 0x80000005; \ No newline at end of file From 851a7288a9a506cbdcb025bc5842a9099bf2bb83 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 15 Jul 2019 18:25:13 -0400 Subject: [PATCH 10/13] mingw libc can link against ntdll --- lib/libc/mingw/lib32/ntdll.def | 2082 +++++++++++++++++++++++++++ lib/libc/mingw/lib64/ntdll.def | 2037 +++++++++++++++++++++++++++ lib/libc/mingw/libarm32/ntdll.def | 2165 +++++++++++++++++++++++++++++ src/link.cpp | 3 + 4 files changed, 6287 insertions(+) create mode 100644 lib/libc/mingw/lib32/ntdll.def create mode 100644 lib/libc/mingw/lib64/ntdll.def create mode 100644 lib/libc/mingw/libarm32/ntdll.def diff --git a/lib/libc/mingw/lib32/ntdll.def b/lib/libc/mingw/lib32/ntdll.def new file mode 100644 index 0000000000..d6837b113f --- /dev/null +++ b/lib/libc/mingw/lib32/ntdll.def @@ -0,0 +1,2082 @@ +; +; Definition file of ntdll.dll +; Automatic generated by gendef +; written by Kai Tietz 2008 +; +LIBRARY "ntdll.dll" +EXPORTS +RtlActivateActivationContextUnsafeFast@0 +RtlDeactivateActivationContextUnsafeFast@0 +RtlInterlockedPushListSList@8 +@RtlUlongByteSwap@4 +@RtlUlonglongByteSwap@8 +@RtlUshortByteSwap@4 +ExpInterlockedPopEntrySListEnd@0 +ExpInterlockedPopEntrySListFault@0 +ExpInterlockedPopEntrySListResume@0 +RtlpInterlockedPopEntrySeqSListEnd@0 +RtlpInterlockedPopEntrySeqSListFault@0 +RtlpInterlockedPopEntrySeqSListResume@0 +A_SHAFinal@8 +A_SHAInit@4 +A_SHAUpdate@12 +AlpcAdjustCompletionListConcurrencyCount@8 +AlpcFreeCompletionListMessage@8 +AlpcGetCompletionListLastMessageInformation@12 +AlpcGetCompletionListMessageAttributes@8 +AlpcGetHeaderSize@4 +AlpcGetMessageAttribute@8 +AlpcGetMessageFromCompletionList@8 +AlpcGetOutstandingCompletionListMessageCount@4 +AlpcInitializeMessageAttribute@16 +AlpcMaxAllowedMessageLength@0 +AlpcRegisterCompletionList@20 +AlpcRegisterCompletionListWorkerThread@4 +AlpcRundownCompletionList@4 +AlpcUnregisterCompletionList@4 +AlpcUnregisterCompletionListWorkerThread@4 +CsrAllocateCaptureBuffer@8 +CsrAllocateMessagePointer@12 +CsrCaptureMessageBuffer@16 +CsrCaptureMessageMultiUnicodeStringsInPlace@12 +CsrCaptureMessageString@20 +CsrCaptureTimeout@8 +CsrClientCallServer@16 +CsrClientConnectToServer@20 +CsrFreeCaptureBuffer@4 +CsrGetProcessId@0 +CsrIdentifyAlertableThread@0 +CsrNewThread@0 +CsrProbeForRead@12 +CsrProbeForWrite@12 +CsrSetPriorityClass@8 +CsrVerifyRegion@8 +DbgBreakPoint@0 +DbgPrint +DbgPrintEx +DbgPrintReturnControlC +DbgPrompt@12 +DbgQueryDebugFilterState@8 +DbgSetDebugFilterState@12 +DbgSsHandleKmApiMsg@8 +DbgSsInitialize@16 +DbgUiConnectToDbg@0 +DbgUiContinue@8 +DbgUiConvertStateChangeStructure@8 +DbgUiDebugActiveProcess@4 +DbgUiGetThreadDebugObject@0 +DbgUiIssueRemoteBreakin@4 +DbgUiRemoteBreakin@4 +DbgUiSetThreadDebugObject@4 +DbgUiStopDebugging@4 +DbgUiWaitStateChange@8 +DbgUserBreakPoint@0 +EtwCreateTraceInstanceId@8 +EtwDeliverDataBlock@4 +EtwEnumerateProcessRegGuids@12 +EtwEventActivityIdControl@8 +EtwEventEnabled@12 +EtwEventProviderEnabled@20 +EtwEventRegister@16 +EtwEventUnregister@8 +EtwEventWrite@20 +EtwEventWriteEndScenario@20 +EtwEventWriteEx@40 +EtwEventWriteFull@32 +EtwEventWriteNoRegistration@16 +EtwEventWriteStartScenario@20 +EtwEventWriteString@24 +EtwEventWriteTransfer@28 +EtwGetTraceEnableFlags@8 +EtwGetTraceEnableLevel@8 +EtwGetTraceLoggerHandle@4 +EtwLogTraceEvent@12 +EtwNotificationRegister@20 +EtwNotificationUnregister@12 +EtwProcessPrivateLoggerRequest@4 +EtwRegisterSecurityProvider@0 +EtwRegisterTraceGuidsA@32 +EtwRegisterTraceGuidsW@32 +EtwReplyNotification@4 +EtwSendNotification@20 +EtwSetMark@16 +EtwTraceEventInstance@20 +EtwTraceMessage +EtwTraceMessageVa@24 +EtwUnregisterTraceGuids@8 +EtwWriteUMSecurityEvent@16 +EtwpCreateEtwThread@8 +EtwpGetCpuSpeed@8 +;EtwpNotificationThread +EvtIntReportAuthzEventAndSourceAsync@44 +EvtIntReportEventAndSourceAsync@44 +KiFastSystemCall@0 +KiFastSystemCallRet@0 +KiIntSystemCall@0 +KiRaiseUserExceptionDispatcher@0 +KiUserApcDispatcher@20 +KiUserCallbackDispatcher@12 +KiUserExceptionDispatcher@8 +LdrAccessResource@16 +LdrAddLoadAsDataTable@16; Check!!! gendef says @20 +LdrAddRefDll@8 +LdrAlternateResourcesEnabled@0 +LdrDisableThreadCalloutsForDll@4 +LdrEnumResources@20 +LdrEnumerateLoadedModules@12 +LdrFindEntryForAddress@8 +LdrFindResourceDirectory_U@16 +LdrFindResourceEx_U@20 +LdrFindResource_U@16 +LdrFlushAlternateResourceModules@0 +LdrGetDllHandle@16 +LdrGetDllHandleByMapping@8 +LdrGetDllHandleByName@12 +LdrGetDllHandleEx@20 +LdrGetFailureData@0 +LdrGetFileNameFromLoadAsDataTable@8 +LdrGetProcedureAddress@16 +LdrGetProcedureAddressEx@20 +LdrHotPatchRoutine@0 +LdrInitShimEngineDynamic@4 +LdrInitializeThunk@16 +LdrLoadAlternateResourceModule@16 +LdrLoadAlternateResourceModuleEx@20 +LdrLoadDll@16 +LdrAlternateResourcesEnabled@0 +LdrLockLoaderLock@12 +LdrOpenImageFileOptionsKey@12 +LdrProcessRelocationBlock@16 +LdrQueryImageFileExecutionOptions@24 +LdrQueryImageFileExecutionOptionsEx@28 +LdrQueryImageFileKeyOption@24 +LdrQueryModuleServiceTags@12 +LdrQueryProcessModuleInformation@12 +LdrRegisterDllNotification@16 +LdrRemoveLoadAsDataTable@16 +LdrResFindResource@36 +LdrResFindResourceDirectory@28 +LdrResGetRCConfig@20 +LdrResRelease@12 +LdrResSearchResource@32 +LdrRscIsTypeExist@16 +LdrSetAppCompatDllRedirectionCallback@12 +LdrSetDllManifestProber@4 +LdrSetMUICacheType@4 +LdrShutdownProcess@0 +LdrShutdownThread@0 +LdrUnloadAlternateResourceModule@4 +LdrUnloadAlternateResourceModuleEx@8 +LdrUnloadDll@4 +LdrUnlockLoaderLock@8 +LdrUnregisterDllNotification@4 +LdrVerifyImageMatchesChecksum@16 +LdrVerifyImageMatchesChecksumEx@8 +LdrWx86FormatVirtualImage@12 +LdrpResGetMappingSize@16 +LdrpResGetRCConfig@20 +LdrpResGetResourceDirectory@20 +MD4Final@4 +MD4Init@4 +MD4Update@12 +MD5Final@4 +MD5Init@4 +MD5Update@12 +NlsAnsiCodePage DATA +NlsMbCodePageTag DATA +NlsMbOemCodePageTag DATA +NtAcceptConnectPort@24 +NtAccessCheck@32 +NtAccessCheckAndAuditAlarm@44 +NtAccessCheckByType@44 +NtAccessCheckByTypeAndAuditAlarm@64 +NtAccessCheckByTypeResultList@44 +NtAccessCheckByTypeResultListAndAuditAlarm@64 +NtAccessCheckByTypeResultListAndAuditAlarmByHandle@68 +NtAcquireCMFViewOwnership@12 +NtAddAtom@12 +NtAddBootEntry@8 +NtAddDriverEntry@8 +NtAdjustGroupsToken@24 +NtAdjustPrivilegesToken@24 +NtAlertResumeThread@8 +NtAlertThread@4 +NtAllocateLocallyUniqueId@4 +NtAllocateReserveObject@12 +NtAllocateUserPhysicalPages@12 +NtAllocateUuids@16 +NtAllocateVirtualMemory@24 +NtAlpcAcceptConnectPort@36 +NtAlpcCancelMessage@12 +NtAlpcConnectPort@44 +NtAlpcCreatePort@12 +NtAlpcCreatePortSection@24 +NtAlpcCreateResourceReserve@16 +NtAlpcCreateSectionView@12 +NtAlpcCreateSecurityContext@12 +NtAlpcDeletePortSection@12 +NtAlpcDeleteResourceReserve@12 +NtAlpcDeleteSectionView@12 +NtAlpcDeleteSecurityContext@12 +NtAlpcDisconnectPort@8 +NtAlpcImpersonateClientOfPort@12 +NtAlpcOpenSenderProcess@24 +NtAlpcOpenSenderThread@24 +NtAlpcQueryInformation@20 +NtAlpcQueryInformationMessage@24 +NtAlpcRevokeSecurityContext@12 +NtAlpcSendWaitReceivePort@32 +NtAlpcSetInformation@16 +NtApphelpCacheControl@8 +NtAreMappedFilesTheSame@8 +NtAssignProcessToJobObject@8 +NtCallbackReturn@12 +NtCancelDeviceWakeupRequest@4 +NtCancelIoFile@8 +NtCancelIoFileEx@12 +NtCancelSynchronousIoFile@12 +NtCancelTimer@8 +NtClearEvent@4 +NtClose@4 +NtCloseObjectAuditAlarm@12 +NtCommitComplete@8 +NtCommitEnlistment@8 +NtCommitTransaction@8 +NtCompactKeys@8 +NtCompareTokens@12 +NtCompleteConnectPort@4 +NtCompressKey@4 +NtConnectPort@32 +NtContinue@8 +NtCreateDebugObject@16 +NtCreateDirectoryObject@12 +NtCreateEnlistment@32 +NtCreateEvent@20 +NtCreateEventPair@12 +NtCreateFile@44 +NtCreateIoCompletion@16 +NtCreateJobObject@12 +NtCreateJobSet@12 +NtCreateKey@28 +NtCreateKeyTransacted@32 +NtCreateKeyedEvent@16 +NtCreateMailslotFile@32 +NtCreateMutant@16 +NtCreateNamedPipeFile@56 +NtCreatePagingFile@16 +NtCreatePort@20 +NtCreatePrivateNamespace@16 +NtCreateProcess@32 +NtCreateProcessEx@36 +NtCreateProfile@36 +NtCreateProfileEx@40 +NtCreateResourceManager@28 +NtCreateSection@28 +NtCreateSemaphore@20 +NtCreateSymbolicLinkObject@16 +NtCreateThread@32 +NtCreateThreadEx@44 +NtCreateTimer@16 +NtCreateToken@52 +NtCreateTransaction@40 +NtCreateTransactionManager@24 +NtCreateUserProcess@44 +NtCreateWaitablePort@20 +NtCreateWorkerFactory@40 +NtCurrentTeb@0 +NtDebugActiveProcess@8 +NtDebugContinue@12 +NtDelayExecution@8 +NtDeleteAtom@4 +NtDeleteBootEntry@4 +NtDeleteDriverEntry@4 +NtDeleteFile@4 +NtDeleteKey@4 +NtDeleteObjectAuditAlarm@12 +NtDeletePrivateNamespace@4 +NtDeleteValueKey@8 +NtDeviceIoControlFile@40 +NtDisableLastKnownGood@0 +NtDisplayString@4 +NtDrawText@4 +NtDuplicateObject@28 +NtDuplicateToken@24 +NtEnableLastKnownGood@0 +NtEnumerateBootEntries@8 +NtEnumerateDriverEntries@8 +NtEnumerateKey@24 +NtEnumerateSystemEnvironmentValuesEx@12 +NtEnumerateTransactionObject@20 +NtEnumerateValueKey@24 +NtExtendSection@8 +NtFilterToken@24 +NtFindAtom@12 +NtFlushBuffersFile@8 +NtFlushInstallUILanguage@8 +NtFlushInstructionCache@12 +NtFlushKey@4 +NtFlushProcessWriteBuffers@0 +NtFlushVirtualMemory@16 +NtFlushWriteBuffer@0 +NtFreeUserPhysicalPages@12 +NtFreeVirtualMemory@16 +NtFreezeRegistry@4 +NtFreezeTransactions@8 +NtFsControlFile@40 +NtGetContextThread@8 +NtGetCurrentProcessorNumber@0 +NtGetDevicePowerState@8 +NtGetMUIRegistryInfo@12 +NtGetNextProcess@20 +NtGetNextThread@24 +NtGetNlsSectionPtr@20 +NtGetNotificationResourceManager@28 +NtGetPlugPlayEvent@16 +NtGetTickCount@0 +NtGetWriteWatch@28 +NtImpersonateAnonymousToken@4 +NtImpersonateClientOfPort@8 +NtImpersonateThread@12 +NtInitializeNlsFiles@16 ;Check!!! gendef says 12 +NtInitializeRegistry@4 +NtInitiatePowerAction@16 +NtIsProcessInJob@8 +NtIsSystemResumeAutomatic@0 +NtIsUILanguageComitted@0 +NtListenPort@8 +NtLoadDriver@4 +NtLoadKey2@12 +NtLoadKey@8 +NtLoadKeyEx@32 +NtLockFile@40 +NtLockProductActivationKeys@8 +NtLockRegistryKey@4 +NtLockVirtualMemory@16 +NtMakePermanentObject@4 +NtMakeTemporaryObject@4 +NtMapCMFModule@24 +NtMapUserPhysicalPages@12 +NtMapUserPhysicalPagesScatter@12 +NtMapViewOfSection@40 +NtModifyBootEntry@4 +NtModifyDriverEntry@4 +NtNotifyChangeDirectoryFile@36 +NtNotifyChangeKey@40 +NtNotifyChangeMultipleKeys@48 +NtNotifyChangeSession@32 +NtOpenDirectoryObject@12 +NtOpenEnlistment@20 +NtOpenEvent@12 +NtOpenEventPair@12 +NtOpenFile@24 +NtOpenIoCompletion@12 +NtOpenJobObject@12 +NtOpenKey@12 +NtOpenKeyEx@16 +NtOpenKeyTransacted@16 +NtOpenKeyTransactedEx@20 +NtOpenKeyedEvent@12 +NtOpenMutant@12 +NtOpenObjectAuditAlarm@48 +NtOpenPrivateNamespace@16 +NtOpenProcess@16 +NtOpenProcessToken@12 +NtOpenProcessTokenEx@16 +NtOpenResourceManager@20 +NtOpenSection@12 +NtOpenSemaphore@12 +NtOpenSession@12 +NtOpenSymbolicLinkObject@12 +NtOpenThread@16 +NtOpenThreadToken@16 +NtOpenThreadTokenEx@20 +NtOpenTimer@12 +NtOpenTransaction@20 +NtOpenTransactionManager@24 +NtPlugPlayControl@12 +NtPowerInformation@20 +NtPrePrepareComplete@8 +NtPrePrepareEnlistment@8 +NtPrepareComplete@8 +NtPrepareEnlistment@8 +NtPrivilegeCheck@12 +NtPrivilegeObjectAuditAlarm@24 +NtPrivilegedServiceAuditAlarm@20 +NtPropagationComplete@16 +NtPropagationFailed@12 +NtProtectVirtualMemory@20 +NtPulseEvent@8 +NtQueryAttributesFile@8 +NtQueryBootEntryOrder@8 +NtQueryBootOptions@8 +NtQueryDebugFilterState@8 +NtQueryDefaultLocale@8 +NtQueryDefaultUILanguage@4 +NtQueryDirectoryFile@44 +NtQueryDirectoryObject@28 +NtQueryDriverEntryOrder@8 +NtQueryEaFile@36 +NtQueryEvent@20 +NtQueryFullAttributesFile@8 +NtQueryInformationAtom@20 +NtQueryInformationEnlistment@20 +NtQueryInformationFile@20 +NtQueryInformationJobObject@20 +NtQueryInformationPort@20 +NtQueryInformationProcess@20 +NtQueryInformationResourceManager@20 +NtQueryInformationThread@20 +NtQueryInformationToken@20 +NtQueryInformationTransaction@20 +NtQueryInformationTransactionManager@20 +NtQueryInformationWorkerFactory@20 +NtQueryInstallUILanguage@4 +NtQueryIntervalProfile@8 +NtQueryIoCompletion@20 +NtQueryKey@20 +NtQueryLicenseValue@20 +NtQueryMultipleValueKey@24 +NtQueryMutant@20 +NtQueryObject@20 +NtQueryOpenSubKeys@8 +NtQueryOpenSubKeysEx@16 +NtQueryPerformanceCounter@8 +NtQueryPortInformationProcess@0 +NtQueryQuotaInformationFile@36 +NtQuerySection@20 +NtQuerySecurityAttributesToken@24 +NtQuerySecurityObject@20 +NtQuerySemaphore@20 +NtQuerySymbolicLinkObject@12 +NtQuerySystemEnvironmentValue@16 +NtQuerySystemEnvironmentValueEx@20 +NtQuerySystemInformation@16 +NtQuerySystemInformationEx@24 +NtQuerySystemTime@4 +NtQueryTimer@20 +NtQueryTimerResolution@12 +NtQueryValueKey@24 +NtQueryVirtualMemory@24 +NtQueryVolumeInformationFile@20 +NtQueueApcThread@20 +NtQueueApcThreadEx@24 +NtRaiseException@12 +NtRaiseHardError@24 +NtReadFile@36 +NtReadFileScatter@36 +NtReadOnlyEnlistment@8 +NtReadRequestData@24 +NtReadVirtualMemory@20 +NtRecoverEnlistment@8 +NtRecoverResourceManager@4 +NtRecoverTransactionManager@4 +NtRegisterProtocolAddressInformation@20 +NtRegisterThreadTerminatePort@4 +NtReleaseCMFViewOwnership@0 +NtReleaseKeyedEvent@16 +NtReleaseMutant@8 +NtReleaseSemaphore@12 +NtReleaseWorkerFactoryWorker@4 +NtRemoveIoCompletion@20 +NtRemoveIoCompletionEx@24 +NtRemoveProcessDebug@8 +NtRenameKey@8 +NtRenameTransactionManager@8 +NtReplaceKey@12 +NtReplacePartitionUnit@12 +NtReplyPort@8 +NtReplyWaitReceivePort@16 +NtReplyWaitReceivePortEx@20 +NtReplyWaitReplyPort@8 +NtRequestDeviceWakeup@4 +NtRequestPort@8 +NtRequestWaitReplyPort@12 +NtRequestWakeupLatency@4 +NtResetEvent@8 +NtResetWriteWatch@12 +NtRestoreKey@12 +NtResumeProcess@4 +NtResumeThread@8 +NtRollbackComplete@8 +NtRollbackEnlistment@8 +NtRollbackTransaction@8 +NtRollforwardTransactionManager@8 +NtSaveKey@8 +NtSaveKeyEx@12 +NtSaveMergedKeys@12 +NtSecureConnectPort@36 +NtSerializeBoot@0 +NtSetBootEntryOrder@8 +NtSetBootOptions@8 +NtSetContextThread@8 +NtSetDebugFilterState@12 +NtSetDefaultHardErrorPort@4 +NtSetDefaultLocale@8 +NtSetDefaultUILanguage@4 +NtSetDriverEntryOrder@8 +NtSetEaFile@16 +NtSetEvent@8 +NtSetEventBoostPriority@4 +NtSetHighEventPair@4 +NtSetHighWaitLowEventPair@4 +NtSetInformationDebugObject@20 +NtSetInformationEnlistment@16 +NtSetInformationFile@20 +NtSetInformationJobObject@16 +NtSetInformationKey@16 +NtSetInformationObject@16 +NtSetInformationProcess@16 +NtSetInformationResourceManager@16 +NtSetInformationThread@16 +NtSetInformationToken@16 +NtSetInformationTransaction@16 +NtSetInformationTransactionManager@16 +NtSetInformationWorkerFactory@16 +NtSetIntervalProfile@8 +NtSetIoCompletion@20 +NtSetIoCompletionEx@24 +NtSetLdtEntries@24 +NtSetLowEventPair@4 +NtSetLowWaitHighEventPair@4 +NtSetQuotaInformationFile@16 +NtSetSecurityObject@12 +NtSetSystemEnvironmentValue@8 +NtSetSystemEnvironmentValueEx@20 +NtSetSystemInformation@12 +NtSetSystemPowerState@12 +NtSetSystemTime@8 +NtSetThreadExecutionState@8 +NtSetTimer@28 +NtSetTimerEx@16 +NtSetTimerResolution@12 +NtSetUuidSeed@4 +NtSetValueKey@24 +NtSetVolumeInformationFile@20 +NtShutdownSystem@4 +NtShutdownWorkerFactory@8 +NtSignalAndWaitForSingleObject@16 +NtSinglePhaseReject@8 +NtStartProfile@4 +NtStopProfile@4 +NtSuspendProcess@4 +NtSuspendThread@8 +NtSystemDebugControl@24 +NtTerminateJobObject@8 +NtTerminateProcess@8 +NtTerminateThread@8 +NtTestAlert@0 +NtThawRegistry@0 +NtThawTransactions@0 +NtTraceControl@24 +NtTraceEvent@16 +NtTranslateFilePath@16 +NtUmsThreadYield@4 +NtUnloadDriver@4 +NtUnloadKey2@8 +NtUnloadKey@4 +NtUnloadKeyEx@8 +NtUnlockFile@20 +NtUnlockVirtualMemory@16 +NtUnmapViewOfSection@8 +NtVdmControl@8 +NtWaitForDebugEvent@16 +NtWaitForKeyedEvent@16 +NtWaitForMultipleObjects32@20 +NtWaitForMultipleObjects@20 +NtWaitForSingleObject@12 +NtWaitForWorkViaWorkerFactory@8 +NtWaitHighEventPair@4 +NtWaitLowEventPair@4 +NtWorkerFactoryWorkerReady@4 +NtWow64CallFunction64@28 +NtWow64CsrAllocateCaptureBuffer@8 +NtWow64CsrAllocateMessagePointer@12 +NtWow64CsrCaptureMessageBuffer@16 +NtWow64CsrCaptureMessageString@20 +NtWow64CsrClientCallServer@16 +NtWow64CsrClientConnectToServer@20 +NtWow64CsrFreeCaptureBuffer@4 +NtWow64CsrGetProcessId@0 +NtWow64CsrIdentifyAlertableThread@0 +NtWow64CsrVerifyRegion@8 +NtWow64DebuggerCall@20 +NtWow64GetCurrentProcessorNumberEx@4 +NtWow64GetNativeSystemInformation@16 +NtWow64InterlockedPopEntrySList@4 +NtWow64QueryInformationProcess64@20 +NtWow64QueryVirtualMemory64@32 +NtWow64ReadVirtualMemory64@28 +NtWow64WriteVirtualMemory64@28 +NtWriteFile@36 +NtWriteFileGather@36 +NtWriteRequestData@24 +NtWriteVirtualMemory@20 +NtYieldExecution@0 +; Not sure, but we assume here standard DefWindowProc arguments +NtdllDefWindowProc_A@16 +NtdllDefWindowProc_W@16 +; Not sure, but we assume here standard DefDlgProc arguments +NtdllDialogWndProc_A@16 +NtdllDialogWndProc_W@16 +PfxFindPrefix@8 +PfxInitialize@4 +PfxInsertPrefix@12 +PfxRemovePrefix@8 +RtlAbortRXact@4 +RtlAbsoluteToSelfRelativeSD@12 +RtlAcquirePebLock@0 +RtlAcquirePrivilege@16 +RtlAcquireReleaseSRWLockExclusive@4 +RtlAcquireResourceExclusive@8 +RtlAcquireResourceShared@8 +RtlAcquireSRWLockExclusive@4 +RtlAcquireSRWLockShared@4 +RtlActivateActivationContext@12 +RtlActivateActivationContextEx@16 +RtlAddAccessAllowedAce@16 +RtlAddAccessAllowedAceEx@20 +RtlAddAccessAllowedObjectAce@28 +RtlAddAccessDeniedAce@16 +RtlAddAccessDeniedAceEx@20 +RtlAddAccessDeniedObjectAce@28 +RtlAddAce@20 +RtlAddActionToRXact@24 +RtlAddAtomToAtomTable@12 +RtlAddAttributeActionToRXact@32 +RtlAddAuditAccessAce@24 +RtlAddAuditAccessAceEx@28 +RtlAddAuditAccessObjectAce@36 +RtlAddCompoundAce@24 +RtlAddIntegrityLabelToBoundaryDescriptor@8 +RtlAddMandatoryAce@24 +RtlAddRefActivationContext@4 +RtlAddRange@36 +RtlAddRefMemoryStream@4 +RtlAddSIDToBoundaryDescriptor@8 +RtlAddVectoredContinueHandler@8 +RtlAddVectoredExceptionHandler@8 +RtlAddressInSectionTable@12 +RtlAdjustPrivilege@16 +RtlAllocateActivationContextStack@4 +RtlAllocateAndInitializeSid@44 +RtlAllocateHandle@8 +RtlAllocateHeap@12 +RtlAllocateMemoryBlockLookaside@12 +RtlAllocateMemoryZone@12 +RtlAnsiCharToUnicodeChar@4 +RtlAnsiStringToUnicodeSize@4 +RtlAnsiStringToUnicodeString@12 +RtlAppendAsciizToString@8 +RtlAppendPathElement@12 +RtlAppendStringToString@8 +RtlAppendUnicodeStringToString@8 +RtlAppendUnicodeToString@8 +RtlApplicationVerifierStop@40 +RtlApplyRXact@4 +RtlApplyRXactNoFlush@4 +RtlAreAllAccessesGranted@8 +RtlAreAnyAccessesGranted@8 +RtlAreBitsClear@12 +RtlAreBitsSet@12 +RtlAssert@16 +RtlBarrier@8 +RtlBarrierForDelete@8 +RtlCallbackLpcClient@12 +RtlCancelTimer@8 +RtlCaptureContext@4 +RtlCaptureStackBackTrace@16 +RtlCaptureStackContext@12 +RtlCharToInteger@12 +RtlCheckForOrphanedCriticalSections@4 +RtlCheckRegistryKey@8 +RtlCleanUpTEBLangLists@0 +RtlClearAllBits@4 +RtlClearBits@12 +RtlCloneMemoryStream@8 +RtlCloneUserProcess@20 +RtlCmDecodeMemIoResource@8 +RtlCmEncodeMemIoResource@24 +RtlCommitDebugInfo@8 +RtlCommitMemoryStream@8 +RtlCompactHeap@8 +RtlCompareAltitudes@8 +RtlCompareMemory@12 +RtlCompareMemoryUlong@12 +RtlCompareString@12 +RtlCompareUnicodeString@12 +RtlCompareUnicodeStrings@20 +RtlCompressBuffer@32 +RtlComputeCrc32@12 +RtlComputeImportTableHash@12 +RtlComputePrivatizedDllName_U@12 +RtlConnectToSm@16 +RtlConsoleMultiByteToUnicodeN@24 +RtlContractHashTable@4 +RtlConvertExclusiveToShared@4 +RtlConvertLCIDToString@20 +RtlConvertLongToLargeInteger@4 +RtlConvertSharedToExclusive@4 +RtlConvertSidToUnicodeString@12 +RtlConvertToAutoInheritSecurityObject@24 +RtlConvertUiListToApiList@12 +RtlConvertUlongToLargeInteger@4 +RtlCopyExtendedContext@12 +RtlCopyLuid@8 +RtlCopyLuidAndAttributesArray@12 +RtlCopyMappedMemory@12 +RtlCopyMemoryStreamTo@24 +RtlCopyOutOfProcessMemoryStreamTo@24 +RtlCopyRangeList@8 +RtlCopySecurityDescriptor@8 +RtlCopySid@12 +RtlCopySidAndAttributesArray@28 +RtlCopyString@8 +RtlCopyUnicodeString@8 +RtlCreateAcl@12 +RtlCreateActivationContext@24 +RtlCreateAndSetSD@20 +RtlCreateAtomTable@8 +RtlCreateBootStatusDataFile@4 +RtlCreateBoundaryDescriptor@8 +RtlCreateEnvironment@8 +RtlCreateEnvironmentEx@12 +RtlCreateHashTable@12 +RtlCreateHeap@24 +RtlCreateLpcServer@24 +RtlCreateMemoryBlockLookaside@20 +RtlCreateMemoryZone@12 +RtlCreateProcessParameters@40 +RtlCreateProcessParametersEx@44 +RtlCreateProcessReflection@24 +RtlCreateQueryDebugBuffer@8 +RtlCreateRegistryKey@8 +RtlCreateSecurityDescriptor@8 +RtlCreateServiceSid@12 +RtlCreateSystemVolumeInformationFolder@4 +RtlCreateTagHeap@16 +RtlCreateTimer@28 +RtlCreateTimerQueue@4 +RtlCreateUnicodeString@8 +RtlCreateUnicodeStringFromAsciiz@8 +RtlCreateUserProcess@40 +RtlCreateUserSecurityObject@28 +RtlCreateUserStack@24 +RtlCreateUserThread@40 +RtlCreateVirtualAccountSid@16 +RtlCultureNameToLCID@8 +RtlCustomCPToUnicodeN@24 +RtlCutoverTimeToSystemTime@16 +RtlDeCommitDebugInfo@12 +RtlDeNormalizeProcessParams@4 +RtlDeactivateActivationContext@8 +RtlDebugPrintTimes@0 +RtlDecodePointer@4 +RtlDecodeSystemPointer@4 +RtlDecompressBuffer@24 +RtlDecompressFragment@32 +RtlDefaultNpAcl@4 +RtlDelete@4 +RtlDeleteAce@8 +RtlDeleteAtomFromAtomTable@8 +RtlDeleteBarrier@4 +RtlDeleteBoundaryDescriptor@4 +RtlDeleteCriticalSection@4 +RtlDeleteElementGenericTable@8 +RtlDeleteElementGenericTableAvl@8 +RtlDeleteHashTable@4 +RtlDeleteNoSplay@8 +RtlDeleteOwnersRanges@8 +RtlDeleteRange@24 +RtlDeleteRegistryValue@12 +RtlDeleteResource@4 +RtlDeleteSecurityObject@4 +RtlDeleteTimer@12 +RtlDeleteTimerQueue@4 +RtlDeleteTimerQueueEx@8 +RtlDeNormalizeProcessParams@4 +RtlDeregisterSecureMemoryCacheCallback@4 +RtlDeregisterWait@4 +RtlDeregisterWaitEx@8 +RtlDestroyAtomTable@4 +RtlDestroyEnvironment@4 +RtlDestroyHandleTable@4 +RtlDestroyHeap@4 +RtlDestroyMemoryBlockLookaside@4 +RtlDestroyMemoryZone@4 +RtlDestroyProcessParameters@4 +RtlDestroyQueryDebugBuffer@4 +RtlDetectHeapLeaks@0 +RtlDetermineDosPathNameType_U@4 +RtlDisableThreadProfiling@4 +RtlDllShutdownInProgress@0 +RtlDnsHostNameToComputerName@12 +RtlDoesFileExists_U@4 +RtlDosApplyFileIsolationRedirection_Ustr@36 +RtlDosPathNameToNtPathName_U@16 +RtlDosPathNameToNtPathName_U_WithStatus@16 +RtlDosPathNameToRelativeNtPathName_U@16 +RtlDosPathNameToRelativeNtPathName_U_WithStatus@16 +RtlDosSearchPath_U@24 +RtlDosSearchPath_Ustr@36 +RtlDowncaseUnicodeChar@4 +RtlDowncaseUnicodeString@12 +RtlDumpResource@4 +RtlDuplicateUnicodeString@12 +RtlEmptyAtomTable@8 +RtlEnableEarlyCriticalSectionEventCreation@0 +RtlEnableThreadProfiling@20 +RtlEncodePointer@4 +RtlEncodeSystemPointer@4 +RtlEndEnumerationHashTable@8 +RtlEndWeakEnumerationHashTable@8 +RtlEnlargedIntegerMultiply@8 +RtlEnlargedUnsignedDivide@16 +RtlEnlargedUnsignedMultiply@8 +RtlEnterCriticalSection@4 +RtlEnumProcessHeaps@8 +RtlEnumerateEntryHashTable@8 +RtlEnumerateGenericTable@8 +RtlEnumerateGenericTableAvl@8 +RtlEnumerateGenericTableLikeADirectory@28 +RtlEnumerateGenericTableWithoutSplaying@8 +RtlEnumerateGenericTableWithoutSplayingAvl@8 +RtlEqualComputerName@8 +RtlEqualDomainName@8 +RtlEqualLuid@8 +RtlEqualPrefixSid@8 +RtlEqualSid@8 +RtlEqualString@12 +RtlEqualUnicodeString@12 +RtlEraseUnicodeString@4 +RtlEthernetAddressToStringA@8 +RtlEthernetAddressToStringW@8 +RtlEthernetStringToAddressA@12 +RtlEthernetStringToAddressW@12 +RtlExitUserProcess@4 +; Not sure, but we assume @4 +RtlExitUserThread@4 +RtlExpandEnvironmentStrings@24 +RtlExpandEnvironmentStrings_U@16 +RtlExpandHashTable@4 +RtlExtendMemoryBlockLookaside@8 +RtlExtendMemoryZone@8 +RtlExtendedIntegerMultiply@12 +RtlExtendedLargeIntegerDivide@16 +RtlExtendedMagicDivide@20 +RtlExtendHeap@16 +RtlFillMemory@12 +RtlFillMemoryUlong@12 +RtlFillMemoryUlonglong@16 +RtlFinalReleaseOutOfProcessMemoryStream@4 +RtlFindAceByType@12 +RtlFindActivationContextSectionGuid@20 +RtlFindActivationContextSectionString@20 +RtlFindCharInUnicodeString@16 +RtlFindClearBits@12 +RtlFindClearBitsAndSet@12 +RtlFindClearRuns@16 +RtlFindClosestEncodableLength@12 +RtlFindLastBackwardRunClear@12 +RtlFindLeastSignificantBit@8 +RtlFindLongestRunClear@8 +RtlFindLongestRunSet@8 +RtlFindMessage@20 +RtlFindMostSignificantBit@8 +RtlFindNextForwardRunClear@12 +RtlFindRange@48 +RtlFindSetBits@12 +RtlFindSetBitsAndClear@12 +RtlFirstEntrySList@4 +RtlFirstFreeAce@8 +RtlFlsAlloc@8 +RtlFlsFree@4 +RtlFlushSecureMemoryCache@8 +RtlFormatCurrentUserKeyPath@4 +RtlFormatMessage@36 +RtlFormatMessageEx@40 +RtlFreeActivationContextStack@4 +RtlFreeAnsiString@4 +RtlFreeHandle@8 +RtlFreeHeap@12 +RtlFreeMemoryBlockLookaside@8 +RtlFreeOemString@4 +RtlFreeSid@4 +RtlFreeThreadActivationContextStack@0 +RtlFreeUnicodeString@4 +RtlFreeUserStack@4 +RtlFreeUserThreadStack@8 +RtlGUIDFromString@8 +RtlGenerate8dot3Name@16 +RtlGetAce@12 +RtlGetActiveActivationContext@4 +RtlGetCallersAddress@8 +RtlGetCompressionWorkSpaceSize@12 +RtlGetControlSecurityDescriptor@12 +RtlGetCriticalSectionRecursionCount@4 +RtlGetCurrentDirectory_U@8 +RtlGetCurrentPeb@0 +RtlGetCurrentProcessorNumber@0 +RtlGetCurrentProcessorNumberEx@4 +RtlGetCurrentTransaction@0 +RtlGetDaclSecurityDescriptor@16 +RtlGetElementGenericTable@8 +RtlGetElementGenericTableAvl@8 +RtlGetEnabledExtendedFeatures@8 +RtlGetExtendedContextLength@8 +RtlGetExtendedFeaturesMask@4 +RtlGetFileMUIPath@28 +RtlGetFirstRange@12 +RtlGetFrame@0 +RtlGetFullPathName_U@16 +RtlGetFullPathName_UEx@20 +RtlGetFullPathName_UstrEx@32 +RtlGetGroupSecurityDescriptor@12 +RtlGetIntegerAtom@8 +RtlGetLastNtStatus@0 +RtlGetLastWin32Error@0 +RtlGetLengthWithoutLastFullDosOrNtPathElement@12 +RtlGetLengthWithoutTrailingPathSeperators@12 +RtlGetLocaleFileMappingAddress@12 +RtlGetLongestNtPathLength@0 +RtlGetNativeSystemInformation@16 +RtlGetNextRange@12 +RtlGetNextEntryHashTable@8 +RtlGetNtGlobalFlags@0 +RtlGetNtProductType@4 +RtlGetNtVersionNumbers@12 +RtlGetOwnerSecurityDescriptor@12 +RtlGetParentLocaleName@16 +RtlGetProcessHeaps@8 +RtlGetProcessPreferredUILanguages@16 +RtlGetProductInfo@20 +RtlGetSaclSecurityDescriptor@16 +RtlGetSecurityDescriptorRMControl@8 +RtlGetSetBootStatusData@24 +RtlGetSystemPreferredUILanguages@20 +RtlGetThreadErrorMode@0 +RtlGetThreadLangIdByIndex@16 +RtlGetThreadPreferredUILanguages@16 +RtlGetUILanguageInfo@20 +RtlGetUnloadEventTrace@0 +RtlGetUnloadEventTraceEx@12 +RtlGetUserInfoHeap@20 +RtlGetUserPreferredUILanguages@20 +RtlGetVersion@4 +RtlGUIDFromString@8 +RtlHashUnicodeString@16 +RtlHeapTrkInitialize@4 +RtlIdentifierAuthoritySid@4 +RtlIdnToAscii@20 +RtlIdnToNameprepUnicode@20 +RtlIdnToUnicode@20 +RtlImageDirectoryEntryToData@16 +RtlImageNtHeader@4 +RtlImageNtHeaderEx@20 +RtlImageRvaToSection@12 +RtlImageRvaToVa@16 +RtlImpersonateLpcClient@8 +RtlImpersonateSelf@4 +RtlImpersonateSelfEx@12 +RtlInitAnsiString@8 +RtlInitAnsiStringEx@8 +RtlInitBarrier@12 +RtlInitCodePageTable@8 +RtlInitEnumerationHashTable@8 +RtlInitMemoryStream@4 +RtlInitNlsTables@16 +RtlInitOutOfProcessMemoryStream@4 +RtlInitString@8 +RtlInitUnicodeString@8 +RtlInitUnicodeStringEx@8 +RtlInitWeakEnumerationHashTable@8 +RtlInitializeAtomPackage@4 +RtlInitializeBitMap@12 +RtlInitializeConditionVariable@4 +RtlInitializeContext@20 +RtlInitializeCriticalSection@4 +RtlInitializeCriticalSectionAndSpinCount@8 +RtlInitializeCriticalSectionEx@12 +RtlInitializeExceptionChain@4 +RtlInitializeExtendedContext@12 +RtlInitializeGenericTable@20 +RtlInitializeGenericTableAvl@20 +RtlInitializeHandleTable@12 +RtlInitializeNtUserPfn@24 +RtlInitializeRXact@12 +RtlInitializeResource@4 +RtlInitializeSListHead@4 +RtlInitializeSRWLock@4 +RtlInitializeSid@12 +RtlInsertElementGenericTable@16 +RtlInsertElementGenericTableAvl@16 +RtlInsertElementGenericTableFull@24 +RtlInsertElementGenericTableFullAvl@24 +RtlInsertEntryHashTable@16 +RtlInt64ToUnicodeString@16 +RtlIntegerToChar@16 +RtlIntegerToUnicodeString@12 +RtlInterlockedClearBitRun@12 +RtlInterlockedCompareExchange64@20 +RtlInterlockedFlushSList@4 +RtlInterlockedPopEntrySList@4 +RtlInterlockedPushEntrySList@8 +RtlInvertRangeList@8 +RtlInterlockedSetBitRun@12 +RtlIoDecodeMemIoResource@16 +RtlIoEncodeMemIoResource@40 +RtlIpv4AddressToStringA@8 +RtlIpv4AddressToStringExA@16 +RtlIpv4AddressToStringExW@16 +RtlIpv4AddressToStringW@8 +RtlIpv4StringToAddressA@16 +RtlIpv4StringToAddressExA@16 +RtlIpv4StringToAddressExW@16 +RtlIpv4StringToAddressW@16 +RtlIpv6AddressToStringA@8 +RtlIpv6AddressToStringExA@20 +RtlIpv6AddressToStringExW@20 +RtlIpv6AddressToStringW@8 +RtlIpv6StringToAddressA@12 +RtlIpv6StringToAddressExA@16 +RtlIpv6StringToAddressExW@16 +RtlIpv6StringToAddressW@12 +RtlIsActivationContextActive@4 +RtlIsCriticalSectionLocked@4 +RtlIsCriticalSectionLockedByThread@4 +RtlIsCurrentThreadAttachExempt@0 +RtlIsDosDeviceName_U@4 +RtlIsGenericTableEmpty@4 +RtlIsGenericTableEmptyAvl@4 +RtlIsNameInExpression@16 +RtlIsNameLegalDOS8Dot3@12 +RtlIsNormalizedString@16 +RtlIsRangeAvailable@40 +RtlIsTextUnicode@12 +RtlIsThreadWithinLoaderCallout@0 +RtlIsValidHandle@8 +RtlIsValidIndexHandle@12 +RtlIsValidLocaleName@8 +RtlKnownExceptionFilter@4 +RtlLCIDToCultureName@8 +RtlLargeIntegerAdd@16 +RtlLargeIntegerArithmeticShift@12 +RtlLargeIntegerDivide@20 +RtlLargeIntegerNegate@8 +RtlLargeIntegerShiftLeft@12 +RtlLargeIntegerShiftRight@12 +RtlLargeIntegerSubtract@16 +RtlLargeIntegerToChar@16 +RtlLcidToLocaleName@16 +RtlLeaveCriticalSection@4 +RtlLengthRequiredSid@4 +RtlLengthSecurityDescriptor@4 +RtlLengthSid@4 +RtlLoadString@32 +RtlLocalTimeToSystemTime@8 +RtlLocaleNameToLcid@12 +RtlLocateExtendedFeature@12 +RtlLocateLegacyContext@8 +RtlLockBootStatusData@4 +RtlLockCurrentThread@0 +RtlLockHeap@4 +RtlLockMemoryBlockLookaside@4 +RtlLockMemoryStreamRegion@24 +RtlLockMemoryZone@4 +RtlLockModuleSection@4 +RtlLogStackBackTrace@0 +RtlLookupAtomInAtomTable@12 +RtlLookupElementGenericTable@8 +RtlLookupElementGenericTableAvl@8 +RtlLookupElementGenericTableFull@16 +RtlLookupElementGenericTableFullAvl@16 +RtlLookupEntryHashTable@12 +RtlMakeSelfRelativeSD@12 +RtlMapGenericMask@8 +RtlMapSecurityErrorToNtStatus@4 +RtlMergeRangeLists@16 +RtlMoveMemory@12 +RtlMultiAppendUnicodeStringBuffer@12 +RtlMultiByteToUnicodeN@20 +RtlMultiByteToUnicodeSize@12 +RtlMultipleAllocateHeap@20 +RtlMultipleFreeHeap@16 +RtlNewInstanceSecurityObject@40 +RtlNewSecurityGrantedAccess@24 +RtlNewSecurityObject@24 +RtlNewSecurityObjectEx@32 +RtlNewSecurityObjectWithMultipleInheritance@36 +RtlNormalizeProcessParams@4 +RtlNormalizeString@20 +RtlNtPathNameToDosPathName@16 +RtlNtStatusToDosError@4 +RtlNtStatusToDosErrorNoTeb@4 +RtlNumberGenericTableElements@4 +RtlNumberGenericTableElementsAvl@4 +RtlNumberOfClearBits@4 +RtlNumberOfSetBits@4 +RtlNumberOfSetBitsUlongPtr@4 +RtlOemStringToUnicodeSize@4 +RtlOemStringToUnicodeString@12 +RtlOemToUnicodeN@20 +RtlOpenCurrentUser@8 +RtlOwnerAcesPresent@4 +RtlPcToFileHeader@8 +RtlPinAtomInAtomTable@8 +RtlPopFrame@4 +RtlPrefixString@12 +RtlPrefixUnicodeString@12 +RtlProcessFlsData@4 +RtlProtectHeap@8 +RtlPushFrame@4 +RtlQueryActivationContextApplicationSettings@28 +RtlQueryAtomInAtomTable@24 +RtlQueryCriticalSectionOwner@4 +RtlQueryDepthSList@4 +RtlQueryDynamicTimeZoneInformation@4 +RtlQueryElevationFlags@4 +RtlQueryEnvironmentVariable@24 +RtlQueryEnvironmentVariable_U@12 +RtlQueryHeapInformation@20 +RtlQueryInformationAcl@16 +RtlQueryInformationActivationContext@28 +RtlQueryInformationActiveActivationContext@16 +RtlQueryInterfaceMemoryStream@12 +RtlQueryModuleInformation@12 +RtlQueryPerformanceCounter@4 +RtlQueryPerformanceFrequency@4 +RtlQueryProcessBackTraceInformation@4 +RtlQueryProcessDebugInformation@12 +RtlQueryProcessHeapInformation@4 +RtlQueryProcessLockInformation@4 +RtlQueryRegistryValues@20 +RtlQuerySecurityObject@20 +RtlQueryTagHeap@20 +RtlQueryThreadProfiling@8 +RtlQueryTimeZoneInformation@4 +RtlQueueApcWow64Thread@20 +RtlQueueWorkItem@12 +RtlRaiseException@4 +RtlRaiseStatus@4 +RtlRandom@4 +RtlRandomEx@4 +RtlReAllocateHeap@16 +RtlReadMemoryStream@16 +RtlReadOutOfProcessMemoryStream@16 +RtlReadThreadProfilingData@12 +RtlRealPredecessor@4 +RtlRealSuccessor@4 +RtlRegisterSecureMemoryCacheCallback@4 +RtlRegisterThreadWithCsrss@0 +RtlRegisterWait@24 +RtlReleaseActivationContext@4 +RtlReleaseMemoryStream@4 +RtlReleasePebLock@0 +RtlReleasePrivilege@4 +RtlReleaseRelativeName@4 +RtlReleaseResource@4 +RtlReleaseSRWLockExclusive@4 +RtlReleaseSRWLockShared@4 +RtlRemoteCall@28 +RtlRemoveEntryHashTable@12 +RtlRemovePrivileges@12 +RtlRemoveVectoredContinueHandler@4 +RtlRemoveVectoredExceptionHandler@4 +RtlReplaceSidInSd@16 +RtlReportException@12 +RtlReportSilentProcessExit@8 +RtlReportSqmEscalation@24 +RtlResetMemoryBlockLookaside@4 +RtlResetMemoryZone@4 +RtlResetRtlTranslations@4 +RtlRestoreLastWin32Error@4 +RtlRetrieveNtUserPfn@12 +RtlRevertMemoryStream@4 +RtlRunDecodeUnicodeString@8 +RtlRunEncodeUnicodeString@8 +RtlRunOnceBeginInitialize@12 +RtlRunOnceComplete@12 +RtlRunOnceExecuteOnce@16 +RtlRunOnceInitialize@4 +RtlSecondsSince1970ToTime@8 +RtlSecondsSince1980ToTime@8 +RtlSeekMemoryStream@20 +RtlSelfRelativeToAbsoluteSD2@8 +RtlSelfRelativeToAbsoluteSD@44 +RtlSendMsgToSm@8 +RtlSetAllBits@4 +RtlSetAttributesSecurityDescriptor@12 +RtlSetBits@12 +RtlSetControlSecurityDescriptor@12 +RtlSetCriticalSectionSpinCount@8 +RtlSetCurrentDirectory_U@4 +RtlSetCurrentEnvironment@8 +RtlSetCurrentTransaction@4 +RtlSetDaclSecurityDescriptor@16 +RtlSetDynamicTimeZoneInformation@4 +RtlSetEnvironmentStrings@8 +RtlSetEnvironmentVar@20 +RtlSetEnvironmentVariable@12 +RtlSetExtendedFeaturesMask@12 +RtlSetGroupSecurityDescriptor@12 +RtlSetHeapInformation@16 +RtlSetInformationAcl@16 +RtlSetIoCompletionCallback@12 +RtlSetLastWin32Error@4 +RtlSetLastWin32ErrorAndNtStatusFromNtStatus@4 +RtlSetMemoryStreamSize@12 +RtlSetOwnerSecurityDescriptor@12 +RtlSetProcessDebugInformation@12 +RtlSetProcessIsCritical@0 +RtlSetProcessPreferredUILanguages@12 +RtlSetSaclSecurityDescriptor@16 +RtlSetSecurityDescriptorRMControl@8 +RtlSetSecurityObject@20 +RtlSetSecurityObjectEx@24 +RtlSetThreadErrorMode@8 +RtlSetThreadIsCritical@0 +RtlSetThreadPoolStartFunc@8 +RtlSetThreadPreferredUILanguages@12 +RtlSetTimeZoneInformation@4 +RtlSetTimer@28 +RtlSetUnhandledExceptionFilter@4 +RtlSetUserCallbackExceptionFilter@4 +RtlSetUserFlagsHeap@20 +RtlSetUserValueHeap@16 +RtlShutdownLpcServer@4 +RtlSidDominates@12 +RtlSidEqualLevel@12 +RtlSidHashInitialize@12 +RtlSidHashLookup@8 +RtlSidIsHigherLevel@12 +RtlSizeHeap@12 +RtlSleepConditionVariableCS@12 +RtlSleepConditionVariableSRW@16 +RtlSplay@4 +RtlStartRXact@4 +RtlStatMemoryStream@12 +RtlStringFromGUID@8 +RtlSubAuthorityCountSid@4 +RtlSubAuthoritySid@8 +RtlSubtreePredecessor@4 +RtlSubtreeSuccessor@4 +RtlSystemTimeToLocalTime@8 +RtlTestBit@8 +RtlTimeFieldsToTime@8 +RtlTimeToElapsedTimeFields@8 +RtlTimeToSecondsSince1970@8 +RtlTimeToSecondsSince1980@8 +RtlTimeToTimeFields@8 +RtlTraceDatabaseAdd@16 +RtlTraceDatabaseCreate@20 +RtlTraceDatabaseDestroy@4 +RtlTraceDatabaseEnumerate@12 +RtlTraceDatabaseFind@16 +RtlTraceDatabaseLock@4 +RtlTraceDatabaseUnlock@4 +RtlTraceDatabaseValidate@4 +RtlTryAcquirePebLock@0 +RtlTryAcquireSRWLockExclusive@4 +RtlTryAcquireSRWLockShared@4 +RtlTryEnterCriticalSection@4 +RtlUTF8ToUnicodeN@20 +RtlUnhandledExceptionFilter2@8 +RtlUnhandledExceptionFilter@4 +RtlUnicodeStringToAnsiSize@4 +RtlUnicodeStringToAnsiString@12 +RtlUnicodeStringToCountedOemString@12 +RtlUnicodeStringToInteger@12 +RtlUnicodeStringToOemSize@4 +RtlUnicodeStringToOemString@12 +RtlUnicodeToCustomCPN@24 +RtlUnicodeToMultiByteN@20 +RtlUnicodeToMultiByteSize@12 +RtlUnicodeToOemN@20 +RtlUnicodeToUTF8N@20 +RtlUniform@4 +RtlUnlockBootStatusData@4 +RtlUnlockCurrentThread@0 +RtlUnlockHeap@4 +RtlUnlockMemoryBlockLookaside@4 +RtlUnlockMemoryStreamRegion@24 +RtlUnlockMemoryZone@4 +RtlUnlockModuleSection@4 +RtlUnwind@16 +RtlUpcaseUnicodeChar@4 +RtlUpcaseUnicodeString@12 +RtlUpcaseUnicodeStringToAnsiString@12 +RtlUpcaseUnicodeStringToCountedOemString@12 +RtlUpcaseUnicodeStringToOemString@12 +RtlUpcaseUnicodeToCustomCPN@24 +RtlUpcaseUnicodeToMultiByteN@20 +RtlUpcaseUnicodeToOemN@20 +RtlUpdateClonedCriticalSection@4 +RtlUpdateClonedSRWLock@8 +RtlUpdateTimer@16 +RtlUpperChar@4 +RtlUpperString@8 +RtlUsageHeap@12 +; Not sure. +RtlUserThreadStart +RtlValidAcl@4 +RtlValidRelativeSecurityDescriptor@12 +RtlValidSecurityDescriptor@4 +RtlValidSid@4 +RtlValidateHeap@12 +RtlValidateProcessHeaps@0 +RtlValidateUnicodeString@8 +RtlVerifyVersionInfo@16 +RtlWakeAllConditionVariable@4 +RtlWakeConditionVariable@4 +RtlWalkFrameChain@12 +RtlWalkHeap@8 +RtlWeaklyEnumerateEntryHashTable@8 +RtlWerpReportException@16 +RtlWow64CallFunction64@28 +RtlWow64EnableFsRedirection@4 +RtlWow64EnableFsRedirectionEx@8 +RtlWow64LogMessageInEventLogger@12 +RtlWriteMemoryStream@16 +RtlWriteRegistryValue@24 +RtlZeroHeap@8 +RtlZeroMemory@8 +RtlZombifyActivationContext@4 +RtlpApplyLengthFunction@16 +RtlpCheckDynamicTimeZoneInformation@8 +RtlpCleanupRegistryKeys@0 +RtlpConvertCultureNamesToLCIDs@8 +RtlpConvertLCIDsToCultureNames@8 +RtlpCreateProcessRegistryInfo@4 +RtlpEnsureBufferSize@12 +RtlpGetLCIDFromLangInfoNode@12 +RtlpGetNameFromLangInfoNode@12 +RtlpGetSystemDefaultUILanguage@4 ; Check!!! gendef says @8 +RtlpGetUserOrMachineUILanguage4NLS@12 +RtlpInitializeLangRegistryInfo@4 +RtlpIsQualifiedLanguage@12 +RtlpLoadMachineUIByPolicy@12 +RtlpLoadUserUIByPolicy@12 +RtlpMuiFreeLangRegistryInfo@4 +RtlpMuiRegCreateRegistryInfo@0 +RtlpMuiRegFreeRegistryInfo@8 +RtlpMuiRegLoadRegistryInfo@8 +RtlpNotOwnerCriticalSection@0 ; Check!!! gebdef says @4 +RtlpNtCreateKey@24 +RtlpNtEnumerateSubKey@16 +RtlpNtMakeTemporaryKey@4 +RtlpNtOpenKey@16 +RtlpNtQueryValueKey@20 +RtlpNtSetValueKey@16 +RtlpQueryDefaultUILanguage@8 +; Not sure. +RtlpQueryProcessDebugInformationRemote +RtlpRefreshCachedUILanguage@8 +RtlpSetInstallLanguage@8 +RtlpSetPreferredUILanguages@12 +RtlpSetUserPreferredUILanguages@12 +RtlpUnWaitCriticalSection@4 +RtlpVerifyAndCommitUILanguageSettings@4 +RtlpWaitForCriticalSection@4 +RtlxAnsiStringToUnicodeSize@4 +RtlxOemStringToUnicodeSize@4 +RtlxUnicodeStringToAnsiSize@4 +RtlxUnicodeStringToOemSize@4 +SbExecuteProcedure@20 +SbSelectProcedure@16 +ShipAssert@8 +ShipAssertGetBufferInfo@8 +ShipAssertMsgA@12 +ShipAssertMsgW@12 +TpAllocAlpcCompletion@20 +TpAllocAlpcCompletionEx@20 +TpAllocCleanupGroup@4 +TpAllocIoCompletion@20 +TpAllocPool@8 +TpAllocTimer@16 +TpAllocWait@16 +TpAllocWork@16 +TpAlpcRegisterCompletionList@4 +TpAlpcUnregisterCompletionList@4 +TpCallbackIndependent@4 +TpCallbackLeaveCriticalSectionOnCompletion@8 +TpCallbackMayRunLong@4 +TpCallbackReleaseMutexOnCompletion@8 +TpCallbackReleaseSemaphoreOnCompletion@12 +TpCallbackSetEventOnCompletion@8 +TpCallbackUnloadDllOnCompletion@8 +TpCancelAsyncIoOperation@4 +TpCaptureCaller@4 +TpCheckTerminateWorker@4 +TpDbgDumpHeapUsage@12 +TpDbgGetFreeInfo@8 +TpDbgSetLogRoutine@4 +TpDisablePoolCallbackChecks@4 +TpDisassociateCallback@4 +TpIsTimerSet@4 +TpPoolFreeUnusedNodes@4 +TpPostWork@4 +TpQueryPoolStackInformation@8 +TpReleaseAlpcCompletion@4 +TpReleaseCleanupGroup@4 +TpReleaseCleanupGroupMembers@12 +TpReleaseIoCompletion@4 +TpReleasePool@4 +TpReleaseTimer@4 +TpReleaseWait@4 +TpReleaseWork@4 +TpSetDefaultPoolMaxThreads@4 +TpSetDefaultPoolStackInformation@4 +TpSetPoolMaxThreads@8 +TpSetPoolMinThreads@8 +TpSetPoolStackInformation@8 +TpSetTimer@16 +TpSetWait@12 +TpSimpleTryPost@12 +TpStartAsyncIoOperation@4 +TpWaitForAlpcCompletion@4 +TpWaitForIoCompletion@8 +TpWaitForTimer@8 +TpWaitForWait@8 +TpWaitForWork@8 +VerSetConditionMask@16 +WerCheckEventEscalation@8 +WerReportSQMEvent@12 +WerReportWatsonEvent@16 +WerReportSQMEvent@16 +WinSqmAddToAverageDWORD@12 +WinSqmAddToStream@16 +WinSqmAddToStreamEx@20 +WinSqmCheckEscalationAddToStreamEx@20 +WinSqmCheckEscalationSetDWORD64@20 +WinSqmCheckEscalationSetDWORD@16 +WinSqmCheckEscalationSetString@16 +WinSqmCommonDatapointDelete@4 +WinSqmCommonDatapointSetDWORD64@16 +WinSqmCommonDatapointSetDWORD@12 +WinSqmCommonDatapointSetStreamEx@20 +WinSqmCommonDatapointSetString@12 +WinSqmEndSession@4 +WinSqmEventEnabled@8 +WinSqmEventWrite@12 +WinSqmGetEscalationRuleStatus@8 +WinSqmGetInstrumentationProperty@16 +WinSqmIncrementDWORD@12 +WinSqmIsOptedIn@0 +WinSqmIsOptedInEx@4 +WinSqmSetDWORD64@16 +WinSqmSetDWORD@12 +WinSqmSetEscalationInfo@16 +WinSqmSetIfMaxDWORD@12 +WinSqmSetIfMinDWORD@12 +WinSqmSetString@12 +WinSqmStartSession@12 +ZwAcceptConnectPort@24 +ZwAccessCheck@32 +ZwAccessCheckAndAuditAlarm@44 +ZwAccessCheckByType@44 +ZwAccessCheckByTypeAndAuditAlarm@64 +ZwAccessCheckByTypeResultList@44 +ZwAccessCheckByTypeResultListAndAuditAlarm@64 +ZwAccessCheckByTypeResultListAndAuditAlarmByHandle@68 +ZwAcquireCMFViewOwnership@12 +ZwAddAtom@12 +ZwAddBootEntry@8 +ZwAddDriverEntry@8 +ZwAdjustGroupsToken@24 +ZwAdjustPrivilegesToken@24 +ZwAlertResumeThread@8 +ZwAlertThread@4 +ZwAllocateLocallyUniqueId@4 +ZwAllocateReserveObject@12 +ZwAllocateUserPhysicalPages@12 +ZwAllocateUuids@16 +ZwAllocateVirtualMemory@24 +ZwAlpcAcceptConnectPort@36 +ZwAlpcCancelMessage@12 +ZwAlpcConnectPort@44 +ZwAlpcCreatePort@12 +ZwAlpcCreatePortSection@24 +ZwAlpcCreateResourceReserve@16 +ZwAlpcCreateSectionView@12 +ZwAlpcCreateSecurityContext@12 +ZwAlpcDeletePortSection@12 +ZwAlpcDeleteResourceReserve@12 +ZwAlpcDeleteSectionView@12 +ZwAlpcDeleteSecurityContext@12 +ZwAlpcDisconnectPort@8 +ZwAlpcImpersonateClientOfPort@12 +ZwAlpcOpenSenderProcess@24 +ZwAlpcOpenSenderThread@24 +ZwAlpcQueryInformation@20 +ZwAlpcQueryInformationMessage@24 +ZwAlpcRevokeSecurityContext@12 +ZwAlpcSendWaitReceivePort@32 +ZwAlpcSetInformation@16 +ZwApphelpCacheControl@8 +ZwAreMappedFilesTheSame@8 +ZwAssignProcessToJobObject@8 +ZwCallbackReturn@12 +ZwCancelDeviceWakeupRequest@4 +ZwCancelIoFile@8 +ZwCancelIoFileEx@12 +ZwCancelSynchronousIoFile@12 +ZwCancelTimer@8 +ZwClearEvent@4 +ZwClose@4 +ZwCloseObjectAuditAlarm@12 +ZwCommitComplete@8 +ZwCommitEnlistment@8 +ZwCommitTransaction@8 +ZwCompactKeys@8 +ZwCompareTokens@12 +ZwCompleteConnectPort@4 +ZwCompressKey@4 +ZwConnectPort@32 +ZwContinue@8 +ZwCreateDebugObject@16 +ZwCreateDirectoryObject@12 +ZwCreateEnlistment@32 +ZwCreateEvent@20 +ZwCreateEventPair@12 +ZwCreateFile@44 +ZwCreateIoCompletion@16 +ZwCreateJobObject@12 +ZwCreateJobSet@12 +ZwCreateKey@28 +ZwCreateKeyTransacted@32 +ZwCreateKeyedEvent@16 +ZwCreateMailslotFile@32 +ZwCreateMutant@16 +ZwCreateNamedPipeFile@56 +ZwCreatePagingFile@16 +ZwCreatePort@20 +ZwCreatePrivateNamespace@16 +ZwCreateProcess@32 +ZwCreateProcessEx@36 +ZwCreateProfile@36 +ZwCreateProfileEx@40 +ZwCreateResourceManager@28 +ZwCreateSection@28 +ZwCreateSemaphore@20 +ZwCreateSymbolicLinkObject@16 +ZwCreateThread@32 +ZwCreateThreadEx@44 +ZwCreateTimer@16 +ZwCreateToken@52 +ZwCreateTransaction@40 +ZwCreateTransactionManager@24 +ZwCreateUserProcess@44 +ZwCreateWaitablePort@20 +ZwCreateWorkerFactory@40 +ZwDebugActiveProcess@8 +ZwDebugContinue@12 +ZwDelayExecution@8 +ZwDeleteAtom@4 +ZwDeleteBootEntry@4 +ZwDeleteDriverEntry@4 +ZwDeleteFile@4 +ZwDeleteKey@4 +ZwDeleteObjectAuditAlarm@12 +ZwDeletePrivateNamespace@4 +ZwDeleteValueKey@8 +ZwDeviceIoControlFile@40 +ZwDisableLastKnownGood@0 +ZwDisplayString@4 +ZwDrawText@4 +ZwDuplicateObject@28 +ZwDuplicateToken@24 +ZwEnableLastKnownGood@0 +ZwEnumerateBootEntries@8 +ZwEnumerateDriverEntries@8 +ZwEnumerateKey@24 +ZwEnumerateSystemEnvironmentValuesEx@12 +ZwEnumerateTransactionObject@20 +ZwEnumerateValueKey@24 +ZwExtendSection@8 +ZwFilterToken@24 +ZwFindAtom@12 +ZwFlushBuffersFile@8 +ZwFlushInstallUILanguage@8 +ZwFlushInstructionCache@12 +ZwFlushKey@4 +ZwFlushProcessWriteBuffers@0 +ZwFlushVirtualMemory@16 +ZwFlushWriteBuffer@0 +ZwFreeUserPhysicalPages@12 +ZwFreeVirtualMemory@16 +ZwFreezeRegistry@4 +ZwFreezeTransactions@8 +ZwFsControlFile@40 +ZwGetContextThread@8 +ZwGetCurrentProcessorNumber@0 +ZwGetDevicePowerState@8 +ZwGetMUIRegistryInfo@12 +ZwGetNextProcess@20 +ZwGetNextThread@24 +ZwGetNlsSectionPtr@20 +ZwGetNotificationResourceManager@28 +ZwGetPlugPlayEvent@16 +ZwGetTickCount@0 +ZwGetWriteWatch@28 +ZwImpersonateAnonymousToken@4 +ZwImpersonateClientOfPort@8 +ZwImpersonateThread@12 +ZwInitializeNlsFiles@16 +ZwInitializeRegistry@4 +ZwInitiatePowerAction@16 +ZwIsProcessInJob@8 +ZwIsSystemResumeAutomatic@0 +ZwIsUILanguageComitted@0 +ZwListenPort@8 +ZwLoadDriver@4 +ZwLoadKey2@12 +ZwLoadKey@8 +ZwLoadKeyEx@32 +ZwLockFile@40 +ZwLockProductActivationKeys@8 +ZwLockRegistryKey@4 +ZwLockVirtualMemory@16 +ZwMakePermanentObject@4 +ZwMakeTemporaryObject@4 +ZwMapCMFModule@24 +ZwMapUserPhysicalPages@12 +ZwMapUserPhysicalPagesScatter@12 +ZwMapViewOfSection@40 +ZwModifyBootEntry@4 +ZwModifyDriverEntry@4 +ZwNotifyChangeDirectoryFile@36 +ZwNotifyChangeKey@40 +ZwNotifyChangeMultipleKeys@48 +ZwNotifyChangeSession@32 +ZwOpenDirectoryObject@12 +ZwOpenEnlistment@20 +ZwOpenEvent@12 +ZwOpenEventPair@12 +ZwOpenFile@24 +ZwOpenIoCompletion@12 +ZwOpenJobObject@12 +ZwOpenKey@12 +ZwOpenKeyEx@16 +ZwOpenKeyTransacted@16 +ZwOpenKeyTransactedEx@20 +ZwOpenKeyedEvent@12 +ZwOpenMutant@12 +ZwOpenObjectAuditAlarm@48 +ZwOpenPrivateNamespace@16 +ZwOpenProcess@16 +ZwOpenProcessToken@12 +ZwOpenProcessTokenEx@16 +ZwOpenResourceManager@20 +ZwOpenSection@12 +ZwOpenSemaphore@12 +ZwOpenSession@12 +ZwOpenSymbolicLinkObject@12 +ZwOpenThread@16 +ZwOpenThreadToken@16 +ZwOpenThreadTokenEx@20 +ZwOpenTimer@12 +ZwOpenTransaction@20 +ZwOpenTransactionManager@24 +ZwPlugPlayControl@12 +ZwPowerInformation@20 +ZwPrePrepareComplete@8 +ZwPrePrepareEnlistment@8 +ZwPrepareComplete@8 +ZwPrepareEnlistment@8 +ZwPrivilegeCheck@12 +ZwPrivilegeObjectAuditAlarm@24 +ZwPrivilegedServiceAuditAlarm@20 +ZwPropagationComplete@16 +ZwPropagationFailed@12 +ZwProtectVirtualMemory@20 +ZwPulseEvent@8 +ZwQueryAttributesFile@8 +ZwQueryBootEntryOrder@8 +ZwQueryBootOptions@8 +ZwQueryDebugFilterState@8 +ZwQueryDefaultLocale@8 +ZwQueryDefaultUILanguage@4 +ZwQueryDirectoryFile@44 +ZwQueryDirectoryObject@28 +ZwQueryDriverEntryOrder@8 +ZwQueryEaFile@36 +ZwQueryEvent@20 +ZwQueryFullAttributesFile@8 +ZwQueryInformationAtom@20 +ZwQueryInformationEnlistment@20 +ZwQueryInformationFile@20 +ZwQueryInformationJobObject@20 +ZwQueryInformationPort@20 +ZwQueryInformationProcess@20 +ZwQueryInformationResourceManager@20 +ZwQueryInformationThread@20 +ZwQueryInformationToken@20 +ZwQueryInformationTransaction@20 +ZwQueryInformationTransactionManager@20 +ZwQueryInformationWorkerFactory@20 +ZwQueryInstallUILanguage@4 +ZwQueryIntervalProfile@8 +ZwQueryIoCompletion@20 +ZwQueryKey@20 +ZwQueryLicenseValue@20 +ZwQueryMultipleValueKey@24 +ZwQueryMutant@20 +ZwQueryObject@20 +ZwQueryOpenSubKeys@8 +ZwQueryOpenSubKeysEx@16 +ZwQueryPerformanceCounter@8 +ZwQueryPortInformationProcess@0 +ZwQueryQuotaInformationFile@36 +ZwQuerySection@20 +ZwQuerySecurityAttributesToken@24 +ZwQuerySecurityObject@20 +ZwQuerySemaphore@20 +ZwQuerySymbolicLinkObject@12 +ZwQuerySystemEnvironmentValue@16 +ZwQuerySystemEnvironmentValueEx@20 +ZwQuerySystemInformation@16 +ZwQuerySystemInformationEx@24 +ZwQuerySystemTime@4 +ZwQueryTimer@20 +ZwQueryTimerResolution@12 +ZwQueryValueKey@24 +ZwQueryVirtualMemory@24 +ZwQueryVolumeInformationFile@20 +ZwQueueApcThread@20 +ZwQueueApcThreadEx@24 +ZwRaiseException@12 +ZwRaiseHardError@24 +ZwReadFile@36 +ZwReadFileScatter@36 +ZwReadOnlyEnlistment@8 +ZwReadRequestData@24 +ZwReadVirtualMemory@20 +ZwRecoverEnlistment@8 +ZwRecoverResourceManager@4 +ZwRecoverTransactionManager@4 +ZwRegisterProtocolAddressInformation@20 +ZwRegisterThreadTerminatePort@4 +ZwReleaseCMFViewOwnership@0 +ZwReleaseKeyedEvent@16 +ZwReleaseMutant@8 +ZwReleaseSemaphore@12 +ZwReleaseWorkerFactoryWorker@4 +ZwRemoveIoCompletion@20 +ZwRemoveIoCompletionEx@24 +ZwRemoveProcessDebug@8 +ZwRenameKey@8 +ZwRenameTransactionManager@8 +ZwReplaceKey@12 +ZwReplacePartitionUnit@12 +ZwReplyPort@8 +ZwReplyWaitReceivePort@16 +ZwReplyWaitReceivePortEx@20 +ZwReplyWaitReplyPort@8 +ZwRequestDeviceWakeup@4 +ZwRequestPort@8 +ZwRequestWaitReplyPort@12 +ZwRequestWakeupLatency@4 +ZwResetEvent@8 +ZwResetWriteWatch@12 +ZwRestoreKey@12 +ZwResumeProcess@4 +ZwResumeThread@8 +ZwRollbackComplete@8 +ZwRollbackEnlistment@8 +ZwRollbackTransaction@8 +ZwRollforwardTransactionManager@8 +ZwSaveKey@8 +ZwSaveKeyEx@12 +ZwSaveMergedKeys@12 +ZwSecureConnectPort@36 +ZwSerializeBoot@0 +ZwSetBootEntryOrder@8 +ZwSetBootOptions@8 +ZwSetContextThread@8 +ZwSetDebugFilterState@12 +ZwSetDefaultHardErrorPort@4 +ZwSetDefaultLocale@8 +ZwSetDefaultUILanguage@4 +ZwSetDriverEntryOrder@8 +ZwSetEaFile@16 +ZwSetEvent@8 +ZwSetEventBoostPriority@4 +ZwSetHighEventPair@4 +ZwSetHighWaitLowEventPair@4 +ZwSetInformationDebugObject@20 +ZwSetInformationEnlistment@16 +ZwSetInformationFile@20 +ZwSetInformationJobObject@16 +ZwSetInformationKey@16 +ZwSetInformationObject@16 +ZwSetInformationProcess@16 +ZwSetInformationResourceManager@16 +ZwSetInformationThread@16 +ZwSetInformationToken@16 +ZwSetInformationTransaction@16 +ZwSetInformationTransactionManager@16 +ZwSetInformationWorkerFactory@16 +ZwSetIntervalProfile@8 +ZwSetIoCompletion@20 +ZwSetIoCompletionEx@24 +ZwSetLdtEntries@24 +ZwSetLowEventPair@4 +ZwSetLowWaitHighEventPair@4 +ZwSetQuotaInformationFile@16 +ZwSetSecurityObject@12 +ZwSetSystemEnvironmentValue@8 +ZwSetSystemEnvironmentValueEx@20 +ZwSetSystemInformation@12 +ZwSetSystemPowerState@12 +ZwSetSystemTime@8 +ZwSetThreadExecutionState@8 +ZwSetTimer@28 +ZwSetTimerEx@16 +ZwSetTimerResolution@12 +ZwSetUuidSeed@4 +ZwSetValueKey@24 +ZwSetVolumeInformationFile@20 +ZwShutdownSystem@4 +ZwShutdownWorkerFactory@8 +ZwSignalAndWaitForSingleObject@16 +ZwSinglePhaseReject@8 +ZwStartProfile@4 +ZwStopProfile@4 +ZwSuspendProcess@4 +ZwSuspendThread@8 +ZwSystemDebugControl@24 +ZwTerminateJobObject@8 +ZwTerminateProcess@8 +ZwTerminateThread@8 +ZwTestAlert@0 +ZwThawRegistry@0 +ZwThawTransactions@0 +ZwTraceControl@24 +ZwTraceEvent@16 +ZwTranslateFilePath@16 +ZwUmsThreadYield@4 +ZwUnloadDriver@4 +ZwUnloadKey2@8 +ZwUnloadKey@4 +ZwUnloadKeyEx@8 +ZwUnlockFile@20 +ZwUnlockVirtualMemory@16 +ZwUnmapViewOfSection@8 +ZwVdmControl@8 +ZwWaitForDebugEvent@16 +ZwWaitForKeyedEvent@16 +ZwWaitForMultipleObjects32@20 +ZwWaitForMultipleObjects@20 +ZwWaitForSingleObject@12 +ZwWaitForWorkViaWorkerFactory@8 +ZwWaitHighEventPair@4 +ZwWaitLowEventPair@4 +ZwWorkerFactoryWorkerReady@4 +ZwWow64CallFunction64@28 +ZwWow64CsrAllocateCaptureBuffer@8 +ZwWow64CsrAllocateMessagePointer@12 +ZwWow64CsrCaptureMessageBuffer@16 +ZwWow64CsrCaptureMessageString@20 +ZwWow64CsrClientCallServer@16 +ZwWow64CsrClientConnectToServer@20 +ZwWow64CsrFreeCaptureBuffer@4 +ZwWow64CsrGetProcessId@0 +ZwWow64CsrIdentifyAlertableThread@0 +ZwWow64CsrVerifyRegion@8 +ZwWow64DebuggerCall@20 +ZwWow64GetCurrentProcessorNumberEx@4 +ZwWow64GetNativeSystemInformation@16 +ZwWow64InterlockedPopEntrySList@4 +ZwWow64QueryInformationProcess64@20 +ZwWow64QueryVirtualMemory64@32 +ZwWow64ReadVirtualMemory64@28 +ZwWow64WriteVirtualMemory64@28 +ZwWriteFile@36 +ZwWriteFileGather@36 +ZwWriteRequestData@24 +ZwWriteVirtualMemory@20 +ZwYieldExecution@0 +_CIcos +_CIlog +_CIpow +_CIsin +_CIsqrt +__isascii +__iscsym +__iscsymf +__toascii +_alldiv +_alldvrm@16 +_allmul@16 +_alloca_probe +_alloca_probe_16 +_alloca_probe_8 +_allrem@16 +_allshl +_allshr +_atoi64 +_aulldiv@16 +_aulldvrm@16 +_aullrem@16 +_aullshr +;_chkstk +_fltused DATA +_ftol +_i64toa +_i64toa_s +_i64tow +_i64tow_s +_itoa +_itoa_s +_itow +_itow_s +_lfind +_ltoa +_ltoa_s +_ltow +_ltow_s +_makepath_s +_memccpy +_memicmp +_snprintf +_snprintf_s +_snscanf_s +_snwprintf +_snwprintf_s +_snwscanf_s +_splitpath +_splitpath_s +_strcmpi +_stricmp +_strlwr +_strnicmp +_strnset_s +_strset_s +_strupr +_swprintf +_tolower +_toupper +_ui64toa +_ui64toa_s +_ui64tow +_ui64tow_s +_ultoa +_ultoa_s +_ultow +_ultow_s +_vscwprintf +_vsnprintf +_vsnprintf_s +_vsnwprintf +_vsnwprintf_s +_vswprintf +_wcsicmp +_wcslwr +_wcsnicmp +_wcsnset_s +_wcsset_s +_wcstoui64 +_wcsupr +_wmakepath_s +_wsplitpath_s +_wtoi +_wtoi64 +_wtol +abs +atan DATA +atoi +atol +bsearch +ceil +cos DATA +fabs DATA +floor DATA +isalnum +isalpha +iscntrl +isdigit +isgraph +islower +isprint +ispunct +isspace +isupper +iswalpha +iswctype +iswdigit +iswlower +iswspace +iswxdigit +isxdigit +labs +log +mbstowcs +memchr +memcmp +memcpy +memcpy_s +memmove +memmove_s +memset +pow +qsort +sin +sprintf +sprintf_s +sqrt +sscanf +sscanf_s +strcat +strcat_s +strchr +strcmp +strcpy +strcpy_s +strcspn +strlen +strncat +strncat_s +strncmp +strncpy +strncpy_s +strnlen +strpbrk +strrchr +strspn +strstr +strtok_s +strtol +strtoul +swprintf +swprintf_s +swscanf_s +tan +tolower +toupper +towlower +towupper +vDbgPrintEx@16 +vDbgPrintExWithPrefix@20 +vsprintf +vsprintf_s +vswprintf_s +wcscat +wcscat_s +wcschr +wcscmp +wcscpy +wcscpy_s +wcscspn +wcslen +wcsncat +wcsncat_s +wcsncmp +wcsncpy +wcsncpy_s +wcsnlen +wcspbrk +wcsrchr +wcsspn +wcsstr +wcstol +wcstombs +wcstoul diff --git a/lib/libc/mingw/lib64/ntdll.def b/lib/libc/mingw/lib64/ntdll.def new file mode 100644 index 0000000000..2b2ad36f8a --- /dev/null +++ b/lib/libc/mingw/lib64/ntdll.def @@ -0,0 +1,2037 @@ +; +; Definition file of ntdll.dll +; Automatic generated by gendef +; written by Kai Tietz 2008 +; +LIBRARY "ntdll.dll" +EXPORTS +PropertyLengthAsVariant +RtlConvertPropertyToVariant +RtlConvertVariantToProperty +A_SHAFinal +A_SHAInit +A_SHAUpdate +AlpcAdjustCompletionListConcurrencyCount +AlpcFreeCompletionListMessage +AlpcGetCompletionListLastMessageInformation +AlpcGetCompletionListMessageAttributes +AlpcGetHeaderSize +AlpcGetMessageAttribute +AlpcGetMessageFromCompletionList +AlpcGetOutstandingCompletionListMessageCount +AlpcInitializeMessageAttribute +AlpcMaxAllowedMessageLength +AlpcRegisterCompletionList +AlpcRegisterCompletionListWorkerThread +AlpcRundownCompletionList +AlpcUnregisterCompletionList +AlpcUnregisterCompletionListWorkerThread +CsrAllocateCaptureBuffer +CsrAllocateMessagePointer +CsrCaptureMessageBuffer +CsrCaptureMessageMultiUnicodeStringsInPlace +CsrCaptureMessageString +CsrCaptureTimeout +CsrClientCallServer +CsrClientConnectToServer +CsrFreeCaptureBuffer +CsrGetProcessId +CsrIdentifyAlertableThread +CsrNewThread +CsrProbeForRead +CsrProbeForWrite +CsrSetPriorityClass +CsrVerifyRegion +DbgBreakPoint +DbgPrint +DbgPrintEx +DbgPrintReturnControlC +DbgPrompt +DbgQueryDebugFilterState +DbgSetDebugFilterState +DbgUiConnectToDbg +DbgUiContinue +DbgUiConvertStateChangeStructure +DbgUiDebugActiveProcess +DbgUiGetThreadDebugObject +DbgUiIssueRemoteBreakin +DbgUiRemoteBreakin +DbgUiSetThreadDebugObject +DbgUiStopDebugging +DbgUiWaitStateChange +DbgUserBreakPoint +EtwControlTraceA +EtwControlTraceW +EtwCreateTraceInstanceId +EtwEnableTrace +EtwEnumerateTraceGuids +EtwFlushTraceA +EtwFlushTraceW +EtwDeliverDataBlock +EtwEnumerateProcessRegGuids +EtwEventActivityIdControl +EtwEventEnabled +EtwEventProviderEnabled +EtwEventRegister +EtwEventUnregister +EtwEventWrite +EtwEventWriteEndScenario +EtwEventWriteEx +EtwEventWriteFull +EtwEventWriteNoRegistration +EtwEventWriteStartScenario +EtwEventWriteString +EtwEventWriteTransfer +EtwGetTraceEnableFlags +EtwGetTraceEnableLevel +EtwGetTraceLoggerHandle +EtwNotificationRegistrationA +EtwNotificationRegistrationW +EtwQueryAllTracesA +EtwQueryAllTracesW +EtwQueryTraceA +EtwQueryTraceW +EtwReceiveNotificationsA +EtwReceiveNotificationsW +EtwLogTraceEvent +EtwNotificationRegister +EtwNotificationUnregister +EtwProcessPrivateLoggerRequest +EtwRegisterSecurityProvider +EtwRegisterTraceGuidsA +EtwRegisterTraceGuidsW +EtwStartTraceA +EtwStartTraceW +EtwStopTraceA +EtwStopTraceW +EtwTraceEvent +EtwReplyNotification +EtwSendNotification +EtwSetMark +EtwTraceEventInstance +EtwTraceMessage +EtwTraceMessageVa +EtwUnregisterTraceGuids +EtwUpdateTraceA +EtwUpdateTraceW +EtwpGetTraceBuffer +EtwpSetHWConfigFunction +EtwWriteUMSecurityEvent +EtwpCreateEtwThread +EtwpGetCpuSpeed +EtwpNotificationThread +EvtIntReportAuthzEventAndSourceAsync +EvtIntReportEventAndSourceAsync +ExpInterlockedPopEntrySListEnd +ExpInterlockedPopEntrySListEnd16 +ExpInterlockedPopEntrySListFault +ExpInterlockedPopEntrySListFault16 +ExpInterlockedPopEntrySListResume +ExpInterlockedPopEntrySListResume16 +KiRaiseUserExceptionDispatcher +KiUserApcDispatcher +KiUserCallbackDispatcher +KiUserExceptionDispatcher +LdrAccessOutOfProcessResource +LdrAccessResource +LdrAddLoadAsDataTable +LdrAddRefDll +LdrAlternateResourcesEnabled +LdrCreateOutOfProcessImage +LdrDestroyOutOfProcessImage +LdrDisableThreadCalloutsForDll +LdrEnumResources +LdrEnumerateLoadedModules +LdrFindCreateProcessManifest +LdrFindEntryForAddress +LdrFindResourceDirectory_U +LdrFindResourceEx_U +LdrFindResource_U +LdrFlushAlternateResourceModules +LdrGetDllHandle +LdrGetDllHandleByMapping +LdrGetDllHandleByName +LdrGetDllHandleEx +LdrGetFailureData +LdrGetFileNameFromLoadAsDataTable +LdrGetKnownDllSectionHandle +LdrGetProcedureAddress +LdrGetProcedureAddressEx +LdrHotPatchRoutine +LdrInitShimEngineDynamic +LdrInitializeThunk +LdrLoadAlternateResourceModule +LdrLoadAlternateResourceModuleEx +LdrLoadDll +LdrLockLoaderLock +LdrOpenImageFileOptionsKey +LdrProcessInitializationComplete +LdrProcessRelocationBlock +LdrQueryImageFileExecutionOptions +LdrQueryImageFileExecutionOptionsEx +LdrQueryImageFileKeyOption +LdrQueryModuleServiceTags +LdrQueryProcessModuleInformation +LdrRegisterDllNotification +LdrRemoveLoadAsDataTable +LdrResFindResource +LdrResFindResourceDirectory +LdrResGetRCConfig +LdrResRelease +LdrResSearchResource +LdrRscIsTypeExist +LdrSetAppCompatDllRedirectionCallback +LdrSetDllManifestProber +LdrSetMUICacheType +LdrShutdownProcess +LdrShutdownThread +LdrUnloadAlternateResourceModule +LdrUnloadAlternateResourceModuleEx +LdrUnloadDll +LdrUnlockLoaderLock +LdrUnregisterDllNotification +LdrVerifyImageMatchesChecksum +LdrVerifyImageMatchesChecksumEx +LdrpResGetMappingSize +LdrpResGetResourceDirectory +MD4Final +MD4Init +MD4Update +MD5Final +MD5Init +MD5Update +NlsAnsiCodePage DATA +NlsMbCodePageTag DATA +NlsMbOemCodePageTag DATA +NtAcceptConnectPort +NtAccessCheck +NtAccessCheckAndAuditAlarm +NtAccessCheckByType +NtAccessCheckByTypeAndAuditAlarm +NtAccessCheckByTypeResultList +NtAccessCheckByTypeResultListAndAuditAlarm +NtAccessCheckByTypeResultListAndAuditAlarmByHandle +NtAddAtom +NtAddBootEntry +NtAddDriverEntry +NtAdjustGroupsToken +NtAdjustPrivilegesToken +NtAlertResumeThread +NtAlertThread +NtAllocateLocallyUniqueId +NtAllocateReserveObject +NtAllocateUserPhysicalPages +NtAllocateUuids +NtAllocateVirtualMemory +NtAlpcAcceptConnectPort +NtAlpcCancelMessage +NtAlpcConnectPort +NtAlpcCreatePort +NtAlpcCreatePortSection +NtAlpcCreateResourceReserve +NtAlpcCreateSectionView +NtAlpcCreateSecurityContext +NtAlpcDeletePortSection +NtAlpcDeleteResourceReserve +NtAlpcDeleteSectionView +NtAlpcDeleteSecurityContext +NtAlpcDisconnectPort +NtAlpcImpersonateClientOfPort +NtAlpcOpenSenderProcess +NtAlpcOpenSenderThread +NtAlpcQueryInformation +NtAlpcQueryInformationMessage +NtAlpcRevokeSecurityContext +NtAlpcSendWaitReceivePort +NtAlpcSetInformation +NtApphelpCacheControl +NtAreMappedFilesTheSame +NtAssignProcessToJobObject +NtCallbackReturn +NtCancelDeviceWakeupRequest +NtCancelIoFile +NtCancelIoFileEx +NtCancelSynchronousIoFile +NtCancelTimer +NtClearEvent +NtClose +NtCloseObjectAuditAlarm +NtCommitComplete +NtCommitEnlistment +NtCommitTransaction +NtCompactKeys +NtCompareTokens +NtCompleteConnectPort +NtCompressKey +NtConnectPort +NtContinue +NtCreateDebugObject +NtCreateDirectoryObject +NtCreateEnlistment +NtCreateEvent +NtCreateEventPair +NtCreateFile +NtCreateIoCompletion +NtCreateJobObject +NtCreateJobSet +NtCreateKey +NtCreateKeyTransacted +NtCreateKeyedEvent +NtCreateMailslotFile +NtCreateMutant +NtCreateNamedPipeFile +NtCreatePagingFile +NtCreatePort +NtCreatePrivateNamespace +NtCreateProcess +NtCreateProcessEx +NtCreateProfile +NtCreateProfileEx +NtCreateResourceManager +NtCreateSection +NtCreateSemaphore +NtCreateSymbolicLinkObject +NtCreateThread +NtCreateThreadEx +NtCreateTimer +NtCreateToken +NtCreateTransaction +NtCreateTransactionManager +NtCreateUserProcess +NtCreateWaitablePort +NtCreateWorkerFactory +NtDebugActiveProcess +NtDebugContinue +NtDelayExecution +NtDeleteAtom +NtDeleteBootEntry +NtDeleteDriverEntry +NtDeleteFile +NtDeleteKey +NtDeleteObjectAuditAlarm +NtDeletePrivateNamespace +NtDeleteValueKey +NtDeviceIoControlFile +NtDisableLastKnownGood +NtDisplayString +NtDrawText +NtDuplicateObject +NtDuplicateToken +NtEnableLastKnownGood +NtEnumerateBootEntries +NtEnumerateDriverEntries +NtEnumerateKey +NtEnumerateSystemEnvironmentValuesEx +NtEnumerateTransactionObject +NtEnumerateValueKey +NtExtendSection +NtFilterToken +NtFindAtom +NtFlushBuffersFile +NtFlushInstallUILanguage +NtFlushInstructionCache +NtFlushKey +NtFlushProcessWriteBuffers +NtFlushVirtualMemory +NtFlushWriteBuffer +NtFreeUserPhysicalPages +NtFreeVirtualMemory +NtFreezeRegistry +NtFreezeTransactions +NtFsControlFile +NtGetContextThread +NtGetCurrentProcessorNumber +NtGetDevicePowerState +NtGetMUIRegistryInfo +NtGetNextProcess +NtGetNextThread +NtGetNlsSectionPtr +NtGetNotificationResourceManager +NtGetPlugPlayEvent +NtGetTickCount +NtGetWriteWatch +NtImpersonateAnonymousToken +NtImpersonateClientOfPort +NtImpersonateThread +NtInitializeNlsFiles +NtInitializeRegistry +NtInitiatePowerAction +NtIsProcessInJob +NtIsSystemResumeAutomatic +NtIsUILanguageComitted +NtListenPort +NtLoadDriver +NtLoadKey +NtLoadKey2 +NtLoadKeyEx +NtLockFile +NtLockProductActivationKeys +NtLockRegistryKey +NtLockVirtualMemory +NtMakePermanentObject +NtMakeTemporaryObject +NtMapCMFModule +NtMapUserPhysicalPages +NtMapUserPhysicalPagesScatter +NtMapViewOfSection +NtModifyBootEntry +NtModifyDriverEntry +NtNotifyChangeDirectoryFile +NtNotifyChangeKey +NtNotifyChangeMultipleKeys +NtNotifyChangeSession +NtOpenDirectoryObject +NtOpenEnlistment +NtOpenEvent +NtOpenEventPair +NtOpenFile +NtOpenIoCompletion +NtOpenJobObject +NtOpenKey +NtOpenKeyEx +NtOpenKeyTransacted +NtOpenKeyTransactedEx +NtOpenKeyedEvent +NtOpenMutant +NtOpenObjectAuditAlarm +NtOpenPrivateNamespace +NtOpenProcess +NtOpenProcessToken +NtOpenProcessTokenEx +NtOpenResourceManager +NtOpenSection +NtOpenSemaphore +NtOpenSession +NtOpenSymbolicLinkObject +NtOpenThread +NtOpenThreadToken +NtOpenThreadTokenEx +NtOpenTimer +NtOpenTransaction +NtOpenTransactionManager +NtPlugPlayControl +NtPowerInformation +NtPrePrepareComplete +NtPrePrepareEnlistment +NtPrepareComplete +NtPrepareEnlistment +NtPrivilegeCheck +NtPrivilegeObjectAuditAlarm +NtPrivilegedServiceAuditAlarm +NtPropagationComplete +NtPropagationFailed +NtProtectVirtualMemory +NtPulseEvent +NtQueryAttributesFile +NtQueryBootEntryOrder +NtQueryBootOptions +NtQueryDebugFilterState +NtQueryDefaultLocale +NtQueryDefaultUILanguage +NtQueryDirectoryFile +NtQueryDirectoryObject +NtQueryDriverEntryOrder +NtQueryEaFile +NtQueryEvent +NtQueryFullAttributesFile +NtQueryInformationAtom +NtQueryInformationEnlistment +NtQueryInformationFile +NtQueryInformationJobObject +NtQueryInformationPort +NtQueryInformationProcess +NtQueryInformationResourceManager +NtQueryInformationThread +NtQueryInformationToken +NtQueryInformationTransaction +NtQueryInformationTransactionManager +NtQueryInformationWorkerFactory +NtQueryInstallUILanguage +NtQueryIntervalProfile +NtQueryIoCompletion +NtQueryKey +NtQueryLicenseValue +NtQueryMultipleValueKey +NtQueryMutant +NtQueryObject +NtQueryOpenSubKeys +NtQueryOpenSubKeysEx +NtQueryPerformanceCounter +NtQueryPortInformationProcess +NtQueryQuotaInformationFile +NtQuerySection +NtQuerySecurityAttributesToken +NtQuerySecurityObject +NtQuerySemaphore +NtQuerySymbolicLinkObject +NtQuerySystemEnvironmentValue +NtQuerySystemEnvironmentValueEx +NtQuerySystemInformation +NtQuerySystemInformationEx +NtQuerySystemTime +NtQueryTimer +NtQueryTimerResolution +NtQueryValueKey +NtQueryVirtualMemory +NtQueryVolumeInformationFile +NtQueueApcThread +NtQueueApcThreadEx +NtRaiseException +NtRaiseHardError +NtReadFile +NtReadFileScatter +NtReadOnlyEnlistment +NtReadRequestData +NtReadVirtualMemory +NtRecoverEnlistment +NtRecoverResourceManager +NtRecoverTransactionManager +NtRegisterProtocolAddressInformation +NtRegisterThreadTerminatePort +NtReleaseKeyedEvent +NtReleaseMutant +NtReleaseSemaphore +NtReleaseWorkerFactoryWorker +NtRemoveIoCompletion +NtRemoveIoCompletionEx +NtRemoveProcessDebug +NtRenameKey +NtRenameTransactionManager +NtReplaceKey +NtReplacePartitionUnit +NtReplyPort +NtReplyWaitReceivePort +NtReplyWaitReceivePortEx +NtReplyWaitReplyPort +NtRequestDeviceWakeup +NtRequestPort +NtRequestWaitReplyPort +NtRequestWakeupLatency +NtResetEvent +NtResetWriteWatch +NtRestoreKey +NtResumeProcess +NtResumeThread +NtRollbackComplete +NtRollbackEnlistment +NtRollbackTransaction +NtRollforwardTransactionManager +NtSaveKey +NtSaveKeyEx +NtSaveMergedKeys +NtSecureConnectPort +NtSerializeBoot +NtSetBootEntryOrder +NtSetBootOptions +NtSetContextThread +NtSetDebugFilterState +NtSetDefaultHardErrorPort +NtSetDefaultLocale +NtSetDefaultUILanguage +NtSetDriverEntryOrder +NtSetEaFile +NtSetEvent +NtSetEventBoostPriority +NtSetHighEventPair +NtSetHighWaitLowEventPair +NtSetInformationDebugObject +NtSetInformationEnlistment +NtSetInformationFile +NtSetInformationJobObject +NtSetInformationKey +NtSetInformationObject +NtSetInformationProcess +NtSetInformationResourceManager +NtSetInformationThread +NtSetInformationToken +NtSetInformationTransaction +NtSetInformationTransactionManager +NtSetInformationWorkerFactory +NtSetIntervalProfile +NtSetIoCompletion +NtSetIoCompletionEx +NtSetLdtEntries +NtSetLowEventPair +NtSetLowWaitHighEventPair +NtSetQuotaInformationFile +NtSetSecurityObject +NtSetSystemEnvironmentValue +NtSetSystemEnvironmentValueEx +NtSetSystemInformation +NtSetSystemPowerState +NtSetSystemTime +NtSetThreadExecutionState +NtSetTimer +NtSetTimerEx +NtSetTimerResolution +NtSetUuidSeed +NtSetValueKey +NtSetVolumeInformationFile +NtShutdownSystem +NtShutdownWorkerFactory +NtSignalAndWaitForSingleObject +NtSinglePhaseReject +NtStartProfile +NtStopProfile +NtSuspendProcess +NtSuspendThread +NtSystemDebugControl +NtTerminateJobObject +NtTerminateProcess +NtTerminateThread +NtTestAlert +NtThawRegistry +NtThawTransactions +NtTraceControl +NtTraceEvent +NtTranslateFilePath +NtUmsThreadYield +NtUnloadDriver +NtUnloadKey +NtUnloadKey2 +NtUnloadKeyEx +NtUnlockFile +NtUnlockVirtualMemory +NtUnmapViewOfSection +NtVdmControl +NtWaitForDebugEvent +NtWaitForKeyedEvent +NtWaitForMultipleObjects +NtWaitForMultipleObjects32 +NtWaitForSingleObject +NtWaitForWorkViaWorkerFactory +NtWaitHighEventPair +NtWaitLowEventPair +NtWorkerFactoryWorkerReady +NtWriteFile +NtWriteFileGather +NtWriteRequestData +NtWriteVirtualMemory +NtYieldExecution +NtdllDefWindowProc_A +NtdllDefWindowProc_W +NtdllDialogWndProc_A +NtdllDialogWndProc_W +PfxFindPrefix +PfxInitialize +PfxInsertPrefix +PfxRemovePrefix +RtlAbortRXact +RtlAbsoluteToSelfRelativeSD +RtlAcquirePebLock +RtlAcquirePrivilege +RtlAcquireReleaseSRWLockExclusive +RtlAcquireResourceExclusive +RtlAcquireResourceShared +RtlAcquireSRWLockExclusive +RtlAcquireSRWLockShared +RtlActivateActivationContext +RtlActivateActivationContextEx +RtlActivateActivationContextUnsafeFast +RtlAddAccessAllowedAce +RtlAddAccessAllowedAceEx +RtlAddAccessAllowedObjectAce +RtlAddAccessDeniedAce +RtlAddAccessDeniedAceEx +RtlAddAccessDeniedObjectAce +RtlAddAce +RtlAddActionToRXact +RtlAddAtomToAtomTable +RtlAddAttributeActionToRXact +RtlAddAuditAccessAce +RtlAddAuditAccessAceEx +RtlAddAuditAccessObjectAce +RtlAddCompoundAce +RtlAddFunctionTable +RtlAddIntegrityLabelToBoundaryDescriptor +RtlAddMandatoryAce +RtlAddRefActivationContext +RtlAddRefMemoryStream +RtlAddSIDToBoundaryDescriptor +RtlAddVectoredContinueHandler +RtlAddVectoredExceptionHandler +RtlAddressInSectionTable +RtlAdjustPrivilege +RtlAllocateActivationContextStack +RtlAllocateAndInitializeSid +RtlAllocateHandle +RtlAllocateHeap +RtlAllocateMemoryBlockLookaside +RtlAllocateMemoryZone +RtlAnsiCharToUnicodeChar +RtlAnsiStringToUnicodeSize +RtlAnsiStringToUnicodeString +RtlAppendAsciizToString +RtlAppendPathElement +RtlAppendStringToString +RtlAppendUnicodeStringToString +RtlAppendUnicodeToString +RtlApplicationVerifierStop +RtlApplyRXact +RtlApplyRXactNoFlush +RtlAreAllAccessesGranted +RtlAreAnyAccessesGranted +RtlAreBitsClear +RtlAreBitsSet +RtlAssert +RtlBarrier +RtlBarrierForDelete +RtlCancelTimer +RtlCaptureContext +RtlCaptureStackBackTrace +RtlCharToInteger +RtlCheckForOrphanedCriticalSections +RtlCheckProcessParameters +RtlCheckRegistryKey +RtlCleanUpTEBLangLists +RtlClearAllBits +RtlClearBits +RtlCloneMemoryStream +RtlCloneUserProcess +RtlCmDecodeMemIoResource +RtlCmEncodeMemIoResource +RtlCommitDebugInfo +RtlCommitMemoryStream +RtlCompactHeap +RtlCompareAltitudes +RtlCompareMemory +RtlCompareMemoryUlong +RtlCompareString +RtlCompareUnicodeString +RtlCompareUnicodeStrings +RtlCompleteProcessCloning +RtlCompressBuffer +RtlComputeCrc32 +RtlComputeImportTableHash +RtlComputePrivatizedDllName_U +RtlConnectToSm +RtlConsoleMultiByteToUnicodeN +RtlContractHashTable +RtlConvertExclusiveToShared +RtlConvertLCIDToString +RtlConvertSharedToExclusive +RtlConvertSidToUnicodeString +RtlConvertToAutoInheritSecurityObject +RtlConvertUiListToApiList +RtlCopyExtendedContext +RtlCopyLuid +RtlCopyLuidAndAttributesArray +RtlCopyMappedMemory +RtlCopyMemory +RtlCopyMemoryNonTemporal +RtlCopyMemoryStreamTo +RtlCopyOutOfProcessMemoryStreamTo +RtlCopySecurityDescriptor +RtlCopySid +RtlCopySidAndAttributesArray +RtlCopyString +RtlCopyUnicodeString +RtlCreateAcl +RtlCreateActivationContext +RtlCreateAndSetSD +RtlCreateAtomTable +RtlCreateBootStatusDataFile +RtlCreateBoundaryDescriptor +RtlCreateEnvironment +RtlCreateEnvironmentEx +RtlCreateHashTable +RtlCreateHeap +RtlCreateMemoryBlockLookaside +RtlCreateMemoryZone +RtlCreateProcessParameters +RtlCreateProcessParametersEx +RtlCreateProcessReflection +RtlCreateQueryDebugBuffer +RtlCreateRegistryKey +RtlCreateSecurityDescriptor +RtlCreateServiceSid +RtlCreateSystemVolumeInformationFolder +RtlCreateTagHeap +RtlCreateTimer +RtlCreateTimerQueue +RtlCreateUmsCompletionList +RtlCreateUmsThread +RtlCreateUmsThreadContext +RtlCreateUnicodeString +RtlCreateUnicodeStringFromAsciiz +RtlCreateUserProcess +RtlCreateUserSecurityObject +RtlCreateUserStack +RtlCreateUserThread +RtlCreateVirtualAccountSid +RtlCultureNameToLCID +RtlCustomCPToUnicodeN +RtlCutoverTimeToSystemTime +RtlDeCommitDebugInfo +RtlDeNormalizeProcessParams +RtlDeactivateActivationContext +RtlDeactivateActivationContextUnsafeFast +RtlDebugPrintTimes +RtlDecodePointer +RtlDecodeSystemPointer +RtlDecompressBuffer +RtlDecompressFragment +RtlDefaultNpAcl +RtlDelete +RtlDeleteAce +RtlDeleteAtomFromAtomTable +RtlDeleteBarrier +RtlDeleteBoundaryDescriptor +RtlDeleteCriticalSection +RtlDeleteElementGenericTable +RtlDeleteElementGenericTableAvl +RtlDeleteFunctionTable +RtlDeleteHashTable +RtlDeleteNoSplay +RtlDeleteRegistryValue +RtlDeleteResource +RtlDeleteSecurityObject +RtlDeleteTimer +RtlDeleteTimerQueue +RtlDeleteTimerQueueEx +RtlDeleteUmsCompletionList +RtlDeleteUmsThreadContext +RtlDequeueUmsCompletionListItems +RtlDeregisterSecureMemoryCacheCallback +RtlDeregisterWait +RtlDeregisterWaitEx +RtlDestroyAtomTable +RtlDestroyEnvironment +RtlDestroyHandleTable +RtlDestroyHeap +RtlDestroyMemoryBlockLookaside +RtlDestroyMemoryZone +RtlDestroyProcessParameters +RtlDestroyQueryDebugBuffer +RtlDetectHeapLeaks +RtlDetermineDosPathNameType_U +RtlDisableThreadProfiling +RtlDllShutdownInProgress +RtlDnsHostNameToComputerName +RtlDoesFileExists_U +RtlDosApplyFileIsolationRedirection_Ustr +RtlDosPathNameToNtPathName_U +RtlDosPathNameToNtPathName_U_WithStatus +RtlDosPathNameToRelativeNtPathName_U +RtlDosPathNameToRelativeNtPathName_U_WithStatus +RtlDosSearchPath_U +RtlDosSearchPath_Ustr +RtlDowncaseUnicodeChar +RtlDowncaseUnicodeString +RtlDumpResource +RtlDuplicateUnicodeString +RtlEmptyAtomTable +RtlEnableEarlyCriticalSectionEventCreation +RtlEnableThreadProfiling +RtlEncodePointer +RtlEncodeSystemPointer +RtlEndEnumerationHashTable +RtlEndWeakEnumerationHashTable +RtlEnterCriticalSection +RtlEnterUmsSchedulingMode +RtlEnumProcessHeaps +RtlEnumerateEntryHashTable +RtlEnumerateGenericTable +RtlEnumerateGenericTableAvl +RtlEnumerateGenericTableLikeADirectory +RtlEnumerateGenericTableWithoutSplaying +RtlEnumerateGenericTableWithoutSplayingAvl +RtlEqualComputerName +RtlEqualDomainName +RtlEqualLuid +RtlEqualPrefixSid +RtlEqualSid +RtlEqualString +RtlEqualUnicodeString +RtlEraseUnicodeString +RtlEthernetAddressToStringA +RtlEthernetAddressToStringW +RtlEthernetStringToAddressA +RtlEthernetStringToAddressW +RtlExecuteUmsThread +RtlExitUserProcess +RtlExitUserThread +RtlExpandEnvironmentStrings +RtlExpandEnvironmentStrings_U +RtlExtendHeap +RtlExpandHashTable +RtlExtendMemoryBlockLookaside +RtlExtendMemoryZone +RtlFillMemory +RtlFinalReleaseOutOfProcessMemoryStream +RtlFindAceByType +RtlFindActivationContextSectionGuid +RtlFindActivationContextSectionString +RtlFindCharInUnicodeString +RtlFindClearBits +RtlFindClearBitsAndSet +RtlFindClearRuns +RtlFindClosestEncodableLength +RtlFindLastBackwardRunClear +RtlFindLeastSignificantBit +RtlFindLongestRunClear +RtlFindMessage +RtlFindMostSignificantBit +RtlFindNextForwardRunClear +RtlFindSetBits +RtlFindSetBitsAndClear +RtlFirstEntrySList +RtlFirstFreeAce +RtlFlsAlloc +RtlFlsFree +RtlFlushSecureMemoryCache +RtlFormatCurrentUserKeyPath +RtlFormatMessage +RtlFormatMessageEx +RtlFreeActivationContextStack +RtlFreeAnsiString +RtlFreeHandle +RtlFreeHeap +RtlFreeMemoryBlockLookaside +RtlFreeOemString +RtlFreeSid +RtlFreeThreadActivationContextStack +RtlFreeUnicodeString +RtlFreeUserThreadStack +RtlFreeUserStack +RtlGUIDFromString +RtlGenerate8dot3Name +RtlGetAce +RtlGetActiveActivationContext +RtlGetCallersAddress +RtlGetCompressionWorkSpaceSize +RtlGetControlSecurityDescriptor +RtlGetCriticalSectionRecursionCount +RtlGetCurrentDirectory_U +RtlGetCurrentPeb +RtlGetCurrentProcessorNumber +RtlGetCurrentProcessorNumberEx +RtlGetCurrentTransaction +RtlGetCurrentUmsThread +RtlGetDaclSecurityDescriptor +RtlGetElementGenericTable +RtlGetElementGenericTableAvl +RtlGetEnabledExtendedFeatures +RtlGetExtendedContextLength +RtlGetExtendedFeaturesMask +RtlGetFileMUIPath +RtlGetFrame +RtlGetFullPathName_U +RtlGetFullPathName_UEx +RtlGetFullPathName_UstrEx +RtlGetFunctionTableListHead +RtlGetGroupSecurityDescriptor +RtlGetIntegerAtom +RtlGetLastNtStatus +RtlGetLastWin32Error +RtlGetLengthWithoutLastFullDosOrNtPathElement +RtlGetLengthWithoutTrailingPathSeperators +RtlGetLocaleFileMappingAddress +RtlGetLongestNtPathLength +RtlGetNativeSystemInformation +RtlGetNextEntryHashTable +RtlGetNextUmsListItem +RtlGetNtGlobalFlags +RtlGetNtProductType +RtlGetNtVersionNumbers +RtlGetOwnerSecurityDescriptor +RtlGetParentLocaleName +RtlGetProcessHeaps +RtlGetProcessPreferredUILanguages +RtlGetProductInfo +RtlGetSaclSecurityDescriptor +RtlGetSecurityDescriptorRMControl +RtlGetSetBootStatusData +RtlGetSystemPreferredUILanguages +RtlGetThreadErrorMode +RtlGetThreadLangIdByIndex +RtlGetThreadPreferredUILanguages +RtlGetUILanguageInfo +RtlGetUmsCompletionListEvent +RtlGetUnloadEventTrace +RtlGetUnloadEventTraceEx +RtlGetUserInfoHeap +RtlGetUserPreferredUILanguages +RtlGetVersion +RtlHashUnicodeString +RtlHeapTrkInitialize +RtlIdentifierAuthoritySid +RtlIdnToAscii +RtlIdnToNameprepUnicode +RtlIdnToUnicode +RtlImageDirectoryEntryToData +RtlImageNtHeader +RtlImageNtHeaderEx +RtlImageRvaToSection +RtlImageRvaToVa +RtlImpersonateSelf +RtlImpersonateSelfEx +RtlInitAnsiString +RtlInitAnsiStringEx +RtlInitBarrier +RtlInitCodePageTable +RtlInitEnumerationHashTable +RtlInitMemoryStream +RtlInitNlsTables +RtlInitOutOfProcessMemoryStream +RtlInitString +RtlInitUnicodeString +RtlInitUnicodeStringEx +RtlInitWeakEnumerationHashTable +RtlInitializeAtomPackage +RtlInitializeBitMap +RtlInitializeConditionVariable +RtlInitializeContext +RtlInitializeCriticalSection +RtlInitializeCriticalSectionAndSpinCount +RtlInitializeCriticalSectionEx +RtlInitializeExtendedContext +RtlInitializeGenericTable +RtlInitializeGenericTableAvl +RtlInitializeHandleTable +RtlInitializeNtUserPfn +RtlInitializeRXact +RtlInitializeResource +RtlInitializeSListHead +RtlInitializeSRWLock +RtlInitializeSid +RtlInsertElementGenericTable +RtlInsertElementGenericTableAvl +RtlInsertElementGenericTableFull +RtlInsertElementGenericTableFullAvl +RtlInsertEntryHashTable +RtlInstallFunctionTableCallback +RtlInt64ToUnicodeString +RtlIntegerToChar +RtlIntegerToUnicodeString +RtlInterlockedClearBitRun +RtlInterlockedFlushSList +RtlInterlockedPopEntrySList +RtlInterlockedPushEntrySList +RtlInterlockedPushListSList +RtlInterlockedSetBitRun +RtlIoDecodeMemIoResource +RtlIoEncodeMemIoResource +RtlIpv4AddressToStringA +RtlIpv4AddressToStringExA +RtlIpv4AddressToStringExW +RtlIpv4AddressToStringW +RtlIpv4StringToAddressA +RtlIpv4StringToAddressExA +RtlIpv4StringToAddressExW +RtlIpv4StringToAddressW +RtlIpv6AddressToStringA +RtlIpv6AddressToStringExA +RtlIpv6AddressToStringExW +RtlIpv6AddressToStringW +RtlIpv6StringToAddressA +RtlIpv6StringToAddressExA +RtlIpv6StringToAddressExW +RtlIpv6StringToAddressW +RtlIsActivationContextActive +RtlIsCriticalSectionLocked +RtlIsCriticalSectionLockedByThread +RtlIsCurrentThreadAttachExempt +RtlIsDosDeviceName_U +RtlIsGenericTableEmpty +RtlIsGenericTableEmptyAvl +RtlIsNameInExpression +RtlIsNameLegalDOS8Dot3 +RtlIsNormalizedString +RtlIsTextUnicode +RtlIsThreadWithinLoaderCallout +RtlIsValidHandle +RtlIsValidIndexHandle +RtlIsValidLocaleName +RtlKnownExceptionFilter +RtlLCIDToCultureName +RtlLargeIntegerToChar +RtlLcidToLocaleName +RtlLeaveCriticalSection +RtlLengthRequiredSid +RtlLengthSecurityDescriptor +RtlLengthSid +RtlLoadString +RtlLocalTimeToSystemTime +RtlLocaleNameToLcid +RtlLocateExtendedFeature +RtlLocateLegacyContext +RtlLockBootStatusData +RtlLockCurrentThread +RtlLockHeap +RtlLockMemoryBlockLookaside +RtlLockMemoryStreamRegion +RtlLockMemoryZone +RtlLockModuleSection +RtlLogStackBackTrace +RtlLookupAtomInAtomTable +RtlLookupElementGenericTable +RtlLookupElementGenericTableAvl +RtlLookupElementGenericTableFull +RtlLookupElementGenericTableFullAvl +RtlLookupEntryHashTable +RtlLookupFunctionEntry +RtlLookupFunctionTable +RtlMakeSelfRelativeSD +RtlMapGenericMask +RtlMapSecurityErrorToNtStatus +RtlMoveMemory +RtlMultiAppendUnicodeStringBuffer +RtlMultiByteToUnicodeN +RtlMultiByteToUnicodeSize +RtlMultipleAllocateHeap +RtlMultipleFreeHeap +RtlNewInstanceSecurityObject +RtlNewSecurityGrantedAccess +RtlNewSecurityObject +RtlNewSecurityObjectEx +RtlNewSecurityObjectWithMultipleInheritance +RtlNormalizeProcessParams +RtlNormalizeString +RtlNtPathNameToDosPathName +RtlNtStatusToDosError +RtlNtStatusToDosErrorNoTeb +RtlNtdllName DATA +RtlNumberGenericTableElements +RtlNumberGenericTableElementsAvl +RtlNumberOfClearBits +RtlNumberOfSetBits +RtlNumberOfSetBitsUlongPtr +RtlOemStringToUnicodeSize +RtlOemStringToUnicodeString +RtlOemToUnicodeN +RtlOpenCurrentUser +RtlOwnerAcesPresent +RtlPcToFileHeader +RtlPinAtomInAtomTable +RtlPopFrame +RtlPrefixString +RtlPrefixUnicodeString +RtlPrepareForProcessCloning +RtlProcessFlsData +RtlProtectHeap +RtlPushFrame +RtlQueryActivationContextApplicationSettings +RtlQueryAtomInAtomTable +RtlQueryCriticalSectionOwner +RtlQueryDepthSList +RtlQueryDynamicTimeZoneInformation +RtlQueryElevationFlags +RtlQueryEnvironmentVariable +RtlQueryEnvironmentVariable_U +RtlQueryHeapInformation +RtlQueryInformationAcl +RtlQueryInformationActivationContext +RtlQueryInformationActiveActivationContext +RtlQueryInterfaceMemoryStream +RtlQueryModuleInformation +RtlQueryPerformanceCounter +RtlQueryPerformanceFrequency +RtlQueryProcessBackTraceInformation +RtlQueryProcessDebugInformation +RtlQueryProcessHeapInformation +RtlQueryProcessLockInformation +RtlQueryRegistryValues +RtlQuerySecurityObject +RtlQueryTagHeap +RtlQueryThreadProfiling +RtlQueryTimeZoneInformation +RtlQueryUmsThreadInformation +RtlQueueApcWow64Thread +RtlQueueWorkItem +RtlRaiseException +RtlRaiseStatus +RtlRandom +RtlRandomEx +RtlReAllocateHeap +RtlReadMemoryStream +RtlReadOutOfProcessMemoryStream +RtlReadThreadProfilingData +RtlRealPredecessor +RtlRealSuccessor +RtlRegisterSecureMemoryCacheCallback +RtlRegisterThreadWithCsrss +RtlRegisterWait +RtlReleaseActivationContext +RtlReleaseMemoryStream +RtlReleasePebLock +RtlReleasePrivilege +RtlReleaseRelativeName +RtlReleaseResource +RtlReleaseSRWLockExclusive +RtlReleaseSRWLockShared +RtlRemoteCall +RtlRemoveEntryHashTable +RtlRemovePrivileges +RtlRemoveVectoredContinueHandler +RtlRemoveVectoredExceptionHandler +RtlReplaceSidInSd +RtlReportException +RtlReportSilentProcessExit +RtlReportSqmEscalation +RtlResetMemoryBlockLookaside +RtlResetMemoryZone +RtlResetRtlTranslations +RtlRestoreContext +RtlRestoreLastWin32Error +RtlRetrieveNtUserPfn +RtlRevertMemoryStream +RtlRunDecodeUnicodeString +RtlRunEncodeUnicodeString +RtlRunOnceBeginInitialize +RtlRunOnceComplete +RtlRunOnceExecuteOnce +RtlRunOnceInitialize +RtlSecondsSince1970ToTime +RtlSecondsSince1980ToTime +RtlSeekMemoryStream +RtlSelfRelativeToAbsoluteSD +RtlSelfRelativeToAbsoluteSD2 +RtlSendMsgToSm +RtlSetAllBits +RtlSetAttributesSecurityDescriptor +RtlSetBits +RtlSetControlSecurityDescriptor +RtlSetCriticalSectionSpinCount +RtlSetCurrentDirectory_U +RtlSetCurrentEnvironment +RtlSetCurrentTransaction +RtlSetDaclSecurityDescriptor +RtlSetDynamicTimeZoneInformation +RtlSetEnvironmentStrings +RtlSetEnvironmentVar +RtlSetEnvironmentVariable +RtlSetExtendedFeaturesMask +RtlSetGroupSecurityDescriptor +RtlSetHeapInformation +RtlSetInformationAcl +RtlSetIoCompletionCallback +RtlSetLastWin32Error +RtlSetLastWin32ErrorAndNtStatusFromNtStatus +RtlSetMemoryStreamSize +RtlSetOwnerSecurityDescriptor +RtlSetProcessDebugInformation +RtlSetProcessIsCritical +RtlSetProcessPreferredUILanguages +RtlSetSaclSecurityDescriptor +RtlSetSecurityDescriptorRMControl +RtlSetSecurityObject +RtlSetSecurityObjectEx +RtlSetThreadErrorMode +RtlSetThreadIsCritical +RtlSetThreadPoolStartFunc +RtlSetThreadPreferredUILanguages +RtlSetTimeZoneInformation +RtlSetTimer +RtlSetUmsThreadInformation +RtlSetUnhandledExceptionFilter +RtlSetUnicodeCallouts +RtlSetUserFlagsHeap +RtlSetUserValueHeap +RtlSidDominates +RtlSidEqualLevel +RtlSidHashInitialize +RtlSidHashLookup +RtlSidIsHigherLevel +RtlSizeHeap +RtlSleepConditionVariableCS +RtlSleepConditionVariableSRW +RtlSplay +RtlStartRXact +RtlStatMemoryStream +RtlStringFromGUID +RtlSubAuthorityCountSid +RtlSubAuthoritySid +RtlSubtreePredecessor +RtlSubtreeSuccessor +RtlSystemTimeToLocalTime +RtlTestBit +RtlTimeFieldsToTime +RtlTimeToElapsedTimeFields +RtlTimeToSecondsSince1970 +RtlTimeToSecondsSince1980 +RtlTimeToTimeFields +RtlTraceDatabaseAdd +RtlTraceDatabaseCreate +RtlTraceDatabaseDestroy +RtlTraceDatabaseEnumerate +RtlTraceDatabaseFind +RtlTraceDatabaseLock +RtlTraceDatabaseUnlock +RtlTraceDatabaseValidate +RtlTryAcquirePebLock +RtlTryAcquireSRWLockExclusive +RtlTryAcquireSRWLockShared +RtlTryEnterCriticalSection +RtlUTF8ToUnicodeN +RtlUmsThreadYield +RtlUnhandledExceptionFilter +RtlUnhandledExceptionFilter2 +RtlUnicodeStringToAnsiSize +RtlUnicodeStringToAnsiString +RtlUnicodeStringToCountedOemString +RtlUnicodeStringToInteger +RtlUnicodeStringToOemSize +RtlUnicodeStringToOemString +RtlUnicodeToCustomCPN +RtlUnicodeToMultiByteN +RtlUnicodeToMultiByteSize +RtlUnicodeToOemN +RtlUnicodeToUTF8N +RtlUniform +RtlUnlockBootStatusData +RtlUnlockCurrentThread +RtlUnlockHeap +RtlUnlockMemoryBlockLookaside +RtlUnlockMemoryStreamRegion +RtlUnlockMemoryZone +RtlUnlockModuleSection +RtlUnwind +RtlUnwindEx +RtlUpcaseUnicodeChar +RtlUpcaseUnicodeString +RtlUpcaseUnicodeStringToAnsiString +RtlUpcaseUnicodeStringToCountedOemString +RtlUpcaseUnicodeStringToOemString +RtlUpcaseUnicodeToCustomCPN +RtlUpcaseUnicodeToMultiByteN +RtlUpcaseUnicodeToOemN +RtlUpdateClonedCriticalSection +RtlUpdateClonedSRWLock +RtlUpdateTimer +RtlUpperChar +RtlUpperString +RtlUsageHeap +RtlUserThreadStart +RtlValidAcl +RtlValidRelativeSecurityDescriptor +RtlValidSecurityDescriptor +RtlValidSid +RtlValidateHeap +RtlValidateProcessHeaps +RtlValidateUnicodeString +RtlVerifyVersionInfo +RtlVirtualUnwind +RtlWakeAllConditionVariable +RtlWakeConditionVariable +RtlWalkFrameChain +RtlWalkHeap +RtlWeaklyEnumerateEntryHashTable +RtlWerpReportException +RtlWow64CallFunction64 +RtlWow64EnableFsRedirection +RtlWow64EnableFsRedirectionEx +RtlWow64GetThreadContext +RtlWow64GetThreadSelectorEntry +RtlWow64LogMessageInEventLogger +RtlWow64SetThreadContext +RtlWow64SuspendThread +RtlWriteMemoryStream +RtlWriteRegistryValue +RtlZeroHeap +RtlZeroMemory +RtlZombifyActivationContext +RtlpApplyLengthFunction +RtlpCheckDynamicTimeZoneInformation +RtlpCleanupRegistryKeys +RtlpConvertCultureNamesToLCIDs +RtlpConvertLCIDsToCultureNames +RtlpCreateProcessRegistryInfo +RtlpEnsureBufferSize +RtlpExecuteUmsThread +RtlpGetLCIDFromLangInfoNode +RtlpGetNameFromLangInfoNode +RtlpGetSystemDefaultUILanguage +RtlpGetUserOrMachineUILanguage4NLS +RtlpInitializeLangRegistryInfo +RtlpIsQualifiedLanguage +RtlpLoadMachineUIByPolicy +RtlpLoadUserUIByPolicy +RtlpMuiFreeLangRegistryInfo +RtlpMuiRegCreateRegistryInfo +RtlpMuiRegFreeRegistryInfo +RtlpMuiRegLoadRegistryInfo +RtlpNotOwnerCriticalSection +RtlpNtCreateKey +RtlpNtEnumerateSubKey +RtlpNtMakeTemporaryKey +RtlpNtOpenKey +RtlpNtQueryValueKey +RtlpNtSetValueKey +RtlpQueryDefaultUILanguage +RtlpQueryProcessDebugInformationFromWow64 +RtlpRefreshCachedUILanguage +RtlpSetInstallLanguage +RtlpSetPreferredUILanguages +RtlpSetUserPreferredUILanguages +RtlpUmsExecuteYieldThreadEnd +RtlpUmsThreadYield +RtlpUnWaitCriticalSection +RtlpVerifyAndCommitUILanguageSettings +RtlpWaitForCriticalSection +RtlxAnsiStringToUnicodeSize +RtlxOemStringToUnicodeSize +RtlxUnicodeStringToAnsiSize +RtlxUnicodeStringToOemSize +SbExecuteProcedure +SbSelectProcedure +ShipAssert +ShipAssertGetBufferInfo +ShipAssertMsgA +ShipAssertMsgW +TpAllocAlpcCompletion +TpAllocAlpcCompletionEx +TpAllocCleanupGroup +TpAllocIoCompletion +TpAllocPool +TpAllocTimer +TpAllocWait +TpAllocWork +TpAlpcRegisterCompletionList +TpAlpcUnregisterCompletionList +TpCallbackIndependent +TpCallbackLeaveCriticalSectionOnCompletion +TpCallbackMayRunLong +TpCallbackReleaseMutexOnCompletion +TpCallbackReleaseSemaphoreOnCompletion +TpCallbackSetEventOnCompletion +TpCallbackUnloadDllOnCompletion +TpCancelAsyncIoOperation +TpCaptureCaller +TpCheckTerminateWorker +TpDbgDumpHeapUsage +TpDbgGetFreeInfo +TpDbgSetLogRoutine +TpDisablePoolCallbackChecks +TpDisassociateCallback +TpIsTimerSet +TpPoolFreeUnusedNodes +TpPostWork +TpQueryPoolStackInformation +TpReleaseAlpcCompletion +TpReleaseCleanupGroup +TpReleaseCleanupGroupMembers +TpReleaseIoCompletion +TpReleasePool +TpReleaseTimer +TpReleaseWait +TpReleaseWork +TpSetDefaultPoolMaxThreads +TpSetDefaultPoolStackInformation +TpSetPoolMaxThreads +TpSetPoolMinThreads +TpSetPoolStackInformation +TpSetTimer +TpSetWait +TpSimpleTryPost +TpStartAsyncIoOperation +TpWaitForAlpcCompletion +TpWaitForIoCompletion +TpWaitForTimer +TpWaitForWait +TpWaitForWork +VerSetConditionMask +WerReportSQMEvent +WinSqmAddToAverageDWORD +WinSqmAddToStream +WinSqmAddToStreamEx +WinSqmCheckEscalationAddToStreamEx +WinSqmCheckEscalationSetDWORD +WinSqmCheckEscalationSetDWORD64 +WinSqmCheckEscalationSetString +WinSqmCommonDatapointDelete +WinSqmCommonDatapointSetDWORD +WinSqmCommonDatapointSetDWORD64 +WinSqmCommonDatapointSetStreamEx +WinSqmCommonDatapointSetString +WinSqmEndSession +WinSqmEventEnabled +WinSqmEventWrite +WinSqmGetEscalationRuleStatus +WinSqmGetInstrumentationProperty +WinSqmIncrementDWORD +WinSqmIsOptedIn +WinSqmIsOptedInEx +WinSqmSetDWORD +WinSqmSetDWORD64 +WinSqmSetEscalationInfo +WinSqmSetIfMaxDWORD +WinSqmSetIfMinDWORD +WinSqmSetString +WinSqmStartSession +ZwAcceptConnectPort +ZwAccessCheck +ZwAccessCheckAndAuditAlarm +ZwAccessCheckByType +ZwAccessCheckByTypeAndAuditAlarm +ZwAccessCheckByTypeResultList +ZwAccessCheckByTypeResultListAndAuditAlarm +ZwAccessCheckByTypeResultListAndAuditAlarmByHandle +ZwAddAtom +ZwAddBootEntry +ZwAddDriverEntry +ZwAdjustGroupsToken +ZwAdjustPrivilegesToken +ZwAlertResumeThread +ZwAlertThread +ZwAllocateLocallyUniqueId +ZwAllocateReserveObject +ZwAllocateUserPhysicalPages +ZwAllocateUuids +ZwAllocateVirtualMemory +ZwAlpcAcceptConnectPort +ZwAlpcCancelMessage +ZwAlpcConnectPort +ZwAlpcCreatePort +ZwAlpcCreatePortSection +ZwAlpcCreateResourceReserve +ZwAlpcCreateSectionView +ZwAlpcCreateSecurityContext +ZwAlpcDeletePortSection +ZwAlpcDeleteResourceReserve +ZwAlpcDeleteSectionView +ZwAlpcDeleteSecurityContext +ZwAlpcDisconnectPort +ZwAlpcImpersonateClientOfPort +ZwAlpcOpenSenderProcess +ZwAlpcOpenSenderThread +ZwAlpcQueryInformation +ZwAlpcQueryInformationMessage +ZwAlpcRevokeSecurityContext +ZwAlpcSendWaitReceivePort +ZwAlpcSetInformation +ZwApphelpCacheControl +ZwAreMappedFilesTheSame +ZwAssignProcessToJobObject +ZwCallbackReturn +ZwCancelDeviceWakeupRequest +ZwCancelIoFile +ZwCancelIoFileEx +ZwCancelSynchronousIoFile +ZwCancelTimer +ZwClearEvent +ZwClose +ZwCloseObjectAuditAlarm +ZwCommitComplete +ZwCommitEnlistment +ZwCommitTransaction +ZwCompactKeys +ZwCompareTokens +ZwCompleteConnectPort +ZwCompressKey +ZwConnectPort +ZwContinue +ZwCreateDebugObject +ZwCreateDirectoryObject +ZwCreateEnlistment +ZwCreateEvent +ZwCreateEventPair +ZwCreateFile +ZwCreateIoCompletion +ZwCreateJobObject +ZwCreateJobSet +ZwCreateKey +ZwCreateKeyTransacted +ZwCreateKeyedEvent +ZwCreateMailslotFile +ZwCreateMutant +ZwCreateNamedPipeFile +ZwCreatePagingFile +ZwCreatePort +ZwCreatePrivateNamespace +ZwCreateProcess +ZwCreateProcessEx +ZwCreateProfile +ZwCreateProfileEx +ZwCreateResourceManager +ZwCreateSection +ZwCreateSemaphore +ZwCreateSymbolicLinkObject +ZwCreateThread +ZwCreateThreadEx +ZwCreateTimer +ZwCreateToken +ZwCreateTransaction +ZwCreateTransactionManager +ZwCreateUserProcess +ZwCreateWaitablePort +ZwCreateWorkerFactory +ZwDebugActiveProcess +ZwDebugContinue +ZwDelayExecution +ZwDeleteAtom +ZwDeleteBootEntry +ZwDeleteDriverEntry +ZwDeleteFile +ZwDeleteKey +ZwDeleteObjectAuditAlarm +ZwDeletePrivateNamespace +ZwDeleteValueKey +ZwDeviceIoControlFile +ZwDisableLastKnownGood +ZwDisplayString +ZwDrawText +ZwDuplicateObject +ZwDuplicateToken +ZwEnableLastKnownGood +ZwEnumerateBootEntries +ZwEnumerateDriverEntries +ZwEnumerateKey +ZwEnumerateSystemEnvironmentValuesEx +ZwEnumerateTransactionObject +ZwEnumerateValueKey +ZwExtendSection +ZwFilterToken +ZwFindAtom +ZwFlushBuffersFile +ZwFlushInstallUILanguage +ZwFlushInstructionCache +ZwFlushKey +ZwFlushProcessWriteBuffers +ZwFlushVirtualMemory +ZwFlushWriteBuffer +ZwFreeUserPhysicalPages +ZwFreeVirtualMemory +ZwFreezeRegistry +ZwFreezeTransactions +ZwFsControlFile +ZwGetContextThread +ZwGetCurrentProcessorNumber +ZwGetDevicePowerState +ZwGetMUIRegistryInfo +ZwGetNextProcess +ZwGetNextThread +ZwGetNlsSectionPtr +ZwGetNotificationResourceManager +ZwGetPlugPlayEvent +ZwGetWriteWatch +ZwImpersonateAnonymousToken +ZwImpersonateClientOfPort +ZwImpersonateThread +ZwInitializeNlsFiles +ZwInitializeRegistry +ZwInitiatePowerAction +ZwIsProcessInJob +ZwIsSystemResumeAutomatic +ZwIsUILanguageComitted +ZwListenPort +ZwLoadDriver +ZwLoadKey +ZwLoadKey2 +ZwLoadKeyEx +ZwLockFile +ZwLockProductActivationKeys +ZwLockRegistryKey +ZwLockVirtualMemory +ZwMakePermanentObject +ZwMakeTemporaryObject +ZwMapCMFModule +ZwMapUserPhysicalPages +ZwMapUserPhysicalPagesScatter +ZwMapViewOfSection +ZwModifyBootEntry +ZwModifyDriverEntry +ZwNotifyChangeDirectoryFile +ZwNotifyChangeKey +ZwNotifyChangeMultipleKeys +ZwNotifyChangeSession +ZwOpenDirectoryObject +ZwOpenEnlistment +ZwOpenEvent +ZwOpenEventPair +ZwOpenFile +ZwOpenIoCompletion +ZwOpenJobObject +ZwOpenKey +ZwOpenKeyEx +ZwOpenKeyTransacted +ZwOpenKeyTransactedEx +ZwOpenKeyedEvent +ZwOpenMutant +ZwOpenObjectAuditAlarm +ZwOpenPrivateNamespace +ZwOpenProcess +ZwOpenProcessToken +ZwOpenProcessTokenEx +ZwOpenResourceManager +ZwOpenSection +ZwOpenSemaphore +ZwOpenSession +ZwOpenSymbolicLinkObject +ZwOpenThread +ZwOpenThreadToken +ZwOpenThreadTokenEx +ZwOpenTimer +ZwOpenTransaction +ZwOpenTransactionManager +ZwPlugPlayControl +ZwPowerInformation +ZwPrePrepareComplete +ZwPrePrepareEnlistment +ZwPrepareComplete +ZwPrepareEnlistment +ZwPrivilegeCheck +ZwPrivilegeObjectAuditAlarm +ZwPrivilegedServiceAuditAlarm +ZwPropagationComplete +ZwPropagationFailed +ZwProtectVirtualMemory +ZwPulseEvent +ZwQueryAttributesFile +ZwQueryBootEntryOrder +ZwQueryBootOptions +ZwQueryDebugFilterState +ZwQueryDefaultLocale +ZwQueryDefaultUILanguage +ZwQueryDirectoryFile +ZwQueryDirectoryObject +ZwQueryDriverEntryOrder +ZwQueryEaFile +ZwQueryEvent +ZwQueryFullAttributesFile +ZwQueryInformationAtom +ZwQueryInformationEnlistment +ZwQueryInformationFile +ZwQueryInformationJobObject +ZwQueryInformationPort +ZwQueryInformationProcess +ZwQueryInformationResourceManager +ZwQueryInformationThread +ZwQueryInformationToken +ZwQueryInformationTransaction +ZwQueryInformationTransactionManager +ZwQueryInformationWorkerFactory +ZwQueryInstallUILanguage +ZwQueryIntervalProfile +ZwQueryIoCompletion +ZwQueryKey +ZwQueryLicenseValue +ZwQueryMultipleValueKey +ZwQueryMutant +ZwQueryObject +ZwQueryOpenSubKeys +ZwQueryOpenSubKeysEx +ZwQueryPerformanceCounter +ZwQueryPortInformationProcess +ZwQueryQuotaInformationFile +ZwQuerySection +ZwQuerySecurityAttributesToken +ZwQuerySecurityObject +ZwQuerySemaphore +ZwQuerySymbolicLinkObject +ZwQuerySystemEnvironmentValue +ZwQuerySystemEnvironmentValueEx +ZwQuerySystemInformation +ZwQuerySystemInformationEx +ZwQuerySystemTime +ZwQueryTimer +ZwQueryTimerResolution +ZwQueryValueKey +ZwQueryVirtualMemory +ZwQueryVolumeInformationFile +ZwQueueApcThread +ZwQueueApcThreadEx +ZwRaiseException +ZwRaiseHardError +ZwReadFile +ZwReadFileScatter +ZwReadOnlyEnlistment +ZwReadRequestData +ZwReadVirtualMemory +ZwRecoverEnlistment +ZwRecoverResourceManager +ZwRecoverTransactionManager +ZwRegisterProtocolAddressInformation +ZwRegisterThreadTerminatePort +ZwReleaseKeyedEvent +ZwReleaseMutant +ZwReleaseSemaphore +ZwReleaseWorkerFactoryWorker +ZwRemoveIoCompletion +ZwRemoveIoCompletionEx +ZwRemoveProcessDebug +ZwRenameKey +ZwRenameTransactionManager +ZwReplaceKey +ZwReplacePartitionUnit +ZwReplyPort +ZwReplyWaitReceivePort +ZwReplyWaitReceivePortEx +ZwReplyWaitReplyPort +ZwRequestDeviceWakeup +ZwRequestPort +ZwRequestWaitReplyPort +ZwRequestWakeupLatency +ZwResetEvent +ZwResetWriteWatch +ZwRestoreKey +ZwResumeProcess +ZwResumeThread +ZwRollbackComplete +ZwRollbackEnlistment +ZwRollbackTransaction +ZwRollforwardTransactionManager +ZwSaveKey +ZwSaveKeyEx +ZwSaveMergedKeys +ZwSecureConnectPort +ZwSerializeBoot +ZwSetBootEntryOrder +ZwSetBootOptions +ZwSetContextThread +ZwSetDebugFilterState +ZwSetDefaultHardErrorPort +ZwSetDefaultLocale +ZwSetDefaultUILanguage +ZwSetDriverEntryOrder +ZwSetEaFile +ZwSetEvent +ZwSetEventBoostPriority +ZwSetHighEventPair +ZwSetHighWaitLowEventPair +ZwSetInformationDebugObject +ZwSetInformationEnlistment +ZwSetInformationFile +ZwSetInformationJobObject +ZwSetInformationKey +ZwSetInformationObject +ZwSetInformationProcess +ZwSetInformationResourceManager +ZwSetInformationThread +ZwSetInformationToken +ZwSetInformationTransaction +ZwSetInformationTransactionManager +ZwSetInformationWorkerFactory +ZwSetIntervalProfile +ZwSetIoCompletion +ZwSetIoCompletionEx +ZwSetLdtEntries +ZwSetLowEventPair +ZwSetLowWaitHighEventPair +ZwSetQuotaInformationFile +ZwSetSecurityObject +ZwSetSystemEnvironmentValue +ZwSetSystemEnvironmentValueEx +ZwSetSystemInformation +ZwSetSystemPowerState +ZwSetSystemTime +ZwSetThreadExecutionState +ZwSetTimer +ZwSetTimerEx +ZwSetTimerResolution +ZwSetUuidSeed +ZwSetValueKey +ZwSetVolumeInformationFile +ZwShutdownSystem +ZwShutdownWorkerFactory +ZwSignalAndWaitForSingleObject +ZwSinglePhaseReject +ZwStartProfile +ZwStopProfile +ZwSuspendProcess +ZwSuspendThread +ZwSystemDebugControl +ZwTerminateJobObject +ZwTerminateProcess +ZwTerminateThread +ZwTestAlert +ZwThawRegistry +ZwThawTransactions +ZwTraceControl +ZwTraceEvent +ZwTranslateFilePath +ZwUmsThreadYield +ZwUnloadDriver +ZwUnloadKey +ZwUnloadKey2 +ZwUnloadKeyEx +ZwUnlockFile +ZwUnlockVirtualMemory +ZwUnmapViewOfSection +ZwVdmControl +ZwWaitForDebugEvent +ZwWaitForKeyedEvent +ZwWaitForMultipleObjects +ZwWaitForMultipleObjects32 +ZwWaitForSingleObject +ZwWaitForWorkViaWorkerFactory +ZwWaitHighEventPair +ZwWaitLowEventPair +ZwWorkerFactoryWorkerReady +ZwWriteFile +ZwWriteFileGather +ZwWriteRequestData +ZwWriteVirtualMemory +ZwYieldExecution +__C_specific_handler +;__chkstk +__isascii +__iscsym +__iscsymf +__misaligned_access +__toascii +_atoi64 +_fltused DATA +_i64toa +_i64toa_s +_i64tow +_i64tow_s +_itoa +_itoa_s +_itow +_itow_s +_lfind +_local_unwind +_ltoa +_ltoa_s +_ltow +_ltow_s +_makepath_s +_memccpy +_memicmp +_setjmp +_setjmpex +_snprintf +_snprintf_s +_snscanf_s +_snwprintf +_snwprintf_s +_snwscanf_s +_splitpath +_splitpath_s +_strcmpi +_stricmp +_strlwr +_strnicmp +_strnset_s +_strset_s +_strupr +_tolower +_toupper +_swprintf +_ui64toa +_ui64toa_s +_ui64tow +_ui64tow_s +_ultoa +_ultoa_s +_ultow +_ultow_s +_vscwprintf +_vsnprintf +_vsnprintf_s +_vsnwprintf +_vsnwprintf_s +_vswprintf +_wcsicmp +_wcslwr +_wcsnicmp +_wcsnset_s +_wcsset_s +_wcstoui64 +_wcsupr +_wmakepath_s +_wsplitpath_s +_wtoi +_wtoi64 +_wtol +abs +atan DATA +atoi +atol +bsearch +ceil +cos DATA +fabs DATA +floor DATA +isalnum +isalpha +iscntrl +isdigit +isgraph +islower +isprint +ispunct +isspace +isupper +iswalpha +iswctype +iswdigit +iswlower +iswspace +iswxdigit +isxdigit +labs +log +longjmp DATA +mbstowcs +memchr +memcmp +memcpy +memcpy_s +memmove +memmove_s +memset +pow +qsort +sin +sprintf +sprintf_s +sqrt +sscanf +sscanf_s +strcat +strcat_s +strchr +strcmp +strcpy +strcpy_s +strcspn +strlen +strncat +strncat_s +strncmp +strncpy +strncpy_s +strnlen +strpbrk +strrchr +strspn +strstr +strtok_s +strtol +strtoul +swprintf +swprintf_s +swscanf_s +tan +tolower +toupper +towlower +towupper +vDbgPrintEx +vDbgPrintExWithPrefix +vsprintf +vsprintf_s +vswprintf_s +wcscat +wcscat_s +wcschr +wcscmp +wcscpy +wcscpy_s +wcscspn +wcslen +wcsncat +wcsncat_s +wcsncmp +wcsncpy +wcsncpy_s +wcsnlen +wcspbrk +wcsrchr +wcsspn +wcsstr +wcstol +wcstombs +wcstoul diff --git a/lib/libc/mingw/libarm32/ntdll.def b/lib/libc/mingw/libarm32/ntdll.def new file mode 100644 index 0000000000..13099a9792 --- /dev/null +++ b/lib/libc/mingw/libarm32/ntdll.def @@ -0,0 +1,2165 @@ +; +; Definition file of ntdll.dll +; Automatic generated by gendef +; written by Kai Tietz 2008-2014 +; +LIBRARY "ntdll.dll" +EXPORTS +ord_1 @1 +ord_2 @2 +ord_3 @3 +ord_4 @4 +ord_5 @5 +ord_6 @6 +ord_7 @7 +ord_8 @8 +A_SHAFinal +A_SHAInit +A_SHAUpdate +AlpcAdjustCompletionListConcurrencyCount +AlpcFreeCompletionListMessage +AlpcGetCompletionListLastMessageInformation +AlpcGetCompletionListMessageAttributes +AlpcGetHeaderSize +AlpcGetMessageAttribute +AlpcGetMessageFromCompletionList +AlpcGetOutstandingCompletionListMessageCount +AlpcInitializeMessageAttribute +AlpcMaxAllowedMessageLength +AlpcRegisterCompletionList +AlpcRegisterCompletionListWorkerThread +AlpcRundownCompletionList +AlpcUnregisterCompletionList +AlpcUnregisterCompletionListWorkerThread +ApiSetQueryApiSetPresence +CsrAllocateCaptureBuffer +CsrAllocateMessagePointer +CsrCaptureMessageBuffer +CsrCaptureMessageMultiUnicodeStringsInPlace +CsrCaptureMessageString +CsrCaptureTimeout +CsrClientCallServer +CsrClientConnectToServer +CsrFreeCaptureBuffer +CsrGetProcessId +CsrIdentifyAlertableThread +CsrSetPriorityClass +CsrVerifyRegion +DbgBreakPoint +DbgPrint +DbgPrintEx +DbgPrintReturnControlC +DbgPrompt +DbgQueryDebugFilterState +DbgSetDebugFilterState +DbgUiConnectToDbg +DbgUiContinue +DbgUiConvertStateChangeStructure +DbgUiDebugActiveProcess +DbgUiGetThreadDebugObject +DbgUiIssueRemoteBreakin +DbgUiRemoteBreakin +DbgUiSetThreadDebugObject +DbgUiStopDebugging +DbgUiWaitStateChange +DbgUserBreakPoint +EtwCreateTraceInstanceId +EtwDeliverDataBlock +EtwEnumerateProcessRegGuids +EtwEventActivityIdControl +EtwEventEnabled +EtwEventProviderEnabled +EtwEventRegister +EtwEventSetInformation +EtwEventUnregister +EtwEventWrite +EtwEventWriteEndScenario +EtwEventWriteEx +EtwEventWriteFull +EtwEventWriteNoRegistration +EtwEventWriteStartScenario +EtwEventWriteString +EtwEventWriteTransfer +EtwGetTraceEnableFlags +EtwGetTraceEnableLevel +EtwGetTraceLoggerHandle +EtwLogTraceEvent +EtwNotificationRegister +EtwNotificationUnregister +EtwProcessPrivateLoggerRequest +EtwRegisterSecurityProvider +EtwRegisterTraceGuidsA +EtwRegisterTraceGuidsW +EtwReplyNotification +EtwSendNotification +EtwSetMark +EtwTraceEventInstance +EtwTraceMessage +EtwTraceMessageVa +EtwUnregisterTraceGuids +EtwWriteUMSecurityEvent +EtwpCreateEtwThread +EtwpGetCpuSpeed +EvtIntReportAuthzEventAndSourceAsync +EvtIntReportEventAndSourceAsync +ExpInterlockedPopEntrySListEnd +ExpInterlockedPopEntrySListFault +ExpInterlockedPopEntrySListResume +KiRaiseUserExceptionDispatcher +KiUserApcDispatcher +KiUserCallbackDispatcher +KiUserExceptionDispatcher +KiUserInvertedFunctionTable DATA +LdrAccessResource +LdrAddDllDirectory +LdrAddLoadAsDataTable +LdrAddRefDll +LdrAppxHandleIntegrityFailure +LdrDisableThreadCalloutsForDll +LdrEnumResources +LdrEnumerateLoadedModules +LdrFindEntryForAddress +LdrFindResourceDirectory_U +LdrFindResourceEx_U +LdrFindResource_U +LdrFlushAlternateResourceModules +LdrGetDllDirectory +LdrGetDllFullName +LdrGetDllHandle +LdrGetDllHandleByMapping +LdrGetDllHandleByName +LdrGetDllHandleEx +LdrGetDllPath +LdrGetFailureData +LdrGetFileNameFromLoadAsDataTable +LdrGetProcedureAddress +LdrGetProcedureAddressEx +LdrGetProcedureAddressForCaller +LdrInitShimEngineDynamic +LdrInitializeThunk +LdrLoadAlternateResourceModule +LdrLoadAlternateResourceModuleEx +LdrLoadDll +LdrLockLoaderLock +LdrOpenImageFileOptionsKey +LdrProcessRelocationBlock +LdrProcessRelocationBlockEx +LdrQueryImageFileExecutionOptions +LdrQueryImageFileExecutionOptionsEx +LdrQueryImageFileKeyOption +LdrQueryModuleServiceTags +LdrQueryOptionalDelayLoadedAPI +LdrQueryProcessModuleInformation +LdrRegisterDllNotification +LdrRemoveDllDirectory +LdrRemoveLoadAsDataTable +LdrResFindResource +LdrResFindResourceDirectory +LdrResGetRCConfig +LdrResRelease +LdrResSearchResource +LdrResolveDelayLoadedAPI +LdrResolveDelayLoadsFromDll +LdrRscIsTypeExist +LdrSetAppCompatDllRedirectionCallback +LdrSetDefaultDllDirectories +LdrSetDllDirectory +LdrSetDllManifestProber +LdrSetImplicitPathOptions +LdrSetMUICacheType +LdrShutdownProcess +LdrShutdownThread +LdrStandardizeSystemPath +LdrSystemDllInitBlock DATA +LdrUnloadAlternateResourceModule +LdrUnloadAlternateResourceModuleEx +LdrUnloadDll +LdrUnlockLoaderLock +LdrUnregisterDllNotification +LdrVerifyImageMatchesChecksum +LdrVerifyImageMatchesChecksumEx +LdrpResGetMappingSize +LdrpResGetResourceDirectory +MD4Final +MD4Init +MD4Update +MD5Final +MD5Init +MD5Update +NlsAnsiCodePage DATA +NlsMbCodePageTag DATA +NlsMbOemCodePageTag DATA +NtAcceptConnectPort +NtAccessCheck +NtAccessCheckAndAuditAlarm +NtAccessCheckByType +NtAccessCheckByTypeAndAuditAlarm +NtAccessCheckByTypeResultList +NtAccessCheckByTypeResultListAndAuditAlarm +NtAccessCheckByTypeResultListAndAuditAlarmByHandle +NtAddAtom +NtAddAtomEx +NtAddBootEntry +NtAddDriverEntry +NtAdjustGroupsToken +NtAdjustPrivilegesToken +NtAdjustTokenClaimsAndDeviceGroups +NtAlertResumeThread +NtAlertThread +NtAlertThreadByThreadId +NtAllocateLocallyUniqueId +NtAllocateReserveObject +NtAllocateUserPhysicalPages +NtAllocateUuids +NtAllocateVirtualMemory +NtAlpcAcceptConnectPort +NtAlpcCancelMessage +NtAlpcConnectPort +NtAlpcConnectPortEx +NtAlpcCreatePort +NtAlpcCreatePortSection +NtAlpcCreateResourceReserve +NtAlpcCreateSectionView +NtAlpcCreateSecurityContext +NtAlpcDeletePortSection +NtAlpcDeleteResourceReserve +NtAlpcDeleteSectionView +NtAlpcDeleteSecurityContext +NtAlpcDisconnectPort +NtAlpcImpersonateClientOfPort +NtAlpcOpenSenderProcess +NtAlpcOpenSenderThread +NtAlpcQueryInformation +NtAlpcQueryInformationMessage +NtAlpcRevokeSecurityContext +NtAlpcSendWaitReceivePort +NtAlpcSetInformation +NtApphelpCacheControl +NtAreMappedFilesTheSame +NtAssignProcessToJobObject +NtAssociateWaitCompletionPacket +NtCallbackReturn +NtCancelIoFile +NtCancelIoFileEx +NtCancelSynchronousIoFile +NtCancelTimer +NtCancelTimer2 +NtCancelWaitCompletionPacket +NtClearEvent +NtClose +NtCloseObjectAuditAlarm +NtCommitComplete +NtCommitEnlistment +NtCommitTransaction +NtCompactKeys +NtCompareTokens +NtCompleteConnectPort +NtCompressKey +NtConnectPort +NtContinue +NtCreateDebugObject +NtCreateDirectoryObject +NtCreateDirectoryObjectEx +NtCreateEnlistment +NtCreateEvent +NtCreateEventPair +NtCreateFile +NtCreateIRTimer +NtCreateIoCompletion +NtCreateJobObject +NtCreateJobSet +NtCreateKey +NtCreateKeyTransacted +NtCreateKeyedEvent +NtCreateLowBoxToken +NtCreateMailslotFile +NtCreateMutant +NtCreateNamedPipeFile +NtCreatePagingFile +NtCreatePort +NtCreatePrivateNamespace +NtCreateProcess +NtCreateProcessEx +NtCreateProfile +NtCreateProfileEx +NtCreateResourceManager +NtCreateSection +NtCreateSemaphore +NtCreateSymbolicLinkObject +NtCreateThread +NtCreateThreadEx +NtCreateTimer +NtCreateTimer2 +NtCreateToken +NtCreateTokenEx +NtCreateTransaction +NtCreateTransactionManager +NtCreateUserProcess +NtCreateWaitCompletionPacket +NtCreateWaitablePort +NtCreateWnfStateName +NtCreateWorkerFactory +NtDebugActiveProcess +NtDebugContinue +NtDelayExecution +NtDeleteAtom +NtDeleteBootEntry +NtDeleteDriverEntry +NtDeleteFile +NtDeleteKey +NtDeleteObjectAuditAlarm +NtDeletePrivateNamespace +NtDeleteValueKey +NtDeleteWnfStateData +NtDeleteWnfStateName +NtDeviceIoControlFile +NtDisableLastKnownGood +NtDisplayString +NtDrawText +NtDuplicateObject +NtDuplicateToken +NtEnableLastKnownGood +NtEnumerateBootEntries +NtEnumerateDriverEntries +NtEnumerateKey +NtEnumerateSystemEnvironmentValuesEx +NtEnumerateTransactionObject +NtEnumerateValueKey +NtExtendSection +NtFilterBootOption +NtFilterToken +NtFilterTokenEx +NtFindAtom +NtFlushBuffersFile +NtFlushBuffersFileEx +NtFlushInstallUILanguage +NtFlushInstructionCache +NtFlushKey +NtFlushProcessWriteBuffers +NtFlushVirtualMemory +NtFlushWriteBuffer +NtFreeUserPhysicalPages +NtFreeVirtualMemory +NtFreezeRegistry +NtFreezeTransactions +NtFsControlFile +NtGetCachedSigningLevel +NtGetCompleteWnfStateSubscription +NtGetContextThread +NtGetCurrentProcessorNumber +NtGetDevicePowerState +NtGetMUIRegistryInfo +NtGetNextProcess +NtGetNextThread +NtGetNlsSectionPtr +NtGetNotificationResourceManager +NtGetTickCount +NtGetWriteWatch +NtImpersonateAnonymousToken +NtImpersonateClientOfPort +NtImpersonateThread +NtInitializeNlsFiles +NtInitializeRegistry +NtInitiatePowerAction +NtIsProcessInJob +NtIsSystemResumeAutomatic +NtIsUILanguageComitted +NtListenPort +NtLoadDriver +NtLoadKey +NtLoadKey2 +NtLoadKeyEx +NtLockFile +NtLockProductActivationKeys +NtLockRegistryKey +NtLockVirtualMemory +NtMakePermanentObject +NtMakeTemporaryObject +NtMapCMFModule +NtMapUserPhysicalPages +NtMapUserPhysicalPagesScatter +NtMapViewOfSection +NtModifyBootEntry +NtModifyDriverEntry +NtNotifyChangeDirectoryFile +NtNotifyChangeKey +NtNotifyChangeMultipleKeys +NtNotifyChangeSession +NtOpenDirectoryObject +NtOpenEnlistment +NtOpenEvent +NtOpenEventPair +NtOpenFile +NtOpenIoCompletion +NtOpenJobObject +NtOpenKey +NtOpenKeyEx +NtOpenKeyTransacted +NtOpenKeyTransactedEx +NtOpenKeyedEvent +NtOpenMutant +NtOpenObjectAuditAlarm +NtOpenPrivateNamespace +NtOpenProcess +NtOpenProcessToken +NtOpenProcessTokenEx +NtOpenResourceManager +NtOpenSection +NtOpenSemaphore +NtOpenSession +NtOpenSymbolicLinkObject +NtOpenThread +NtOpenThreadToken +NtOpenThreadTokenEx +NtOpenTimer +NtOpenTransaction +NtOpenTransactionManager +NtPlugPlayControl +NtPowerInformation +NtPrePrepareComplete +NtPrePrepareEnlistment +NtPrepareComplete +NtPrepareEnlistment +NtPrivilegeCheck +NtPrivilegeObjectAuditAlarm +NtPrivilegedServiceAuditAlarm +NtPropagationComplete +NtPropagationFailed +NtProtectVirtualMemory +NtPulseEvent +NtQueryAttributesFile +NtQueryBootEntryOrder +NtQueryBootOptions +NtQueryDebugFilterState +NtQueryDefaultLocale +NtQueryDefaultUILanguage +NtQueryDirectoryFile +NtQueryDirectoryObject +NtQueryDriverEntryOrder +NtQueryEaFile +NtQueryEvent +NtQueryFullAttributesFile +NtQueryInformationAtom +NtQueryInformationEnlistment +NtQueryInformationFile +NtQueryInformationJobObject +NtQueryInformationPort +NtQueryInformationProcess +NtQueryInformationResourceManager +NtQueryInformationThread +NtQueryInformationToken +NtQueryInformationTransaction +NtQueryInformationTransactionManager +NtQueryInformationWorkerFactory +NtQueryInstallUILanguage +NtQueryIntervalProfile +NtQueryIoCompletion +NtQueryKey +NtQueryLicenseValue +NtQueryMultipleValueKey +NtQueryMutant +NtQueryObject +NtQueryOpenSubKeys +NtQueryOpenSubKeysEx +NtQueryPerformanceCounter +NtQueryPortInformationProcess +NtQueryQuotaInformationFile +NtQuerySection +NtQuerySecurityAttributesToken +NtQuerySecurityObject +NtQuerySemaphore +NtQuerySymbolicLinkObject +NtQuerySystemEnvironmentValue +NtQuerySystemEnvironmentValueEx +NtQuerySystemInformation +NtQuerySystemInformationEx +NtQuerySystemTime +NtQueryTimer +NtQueryTimerResolution +NtQueryValueKey +NtQueryVirtualMemory +NtQueryVolumeInformationFile +NtQueryWnfStateData +NtQueryWnfStateNameInformation +NtQueueApcThread +NtQueueApcThreadEx +NtRaiseException +NtRaiseHardError +NtReadFile +NtReadFileScatter +NtReadOnlyEnlistment +NtReadRequestData +NtReadVirtualMemory +NtRecoverEnlistment +NtRecoverResourceManager +NtRecoverTransactionManager +NtRegisterProtocolAddressInformation +NtRegisterThreadTerminatePort +NtReleaseKeyedEvent +NtReleaseMutant +NtReleaseSemaphore +NtReleaseWorkerFactoryWorker +NtRemoveIoCompletion +NtRemoveIoCompletionEx +NtRemoveProcessDebug +NtRenameKey +NtRenameTransactionManager +NtReplaceKey +NtReplacePartitionUnit +NtReplyPort +NtReplyWaitReceivePort +NtReplyWaitReceivePortEx +NtReplyWaitReplyPort +NtRequestPort +NtRequestWaitReplyPort +NtResetEvent +NtResetWriteWatch +NtRestoreKey +NtResumeProcess +NtResumeThread +NtRollbackComplete +NtRollbackEnlistment +NtRollbackTransaction +NtRollforwardTransactionManager +NtSaveKey +NtSaveKeyEx +NtSaveMergedKeys +NtSecureConnectPort +NtSerializeBoot +NtSetBootEntryOrder +NtSetBootOptions +NtSetCachedSigningLevel +NtSetContextThread +NtSetDebugFilterState +NtSetDefaultHardErrorPort +NtSetDefaultLocale +NtSetDefaultUILanguage +NtSetDriverEntryOrder +NtSetEaFile +NtSetEvent +NtSetEventBoostPriority +NtSetHighEventPair +NtSetHighWaitLowEventPair +NtSetIRTimer +NtSetInformationDebugObject +NtSetInformationEnlistment +NtSetInformationFile +NtSetInformationJobObject +NtSetInformationKey +NtSetInformationObject +NtSetInformationProcess +NtSetInformationResourceManager +NtSetInformationThread +NtSetInformationToken +NtSetInformationTransaction +NtSetInformationTransactionManager +NtSetInformationVirtualMemory +NtSetInformationWorkerFactory +NtSetIntervalProfile +NtSetIoCompletion +NtSetIoCompletionEx +NtSetLdtEntries +NtSetLowEventPair +NtSetLowWaitHighEventPair +NtSetQuotaInformationFile +NtSetSecurityObject +NtSetSystemEnvironmentValue +NtSetSystemEnvironmentValueEx +NtSetSystemInformation +NtSetSystemPowerState +NtSetSystemTime +NtSetThreadExecutionState +NtSetTimer +NtSetTimer2 +NtSetTimerEx +NtSetTimerResolution +NtSetUuidSeed +NtSetValueKey +NtSetVolumeInformationFile +NtSetWnfProcessNotificationEvent +NtShutdownSystem +NtShutdownWorkerFactory +NtSignalAndWaitForSingleObject +NtSinglePhaseReject +NtStartProfile +NtStopProfile +NtSubscribeWnfStateChange +NtSuspendProcess +NtSuspendThread +NtSystemDebugControl +NtTerminateJobObject +NtTerminateProcess +NtTerminateThread +NtTestAlert +NtThawRegistry +NtThawTransactions +NtTraceControl +NtTraceEvent +NtTranslateFilePath +NtUmsThreadYield +NtUnloadDriver +NtUnloadKey +NtUnloadKey2 +NtUnloadKeyEx +NtUnlockFile +NtUnlockVirtualMemory +NtUnmapViewOfSection +NtUnmapViewOfSectionEx +NtUnsubscribeWnfStateChange +NtUpdateWnfStateData +NtVdmControl +NtWaitForAlertByThreadId +NtWaitForDebugEvent +NtWaitForKeyedEvent +NtWaitForMultipleObjects +NtWaitForMultipleObjects32 +NtWaitForSingleObject +NtWaitForWorkViaWorkerFactory +NtWaitHighEventPair +NtWaitLowEventPair +NtWorkerFactoryWorkerReady +NtWriteFile +NtWriteFileGather +NtWriteRequestData +NtWriteVirtualMemory +NtYieldExecution +NtdllDefWindowProc_A +NtdllDefWindowProc_W +NtdllDialogWndProc_A +NtdllDialogWndProc_W +PfxFindPrefix +PfxInitialize +PfxInsertPrefix +PfxRemovePrefix +PssNtCaptureSnapshot +PssNtDuplicateSnapshot +PssNtFreeRemoteSnapshot +PssNtFreeSnapshot +PssNtFreeWalkMarker +PssNtQuerySnapshot +PssNtValidateDescriptor +PssNtWalkSnapshot +ReadTimeStampCounter +RtlAbortRXact +RtlAbsoluteToSelfRelativeSD +RtlAcquirePebLock +RtlAcquirePrivilege +RtlAcquireReleaseSRWLockExclusive +RtlAcquireResourceExclusive +RtlAcquireResourceShared +RtlAcquireSRWLockExclusive +RtlAcquireSRWLockShared +RtlActivateActivationContext +RtlActivateActivationContextEx +RtlActivateActivationContextUnsafeFast +RtlAddAccessAllowedAce +RtlAddAccessAllowedAceEx +RtlAddAccessAllowedObjectAce +RtlAddAccessDeniedAce +RtlAddAccessDeniedAceEx +RtlAddAccessDeniedObjectAce +RtlAddAce +RtlAddActionToRXact +RtlAddAtomToAtomTable +RtlAddAttributeActionToRXact +RtlAddAuditAccessAce +RtlAddAuditAccessAceEx +RtlAddAuditAccessObjectAce +RtlAddCompoundAce +RtlAddFunctionTable +RtlAddGrowableFunctionTable +RtlAddIntegrityLabelToBoundaryDescriptor +RtlAddMandatoryAce +RtlAddProcessTrustLabelAce +RtlAddRefActivationContext +RtlAddRefMemoryStream +RtlAddResourceAttributeAce +RtlAddSIDToBoundaryDescriptor +RtlAddScopedPolicyIDAce +RtlAddVectoredContinueHandler +RtlAddVectoredExceptionHandler +RtlAddressInSectionTable +RtlAdjustPrivilege +RtlAllocateActivationContextStack +RtlAllocateAndInitializeSid +RtlAllocateAndInitializeSidEx +RtlAllocateHandle +RtlAllocateHeap +RtlAllocateMemoryBlockLookaside +RtlAllocateMemoryZone +RtlAllocateWnfSerializationGroup +RtlAnsiCharToUnicodeChar +RtlAnsiStringToUnicodeSize +RtlAnsiStringToUnicodeString +RtlAppendAsciizToString +RtlAppendPathElement +RtlAppendStringToString +RtlAppendUnicodeStringToString +RtlAppendUnicodeToString +RtlApplicationVerifierStop +RtlApplyRXact +RtlApplyRXactNoFlush +RtlAppxIsFileOwnedByTrustedInstaller +RtlAreAllAccessesGranted +RtlAreAnyAccessesGranted +RtlAreBitsClear +RtlAreBitsSet +RtlAssert +RtlAvlInsertNodeEx +RtlAvlRemoveNode +RtlBarrier +RtlBarrierForDelete +RtlCancelTimer +RtlCanonicalizeDomainName +RtlCaptureContext +RtlCaptureStackBackTrace +RtlCharToInteger +RtlCheckForOrphanedCriticalSections +RtlCheckPortableOperatingSystem +RtlCheckRegistryKey +RtlCheckTokenCapability +RtlCheckTokenMembership +RtlCheckTokenMembershipEx +RtlCleanUpTEBLangLists +RtlClearAllBits +RtlClearBit +RtlClearBits +RtlCloneMemoryStream +RtlCloneUserProcess +RtlCmDecodeMemIoResource +RtlCmEncodeMemIoResource +RtlCommitDebugInfo +RtlCommitMemoryStream +RtlCompactHeap +RtlCompareAltitudes +RtlCompareMemory +RtlCompareMemoryUlong +RtlCompareString +RtlCompareUnicodeString +RtlCompareUnicodeStrings +RtlCompressBuffer +RtlComputeCrc32 +RtlComputeImportTableHash +RtlComputePrivatizedDllName_U +RtlConnectToSm +RtlConsoleMultiByteToUnicodeN +RtlContractHashTable +RtlConvertExclusiveToShared +RtlConvertLCIDToString +RtlConvertSharedToExclusive +RtlConvertSidToUnicodeString +RtlConvertToAutoInheritSecurityObject +RtlCopyBitMap +RtlCopyContext +RtlCopyExtendedContext +RtlCopyLuid +RtlCopyLuidAndAttributesArray +RtlCopyMappedMemory +RtlCopyMemory +RtlCopyMemoryStreamTo +RtlCopyOutOfProcessMemoryStreamTo +RtlCopySecurityDescriptor +RtlCopySid +RtlCopySidAndAttributesArray +RtlCopyString +RtlCopyUnicodeString +RtlCrc32 +RtlCrc64 +RtlCreateAcl +RtlCreateActivationContext +RtlCreateAndSetSD +RtlCreateAtomTable +RtlCreateBootStatusDataFile +RtlCreateBoundaryDescriptor +RtlCreateEnvironment +RtlCreateEnvironmentEx +RtlCreateHashTable +RtlCreateHashTableEx +RtlCreateHeap +RtlCreateMemoryBlockLookaside +RtlCreateMemoryZone +RtlCreateProcessParameters +RtlCreateProcessParametersEx +RtlCreateProcessReflection +RtlCreateQueryDebugBuffer +RtlCreateRegistryKey +RtlCreateSecurityDescriptor +RtlCreateServiceSid +RtlCreateSystemVolumeInformationFolder +RtlCreateTagHeap +RtlCreateTimer +RtlCreateTimerQueue +RtlCreateUnicodeString +RtlCreateUnicodeStringFromAsciiz +RtlCreateUserProcess +RtlCreateUserSecurityObject +RtlCreateUserStack +RtlCreateUserThread +RtlCreateVirtualAccountSid +RtlCultureNameToLCID +RtlCustomCPToUnicodeN +RtlCutoverTimeToSystemTime +RtlDeCommitDebugInfo +RtlDeNormalizeProcessParams +RtlDeactivateActivationContext +RtlDeactivateActivationContextUnsafeFast +RtlDebugPrintTimes +RtlDecodePointer +RtlDecodeSystemPointer +RtlDecompressBuffer +RtlDecompressBufferEx +RtlDecompressFragment +RtlDefaultNpAcl +RtlDelete +RtlDeleteAce +RtlDeleteAtomFromAtomTable +RtlDeleteBarrier +RtlDeleteBoundaryDescriptor +RtlDeleteCriticalSection +RtlDeleteElementGenericTable +RtlDeleteElementGenericTableAvl +RtlDeleteElementGenericTableAvlEx +RtlDeleteFunctionTable +RtlDeleteGrowableFunctionTable +RtlDeleteHashTable +RtlDeleteNoSplay +RtlDeleteRegistryValue +RtlDeleteResource +RtlDeleteSecurityObject +RtlDeleteTimer +RtlDeleteTimerQueue +RtlDeleteTimerQueueEx +RtlDeregisterSecureMemoryCacheCallback +RtlDeregisterWait +RtlDeregisterWaitEx +RtlDestroyAtomTable +RtlDestroyEnvironment +RtlDestroyHandleTable +RtlDestroyHeap +RtlDestroyMemoryBlockLookaside +RtlDestroyMemoryZone +RtlDestroyProcessParameters +RtlDestroyQueryDebugBuffer +RtlDetectHeapLeaks +RtlDetermineDosPathNameType_U +RtlDisableThreadProfiling +RtlDllShutdownInProgress +RtlDnsHostNameToComputerName +RtlDoesFileExists_U +RtlDosApplyFileIsolationRedirection_Ustr +RtlDosPathNameToNtPathName_U +RtlDosPathNameToNtPathName_U_WithStatus +RtlDosPathNameToRelativeNtPathName_U +RtlDosPathNameToRelativeNtPathName_U_WithStatus +RtlDosSearchPath_U +RtlDosSearchPath_Ustr +RtlDowncaseUnicodeChar +RtlDowncaseUnicodeString +RtlDumpResource +RtlDuplicateUnicodeString +RtlEmptyAtomTable +RtlEnableEarlyCriticalSectionEventCreation +RtlEnableThreadProfiling +RtlEncodePointer +RtlEncodeSystemPointer +RtlEndEnumerationHashTable +RtlEndWeakEnumerationHashTable +RtlEnterCriticalSection +RtlEnumProcessHeaps +RtlEnumerateEntryHashTable +RtlEnumerateGenericTable +RtlEnumerateGenericTableAvl +RtlEnumerateGenericTableLikeADirectory +RtlEnumerateGenericTableWithoutSplaying +RtlEnumerateGenericTableWithoutSplayingAvl +RtlEqualComputerName +RtlEqualDomainName +RtlEqualLuid +RtlEqualPrefixSid +RtlEqualSid +RtlEqualString +RtlEqualUnicodeString +RtlEqualWnfChangeStamps +RtlEraseUnicodeString +RtlEthernetAddressToStringA +RtlEthernetAddressToStringW +RtlEthernetStringToAddressA +RtlEthernetStringToAddressW +RtlExitUserProcess +RtlExitUserThread +RtlExpandEnvironmentStrings +RtlExpandEnvironmentStrings_U +RtlExpandHashTable +RtlExtendMemoryBlockLookaside +RtlExtendMemoryZone +RtlExtendedMagicDivide +RtlExtractBitMap +RtlFillMemory +RtlFillMemoryUlong +RtlFillMemoryUlonglong +RtlFinalReleaseOutOfProcessMemoryStream +RtlFindAceByType +RtlFindActivationContextSectionGuid +RtlFindActivationContextSectionString +RtlFindCharInUnicodeString +RtlFindClearBits +RtlFindClearBitsAndSet +RtlFindClearRuns +RtlFindClosestEncodableLength +RtlFindLastBackwardRunClear +RtlFindLeastSignificantBit +RtlFindLongestRunClear +RtlFindMessage +RtlFindMostSignificantBit +RtlFindNextForwardRunClear +RtlFindSetBits +RtlFindSetBitsAndClear +RtlFirstEntrySList +RtlFirstFreeAce +RtlFlsAlloc +RtlFlsFree +RtlFlushHeaps +RtlFlushSecureMemoryCache +RtlFormatCurrentUserKeyPath +RtlFormatMessage +RtlFormatMessageEx +RtlFreeActivationContextStack +RtlFreeAnsiString +RtlFreeHandle +RtlFreeHeap +RtlFreeMemoryBlockLookaside +RtlFreeOemString +RtlFreeSid +RtlFreeThreadActivationContextStack +RtlFreeUnicodeString +RtlFreeUserStack +RtlGUIDFromString +RtlGenerate8dot3Name +RtlGetAce +RtlGetActiveActivationContext +RtlGetAppContainerNamedObjectPath +RtlGetAppContainerParent +RtlGetAppContainerSidType +RtlGetCallersAddress +RtlGetCompressionWorkSpaceSize +RtlGetControlSecurityDescriptor +RtlGetCriticalSectionRecursionCount +RtlGetCurrentDirectory_U +RtlGetCurrentPeb +RtlGetCurrentProcessorNumber +RtlGetCurrentProcessorNumberEx +RtlGetCurrentTransaction +RtlGetDaclSecurityDescriptor +RtlGetElementGenericTable +RtlGetElementGenericTableAvl +RtlGetEnabledExtendedFeatures +RtlGetExePath +RtlGetExtendedContextLength +RtlGetExtendedFeaturesMask +RtlGetFileMUIPath +RtlGetFrame +RtlGetFullPathName_U +RtlGetFullPathName_UEx +RtlGetFullPathName_UstrEx +RtlGetFunctionTableListHead +RtlGetGroupSecurityDescriptor +RtlGetIntegerAtom +RtlGetLastNtStatus +RtlGetLastWin32Error +RtlGetLengthWithoutLastFullDosOrNtPathElement +RtlGetLengthWithoutTrailingPathSeperators +RtlGetLocaleFileMappingAddress +RtlGetLongestNtPathLength +RtlGetNativeSystemInformation +RtlGetNextEntryHashTable +RtlGetNtGlobalFlags +RtlGetNtProductType +RtlGetNtVersionNumbers +RtlGetOwnerSecurityDescriptor +RtlGetParentLocaleName +RtlGetProcessHeaps +RtlGetProcessPreferredUILanguages +RtlGetProductInfo +RtlGetSaclSecurityDescriptor +RtlGetSearchPath +RtlGetSecurityDescriptorRMControl +RtlGetSetBootStatusData +RtlGetSystemPreferredUILanguages +RtlGetSystemTimePrecise +RtlGetThreadErrorMode +RtlGetThreadLangIdByIndex +RtlGetThreadPreferredUILanguages +RtlGetUILanguageInfo +RtlGetUnloadEventTrace +RtlGetUnloadEventTraceEx +RtlGetUserInfoHeap +RtlGetUserPreferredUILanguages +RtlGetVersion +RtlGrowFunctionTable +RtlHashUnicodeString +RtlHeapTrkInitialize +RtlIdentifierAuthoritySid +RtlIdnToAscii +RtlIdnToNameprepUnicode +RtlIdnToUnicode +RtlImageDirectoryEntryToData +RtlImageNtHeader +RtlImageNtHeaderEx +RtlImageRvaToSection +RtlImageRvaToVa +RtlImpersonateSelf +RtlImpersonateSelfEx +RtlInitAnsiString +RtlInitAnsiStringEx +RtlInitBarrier +RtlInitCodePageTable +RtlInitEnumerationHashTable +RtlInitMemoryStream +RtlInitNlsTables +RtlInitOutOfProcessMemoryStream +RtlInitString +RtlInitUnicodeString +RtlInitUnicodeStringEx +RtlInitWeakEnumerationHashTable +RtlInitializeAtomPackage +RtlInitializeBitMap +RtlInitializeConditionVariable +RtlInitializeContext +RtlInitializeCriticalSection +RtlInitializeCriticalSectionAndSpinCount +RtlInitializeCriticalSectionEx +RtlInitializeExtendedContext +RtlInitializeGenericTable +RtlInitializeGenericTableAvl +RtlInitializeHandleTable +RtlInitializeNtUserPfn +RtlInitializeRXact +RtlInitializeResource +RtlInitializeSListHead +RtlInitializeSRWLock +RtlInitializeSid +RtlInsertElementGenericTable +RtlInsertElementGenericTableAvl +RtlInsertElementGenericTableFull +RtlInsertElementGenericTableFullAvl +RtlInsertEntryHashTable +RtlInstallFunctionTableCallback +RtlInt64ToUnicodeString +RtlIntegerToChar +RtlIntegerToUnicodeString +RtlInterlockedClearBitRun +RtlInterlockedFlushSList +RtlInterlockedPopEntrySList +RtlInterlockedPushEntrySList +RtlInterlockedPushListSList +RtlInterlockedPushListSListEx +RtlInterlockedSetBitRun +RtlIoDecodeMemIoResource +RtlIoEncodeMemIoResource +RtlIpv4AddressToStringA +RtlIpv4AddressToStringExA +RtlIpv4AddressToStringExW +RtlIpv4AddressToStringW +RtlIpv4StringToAddressA +RtlIpv4StringToAddressExA +RtlIpv4StringToAddressExW +RtlIpv4StringToAddressW +RtlIpv6AddressToStringA +RtlIpv6AddressToStringExA +RtlIpv6AddressToStringExW +RtlIpv6AddressToStringW +RtlIpv6StringToAddressA +RtlIpv6StringToAddressExA +RtlIpv6StringToAddressExW +RtlIpv6StringToAddressW +RtlIsActivationContextActive +RtlIsCapabilitySid +RtlIsCriticalSectionLocked +RtlIsCriticalSectionLockedByThread +RtlIsCurrentThreadAttachExempt +RtlIsDosDeviceName_U +RtlIsGenericTableEmpty +RtlIsGenericTableEmptyAvl +RtlIsNameInExpression +RtlIsNameLegalDOS8Dot3 +RtlIsNormalizedString +RtlIsPackageSid +RtlIsParentOfChildAppContainer +RtlIsTextUnicode +RtlIsThreadWithinLoaderCallout +RtlIsUntrustedObject +RtlIsValidHandle +RtlIsValidIndexHandle +RtlIsValidLocaleName +RtlIsValidProcessTrustLabelSid +RtlKnownExceptionFilter +RtlLCIDToCultureName +RtlLargeIntegerToChar +RtlLcidToLocaleName +RtlLeaveCriticalSection +RtlLengthRequiredSid +RtlLengthSecurityDescriptor +RtlLengthSid +RtlLengthSidAsUnicodeString +RtlLoadString +RtlLocalTimeToSystemTime +RtlLocaleNameToLcid +RtlLocateExtendedFeature +RtlLocateLegacyContext +RtlLockBootStatusData +RtlLockCurrentThread +RtlLockHeap +RtlLockMemoryBlockLookaside +RtlLockMemoryStreamRegion +RtlLockMemoryZone +RtlLockModuleSection +RtlLogStackBackTrace +RtlLookupAtomInAtomTable +RtlLookupElementGenericTable +RtlLookupElementGenericTableAvl +RtlLookupElementGenericTableFull +RtlLookupElementGenericTableFullAvl +RtlLookupEntryHashTable +RtlLookupFunctionEntry +RtlLookupFunctionTable +RtlMakeSelfRelativeSD +RtlMapGenericMask +RtlMapSecurityErrorToNtStatus +RtlMoveMemory +RtlMultiAppendUnicodeStringBuffer +RtlMultiByteToUnicodeN +RtlMultiByteToUnicodeSize +RtlMultipleAllocateHeap +RtlMultipleFreeHeap +RtlNewInstanceSecurityObject +RtlNewSecurityGrantedAccess +RtlNewSecurityObject +RtlNewSecurityObjectEx +RtlNewSecurityObjectWithMultipleInheritance +RtlNormalizeProcessParams +RtlNormalizeString +RtlNtPathNameToDosPathName +RtlNtStatusToDosError +RtlNtStatusToDosErrorNoTeb +RtlNumberGenericTableElements +RtlNumberGenericTableElementsAvl +RtlNumberOfClearBits +RtlNumberOfClearBitsInRange +RtlNumberOfSetBits +RtlNumberOfSetBitsInRange +RtlNumberOfSetBitsUlongPtr +RtlOemStringToUnicodeSize +RtlOemStringToUnicodeString +RtlOemToUnicodeN +RtlOpenCurrentUser +RtlOwnerAcesPresent +RtlPcToFileHeader +RtlPinAtomInAtomTable +RtlPopFrame +RtlPrefixString +RtlPrefixUnicodeString +RtlProcessFlsData +RtlProtectHeap +RtlPublishWnfStateData +RtlPushFrame +RtlQueryActivationContextApplicationSettings +RtlQueryAtomInAtomTable +RtlQueryCriticalSectionOwner +RtlQueryDepthSList +RtlQueryDynamicTimeZoneInformation +RtlQueryElevationFlags +RtlQueryEnvironmentVariable +RtlQueryEnvironmentVariable_U +RtlQueryHeapInformation +RtlQueryInformationAcl +RtlQueryInformationActivationContext +RtlQueryInformationActiveActivationContext +RtlQueryInterfaceMemoryStream +RtlQueryModuleInformation +RtlQueryPackageIdentity +RtlQueryPackageIdentityEx +RtlQueryPerformanceCounter +RtlQueryPerformanceFrequency +RtlQueryProcessBackTraceInformation +RtlQueryProcessDebugInformation +RtlQueryProcessHeapInformation +RtlQueryProcessLockInformation +RtlQueryRegistryValues +RtlQueryRegistryValuesEx +RtlQueryResourcePolicy +RtlQuerySecurityObject +RtlQueryTagHeap +RtlQueryThreadProfiling +RtlQueryTimeZoneInformation +RtlQueryUnbiasedInterruptTime +RtlQueryValidationRunlevel +RtlQueryWnfMetaNotification +RtlQueryWnfStateData +RtlQueryWnfStateDataWithExplicitScope +RtlQueueApcWow64Thread +RtlQueueWorkItem +RtlRaiseException +RtlRaiseStatus +RtlRandom +RtlRandomEx +RtlRbInsertNodeEx +RtlRbRemoveNode +RtlReAllocateHeap +RtlReadMemoryStream +RtlReadOutOfProcessMemoryStream +RtlReadThreadProfilingData +RtlRealPredecessor +RtlRealSuccessor +RtlRegisterForWnfMetaNotification +RtlRegisterSecureMemoryCacheCallback +RtlRegisterThreadWithCsrss +RtlRegisterWait +RtlReleaseActivationContext +RtlReleaseMemoryStream +RtlReleasePath +RtlReleasePebLock +RtlReleasePrivilege +RtlReleaseRelativeName +RtlReleaseResource +RtlReleaseSRWLockExclusive +RtlReleaseSRWLockShared +RtlRemoteCall +RtlRemoveEntryHashTable +RtlRemovePrivileges +RtlRemoveVectoredContinueHandler +RtlRemoveVectoredExceptionHandler +RtlReplaceSidInSd +RtlReportException +RtlReportSilentProcessExit +RtlReportSqmEscalation +RtlResetMemoryBlockLookaside +RtlResetMemoryZone +RtlResetNtUserPfn +RtlResetRtlTranslations +RtlRestoreContext +RtlRestoreLastWin32Error +RtlRetrieveNtUserPfn +RtlRevertMemoryStream +RtlRunDecodeUnicodeString +RtlRunEncodeUnicodeString +RtlRunOnceBeginInitialize +RtlRunOnceComplete +RtlRunOnceExecuteOnce +RtlRunOnceInitialize +RtlSecondsSince1970ToTime +RtlSecondsSince1980ToTime +RtlSeekMemoryStream +RtlSelfRelativeToAbsoluteSD +RtlSelfRelativeToAbsoluteSD2 +RtlSendMsgToSm +RtlSetAllBits +RtlSetAttributesSecurityDescriptor +RtlSetBit +RtlSetBits +RtlSetControlSecurityDescriptor +RtlSetCriticalSectionSpinCount +RtlSetCurrentDirectory_U +RtlSetCurrentEnvironment +RtlSetCurrentTransaction +RtlSetDaclSecurityDescriptor +RtlSetDynamicTimeZoneInformation +RtlSetEnvironmentStrings +RtlSetEnvironmentVar +RtlSetEnvironmentVariable +RtlSetExtendedFeaturesMask +RtlSetGroupSecurityDescriptor +RtlSetHeapInformation +RtlSetInformationAcl +RtlSetIoCompletionCallback +RtlSetLastWin32Error +RtlSetLastWin32ErrorAndNtStatusFromNtStatus +RtlSetMemoryStreamSize +RtlSetOwnerSecurityDescriptor +RtlSetPortableOperatingSystem +RtlSetProcessDebugInformation +RtlSetProcessIsCritical +RtlSetProcessPreferredUILanguages +RtlSetSaclSecurityDescriptor +RtlSetSearchPathMode +RtlSetSecurityDescriptorRMControl +RtlSetSecurityObject +RtlSetSecurityObjectEx +RtlSetThreadErrorMode +RtlSetThreadIsCritical +RtlSetThreadPoolStartFunc +RtlSetThreadPreferredUILanguages +RtlSetTimeZoneInformation +RtlSetTimer +RtlSetUnhandledExceptionFilter +RtlSetUserFlagsHeap +RtlSetUserValueHeap +RtlSidDominates +RtlSidDominatesForTrust +RtlSidEqualLevel +RtlSidHashInitialize +RtlSidHashLookup +RtlSidIsHigherLevel +RtlSizeHeap +RtlSleepConditionVariableCS +RtlSleepConditionVariableSRW +RtlSplay +RtlStartRXact +RtlStatMemoryStream +RtlStringFromGUID +RtlStringFromGUIDEx +RtlSubAuthorityCountSid +RtlSubAuthoritySid +RtlSubscribeWnfStateChangeNotification +RtlSubtreePredecessor +RtlSubtreeSuccessor +RtlSystemTimeToLocalTime +RtlTestAndPublishWnfStateData +RtlTestBit +RtlTestProtectedAccess +RtlTimeFieldsToTime +RtlTimeToElapsedTimeFields +RtlTimeToSecondsSince1970 +RtlTimeToSecondsSince1980 +RtlTimeToTimeFields +RtlTraceDatabaseAdd +RtlTraceDatabaseCreate +RtlTraceDatabaseDestroy +RtlTraceDatabaseEnumerate +RtlTraceDatabaseFind +RtlTraceDatabaseLock +RtlTraceDatabaseUnlock +RtlTraceDatabaseValidate +RtlTryAcquirePebLock +RtlTryAcquireSRWLockExclusive +RtlTryAcquireSRWLockShared +RtlTryConvertSRWLockSharedToExclusiveOrRelease +RtlTryEnterCriticalSection +RtlUTF8ToUnicodeN +RtlUlongByteSwap +RtlUlonglongByteSwap +RtlUnhandledExceptionFilter +RtlUnhandledExceptionFilter2 +RtlUnicodeStringToAnsiSize +RtlUnicodeStringToAnsiString +RtlUnicodeStringToCountedOemString +RtlUnicodeStringToInteger +RtlUnicodeStringToOemSize +RtlUnicodeStringToOemString +RtlUnicodeToCustomCPN +RtlUnicodeToMultiByteN +RtlUnicodeToMultiByteSize +RtlUnicodeToOemN +RtlUnicodeToUTF8N +RtlUniform +RtlUnlockBootStatusData +RtlUnlockCurrentThread +RtlUnlockHeap +RtlUnlockMemoryBlockLookaside +RtlUnlockMemoryStreamRegion +RtlUnlockMemoryZone +RtlUnlockModuleSection +RtlUnsubscribeWnfNotificationWaitForCompletion +RtlUnsubscribeWnfNotificationWithCompletionCallback +RtlUnsubscribeWnfStateChangeNotification +RtlUnwind +RtlUnwindEx +RtlUpcaseUnicodeChar +RtlUpcaseUnicodeString +RtlUpcaseUnicodeStringToAnsiString +RtlUpcaseUnicodeStringToCountedOemString +RtlUpcaseUnicodeStringToOemString +RtlUpcaseUnicodeToCustomCPN +RtlUpcaseUnicodeToMultiByteN +RtlUpcaseUnicodeToOemN +RtlUpdateClonedCriticalSection +RtlUpdateClonedSRWLock +RtlUpdateTimer +RtlUpperChar +RtlUpperString +RtlUserThreadStart +RtlUshortByteSwap +RtlValidAcl +RtlValidProcessProtection +RtlValidRelativeSecurityDescriptor +RtlValidSecurityDescriptor +RtlValidSid +RtlValidateHeap +RtlValidateProcessHeaps +RtlValidateUnicodeString +RtlVerifyVersionInfo +RtlVirtualUnwind +RtlWaitForWnfMetaNotification +RtlWaitOnAddress +RtlWakeAddressAll +RtlWakeAddressAllNoFence +RtlWakeAddressSingle +RtlWakeAddressSingleNoFence +RtlWakeAllConditionVariable +RtlWakeConditionVariable +RtlWalkFrameChain +RtlWalkHeap +RtlWeaklyEnumerateEntryHashTable +RtlWerpReportException +RtlWnfCompareChangeStamp +RtlWnfDllUnloadCallback +RtlWow64CallFunction64 +RtlWow64EnableFsRedirection +RtlWow64EnableFsRedirectionEx +RtlWriteMemoryStream +RtlWriteRegistryValue +RtlZeroHeap +RtlZeroMemory +RtlZombifyActivationContext +RtlpApplyLengthFunction +RtlpCheckDynamicTimeZoneInformation +RtlpCleanupRegistryKeys +RtlpConvertAbsoluteToRelativeSecurityAttribute +RtlpConvertCultureNamesToLCIDs +RtlpConvertLCIDsToCultureNames +RtlpConvertRelativeToAbsoluteSecurityAttribute +RtlpCreateProcessRegistryInfo +RtlpEnsureBufferSize +RtlpFreezeTimeBias DATA +RtlpGetLCIDFromLangInfoNode +RtlpGetNameFromLangInfoNode +RtlpGetSystemDefaultUILanguage +RtlpGetUserOrMachineUILanguage4NLS +RtlpInitializeLangRegistryInfo +RtlpIsQualifiedLanguage +RtlpLoadMachineUIByPolicy +RtlpLoadUserUIByPolicy +RtlpMergeSecurityAttributeInformation +RtlpMuiFreeLangRegistryInfo +RtlpMuiRegCreateRegistryInfo +RtlpMuiRegFreeRegistryInfo +RtlpMuiRegLoadRegistryInfo +RtlpNotOwnerCriticalSection +RtlpNtCreateKey +RtlpNtEnumerateSubKey +RtlpNtMakeTemporaryKey +RtlpNtOpenKey +RtlpNtQueryValueKey +RtlpNtSetValueKey +RtlpQueryDefaultUILanguage +RtlpRefreshCachedUILanguage +RtlpSetInstallLanguage +RtlpSetPreferredUILanguages +RtlpSetUserPreferredUILanguages +RtlpUnWaitCriticalSection +RtlpVerifyAndCommitUILanguageSettings +RtlpWaitForCriticalSection +RtlxAnsiStringToUnicodeSize +RtlxOemStringToUnicodeSize +RtlxUnicodeStringToAnsiSize +RtlxUnicodeStringToOemSize +SbExecuteProcedure +SbSelectProcedure +ShipAssert +ShipAssertGetBufferInfo +ShipAssertMsgA +ShipAssertMsgW +TpAllocAlpcCompletion +TpAllocAlpcCompletionEx +TpAllocCleanupGroup +TpAllocIoCompletion +TpAllocJobNotification +TpAllocPool +TpAllocTimer +TpAllocWait +TpAllocWork +TpAlpcRegisterCompletionList +TpAlpcUnregisterCompletionList +TpCallbackDetectedUnrecoverableError +TpCallbackIndependent +TpCallbackLeaveCriticalSectionOnCompletion +TpCallbackMayRunLong +TpCallbackReleaseMutexOnCompletion +TpCallbackReleaseSemaphoreOnCompletion +TpCallbackSendAlpcMessageOnCompletion +TpCallbackSendPendingAlpcMessage +TpCallbackSetEventOnCompletion +TpCallbackUnloadDllOnCompletion +TpCancelAsyncIoOperation +TpCaptureCaller +TpCheckTerminateWorker +TpDbgDumpHeapUsage +TpDbgSetLogRoutine +TpDisablePoolCallbackChecks +TpDisassociateCallback +TpIsTimerSet +TpPostWork +TpQueryPoolStackInformation +TpReleaseAlpcCompletion +TpReleaseCleanupGroup +TpReleaseCleanupGroupMembers +TpReleaseIoCompletion +TpReleaseJobNotification +TpReleasePool +TpReleaseTimer +TpReleaseWait +TpReleaseWork +TpSetDefaultPoolMaxThreads +TpSetDefaultPoolStackInformation +TpSetPoolMaxThreads +TpSetPoolMinThreads +TpSetPoolStackInformation +TpSetPoolThreadBasePriority +TpSetTimer +TpSetTimerEx +TpSetWait +TpSetWaitEx +TpSimpleTryPost +TpStartAsyncIoOperation +TpTimerOutstandingCallbackCount +TpTrimPools +TpWaitForAlpcCompletion +TpWaitForIoCompletion +TpWaitForJobNotification +TpWaitForTimer +TpWaitForWait +TpWaitForWork +VerSetConditionMask +WerReportSQMEvent +WinSqmAddToAverageDWORD +WinSqmAddToStream +WinSqmAddToStreamEx +WinSqmCheckEscalationAddToStreamEx +WinSqmCheckEscalationSetDWORD +WinSqmCheckEscalationSetDWORD64 +WinSqmCheckEscalationSetString +WinSqmCommonDatapointDelete +WinSqmCommonDatapointSetDWORD +WinSqmCommonDatapointSetDWORD64 +WinSqmCommonDatapointSetStreamEx +WinSqmCommonDatapointSetString +WinSqmEndSession +WinSqmEventEnabled +WinSqmEventWrite +WinSqmGetEscalationRuleStatus +WinSqmGetInstrumentationProperty +WinSqmIncrementDWORD +WinSqmIsOptedIn +WinSqmIsOptedInEx +WinSqmIsSessionDisabled +WinSqmSetDWORD +WinSqmSetDWORD64 +WinSqmSetEscalationInfo +WinSqmSetIfMaxDWORD +WinSqmSetIfMinDWORD +WinSqmSetString +WinSqmStartSession +WinSqmStartSessionForPartner +ZwAcceptConnectPort +ZwAccessCheck +ZwAccessCheckAndAuditAlarm +ZwAccessCheckByType +ZwAccessCheckByTypeAndAuditAlarm +ZwAccessCheckByTypeResultList +ZwAccessCheckByTypeResultListAndAuditAlarm +ZwAccessCheckByTypeResultListAndAuditAlarmByHandle +ZwAddAtom +ZwAddAtomEx +ZwAddBootEntry +ZwAddDriverEntry +ZwAdjustGroupsToken +ZwAdjustPrivilegesToken +ZwAdjustTokenClaimsAndDeviceGroups +ZwAlertResumeThread +ZwAlertThread +ZwAlertThreadByThreadId +ZwAllocateLocallyUniqueId +ZwAllocateReserveObject +ZwAllocateUserPhysicalPages +ZwAllocateUuids +ZwAllocateVirtualMemory +ZwAlpcAcceptConnectPort +ZwAlpcCancelMessage +ZwAlpcConnectPort +ZwAlpcConnectPortEx +ZwAlpcCreatePort +ZwAlpcCreatePortSection +ZwAlpcCreateResourceReserve +ZwAlpcCreateSectionView +ZwAlpcCreateSecurityContext +ZwAlpcDeletePortSection +ZwAlpcDeleteResourceReserve +ZwAlpcDeleteSectionView +ZwAlpcDeleteSecurityContext +ZwAlpcDisconnectPort +ZwAlpcImpersonateClientOfPort +ZwAlpcOpenSenderProcess +ZwAlpcOpenSenderThread +ZwAlpcQueryInformation +ZwAlpcQueryInformationMessage +ZwAlpcRevokeSecurityContext +ZwAlpcSendWaitReceivePort +ZwAlpcSetInformation +ZwApphelpCacheControl +ZwAreMappedFilesTheSame +ZwAssignProcessToJobObject +ZwAssociateWaitCompletionPacket +ZwCallbackReturn +ZwCancelIoFile +ZwCancelIoFileEx +ZwCancelSynchronousIoFile +ZwCancelTimer +ZwCancelTimer2 +ZwCancelWaitCompletionPacket +ZwClearEvent +ZwClose +ZwCloseObjectAuditAlarm +ZwCommitComplete +ZwCommitEnlistment +ZwCommitTransaction +ZwCompactKeys +ZwCompareTokens +ZwCompleteConnectPort +ZwCompressKey +ZwConnectPort +ZwContinue +ZwCreateDebugObject +ZwCreateDirectoryObject +ZwCreateDirectoryObjectEx +ZwCreateEnlistment +ZwCreateEvent +ZwCreateEventPair +ZwCreateFile +ZwCreateIRTimer +ZwCreateIoCompletion +ZwCreateJobObject +ZwCreateJobSet +ZwCreateKey +ZwCreateKeyTransacted +ZwCreateKeyedEvent +ZwCreateLowBoxToken +ZwCreateMailslotFile +ZwCreateMutant +ZwCreateNamedPipeFile +ZwCreatePagingFile +ZwCreatePort +ZwCreatePrivateNamespace +ZwCreateProcess +ZwCreateProcessEx +ZwCreateProfile +ZwCreateProfileEx +ZwCreateResourceManager +ZwCreateSection +ZwCreateSemaphore +ZwCreateSymbolicLinkObject +ZwCreateThread +ZwCreateThreadEx +ZwCreateTimer +ZwCreateTimer2 +ZwCreateToken +ZwCreateTokenEx +ZwCreateTransaction +ZwCreateTransactionManager +ZwCreateUserProcess +ZwCreateWaitCompletionPacket +ZwCreateWaitablePort +ZwCreateWnfStateName +ZwCreateWorkerFactory +ZwDebugActiveProcess +ZwDebugContinue +ZwDelayExecution +ZwDeleteAtom +ZwDeleteBootEntry +ZwDeleteDriverEntry +ZwDeleteFile +ZwDeleteKey +ZwDeleteObjectAuditAlarm +ZwDeletePrivateNamespace +ZwDeleteValueKey +ZwDeleteWnfStateData +ZwDeleteWnfStateName +ZwDeviceIoControlFile +ZwDisableLastKnownGood +ZwDisplayString +ZwDrawText +ZwDuplicateObject +ZwDuplicateToken +ZwEnableLastKnownGood +ZwEnumerateBootEntries +ZwEnumerateDriverEntries +ZwEnumerateKey +ZwEnumerateSystemEnvironmentValuesEx +ZwEnumerateTransactionObject +ZwEnumerateValueKey +ZwExtendSection +ZwFilterBootOption +ZwFilterToken +ZwFilterTokenEx +ZwFindAtom +ZwFlushBuffersFile +ZwFlushBuffersFileEx +ZwFlushInstallUILanguage +ZwFlushInstructionCache +ZwFlushKey +ZwFlushProcessWriteBuffers +ZwFlushVirtualMemory +ZwFlushWriteBuffer +ZwFreeUserPhysicalPages +ZwFreeVirtualMemory +ZwFreezeRegistry +ZwFreezeTransactions +ZwFsControlFile +ZwGetCachedSigningLevel +ZwGetCompleteWnfStateSubscription +ZwGetContextThread +ZwGetCurrentProcessorNumber +ZwGetDevicePowerState +ZwGetMUIRegistryInfo +ZwGetNextProcess +ZwGetNextThread +ZwGetNlsSectionPtr +ZwGetNotificationResourceManager +ZwGetWriteWatch +ZwImpersonateAnonymousToken +ZwImpersonateClientOfPort +ZwImpersonateThread +ZwInitializeNlsFiles +ZwInitializeRegistry +ZwInitiatePowerAction +ZwIsProcessInJob +ZwIsSystemResumeAutomatic +ZwIsUILanguageComitted +ZwListenPort +ZwLoadDriver +ZwLoadKey +ZwLoadKey2 +ZwLoadKeyEx +ZwLockFile +ZwLockProductActivationKeys +ZwLockRegistryKey +ZwLockVirtualMemory +ZwMakePermanentObject +ZwMakeTemporaryObject +ZwMapCMFModule +ZwMapUserPhysicalPages +ZwMapUserPhysicalPagesScatter +ZwMapViewOfSection +ZwModifyBootEntry +ZwModifyDriverEntry +ZwNotifyChangeDirectoryFile +ZwNotifyChangeKey +ZwNotifyChangeMultipleKeys +ZwNotifyChangeSession +ZwOpenDirectoryObject +ZwOpenEnlistment +ZwOpenEvent +ZwOpenEventPair +ZwOpenFile +ZwOpenIoCompletion +ZwOpenJobObject +ZwOpenKey +ZwOpenKeyEx +ZwOpenKeyTransacted +ZwOpenKeyTransactedEx +ZwOpenKeyedEvent +ZwOpenMutant +ZwOpenObjectAuditAlarm +ZwOpenPrivateNamespace +ZwOpenProcess +ZwOpenProcessToken +ZwOpenProcessTokenEx +ZwOpenResourceManager +ZwOpenSection +ZwOpenSemaphore +ZwOpenSession +ZwOpenSymbolicLinkObject +ZwOpenThread +ZwOpenThreadToken +ZwOpenThreadTokenEx +ZwOpenTimer +ZwOpenTransaction +ZwOpenTransactionManager +ZwPlugPlayControl +ZwPowerInformation +ZwPrePrepareComplete +ZwPrePrepareEnlistment +ZwPrepareComplete +ZwPrepareEnlistment +ZwPrivilegeCheck +ZwPrivilegeObjectAuditAlarm +ZwPrivilegedServiceAuditAlarm +ZwPropagationComplete +ZwPropagationFailed +ZwProtectVirtualMemory +ZwPulseEvent +ZwQueryAttributesFile +ZwQueryBootEntryOrder +ZwQueryBootOptions +ZwQueryDebugFilterState +ZwQueryDefaultLocale +ZwQueryDefaultUILanguage +ZwQueryDirectoryFile +ZwQueryDirectoryObject +ZwQueryDriverEntryOrder +ZwQueryEaFile +ZwQueryEvent +ZwQueryFullAttributesFile +ZwQueryInformationAtom +ZwQueryInformationEnlistment +ZwQueryInformationFile +ZwQueryInformationJobObject +ZwQueryInformationPort +ZwQueryInformationProcess +ZwQueryInformationResourceManager +ZwQueryInformationThread +ZwQueryInformationToken +ZwQueryInformationTransaction +ZwQueryInformationTransactionManager +ZwQueryInformationWorkerFactory +ZwQueryInstallUILanguage +ZwQueryIntervalProfile +ZwQueryIoCompletion +ZwQueryKey +ZwQueryLicenseValue +ZwQueryMultipleValueKey +ZwQueryMutant +ZwQueryObject +ZwQueryOpenSubKeys +ZwQueryOpenSubKeysEx +ZwQueryPerformanceCounter +ZwQueryPortInformationProcess +ZwQueryQuotaInformationFile +ZwQuerySection +ZwQuerySecurityAttributesToken +ZwQuerySecurityObject +ZwQuerySemaphore +ZwQuerySymbolicLinkObject +ZwQuerySystemEnvironmentValue +ZwQuerySystemEnvironmentValueEx +ZwQuerySystemInformation +ZwQuerySystemInformationEx +ZwQuerySystemTime +ZwQueryTimer +ZwQueryTimerResolution +ZwQueryValueKey +ZwQueryVirtualMemory +ZwQueryVolumeInformationFile +ZwQueryWnfStateData +ZwQueryWnfStateNameInformation +ZwQueueApcThread +ZwQueueApcThreadEx +ZwRaiseException +ZwRaiseHardError +ZwReadFile +ZwReadFileScatter +ZwReadOnlyEnlistment +ZwReadRequestData +ZwReadVirtualMemory +ZwRecoverEnlistment +ZwRecoverResourceManager +ZwRecoverTransactionManager +ZwRegisterProtocolAddressInformation +ZwRegisterThreadTerminatePort +ZwReleaseKeyedEvent +ZwReleaseMutant +ZwReleaseSemaphore +ZwReleaseWorkerFactoryWorker +ZwRemoveIoCompletion +ZwRemoveIoCompletionEx +ZwRemoveProcessDebug +ZwRenameKey +ZwRenameTransactionManager +ZwReplaceKey +ZwReplacePartitionUnit +ZwReplyPort +ZwReplyWaitReceivePort +ZwReplyWaitReceivePortEx +ZwReplyWaitReplyPort +ZwRequestPort +ZwRequestWaitReplyPort +ZwResetEvent +ZwResetWriteWatch +ZwRestoreKey +ZwResumeProcess +ZwResumeThread +ZwRollbackComplete +ZwRollbackEnlistment +ZwRollbackTransaction +ZwRollforwardTransactionManager +ZwSaveKey +ZwSaveKeyEx +ZwSaveMergedKeys +ZwSecureConnectPort +ZwSerializeBoot +ZwSetBootEntryOrder +ZwSetBootOptions +ZwSetCachedSigningLevel +ZwSetContextThread +ZwSetDebugFilterState +ZwSetDefaultHardErrorPort +ZwSetDefaultLocale +ZwSetDefaultUILanguage +ZwSetDriverEntryOrder +ZwSetEaFile +ZwSetEvent +ZwSetEventBoostPriority +ZwSetHighEventPair +ZwSetHighWaitLowEventPair +ZwSetIRTimer +ZwSetInformationDebugObject +ZwSetInformationEnlistment +ZwSetInformationFile +ZwSetInformationJobObject +ZwSetInformationKey +ZwSetInformationObject +ZwSetInformationProcess +ZwSetInformationResourceManager +ZwSetInformationThread +ZwSetInformationToken +ZwSetInformationTransaction +ZwSetInformationTransactionManager +ZwSetInformationVirtualMemory +ZwSetInformationWorkerFactory +ZwSetIntervalProfile +ZwSetIoCompletion +ZwSetIoCompletionEx +ZwSetLdtEntries +ZwSetLowEventPair +ZwSetLowWaitHighEventPair +ZwSetQuotaInformationFile +ZwSetSecurityObject +ZwSetSystemEnvironmentValue +ZwSetSystemEnvironmentValueEx +ZwSetSystemInformation +ZwSetSystemPowerState +ZwSetSystemTime +ZwSetThreadExecutionState +ZwSetTimer +ZwSetTimer2 +ZwSetTimerEx +ZwSetTimerResolution +ZwSetUuidSeed +ZwSetValueKey +ZwSetVolumeInformationFile +ZwSetWnfProcessNotificationEvent +ZwShutdownSystem +ZwShutdownWorkerFactory +ZwSignalAndWaitForSingleObject +ZwSinglePhaseReject +ZwStartProfile +ZwStopProfile +ZwSubscribeWnfStateChange +ZwSuspendProcess +ZwSuspendThread +ZwSystemDebugControl +ZwTerminateJobObject +ZwTerminateProcess +ZwTerminateThread +ZwTestAlert +ZwThawRegistry +ZwThawTransactions +ZwTraceControl +ZwTraceEvent +ZwTranslateFilePath +ZwUmsThreadYield +ZwUnloadDriver +ZwUnloadKey +ZwUnloadKey2 +ZwUnloadKeyEx +ZwUnlockFile +ZwUnlockVirtualMemory +ZwUnmapViewOfSection +ZwUnmapViewOfSectionEx +ZwUnsubscribeWnfStateChange +ZwUpdateWnfStateData +ZwVdmControl +ZwWaitForAlertByThreadId +ZwWaitForDebugEvent +ZwWaitForKeyedEvent +ZwWaitForMultipleObjects +ZwWaitForMultipleObjects32 +ZwWaitForSingleObject +ZwWaitForWorkViaWorkerFactory +ZwWaitHighEventPair +ZwWaitLowEventPair +ZwWorkerFactoryWorkerReady +ZwWriteFile +ZwWriteFileGather +ZwWriteRequestData +ZwWriteVirtualMemory +ZwYieldExecution +__C_specific_handler +__chkstk +__isascii +__iscsym +__iscsymf +__jump_unwind +__toascii +_atoi64 +_errno +_fltused DATA +_i64toa +_i64toa_s +_i64tow +_i64tow_s +_itoa +_itoa_s +_itow +_itow_s +_lfind +_ltoa +_ltoa_s +_ltow +_ltow_s +_makepath_s +_memccpy +_memicmp +_setjmp +_setjmpex +_snprintf +_snprintf_s +_snscanf_s +_snwprintf +_snwprintf_s +_snwscanf_s +_splitpath +_splitpath_s +_strcmpi +_stricmp +_strlwr +_strlwr_s +_strnicmp +_strnset_s +_strset_s +_strupr +_strupr_s +_swprintf +_ui64toa +_ui64toa_s +_ui64tow +_ui64tow_s +_ultoa +_ultoa_s +_ultow +_ultow_s +_vscwprintf +_vsnprintf +_vsnprintf_s +_vsnwprintf +_vsnwprintf_s +_vswprintf +_wcsicmp +_wcslwr +_wcslwr_s +_wcsnicmp +_wcsnset_s +_wcsset_s +_wcstoi64 +_wcstoui64 +_wcsupr +_wcsupr_s +_wmakepath_s +_wsplitpath_s +_wtoi +_wtoi64 +_wtol +abs +atan +atoi +atol +bsearch +ceil +cos +fabs +floor +isalnum +isalpha +iscntrl +isdigit +isgraph +islower +isprint +ispunct +isspace +isupper +iswalnum +iswalpha +iswascii +iswctype +iswdigit +iswgraph +iswlower +iswprint +iswspace +iswxdigit +isxdigit +labs +log +longjmp +mbstowcs +memchr +memcmp +memcpy +memcpy_s +memmove +memmove_s +memset +pow +qsort +qsort_s +sin +sprintf +sprintf_s +sqrt +sscanf +sscanf_s +strcat +strcat_s +strchr +strcmp +strcpy +strcpy_s +strcspn +strlen +strncat +strncat_s +strncmp +strncpy +strncpy_s +strnlen +strpbrk +strrchr +strspn +strstr +strtok_s +strtol +strtoul +swprintf +swprintf_s +swscanf_s +tan +tolower +toupper +towlower +towupper +vDbgPrintEx +vDbgPrintExWithPrefix +vsprintf +vsprintf_s +vswprintf_s +wcscat +wcscat_s +wcschr +wcscmp +wcscpy +wcscpy_s +wcscspn +wcslen +wcsncat +wcsncat_s +wcsncmp +wcsncpy +wcsncpy_s +wcsnlen +wcspbrk +wcsrchr +wcsspn +wcsstr +wcstok_s +wcstol +wcstombs +wcstoul diff --git a/src/link.cpp b/src/link.cpp index 215710d6a8..445035eb73 100644 --- a/src/link.cpp +++ b/src/link.cpp @@ -571,6 +571,9 @@ static const MinGWDef mingw_def_list[] = { {"shell32", "lib-common" OS_SEP "shell32.def", true}, {"user32", "lib-common" OS_SEP "user32.def.in", true}, {"kernel32", "lib-common" OS_SEP "kernel32.def.in", true}, + {"ntdll", "libarm32" OS_SEP "ntdll.def", true}, + {"ntdll", "lib32" OS_SEP "ntdll.def", true}, + {"ntdll", "lib64" OS_SEP "ntdll.def", true}, }; struct LinkJob { From c3d20373ee232c7eabcf11a22c1c5e130f2a58cb Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 15 Jul 2019 19:35:10 -0400 Subject: [PATCH 11/13] std.unicode.utf8ToUtf16Le: improve performance on a simple test input: original utf8ToUtf16Le: elapsed: 111384483 ns (111 ms) new utf8ToUtf16Le: elapsed: 138570 ns (0 ms) it's 800x faster in debug mode and ~4500x faster in release-fast mode. this was slowing down installation of files on windows in build scripts. --- std/unicode.zig | 38 +++++++++++++++++++++++---------- std/unicode/throughput_test.zig | 37 ++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+), 11 deletions(-) create mode 100644 std/unicode/throughput_test.zig diff --git a/std/unicode.zig b/std/unicode.zig index 37a73d7500..6d47675ac3 100644 --- a/std/unicode.zig +++ b/std/unicode.zig @@ -560,18 +560,34 @@ pub fn utf8ToUtf16LeWithNull(allocator: *mem.Allocator, utf8: []const u8) ![]u16 } /// Returns index of next character. If exact fit, returned index equals output slice length. -/// If ran out of room, returned index equals output slice length + 1. +/// Assumes there is enough space for the output. /// TODO support codepoints bigger than 16 bits pub fn utf8ToUtf16Le(utf16le: []u16, utf8: []const u8) !usize { - const utf16le_as_bytes = @sliceToBytes(utf16le[0..]); - var end_index: usize = 0; - - var it = (try Utf8View.init(utf8)).iterator(); - while (it.nextCodepoint()) |codepoint| { - if (end_index == utf16le_as_bytes.len) return (end_index / 2) + 1; - // TODO surrogate pairs - mem.writeIntSliceLittle(u16, utf16le_as_bytes[end_index..], @intCast(u16, codepoint)); - end_index += 2; + var dest_i: usize = 0; + var src_i: usize = 0; + while (src_i < utf8.len) { + const byte = utf8[src_i]; + const n = @clz(u8, ~byte); + switch (n) { + 0 => { + utf16le[dest_i] = byte; + dest_i += 1; + src_i += 1; + continue; + }, + 2, 3, 4 => { + const next_src_i = src_i + n; + const codepoint = try utf8Decode(utf8[src_i..next_src_i]); + const short = @intCast(u16, codepoint); // TODO surrogate pairs + utf16le[dest_i] = switch (builtin.endian) { + .Little => short, + .Big => @byteSwap(u16, short), + }; + dest_i += 1; + src_i = next_src_i; + }, + else => return error.Utf8InvalidStartByte, + } } - return end_index / 2; + return dest_i; } diff --git a/std/unicode/throughput_test.zig b/std/unicode/throughput_test.zig new file mode 100644 index 0000000000..f8b18af734 --- /dev/null +++ b/std/unicode/throughput_test.zig @@ -0,0 +1,37 @@ +const builtin = @import("builtin"); +const std = @import("std"); + +pub fn main() !void { + var stdout_file = try std.io.getStdOut(); + var stdout_out_stream = stdout_file.outStream(); + const stdout = &stdout_out_stream.stream; + + const args = try std.process.argsAlloc(std.heap.direct_allocator); + + @fence(.SeqCst); + var timer = try std.time.Timer.start(); + @fence(.SeqCst); + + var buffer1: [32767]u16 = undefined; + _ = try std.unicode.utf8ToUtf16Le(&buffer1, args[1]); + + @fence(.SeqCst); + const elapsed_ns_orig = timer.lap(); + @fence(.SeqCst); + + var buffer2: [32767]u16 = undefined; + _ = try std.unicode.utf8ToUtf16Le_better(&buffer2, args[1]); + + @fence(.SeqCst); + const elapsed_ns_better = timer.lap(); + @fence(.SeqCst); + + std.debug.warn("original utf8ToUtf16Le: elapsed: {} ns ({} ms)\n", elapsed_ns_orig, elapsed_ns_orig / 1000000); + std.debug.warn("new utf8ToUtf16Le: elapsed: {} ns ({} ms)\n", elapsed_ns_better, elapsed_ns_better / 1000000); + asm volatile ("nop" + : + : [a] "r" (&buffer1), + [b] "r" (&buffer2) + : "memory" + ); +} From eaf545e24c009e308b9463d3c521c28621477b8f Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 15 Jul 2019 19:50:56 -0400 Subject: [PATCH 12/13] fix build on windows --- build.zig | 1 + src/buffer.hpp | 10 ++++++++++ src/util.hpp | 10 ++++++++++ std/os/windows.zig | 18 ++---------------- std/unicode.zig | 4 ++-- 5 files changed, 25 insertions(+), 18 deletions(-) diff --git a/build.zig b/build.zig index ed9856a437..d6e365b02d 100644 --- a/build.zig +++ b/build.zig @@ -372,6 +372,7 @@ fn addLibUserlandStep(b: *Builder) void { artifact.bundle_compiler_rt = true; artifact.setTarget(builtin.arch, builtin.os, builtin.abi); artifact.linkSystemLibrary("c"); + artifact.linkSystemLibrary("ntdll"); const libuserland_step = b.step("libuserland", "Build the userland compiler library for use in stage1"); libuserland_step.dependOn(&artifact.step); diff --git a/src/buffer.hpp b/src/buffer.hpp index d4a911fc21..d7254c18a7 100644 --- a/src/buffer.hpp +++ b/src/buffer.hpp @@ -136,11 +136,21 @@ static inline bool buf_eql_mem(Buf *buf, const char *mem, size_t mem_len) { return mem_eql_mem(buf_ptr(buf), buf_len(buf), mem, mem_len); } +static inline bool buf_eql_mem_ignore_case(Buf *buf, const char *mem, size_t mem_len) { + assert(buf->list.length); + return mem_eql_mem_ignore_case(buf_ptr(buf), buf_len(buf), mem, mem_len); +} + static inline bool buf_eql_str(Buf *buf, const char *str) { assert(buf->list.length); return buf_eql_mem(buf, str, strlen(str)); } +static inline bool buf_eql_str_ignore_case(Buf *buf, const char *str) { + assert(buf->list.length); + return buf_eql_mem_ignore_case(buf, str, strlen(str)); +} + static inline bool buf_starts_with_mem(Buf *buf, const char *mem, size_t mem_len) { if (buf_len(buf) < mem_len) { return false; diff --git a/src/util.hpp b/src/util.hpp index 6f26725135..1fa33b30f9 100644 --- a/src/util.hpp +++ b/src/util.hpp @@ -12,6 +12,7 @@ #include #include #include +#include #if defined(_MSC_VER) @@ -161,6 +162,15 @@ static inline bool mem_eql_mem(const char *a_ptr, size_t a_len, const char *b_pt return false; return memcmp(a_ptr, b_ptr, a_len) == 0; } +static inline bool mem_eql_mem_ignore_case(const char *a_ptr, size_t a_len, const char *b_ptr, size_t b_len) { + if (a_len != b_len) + return false; + for (size_t i = 0; i < a_len; i += 1) { + if (tolower(a_ptr[i]) != tolower(b_ptr[i])) + return false; + } + return true; +} static inline bool mem_eql_str(const char *mem, size_t mem_len, const char *str) { return mem_eql_mem(mem, mem_len, str, strlen(str)); diff --git a/std/os/windows.zig b/std/os/windows.zig index aa97671298..ac76e8f58f 100644 --- a/std/os/windows.zig +++ b/std/os/windows.zig @@ -267,7 +267,7 @@ pub fn GetQueuedCompletionStatus( } pub fn CloseHandle(hObject: HANDLE) void { - assert(ntdll.NtClose(hObject) == STATUS.SUCCESS); + assert(kernel32.CloseHandle(hObject) != 0); } pub fn FindClose(hFindFile: HANDLE) void { @@ -820,24 +820,9 @@ pub fn sliceToPrefixedFileW(s: []const u8) ![PATH_MAX_WIDE + 1]u16 { return sliceToPrefixedSuffixedFileW(s, [_]u16{0}); } -/// TODO once https://github.com/ziglang/zig/issues/2765 and https://github.com/ziglang/zig/issues/2761 are both solved, -/// this can be removed. Callsites that do not have performance bottlenecks -/// in this function should call `sliceToPrefixedFileW` to be future-proof. -pub fn sliceToPrefixedFileW_elidecopy(s: []const u8, result: *[PATH_MAX_WIDE + 1]u16) !void { - return sliceToPrefixedSuffixedFileW_elidecopy(s, [_]u16{0}, result); -} - pub fn sliceToPrefixedSuffixedFileW(s: []const u8, comptime suffix: []const u16) ![PATH_MAX_WIDE + suffix.len]u16 { // TODO https://github.com/ziglang/zig/issues/2765 var result: [PATH_MAX_WIDE + suffix.len]u16 = undefined; - try sliceToPrefixedSuffixedFileW_elidecopy(s, suffix, &result); - return result; -} - -/// TODO once https://github.com/ziglang/zig/issues/2765 and https://github.com/ziglang/zig/issues/2761 are both solved, -/// this can be removed. Callsites that do not have performance bottlenecks -/// in this function should call `sliceToPrefixedSuffixedFileW` to be future-proof. -pub fn sliceToPrefixedSuffixedFileW_elidecopy(s: []const u8, comptime suffix: []const u16, result: *[PATH_MAX_WIDE + suffix.len]u16) !void { // > File I/O functions in the Windows API convert "/" to "\" as part of // > converting the name to an NT-style name, except when using the "\\?\" // > prefix as detailed in the following sections. @@ -859,6 +844,7 @@ pub fn sliceToPrefixedSuffixedFileW_elidecopy(s: []const u8, comptime suffix: [] assert(end_index <= result.len); if (end_index + suffix.len > result.len) return error.NameTooLong; mem.copy(u16, result[end_index..], suffix); + return result; } inline fn MAKELANGID(p: c_ushort, s: c_ushort) LANGID { diff --git a/std/unicode.zig b/std/unicode.zig index 6d47675ac3..2e96147166 100644 --- a/std/unicode.zig +++ b/std/unicode.zig @@ -577,7 +577,7 @@ pub fn utf8ToUtf16Le(utf16le: []u16, utf8: []const u8) !usize { }, 2, 3, 4 => { const next_src_i = src_i + n; - const codepoint = try utf8Decode(utf8[src_i..next_src_i]); + const codepoint = utf8Decode(utf8[src_i..next_src_i]) catch return error.InvalidUtf8; const short = @intCast(u16, codepoint); // TODO surrogate pairs utf16le[dest_i] = switch (builtin.endian) { .Little => short, @@ -586,7 +586,7 @@ pub fn utf8ToUtf16Le(utf16le: []u16, utf8: []const u8) !usize { dest_i += 1; src_i = next_src_i; }, - else => return error.Utf8InvalidStartByte, + else => return error.InvalidUtf8, } } return dest_i; From aff90c22520bbbadd56fbfd1378f161ee8a3cdb2 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 15 Jul 2019 20:35:34 -0400 Subject: [PATCH 13/13] avoid shipping junk files I did a diff of the shipped file list with master branch and it looks good after this commit. --- build.zig | 2 +- lib/libcxx/include/CMakeLists.txt | 273 --------------------------- std/zig/{bench.zig => perf_test.zig} | 0 3 files changed, 1 insertion(+), 274 deletions(-) delete mode 100644 lib/libcxx/include/CMakeLists.txt rename std/zig/{bench.zig => perf_test.zig} (100%) diff --git a/build.zig b/build.zig index d6e365b02d..2cd0804894 100644 --- a/build.zig +++ b/build.zig @@ -91,7 +91,7 @@ pub fn build(b: *Builder) !void { .source_dir = "std", .install_dir = .Lib, .install_subdir = "zig" ++ fs.path.sep_str ++ "std", - .exclude_extensions = [_][]const u8{"test.zig"}, + .exclude_extensions = [_][]const u8{ "test.zig", "README.md" }, }); const test_filter = b.option([]const u8, "test-filter", "Skip tests that do not match filter"); diff --git a/lib/libcxx/include/CMakeLists.txt b/lib/libcxx/include/CMakeLists.txt deleted file mode 100644 index 73f7cfc4d8..0000000000 --- a/lib/libcxx/include/CMakeLists.txt +++ /dev/null @@ -1,273 +0,0 @@ -set(files - __bit_reference - __bsd_locale_defaults.h - __bsd_locale_fallbacks.h - __errc - __debug - __functional_03 - __functional_base - __functional_base_03 - __hash_table - __libcpp_version - __locale - __mutex_base - __node_handle - __nullptr - __split_buffer - __sso_allocator - __std_stream - __string - __threading_support - __tree - __tuple - __undef_macros - algorithm - any - array - atomic - bit - bitset - cassert - ccomplex - cctype - cerrno - cfenv - cfloat - charconv - chrono - cinttypes - ciso646 - climits - clocale - cmath - codecvt - compare - complex - complex.h - condition_variable - csetjmp - csignal - cstdarg - cstdbool - cstddef - cstdint - cstdio - cstdlib - cstring - ctgmath - ctime - ctype.h - cwchar - cwctype - deque - errno.h - exception - experimental/__config - experimental/__memory - experimental/algorithm - experimental/any - experimental/chrono - experimental/coroutine - experimental/deque - experimental/filesystem - experimental/forward_list - experimental/functional - experimental/iterator - experimental/list - experimental/map - experimental/memory_resource - experimental/numeric - experimental/optional - experimental/propagate_const - experimental/ratio - experimental/regex - experimental/set - experimental/simd - experimental/string - experimental/string_view - experimental/system_error - experimental/tuple - experimental/type_traits - experimental/unordered_map - experimental/unordered_set - experimental/utility - experimental/vector - ext/__hash - ext/hash_map - ext/hash_set - filesystem - float.h - forward_list - fstream - functional - future - initializer_list - inttypes.h - iomanip - ios - iosfwd - iostream - istream - iterator - limits - limits.h - list - locale - locale.h - map - math.h - memory - module.modulemap - mutex - new - numeric - optional - ostream - queue - random - ratio - regex - scoped_allocator - set - setjmp.h - shared_mutex - span - sstream - stack - stdbool.h - stddef.h - stdexcept - stdint.h - stdio.h - stdlib.h - streambuf - string - string.h - string_view - strstream - system_error - tgmath.h - thread - tuple - type_traits - typeindex - typeinfo - unordered_map - unordered_set - utility - valarray - variant - vector - version - wchar.h - wctype.h - ) - -if(LIBCXX_INSTALL_SUPPORT_HEADERS) - set(files - ${files} - support/android/locale_bionic.h - support/fuchsia/xlocale.h - support/ibm/limits.h - support/ibm/locale_mgmt_aix.h - support/ibm/support.h - support/ibm/xlocale.h - support/musl/xlocale.h - support/newlib/xlocale.h - support/solaris/floatingpoint.h - support/solaris/wchar.h - support/solaris/xlocale.h - support/win32/limits_msvc_win32.h - support/win32/locale_win32.h - support/xlocale/__nop_locale_mgmt.h - support/xlocale/__posix_l_fallback.h - support/xlocale/__strtonum_fallback.h - support/xlocale/xlocale.h - ) -endif() - -if (LIBCXX_NEEDS_SITE_CONFIG) - # Generate a custom __config header. The new header is created - # by prepending __config_site to the current __config header. - add_custom_command(OUTPUT ${LIBCXX_BINARY_DIR}/__generated_config - COMMAND ${PYTHON_EXECUTABLE} ${LIBCXX_SOURCE_DIR}/utils/cat_files.py - ${LIBCXX_BINARY_DIR}/__config_site - ${LIBCXX_SOURCE_DIR}/include/__config - -o ${LIBCXX_BINARY_DIR}/__generated_config - DEPENDS ${LIBCXX_SOURCE_DIR}/include/__config - ${LIBCXX_BINARY_DIR}/__config_site - ) - # Add a target that executes the generation commands. - add_custom_target(cxx-generated-config ALL - DEPENDS ${LIBCXX_BINARY_DIR}/__generated_config) - set(generated_config_deps cxx-generated-config) -else() - set(files - ${files} - __config - ) -endif() - -if(NOT LIBCXX_USING_INSTALLED_LLVM AND LIBCXX_HEADER_DIR) - set(output_dir ${LIBCXX_HEADER_DIR}/include/c++/v1) - - set(out_files) - foreach(f ${files}) - set(src ${CMAKE_CURRENT_SOURCE_DIR}/${f}) - set(dst ${output_dir}/${f}) - add_custom_command(OUTPUT ${dst} - DEPENDS ${src} - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${src} ${dst} - COMMENT "Copying CXX header ${f}") - list(APPEND out_files ${dst}) - endforeach() - - if (LIBCXX_NEEDS_SITE_CONFIG) - # Copy the generated header as __config into build directory. - set(src ${LIBCXX_BINARY_DIR}/__generated_config) - set(dst ${output_dir}/__config) - add_custom_command(OUTPUT ${dst} - DEPENDS ${src} ${generated_config_deps} - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${src} ${dst} - COMMENT "Copying CXX __config") - list(APPEND out_files ${dst}) - endif() - - add_custom_target(cxx-headers ALL DEPENDS ${out_files} ${LIBCXX_CXX_ABI_HEADER_TARGET}) -else() - add_custom_target(cxx-headers) -endif() -set_target_properties(cxx-headers PROPERTIES FOLDER "Misc") - -if (LIBCXX_INSTALL_HEADERS) - foreach(file ${files}) - get_filename_component(dir ${file} DIRECTORY) - install(FILES ${file} - DESTINATION ${LIBCXX_INSTALL_HEADER_PREFIX}include/c++/v1/${dir} - COMPONENT cxx-headers - PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ - ) - endforeach() - - if (LIBCXX_NEEDS_SITE_CONFIG) - # Install the generated header as __config. - install(FILES ${LIBCXX_BINARY_DIR}/__generated_config - DESTINATION ${LIBCXX_INSTALL_HEADER_PREFIX}include/c++/v1 - PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ - RENAME __config - COMPONENT cxx-headers) - endif() - - if (NOT CMAKE_CONFIGURATION_TYPES) - add_custom_target(install-cxx-headers - DEPENDS cxx-headers ${generated_config_deps} - COMMAND "${CMAKE_COMMAND}" - -DCMAKE_INSTALL_COMPONENT=cxx-headers - -P "${CMAKE_BINARY_DIR}/cmake_install.cmake") - # Stripping is a no-op for headers - add_custom_target(install-cxx-headers-stripped DEPENDS install-cxx-headers) - - add_custom_target(install-libcxx-headers DEPENDS install-cxx-headers) - add_custom_target(install-libcxx-headers-stripped DEPENDS install-cxx-headers-stripped) - endif() -endif() diff --git a/std/zig/bench.zig b/std/zig/perf_test.zig similarity index 100% rename from std/zig/bench.zig rename to std/zig/perf_test.zig