├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── etc ├── bitset.c ├── build-pbzx.sh ├── co-clang-15.0.7-driver.patch ├── co-llvm-15.0.7-ar.patch ├── co-llvm-15.0.7-nm.patch ├── create_tool_symlinks.sh ├── dist.sh ├── gen-sysinc.sh ├── gen-syslib_musl.h.sh ├── lib.sh ├── libxar │ ├── .gitignore │ ├── ChangeLog │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.in │ ├── NEWS │ ├── autogen.sh │ ├── cfghdrs.stamp.in │ ├── cfgoutputs.stamp.in │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── include │ │ ├── config.h.in │ │ └── xar.h.in │ ├── install-sh │ ├── lib │ │ ├── Makefile.inc.in │ │ ├── appledouble.h │ │ ├── archive.c │ │ ├── archive.h │ │ ├── arcmod.c │ │ ├── arcmod.h │ │ ├── asprintf.h │ │ ├── b64.c │ │ ├── b64.h │ │ ├── bzxar.c │ │ ├── bzxar.h │ │ ├── darwinattr.c │ │ ├── darwinattr.h │ │ ├── data.c │ │ ├── data.h │ │ ├── ea.c │ │ ├── ea.h │ │ ├── err.c │ │ ├── ext2.c │ │ ├── ext2.h │ │ ├── fbsdattr.c │ │ ├── fbsdattr.h │ │ ├── filetree.c │ │ ├── filetree.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── io.c │ │ ├── io.h │ │ ├── libxar.la.in.in │ │ ├── linuxattr.c │ │ ├── linuxattr.h │ │ ├── lzmaxar.c │ │ ├── lzmaxar.h │ │ ├── macho.c │ │ ├── macho.h │ │ ├── script.c │ │ ├── script.h │ │ ├── signature.c │ │ ├── signature.h │ │ ├── stat.c │ │ ├── stat.h │ │ ├── strmode.h │ │ ├── subdoc.c │ │ ├── subdoc.h │ │ ├── util.c │ │ ├── util.h │ │ ├── zxar.c │ │ └── zxar.h │ ├── src │ │ ├── Makefile.inc.in │ │ ├── xar.1 │ │ └── xar.c │ ├── test │ │ ├── attr │ │ ├── buffer.c │ │ ├── checksums │ │ ├── compression │ │ ├── data │ │ ├── data.xsl │ │ ├── functions │ │ ├── hardlink │ │ ├── heap │ │ ├── heap1.xsl │ │ └── validate.c │ ├── version │ ├── xar.spec.in │ └── xar_README.txt ├── macos-headers.c ├── pbzx.c ├── playbit.conf ├── stdlib.md ├── sublime-text │ ├── Build.sublime-build │ ├── Comments.tmPreferences │ ├── Compis.sublime-package │ ├── Compis.sublime-syntax │ ├── Indent.tmPreferences │ ├── IndentComments.tmPreferences │ ├── IndentStrings.tmPreferences │ ├── Makefile │ ├── Snippets │ │ ├── comment-block.sublime-snippet │ │ └── fun.sublime-snippet │ ├── SymbolIndex.tmPreferences │ └── SymbolList.tmPreferences ├── update-clangres.sh ├── update-libcxx.sh ├── update-librt.sh ├── update-linux-headers.sh ├── update-macos-libs-and-headers.sh ├── update-musl.sh ├── update-wasi.sh └── update-wasmer-js.sh ├── examples ├── anontypes │ ├── anontypes.co │ ├── bar │ │ └── bar.co │ └── foo │ │ └── foo.co ├── array_mutation.co ├── arrays-and-slices.co ├── assign-to-slice.co ├── block-result.co ├── builtins.co ├── cannot-make-void-vars.co ├── charlit.co ├── comptime.co ├── decl-order-independence.co ├── default-zero-init.co ├── error-struct-field-after-fun.co ├── float_limits.co ├── foo.c ├── foo.co ├── foo │ └── foo.co ├── for-loop.co ├── future │ ├── dynamic-type-cast.co │ ├── ideas-for-trailing-lambdas.co │ ├── map-move-val.co │ ├── nested-types.co │ ├── recursive-struct.co │ └── unresolved-ref-fields.co ├── generic.co ├── hello-c-interop │ ├── foo.co │ └── main.c ├── hello-wasi │ ├── README.md │ ├── hello.c │ ├── index.html │ └── wasi.js ├── hello-wasm │ ├── README.md │ ├── hello.c │ └── index.html ├── hello.c ├── hello.cc ├── hello.co ├── hello │ ├── hello.co │ └── main.co ├── if-else.co ├── implicit-type-fun-call.co ├── import-statements.co ├── import1.co ├── import2 │ ├── import2.co │ └── internal.co ├── import3 │ └── import3.co ├── import4 │ └── import4.co ├── indentation.co ├── intlit.co ├── ir.co ├── libc-hello.c ├── member-access-opt.co ├── minimal-main.co ├── negative_num.co ├── optional-check.co ├── optional.co ├── ownership-cond-branch.co ├── ownership-todo-elem-extract.co ├── ownership.co ├── recursive-functions.co ├── recursive-types.co ├── ref-semantics.co ├── refs.co ├── seq-builtin-funs.co ├── shorthand-call-syntax.co ├── subscript.co ├── type-functions.co └── variables.co ├── lib ├── README.md ├── clangres │ └── include │ │ ├── __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.h │ │ ├── __clang_cuda_math_forward_declares.h │ │ ├── __clang_cuda_runtime_wrapper.h │ │ ├── __clang_cuda_texture_intrinsics.h │ │ ├── __clang_hip_cmath.h │ │ ├── __clang_hip_libdevice_declares.h │ │ ├── __clang_hip_math.h │ │ ├── __clang_hip_runtime_wrapper.h │ │ ├── __stddef_max_align_t.h │ │ ├── __wmmintrin_aes.h │ │ ├── __wmmintrin_pclmul.h │ │ ├── adxintrin.h │ │ ├── altivec.h │ │ ├── ammintrin.h │ │ ├── amxintrin.h │ │ ├── arm64intr.h │ │ ├── arm_acle.h │ │ ├── arm_bf16.h │ │ ├── arm_cde.h │ │ ├── arm_cmse.h │ │ ├── arm_fp16.h │ │ ├── arm_mve.h │ │ ├── arm_neon.h │ │ ├── arm_sve.h │ │ ├── armintr.h │ │ ├── avx2intrin.h │ │ ├── avx512bf16intrin.h │ │ ├── avx512bitalgintrin.h │ │ ├── avx512bwintrin.h │ │ ├── avx512cdintrin.h │ │ ├── avx512dqintrin.h │ │ ├── avx512erintrin.h │ │ ├── avx512fintrin.h │ │ ├── avx512fp16intrin.h │ │ ├── avx512ifmaintrin.h │ │ ├── avx512ifmavlintrin.h │ │ ├── avx512pfintrin.h │ │ ├── avx512vbmi2intrin.h │ │ ├── avx512vbmiintrin.h │ │ ├── avx512vbmivlintrin.h │ │ ├── avx512vlbf16intrin.h │ │ ├── avx512vlbitalgintrin.h │ │ ├── avx512vlbwintrin.h │ │ ├── avx512vlcdintrin.h │ │ ├── avx512vldqintrin.h │ │ ├── avx512vlfp16intrin.h │ │ ├── avx512vlintrin.h │ │ ├── avx512vlvbmi2intrin.h │ │ ├── avx512vlvnniintrin.h │ │ ├── avx512vlvp2intersectintrin.h │ │ ├── avx512vnniintrin.h │ │ ├── avx512vp2intersectintrin.h │ │ ├── avx512vpopcntdqintrin.h │ │ ├── avx512vpopcntdqvlintrin.h │ │ ├── avxintrin.h │ │ ├── avxvnniintrin.h │ │ ├── bmi2intrin.h │ │ ├── bmiintrin.h │ │ ├── builtins.h │ │ ├── cet.h │ │ ├── cetintrin.h │ │ ├── cldemoteintrin.h │ │ ├── clflushoptintrin.h │ │ ├── clwbintrin.h │ │ ├── clzerointrin.h │ │ ├── cpuid.h │ │ ├── crc32intrin.h │ │ ├── cuda_wrappers │ │ ├── algorithm │ │ ├── complex │ │ └── new │ │ ├── emmintrin.h │ │ ├── enqcmdintrin.h │ │ ├── f16cintrin.h │ │ ├── float.h │ │ ├── fma4intrin.h │ │ ├── fmaintrin.h │ │ ├── fuzzer │ │ └── FuzzedDataProvider.h │ │ ├── fxsrintrin.h │ │ ├── gfniintrin.h │ │ ├── hexagon_circ_brev_intrinsics.h │ │ ├── hexagon_protos.h │ │ ├── hexagon_types.h │ │ ├── hlsl.h │ │ ├── hlsl_basic_types.h │ │ ├── hlsl_intrinsics.h │ │ ├── hresetintrin.h │ │ ├── htmintrin.h │ │ ├── htmxlintrin.h │ │ ├── hvx_hexagon_protos.h │ │ ├── ia32intrin.h │ │ ├── immintrin.h │ │ ├── intrin.h │ │ ├── inttypes.h │ │ ├── invpcidintrin.h │ │ ├── iso646.h │ │ ├── keylockerintrin.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-base.h │ │ ├── opencl-c.h │ │ ├── openmp_wrappers │ │ ├── __clang_openmp_device_functions.h │ │ ├── cmath │ │ ├── complex │ │ ├── complex.h │ │ ├── complex_cmath.h │ │ ├── math.h │ │ └── new │ │ ├── orc │ │ └── c_api.h │ │ ├── pconfigintrin.h │ │ ├── pkuintrin.h │ │ ├── pmmintrin.h │ │ ├── popcntintrin.h │ │ ├── ppc_wrappers │ │ ├── bmi2intrin.h │ │ ├── bmiintrin.h │ │ ├── emmintrin.h │ │ ├── immintrin.h │ │ ├── mm_malloc.h │ │ ├── mmintrin.h │ │ ├── pmmintrin.h │ │ ├── smmintrin.h │ │ ├── tmmintrin.h │ │ ├── x86gprintrin.h │ │ ├── x86intrin.h │ │ └── xmmintrin.h │ │ ├── prfchwintrin.h │ │ ├── profile │ │ └── InstrProfData.inc │ │ ├── ptwriteintrin.h │ │ ├── rdpruintrin.h │ │ ├── rdseedintrin.h │ │ ├── riscv_vector.h │ │ ├── rtmintrin.h │ │ ├── s390intrin.h │ │ ├── sanitizer │ │ ├── allocator_interface.h │ │ ├── asan_interface.h │ │ ├── common_interface_defs.h │ │ ├── coverage_interface.h │ │ ├── dfsan_interface.h │ │ ├── hwasan_interface.h │ │ ├── linux_syscall_hooks.h │ │ ├── lsan_interface.h │ │ ├── msan_interface.h │ │ ├── netbsd_syscall_hooks.h │ │ ├── scudo_interface.h │ │ ├── tsan_interface.h │ │ ├── tsan_interface_atomic.h │ │ └── ubsan_interface.h │ │ ├── serializeintrin.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 │ │ ├── tsxldtrkintrin.h │ │ ├── uintrintrin.h │ │ ├── unwind.h │ │ ├── vadefs.h │ │ ├── vaesintrin.h │ │ ├── varargs.h │ │ ├── vecintrin.h │ │ ├── velintrin.h │ │ ├── velintrin_approx.h │ │ ├── velintrin_gen.h │ │ ├── vpclmulqdqintrin.h │ │ ├── waitpkgintrin.h │ │ ├── wasm_simd128.h │ │ ├── wbnoinvdintrin.h │ │ ├── wmmintrin.h │ │ ├── x86gprintrin.h │ │ ├── x86intrin.h │ │ ├── xmmintrin.h │ │ ├── xopintrin.h │ │ ├── xray │ │ ├── xray_interface.h │ │ ├── xray_log_interface.h │ │ └── xray_records.h │ │ ├── xsavecintrin.h │ │ ├── xsaveintrin.h │ │ ├── xsaveoptintrin.h │ │ ├── xsavesintrin.h │ │ └── xtestintrin.h ├── co │ └── coprelude.h ├── darwin │ ├── any-macos.10 │ │ ├── libSystem.tbd │ │ ├── libc.tbd │ │ ├── libdbm.tbd │ │ ├── libdl.tbd │ │ ├── libinfo.tbd │ │ ├── libm.tbd │ │ ├── libmx.tbd │ │ ├── libpoll.tbd │ │ ├── libproc.tbd │ │ ├── libpthread.tbd │ │ └── librpcsvc.tbd │ ├── any-macos.11 │ │ ├── libSystem.tbd │ │ ├── libc.tbd │ │ ├── libdbm.tbd │ │ ├── libdl.tbd │ │ ├── libinfo.tbd │ │ ├── libm.tbd │ │ ├── libmx.tbd │ │ ├── libpoll.tbd │ │ ├── libproc.tbd │ │ ├── libpthread.tbd │ │ └── librpcsvc.tbd │ ├── any-macos.12 │ │ ├── libSystem.tbd │ │ ├── libc.tbd │ │ ├── libdbm.tbd │ │ ├── libdl.tbd │ │ ├── libinfo.tbd │ │ ├── libm.tbd │ │ ├── libmx.tbd │ │ ├── libpoll.tbd │ │ ├── libproc.tbd │ │ ├── libpthread.tbd │ │ └── librpcsvc.tbd │ ├── any-macos.13 │ │ ├── libSystem.tbd │ │ ├── libc.tbd │ │ ├── libdbm.tbd │ │ ├── libdl.tbd │ │ ├── libinfo.tbd │ │ ├── libm.tbd │ │ ├── libmx.tbd │ │ ├── libpoll.tbd │ │ ├── libproc.tbd │ │ ├── libpthread.tbd │ │ └── librpcsvc.tbd │ └── any-macos.14 │ │ ├── libSystem.tbd │ │ ├── libc.tbd │ │ ├── libdbm.tbd │ │ ├── libdl.tbd │ │ ├── libinfo.tbd │ │ ├── libm.tbd │ │ ├── libmx.tbd │ │ ├── libpoll.tbd │ │ ├── libproc.tbd │ │ ├── libpthread.tbd │ │ └── librpcsvc.tbd ├── libcxx │ ├── LICENSE.TXT │ ├── include │ │ ├── __algorithm │ │ │ ├── adjacent_find.h │ │ │ ├── all_of.h │ │ │ ├── any_of.h │ │ │ ├── binary_search.h │ │ │ ├── clamp.h │ │ │ ├── comp.h │ │ │ ├── comp_ref_type.h │ │ │ ├── copy.h │ │ │ ├── copy_backward.h │ │ │ ├── copy_if.h │ │ │ ├── copy_n.h │ │ │ ├── count.h │ │ │ ├── count_if.h │ │ │ ├── equal.h │ │ │ ├── equal_range.h │ │ │ ├── fill.h │ │ │ ├── fill_n.h │ │ │ ├── find.h │ │ │ ├── find_end.h │ │ │ ├── find_first_of.h │ │ │ ├── find_if.h │ │ │ ├── find_if_not.h │ │ │ ├── for_each.h │ │ │ ├── for_each_n.h │ │ │ ├── generate.h │ │ │ ├── generate_n.h │ │ │ ├── half_positive.h │ │ │ ├── in_found_result.h │ │ │ ├── in_fun_result.h │ │ │ ├── in_in_out_result.h │ │ │ ├── in_in_result.h │ │ │ ├── in_out_out_result.h │ │ │ ├── in_out_result.h │ │ │ ├── includes.h │ │ │ ├── inplace_merge.h │ │ │ ├── is_heap.h │ │ │ ├── is_heap_until.h │ │ │ ├── is_partitioned.h │ │ │ ├── is_permutation.h │ │ │ ├── is_sorted.h │ │ │ ├── is_sorted_until.h │ │ │ ├── iter_swap.h │ │ │ ├── iterator_operations.h │ │ │ ├── lexicographical_compare.h │ │ │ ├── lower_bound.h │ │ │ ├── make_heap.h │ │ │ ├── make_projected.h │ │ │ ├── max.h │ │ │ ├── max_element.h │ │ │ ├── merge.h │ │ │ ├── min.h │ │ │ ├── min_element.h │ │ │ ├── min_max_result.h │ │ │ ├── minmax.h │ │ │ ├── minmax_element.h │ │ │ ├── mismatch.h │ │ │ ├── move.h │ │ │ ├── move_backward.h │ │ │ ├── next_permutation.h │ │ │ ├── none_of.h │ │ │ ├── nth_element.h │ │ │ ├── partial_sort.h │ │ │ ├── partial_sort_copy.h │ │ │ ├── partition.h │ │ │ ├── partition_copy.h │ │ │ ├── partition_point.h │ │ │ ├── pop_heap.h │ │ │ ├── prev_permutation.h │ │ │ ├── push_heap.h │ │ │ ├── ranges_adjacent_find.h │ │ │ ├── ranges_all_of.h │ │ │ ├── ranges_any_of.h │ │ │ ├── ranges_binary_search.h │ │ │ ├── ranges_clamp.h │ │ │ ├── ranges_copy.h │ │ │ ├── ranges_copy_backward.h │ │ │ ├── ranges_copy_if.h │ │ │ ├── ranges_copy_n.h │ │ │ ├── ranges_count.h │ │ │ ├── ranges_count_if.h │ │ │ ├── ranges_equal.h │ │ │ ├── ranges_equal_range.h │ │ │ ├── ranges_fill.h │ │ │ ├── ranges_fill_n.h │ │ │ ├── ranges_find.h │ │ │ ├── ranges_find_end.h │ │ │ ├── ranges_find_first_of.h │ │ │ ├── ranges_find_if.h │ │ │ ├── ranges_find_if_not.h │ │ │ ├── ranges_for_each.h │ │ │ ├── ranges_for_each_n.h │ │ │ ├── ranges_generate.h │ │ │ ├── ranges_generate_n.h │ │ │ ├── ranges_includes.h │ │ │ ├── ranges_inplace_merge.h │ │ │ ├── ranges_is_heap.h │ │ │ ├── ranges_is_heap_until.h │ │ │ ├── ranges_is_partitioned.h │ │ │ ├── ranges_is_permutation.h │ │ │ ├── ranges_is_sorted.h │ │ │ ├── ranges_is_sorted_until.h │ │ │ ├── ranges_iterator_concept.h │ │ │ ├── ranges_lexicographical_compare.h │ │ │ ├── ranges_lower_bound.h │ │ │ ├── ranges_make_heap.h │ │ │ ├── ranges_max.h │ │ │ ├── ranges_max_element.h │ │ │ ├── ranges_merge.h │ │ │ ├── ranges_min.h │ │ │ ├── ranges_min_element.h │ │ │ ├── ranges_minmax.h │ │ │ ├── ranges_minmax_element.h │ │ │ ├── ranges_mismatch.h │ │ │ ├── ranges_move.h │ │ │ ├── ranges_move_backward.h │ │ │ ├── ranges_next_permutation.h │ │ │ ├── ranges_none_of.h │ │ │ ├── ranges_nth_element.h │ │ │ ├── ranges_partial_sort.h │ │ │ ├── ranges_partial_sort_copy.h │ │ │ ├── ranges_partition.h │ │ │ ├── ranges_partition_copy.h │ │ │ ├── ranges_partition_point.h │ │ │ ├── ranges_pop_heap.h │ │ │ ├── ranges_prev_permutation.h │ │ │ ├── ranges_push_heap.h │ │ │ ├── ranges_remove.h │ │ │ ├── ranges_remove_copy.h │ │ │ ├── ranges_remove_copy_if.h │ │ │ ├── ranges_remove_if.h │ │ │ ├── ranges_replace.h │ │ │ ├── ranges_replace_copy.h │ │ │ ├── ranges_replace_copy_if.h │ │ │ ├── ranges_replace_if.h │ │ │ ├── ranges_reverse.h │ │ │ ├── ranges_reverse_copy.h │ │ │ ├── ranges_rotate.h │ │ │ ├── ranges_rotate_copy.h │ │ │ ├── ranges_sample.h │ │ │ ├── ranges_search.h │ │ │ ├── ranges_search_n.h │ │ │ ├── ranges_set_difference.h │ │ │ ├── ranges_set_intersection.h │ │ │ ├── ranges_set_symmetric_difference.h │ │ │ ├── ranges_set_union.h │ │ │ ├── ranges_shuffle.h │ │ │ ├── ranges_sort.h │ │ │ ├── ranges_sort_heap.h │ │ │ ├── ranges_stable_partition.h │ │ │ ├── ranges_stable_sort.h │ │ │ ├── ranges_swap_ranges.h │ │ │ ├── ranges_transform.h │ │ │ ├── ranges_unique.h │ │ │ ├── ranges_unique_copy.h │ │ │ ├── ranges_upper_bound.h │ │ │ ├── remove.h │ │ │ ├── remove_copy.h │ │ │ ├── remove_copy_if.h │ │ │ ├── remove_if.h │ │ │ ├── replace.h │ │ │ ├── replace_copy.h │ │ │ ├── replace_copy_if.h │ │ │ ├── replace_if.h │ │ │ ├── reverse.h │ │ │ ├── reverse_copy.h │ │ │ ├── rotate.h │ │ │ ├── rotate_copy.h │ │ │ ├── sample.h │ │ │ ├── search.h │ │ │ ├── search_n.h │ │ │ ├── set_difference.h │ │ │ ├── set_intersection.h │ │ │ ├── set_symmetric_difference.h │ │ │ ├── set_union.h │ │ │ ├── shift_left.h │ │ │ ├── shift_right.h │ │ │ ├── shuffle.h │ │ │ ├── sift_down.h │ │ │ ├── sort.h │ │ │ ├── sort_heap.h │ │ │ ├── stable_partition.h │ │ │ ├── stable_sort.h │ │ │ ├── swap_ranges.h │ │ │ ├── transform.h │ │ │ ├── uniform_random_bit_generator_adaptor.h │ │ │ ├── unique.h │ │ │ ├── unique_copy.h │ │ │ ├── unwrap_iter.h │ │ │ ├── unwrap_range.h │ │ │ └── upper_bound.h │ │ ├── __assert │ │ ├── __availability │ │ ├── __bit │ │ │ ├── bit_cast.h │ │ │ └── byteswap.h │ │ ├── __bit_reference │ │ ├── __bits │ │ ├── __bsd_locale_defaults.h │ │ ├── __bsd_locale_fallbacks.h │ │ ├── __charconv │ │ │ ├── chars_format.h │ │ │ ├── from_chars_result.h │ │ │ ├── tables.h │ │ │ ├── to_chars_base_10.h │ │ │ └── to_chars_result.h │ │ ├── __chrono │ │ │ ├── calendar.h │ │ │ ├── convert_to_timespec.h │ │ │ ├── day.h │ │ │ ├── duration.h │ │ │ ├── file_clock.h │ │ │ ├── hh_mm_ss.h │ │ │ ├── high_resolution_clock.h │ │ │ ├── literals.h │ │ │ ├── month.h │ │ │ ├── month_weekday.h │ │ │ ├── monthday.h │ │ │ ├── steady_clock.h │ │ │ ├── system_clock.h │ │ │ ├── time_point.h │ │ │ ├── weekday.h │ │ │ ├── year.h │ │ │ ├── year_month.h │ │ │ ├── year_month_day.h │ │ │ └── year_month_weekday.h │ │ ├── __compare │ │ │ ├── common_comparison_category.h │ │ │ ├── compare_partial_order_fallback.h │ │ │ ├── compare_strong_order_fallback.h │ │ │ ├── compare_three_way.h │ │ │ ├── compare_three_way_result.h │ │ │ ├── compare_weak_order_fallback.h │ │ │ ├── is_eq.h │ │ │ ├── ordering.h │ │ │ ├── partial_order.h │ │ │ ├── strong_order.h │ │ │ ├── synth_three_way.h │ │ │ ├── three_way_comparable.h │ │ │ └── weak_order.h │ │ ├── __concepts │ │ │ ├── arithmetic.h │ │ │ ├── assignable.h │ │ │ ├── boolean_testable.h │ │ │ ├── class_or_enum.h │ │ │ ├── common_reference_with.h │ │ │ ├── common_with.h │ │ │ ├── constructible.h │ │ │ ├── convertible_to.h │ │ │ ├── copyable.h │ │ │ ├── derived_from.h │ │ │ ├── destructible.h │ │ │ ├── different_from.h │ │ │ ├── equality_comparable.h │ │ │ ├── invocable.h │ │ │ ├── movable.h │ │ │ ├── predicate.h │ │ │ ├── regular.h │ │ │ ├── relation.h │ │ │ ├── same_as.h │ │ │ ├── semiregular.h │ │ │ ├── swappable.h │ │ │ └── totally_ordered.h │ │ ├── __config │ │ ├── __coroutine │ │ │ ├── coroutine_handle.h │ │ │ ├── coroutine_traits.h │ │ │ ├── noop_coroutine_handle.h │ │ │ └── trivial_awaitables.h │ │ ├── __debug │ │ ├── __debug_utils │ │ │ └── randomize_range.h │ │ ├── __errc │ │ ├── __filesystem │ │ │ ├── copy_options.h │ │ │ ├── directory_entry.h │ │ │ ├── directory_iterator.h │ │ │ ├── directory_options.h │ │ │ ├── file_status.h │ │ │ ├── file_time_type.h │ │ │ ├── file_type.h │ │ │ ├── filesystem_error.h │ │ │ ├── operations.h │ │ │ ├── path.h │ │ │ ├── path_iterator.h │ │ │ ├── perm_options.h │ │ │ ├── perms.h │ │ │ ├── recursive_directory_iterator.h │ │ │ ├── space_info.h │ │ │ └── u8path.h │ │ ├── __format │ │ │ ├── buffer.h │ │ │ ├── concepts.h │ │ │ ├── enable_insertable.h │ │ │ ├── extended_grapheme_cluster_table.h │ │ │ ├── format_arg.h │ │ │ ├── format_arg_store.h │ │ │ ├── format_args.h │ │ │ ├── format_context.h │ │ │ ├── format_error.h │ │ │ ├── format_fwd.h │ │ │ ├── format_parse_context.h │ │ │ ├── format_string.h │ │ │ ├── format_to_n_result.h │ │ │ ├── formatter.h │ │ │ ├── formatter_bool.h │ │ │ ├── formatter_char.h │ │ │ ├── formatter_floating_point.h │ │ │ ├── formatter_integer.h │ │ │ ├── formatter_integral.h │ │ │ ├── formatter_output.h │ │ │ ├── formatter_pointer.h │ │ │ ├── formatter_string.h │ │ │ ├── parser_std_format_spec.h │ │ │ └── unicode.h │ │ ├── __functional │ │ │ ├── binary_function.h │ │ │ ├── binary_negate.h │ │ │ ├── bind.h │ │ │ ├── bind_back.h │ │ │ ├── bind_front.h │ │ │ ├── binder1st.h │ │ │ ├── binder2nd.h │ │ │ ├── boyer_moore_searcher.h │ │ │ ├── compose.h │ │ │ ├── default_searcher.h │ │ │ ├── function.h │ │ │ ├── hash.h │ │ │ ├── identity.h │ │ │ ├── invoke.h │ │ │ ├── is_transparent.h │ │ │ ├── mem_fn.h │ │ │ ├── mem_fun_ref.h │ │ │ ├── not_fn.h │ │ │ ├── operations.h │ │ │ ├── perfect_forward.h │ │ │ ├── pointer_to_binary_function.h │ │ │ ├── pointer_to_unary_function.h │ │ │ ├── ranges_operations.h │ │ │ ├── reference_wrapper.h │ │ │ ├── unary_function.h │ │ │ ├── unary_negate.h │ │ │ ├── unwrap_ref.h │ │ │ └── weak_result_type.h │ │ ├── __fwd │ │ │ ├── span.h │ │ │ └── string_view.h │ │ ├── __hash_table │ │ ├── __ios │ │ │ └── fpos.h │ │ ├── __iterator │ │ │ ├── access.h │ │ │ ├── advance.h │ │ │ ├── back_insert_iterator.h │ │ │ ├── bounded_iter.h │ │ │ ├── common_iterator.h │ │ │ ├── concepts.h │ │ │ ├── counted_iterator.h │ │ │ ├── data.h │ │ │ ├── default_sentinel.h │ │ │ ├── distance.h │ │ │ ├── empty.h │ │ │ ├── erase_if_container.h │ │ │ ├── front_insert_iterator.h │ │ │ ├── incrementable_traits.h │ │ │ ├── indirectly_comparable.h │ │ │ ├── insert_iterator.h │ │ │ ├── istream_iterator.h │ │ │ ├── istreambuf_iterator.h │ │ │ ├── iter_move.h │ │ │ ├── iter_swap.h │ │ │ ├── iterator.h │ │ │ ├── iterator_traits.h │ │ │ ├── mergeable.h │ │ │ ├── move_iterator.h │ │ │ ├── move_sentinel.h │ │ │ ├── next.h │ │ │ ├── ostream_iterator.h │ │ │ ├── ostreambuf_iterator.h │ │ │ ├── permutable.h │ │ │ ├── prev.h │ │ │ ├── projected.h │ │ │ ├── readable_traits.h │ │ │ ├── reverse_access.h │ │ │ ├── reverse_iterator.h │ │ │ ├── size.h │ │ │ ├── sortable.h │ │ │ ├── unreachable_sentinel.h │ │ │ └── wrap_iter.h │ │ ├── __locale │ │ ├── __mbstate_t.h │ │ ├── __memory │ │ │ ├── addressof.h │ │ │ ├── allocate_at_least.h │ │ │ ├── allocation_guard.h │ │ │ ├── allocator.h │ │ │ ├── allocator_arg_t.h │ │ │ ├── allocator_traits.h │ │ │ ├── assume_aligned.h │ │ │ ├── auto_ptr.h │ │ │ ├── compressed_pair.h │ │ │ ├── concepts.h │ │ │ ├── construct_at.h │ │ │ ├── pointer_traits.h │ │ │ ├── ranges_construct_at.h │ │ │ ├── ranges_uninitialized_algorithms.h │ │ │ ├── raw_storage_iterator.h │ │ │ ├── shared_ptr.h │ │ │ ├── swap_allocator.h │ │ │ ├── temporary_buffer.h │ │ │ ├── uninitialized_algorithms.h │ │ │ ├── unique_ptr.h │ │ │ ├── uses_allocator.h │ │ │ └── voidify.h │ │ ├── __mutex_base │ │ ├── __node_handle │ │ ├── __numeric │ │ │ ├── accumulate.h │ │ │ ├── adjacent_difference.h │ │ │ ├── exclusive_scan.h │ │ │ ├── gcd_lcm.h │ │ │ ├── inclusive_scan.h │ │ │ ├── inner_product.h │ │ │ ├── iota.h │ │ │ ├── midpoint.h │ │ │ ├── partial_sum.h │ │ │ ├── reduce.h │ │ │ ├── transform_exclusive_scan.h │ │ │ ├── transform_inclusive_scan.h │ │ │ └── transform_reduce.h │ │ ├── __random │ │ │ ├── bernoulli_distribution.h │ │ │ ├── binomial_distribution.h │ │ │ ├── cauchy_distribution.h │ │ │ ├── chi_squared_distribution.h │ │ │ ├── clamp_to_integral.h │ │ │ ├── default_random_engine.h │ │ │ ├── discard_block_engine.h │ │ │ ├── discrete_distribution.h │ │ │ ├── exponential_distribution.h │ │ │ ├── extreme_value_distribution.h │ │ │ ├── fisher_f_distribution.h │ │ │ ├── gamma_distribution.h │ │ │ ├── generate_canonical.h │ │ │ ├── geometric_distribution.h │ │ │ ├── independent_bits_engine.h │ │ │ ├── is_seed_sequence.h │ │ │ ├── is_valid.h │ │ │ ├── knuth_b.h │ │ │ ├── linear_congruential_engine.h │ │ │ ├── log2.h │ │ │ ├── lognormal_distribution.h │ │ │ ├── mersenne_twister_engine.h │ │ │ ├── negative_binomial_distribution.h │ │ │ ├── normal_distribution.h │ │ │ ├── piecewise_constant_distribution.h │ │ │ ├── piecewise_linear_distribution.h │ │ │ ├── poisson_distribution.h │ │ │ ├── random_device.h │ │ │ ├── ranlux.h │ │ │ ├── seed_seq.h │ │ │ ├── shuffle_order_engine.h │ │ │ ├── student_t_distribution.h │ │ │ ├── subtract_with_carry_engine.h │ │ │ ├── uniform_int_distribution.h │ │ │ ├── uniform_random_bit_generator.h │ │ │ ├── uniform_real_distribution.h │ │ │ └── weibull_distribution.h │ │ ├── __ranges │ │ │ ├── access.h │ │ │ ├── all.h │ │ │ ├── common_view.h │ │ │ ├── concepts.h │ │ │ ├── copyable_box.h │ │ │ ├── counted.h │ │ │ ├── dangling.h │ │ │ ├── data.h │ │ │ ├── drop_view.h │ │ │ ├── empty.h │ │ │ ├── empty_view.h │ │ │ ├── enable_borrowed_range.h │ │ │ ├── enable_view.h │ │ │ ├── filter_view.h │ │ │ ├── iota_view.h │ │ │ ├── join_view.h │ │ │ ├── lazy_split_view.h │ │ │ ├── non_propagating_cache.h │ │ │ ├── owning_view.h │ │ │ ├── range_adaptor.h │ │ │ ├── rbegin.h │ │ │ ├── ref_view.h │ │ │ ├── rend.h │ │ │ ├── reverse_view.h │ │ │ ├── single_view.h │ │ │ ├── size.h │ │ │ ├── subrange.h │ │ │ ├── take_view.h │ │ │ ├── transform_view.h │ │ │ ├── view_interface.h │ │ │ ├── views.h │ │ │ └── zip_view.h │ │ ├── __split_buffer │ │ ├── __std_stream │ │ ├── __string │ │ │ ├── char_traits.h │ │ │ └── extern_template_lists.h │ │ ├── __support │ │ │ ├── android │ │ │ │ └── locale_bionic.h │ │ │ ├── fuchsia │ │ │ │ └── xlocale.h │ │ │ ├── ibm │ │ │ │ ├── gettod_zos.h │ │ │ │ ├── locale_mgmt_zos.h │ │ │ │ ├── nanosleep.h │ │ │ │ └── xlocale.h │ │ │ ├── musl │ │ │ │ └── xlocale.h │ │ │ ├── newlib │ │ │ │ └── xlocale.h │ │ │ ├── openbsd │ │ │ │ └── xlocale.h │ │ │ ├── solaris │ │ │ │ ├── floatingpoint.h │ │ │ │ ├── wchar.h │ │ │ │ └── xlocale.h │ │ │ ├── win32 │ │ │ │ ├── limits_msvc_win32.h │ │ │ │ └── locale_win32.h │ │ │ └── xlocale │ │ │ │ ├── __nop_locale_mgmt.h │ │ │ │ ├── __posix_l_fallback.h │ │ │ │ └── __strtonum_fallback.h │ │ ├── __thread │ │ │ ├── poll_with_backoff.h │ │ │ └── timed_backoff_policy.h │ │ ├── __threading_support │ │ ├── __tree │ │ ├── __tuple │ │ ├── __type_traits │ │ │ ├── add_const.h │ │ │ ├── add_cv.h │ │ │ ├── add_lvalue_reference.h │ │ │ ├── add_pointer.h │ │ │ ├── add_rvalue_reference.h │ │ │ ├── add_volatile.h │ │ │ ├── aligned_storage.h │ │ │ ├── aligned_union.h │ │ │ ├── alignment_of.h │ │ │ ├── apply_cv.h │ │ │ ├── common_reference.h │ │ │ ├── common_type.h │ │ │ ├── conditional.h │ │ │ ├── conjunction.h │ │ │ ├── copy_cv.h │ │ │ ├── copy_cvref.h │ │ │ ├── decay.h │ │ │ ├── disjunction.h │ │ │ ├── enable_if.h │ │ │ ├── extent.h │ │ │ ├── has_unique_object_representation.h │ │ │ ├── has_virtual_destructor.h │ │ │ ├── integral_constant.h │ │ │ ├── is_abstract.h │ │ │ ├── is_aggregate.h │ │ │ ├── is_arithmetic.h │ │ │ ├── is_array.h │ │ │ ├── is_assignable.h │ │ │ ├── is_base_of.h │ │ │ ├── is_bounded_array.h │ │ │ ├── is_callable.h │ │ │ ├── is_class.h │ │ │ ├── is_compound.h │ │ │ ├── is_const.h │ │ │ ├── is_constant_evaluated.h │ │ │ ├── is_constructible.h │ │ │ ├── is_convertible.h │ │ │ ├── is_copy_assignable.h │ │ │ ├── is_copy_constructible.h │ │ │ ├── is_core_convertible.h │ │ │ ├── is_default_constructible.h │ │ │ ├── is_destructible.h │ │ │ ├── is_empty.h │ │ │ ├── is_enum.h │ │ │ ├── is_final.h │ │ │ ├── is_floating_point.h │ │ │ ├── is_function.h │ │ │ ├── is_fundamental.h │ │ │ ├── is_integral.h │ │ │ ├── is_literal_type.h │ │ │ ├── is_member_function_pointer.h │ │ │ ├── is_member_object_pointer.h │ │ │ ├── is_member_pointer.h │ │ │ ├── is_move_assignable.h │ │ │ ├── is_move_constructible.h │ │ │ ├── is_nothrow_assignable.h │ │ │ ├── is_nothrow_constructible.h │ │ │ ├── is_nothrow_convertible.h │ │ │ ├── is_nothrow_copy_assignable.h │ │ │ ├── is_nothrow_copy_constructible.h │ │ │ ├── is_nothrow_default_constructible.h │ │ │ ├── is_nothrow_destructible.h │ │ │ ├── is_nothrow_move_assignable.h │ │ │ ├── is_nothrow_move_constructible.h │ │ │ ├── is_null_pointer.h │ │ │ ├── is_object.h │ │ │ ├── is_pod.h │ │ │ ├── is_pointer.h │ │ │ ├── is_polymorphic.h │ │ │ ├── is_primary_template.h │ │ │ ├── is_reference.h │ │ │ ├── is_reference_wrapper.h │ │ │ ├── is_referenceable.h │ │ │ ├── is_same.h │ │ │ ├── is_scalar.h │ │ │ ├── is_scoped_enum.h │ │ │ ├── is_signed.h │ │ │ ├── is_signed_integer.h │ │ │ ├── is_standard_layout.h │ │ │ ├── is_trivial.h │ │ │ ├── is_trivially_assignable.h │ │ │ ├── is_trivially_constructible.h │ │ │ ├── is_trivially_copy_assignable.h │ │ │ ├── is_trivially_copy_constructible.h │ │ │ ├── is_trivially_copyable.h │ │ │ ├── is_trivially_default_constructible.h │ │ │ ├── is_trivially_destructible.h │ │ │ ├── is_trivially_move_assignable.h │ │ │ ├── is_trivially_move_constructible.h │ │ │ ├── is_unbounded_array.h │ │ │ ├── is_union.h │ │ │ ├── is_unsigned.h │ │ │ ├── is_unsigned_integer.h │ │ │ ├── is_valid_expansion.h │ │ │ ├── is_void.h │ │ │ ├── is_volatile.h │ │ │ ├── lazy.h │ │ │ ├── make_32_64_or_128_bit.h │ │ │ ├── make_signed.h │ │ │ ├── make_unsigned.h │ │ │ ├── nat.h │ │ │ ├── negation.h │ │ │ ├── promote.h │ │ │ ├── rank.h │ │ │ ├── remove_all_extents.h │ │ │ ├── remove_const.h │ │ │ ├── remove_cv.h │ │ │ ├── remove_cvref.h │ │ │ ├── remove_extent.h │ │ │ ├── remove_pointer.h │ │ │ ├── remove_reference.h │ │ │ ├── remove_volatile.h │ │ │ ├── type_identity.h │ │ │ ├── type_list.h │ │ │ ├── underlying_type.h │ │ │ └── void_t.h │ │ ├── __undef_macros │ │ ├── __utility │ │ │ ├── as_const.h │ │ │ ├── auto_cast.h │ │ │ ├── cmp.h │ │ │ ├── declval.h │ │ │ ├── exchange.h │ │ │ ├── forward.h │ │ │ ├── in_place.h │ │ │ ├── integer_sequence.h │ │ │ ├── move.h │ │ │ ├── pair.h │ │ │ ├── piecewise_construct.h │ │ │ ├── priority_tag.h │ │ │ ├── rel_ops.h │ │ │ ├── swap.h │ │ │ ├── to_underlying.h │ │ │ ├── transaction.h │ │ │ └── unreachable.h │ │ ├── __variant │ │ │ └── monostate.h │ │ ├── __verbose_abort │ │ ├── algorithm │ │ ├── any │ │ ├── array │ │ ├── atomic │ │ ├── barrier │ │ ├── bit │ │ ├── bitset │ │ ├── cassert │ │ ├── ccomplex │ │ ├── cctype │ │ ├── cerrno │ │ ├── cfenv │ │ ├── cfloat │ │ ├── charconv │ │ ├── chrono │ │ ├── cinttypes │ │ ├── ciso646 │ │ ├── climits │ │ ├── clocale │ │ ├── cmath │ │ ├── codecvt │ │ ├── compare │ │ ├── complex │ │ ├── complex.h │ │ ├── concepts │ │ ├── condition_variable │ │ ├── coroutine │ │ ├── csetjmp │ │ ├── csignal │ │ ├── cstdarg │ │ ├── cstdbool │ │ ├── cstddef │ │ ├── cstdint │ │ ├── cstdio │ │ ├── cstdlib │ │ ├── cstring │ │ ├── ctgmath │ │ ├── ctime │ │ ├── ctype.h │ │ ├── cuchar │ │ ├── cwchar │ │ ├── cwctype │ │ ├── deque │ │ ├── errno.h │ │ ├── exception │ │ ├── execution │ │ ├── experimental │ │ │ ├── __config │ │ │ ├── __memory │ │ │ ├── algorithm │ │ │ ├── coroutine │ │ │ ├── deque │ │ │ ├── forward_list │ │ │ ├── functional │ │ │ ├── iterator │ │ │ ├── list │ │ │ ├── map │ │ │ ├── memory_resource │ │ │ ├── propagate_const │ │ │ ├── regex │ │ │ ├── set │ │ │ ├── simd │ │ │ ├── string │ │ │ ├── type_traits │ │ │ ├── unordered_map │ │ │ ├── unordered_set │ │ │ ├── utility │ │ │ └── vector │ │ ├── ext │ │ │ ├── __hash │ │ │ ├── hash_map │ │ │ └── hash_set │ │ ├── fenv.h │ │ ├── filesystem │ │ ├── float.h │ │ ├── format │ │ ├── forward_list │ │ ├── fstream │ │ ├── functional │ │ ├── future │ │ ├── initializer_list │ │ ├── inttypes.h │ │ ├── iomanip │ │ ├── ios │ │ ├── iosfwd │ │ ├── iostream │ │ ├── istream │ │ ├── iterator │ │ ├── latch │ │ ├── limits │ │ ├── limits.h │ │ ├── list │ │ ├── locale │ │ ├── locale.h │ │ ├── map │ │ ├── math.h │ │ ├── memory │ │ ├── mutex │ │ ├── new │ │ ├── numbers │ │ ├── numeric │ │ ├── optional │ │ ├── ostream │ │ ├── queue │ │ ├── random │ │ ├── ranges │ │ ├── ratio │ │ ├── regex │ │ ├── scoped_allocator │ │ ├── semaphore │ │ ├── set │ │ ├── setjmp.h │ │ ├── shared_mutex │ │ ├── span │ │ ├── sstream │ │ ├── stack │ │ ├── stdatomic.h │ │ ├── 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 │ │ ├── uchar.h │ │ ├── unordered_map │ │ ├── unordered_set │ │ ├── utility │ │ ├── valarray │ │ ├── variant │ │ ├── vector │ │ ├── version │ │ ├── wchar.h │ │ └── wctype.h │ └── src │ │ ├── algorithm.cpp │ │ ├── any.cpp │ │ ├── atomic.cpp │ │ ├── barrier.cpp │ │ ├── bind.cpp │ │ ├── charconv.cpp │ │ ├── chrono.cpp │ │ ├── chrono_system_time_init.h │ │ ├── condition_variable.cpp │ │ ├── condition_variable_destructor.cpp │ │ ├── debug.cpp │ │ ├── exception.cpp │ │ ├── experimental │ │ ├── memory_resource.cpp │ │ └── memory_resource_init_helper.h │ │ ├── filesystem │ │ ├── directory_iterator.cpp │ │ ├── filesystem_common.h │ │ ├── operations.cpp │ │ └── posix_compat.h │ │ ├── format.cpp │ │ ├── functional.cpp │ │ ├── future.cpp │ │ ├── hash.cpp │ │ ├── include │ │ ├── apple_availability.h │ │ ├── atomic_support.h │ │ ├── config_elast.h │ │ ├── refstring.h │ │ ├── ryu │ │ │ ├── common.h │ │ │ ├── d2fixed.h │ │ │ ├── d2fixed_full_table.h │ │ │ ├── d2s.h │ │ │ ├── d2s_full_table.h │ │ │ ├── d2s_intrinsics.h │ │ │ ├── digit_table.h │ │ │ ├── f2s.h │ │ │ └── ryu.h │ │ ├── sso_allocator.h │ │ └── to_chars_floating_point.h │ │ ├── ios.cpp │ │ ├── ios.instantiations.cpp │ │ ├── iostream.cpp │ │ ├── iostream_init.h │ │ ├── legacy_debug_handler.cpp │ │ ├── legacy_pointer_safety.cpp │ │ ├── locale.cpp │ │ ├── memory.cpp │ │ ├── mutex.cpp │ │ ├── mutex_destructor.cpp │ │ ├── new.cpp │ │ ├── optional.cpp │ │ ├── random.cpp │ │ ├── random_shuffle.cpp │ │ ├── regex.cpp │ │ ├── ryu │ │ ├── d2fixed.cpp │ │ ├── d2s.cpp │ │ └── f2s.cpp │ │ ├── shared_mutex.cpp │ │ ├── stdexcept.cpp │ │ ├── string.cpp │ │ ├── strstream.cpp │ │ ├── support │ │ └── runtime │ │ │ ├── exception_fallback.ipp │ │ │ ├── exception_glibcxx.ipp │ │ │ ├── exception_libcxxabi.ipp │ │ │ ├── exception_libcxxrt.ipp │ │ │ ├── exception_msvc.ipp │ │ │ ├── exception_pointer_cxxabi.ipp │ │ │ ├── exception_pointer_glibcxx.ipp │ │ │ ├── exception_pointer_msvc.ipp │ │ │ ├── exception_pointer_unimplemented.ipp │ │ │ ├── new_handler_fallback.ipp │ │ │ ├── stdexcept_default.ipp │ │ │ └── stdexcept_vcruntime.ipp │ │ ├── system_error.cpp │ │ ├── thread.cpp │ │ ├── typeinfo.cpp │ │ ├── utility.cpp │ │ ├── valarray.cpp │ │ ├── variant.cpp │ │ ├── vector.cpp │ │ └── verbose_abort.cpp ├── libcxxabi │ ├── LICENSE.TXT │ ├── include │ │ ├── __cxxabi_config.h │ │ └── cxxabi.h │ └── src │ │ ├── abort_message.cpp │ │ ├── abort_message.h │ │ ├── aix_state_tab_eh.inc │ │ ├── cxa_aux_runtime.cpp │ │ ├── cxa_default_handlers.cpp │ │ ├── cxa_demangle.cpp │ │ ├── cxa_exception.cpp │ │ ├── cxa_exception.h │ │ ├── cxa_exception_storage.cpp │ │ ├── cxa_guard.cpp │ │ ├── cxa_guard_impl.h │ │ ├── cxa_handlers.cpp │ │ ├── cxa_handlers.h │ │ ├── cxa_noexception.cpp │ │ ├── cxa_personality.cpp │ │ ├── cxa_thread_atexit.cpp │ │ ├── cxa_vector.cpp │ │ ├── cxa_virtual.cpp │ │ ├── demangle │ │ ├── DemangleConfig.h │ │ ├── ItaniumDemangle.h │ │ ├── ItaniumNodes.def │ │ ├── StringView.h │ │ ├── Utility.h │ │ └── cp-to-llvm.sh │ │ ├── fallback_malloc.cpp │ │ ├── fallback_malloc.h │ │ ├── private_typeinfo.cpp │ │ ├── private_typeinfo.h │ │ ├── stdlib_exception.cpp │ │ ├── stdlib_new_delete.cpp │ │ ├── stdlib_stdexcept.cpp │ │ └── stdlib_typeinfo.cpp ├── librt │ ├── LICENSE.TXT │ ├── aarch64 │ │ ├── cpu_model.c │ │ ├── fp_mode.c │ │ └── lse.S │ ├── absvdi2.c │ ├── absvsi2.c │ ├── absvti2.c │ ├── adddf3.c │ ├── addsf3.c │ ├── addtf3.c │ ├── addvdi3.c │ ├── addvsi3.c │ ├── addvti3.c │ ├── any-macos │ │ ├── atomic_flag_clear.c │ │ ├── atomic_flag_clear_explicit.c │ │ ├── atomic_flag_test_and_set.c │ │ ├── atomic_flag_test_and_set_explicit.c │ │ ├── atomic_signal_fence.c │ │ └── atomic_thread_fence.c │ ├── apple_versioning.c │ ├── arm │ │ ├── bswapdi2.S │ │ ├── bswapsi2.S │ │ ├── clzdi2.S │ │ ├── clzsi2.S │ │ ├── comparesf2.S │ │ ├── divmodsi4.S │ │ ├── divsi3.S │ │ ├── fp_mode.c │ │ ├── modsi3.S │ │ ├── sync-ops.h │ │ ├── sync_fetch_and_add_4.S │ │ ├── sync_fetch_and_add_8.S │ │ ├── sync_fetch_and_and_4.S │ │ ├── sync_fetch_and_and_8.S │ │ ├── sync_fetch_and_max_4.S │ │ ├── sync_fetch_and_max_8.S │ │ ├── sync_fetch_and_min_4.S │ │ ├── sync_fetch_and_min_8.S │ │ ├── sync_fetch_and_nand_4.S │ │ ├── sync_fetch_and_nand_8.S │ │ ├── sync_fetch_and_or_4.S │ │ ├── sync_fetch_and_or_8.S │ │ ├── sync_fetch_and_sub_4.S │ │ ├── sync_fetch_and_sub_8.S │ │ ├── sync_fetch_and_umax_4.S │ │ ├── sync_fetch_and_umax_8.S │ │ ├── sync_fetch_and_umin_4.S │ │ ├── sync_fetch_and_umin_8.S │ │ ├── sync_fetch_and_xor_4.S │ │ ├── sync_fetch_and_xor_8.S │ │ ├── udivmodsi4.S │ │ ├── udivsi3.S │ │ └── umodsi3.S │ ├── arm_eabi │ │ ├── aeabi_cdcmp.S │ │ ├── aeabi_cdcmpeq_check_nan.c │ │ ├── aeabi_cfcmp.S │ │ ├── aeabi_cfcmpeq_check_nan.c │ │ ├── aeabi_dcmp.S │ │ ├── aeabi_div0.c │ │ ├── aeabi_drsub.c │ │ ├── aeabi_fcmp.S │ │ ├── aeabi_frsub.c │ │ ├── aeabi_idivmod.S │ │ ├── aeabi_ldivmod.S │ │ ├── aeabi_memcmp.S │ │ ├── aeabi_memcpy.S │ │ ├── aeabi_memmove.S │ │ ├── aeabi_memset.S │ │ ├── aeabi_uidivmod.S │ │ └── aeabi_uldivmod.S │ ├── ashldi3.c │ ├── ashlti3.c │ ├── ashrdi3.c │ ├── ashrti3.c │ ├── assembly.h │ ├── bswapdi2.c │ ├── bswapsi2.c │ ├── clear_cache.c │ ├── clzdi2.c │ ├── clzsi2.c │ ├── clzti2.c │ ├── cmpdi2.c │ ├── cmpti2.c │ ├── comparedf2.c │ ├── comparesf2.c │ ├── comparetf2.c │ ├── ctzdi2.c │ ├── ctzsi2.c │ ├── ctzti2.c │ ├── divdc3.c │ ├── divdf3.c │ ├── divdi3.c │ ├── divmoddi4.c │ ├── divmodsi4.c │ ├── divmodti4.c │ ├── divsc3.c │ ├── divsf3.c │ ├── divsi3.c │ ├── divtc3.c │ ├── divtf3.c │ ├── divti3.c │ ├── extenddftf2.c │ ├── extendhfsf2.c │ ├── extendhftf2.c │ ├── extendsfdf2.c │ ├── extendsftf2.c │ ├── ffsdi2.c │ ├── ffssi2.c │ ├── ffsti2.c │ ├── fixdfdi.c │ ├── fixdfsi.c │ ├── fixdfti.c │ ├── fixsfdi.c │ ├── fixsfsi.c │ ├── fixsfti.c │ ├── fixtfdi.c │ ├── fixtfsi.c │ ├── fixtfti.c │ ├── fixunsdfdi.c │ ├── fixunsdfsi.c │ ├── fixunsdfti.c │ ├── fixunssfdi.c │ ├── fixunssfsi.c │ ├── fixunssfti.c │ ├── fixunstfdi.c │ ├── fixunstfsi.c │ ├── fixunstfti.c │ ├── floatdidf.c │ ├── floatdisf.c │ ├── floatditf.c │ ├── floatsidf.c │ ├── floatsisf.c │ ├── floatsitf.c │ ├── floattidf.c │ ├── floattisf.c │ ├── floattitf.c │ ├── floatundidf.c │ ├── floatundisf.c │ ├── floatunditf.c │ ├── floatunsidf.c │ ├── floatunsisf.c │ ├── floatunsitf.c │ ├── floatuntidf.c │ ├── floatuntisf.c │ ├── floatuntitf.c │ ├── fp_add_impl.inc │ ├── fp_compare_impl.inc │ ├── fp_div_impl.inc │ ├── fp_extend.h │ ├── fp_extend_impl.inc │ ├── fp_fixint_impl.inc │ ├── fp_fixuint_impl.inc │ ├── fp_lib.h │ ├── fp_mode.c │ ├── fp_mode.h │ ├── fp_mul_impl.inc │ ├── fp_trunc.h │ ├── fp_trunc_impl.inc │ ├── i386 │ │ ├── ashldi3.S │ │ ├── ashrdi3.S │ │ ├── divdi3.S │ │ ├── divxc3.c │ │ ├── fixunsxfdi.c │ │ ├── fixunsxfsi.c │ │ ├── fixunsxfti.c │ │ ├── fixxfdi.c │ │ ├── fixxfti.c │ │ ├── floatdidf.S │ │ ├── floatdisf.S │ │ ├── floatdixf.S │ │ ├── floatdixf.c │ │ ├── floattixf.c │ │ ├── floatundidf.S │ │ ├── floatundisf.S │ │ ├── floatundixf.S │ │ ├── floatundixf.c │ │ ├── floatuntixf.c │ │ ├── lshrdi3.S │ │ ├── moddi3.S │ │ ├── muldi3.S │ │ ├── mulxc3.c │ │ ├── powixf2.c │ │ ├── udivdi3.S │ │ └── umoddi3.S │ ├── int_div_impl.inc │ ├── int_endianness.h │ ├── int_lib.h │ ├── int_math.h │ ├── int_mulo_impl.inc │ ├── int_mulv_impl.inc │ ├── int_types.h │ ├── int_util.c │ ├── int_util.h │ ├── lshrdi3.c │ ├── lshrti3.c │ ├── moddi3.c │ ├── modsi3.c │ ├── modti3.c │ ├── muldc3.c │ ├── muldf3.c │ ├── muldi3.c │ ├── mulodi4.c │ ├── mulosi4.c │ ├── muloti4.c │ ├── mulsc3.c │ ├── mulsf3.c │ ├── multc3.c │ ├── multf3.c │ ├── multi3.c │ ├── mulvdi3.c │ ├── mulvsi3.c │ ├── mulvti3.c │ ├── negdf2.c │ ├── negdi2.c │ ├── negsf2.c │ ├── negti2.c │ ├── negvdi2.c │ ├── negvsi2.c │ ├── negvti2.c │ ├── os_version_check.c │ ├── paritydi2.c │ ├── paritysi2.c │ ├── parityti2.c │ ├── popcountdi2.c │ ├── popcountsi2.c │ ├── popcountti2.c │ ├── powidf2.c │ ├── powisf2.c │ ├── powitf2.c │ ├── riscv │ │ ├── int_mul_impl.inc │ │ ├── restore.S │ │ └── save.S │ ├── riscv32 │ │ └── mulsi3.S │ ├── riscv64 │ │ └── muldi3.S │ ├── subdf3.c │ ├── subsf3.c │ ├── subtf3.c │ ├── subvdi3.c │ ├── subvsi3.c │ ├── subvti3.c │ ├── trampoline_setup.c │ ├── truncdfhf2.c │ ├── truncdfsf2.c │ ├── truncsfhf2.c │ ├── trunctfdf2.c │ ├── trunctfhf2.c │ ├── trunctfsf2.c │ ├── ucmpdi2.c │ ├── ucmpti2.c │ ├── udivdi3.c │ ├── udivmoddi4.c │ ├── udivmodsi4.c │ ├── udivmodti4.c │ ├── udivsi3.c │ ├── udivti3.c │ ├── umoddi3.c │ ├── umodsi3.c │ ├── umodti3.c │ ├── unwind-ehabi-helpers.h │ ├── x86 │ │ ├── cpu_model.c │ │ └── fp_mode.c │ └── x86_64 │ │ ├── divxc3.c │ │ ├── fixunsxfdi.c │ │ ├── fixunsxfsi.c │ │ ├── fixunsxfti.c │ │ ├── fixxfdi.c │ │ ├── fixxfti.c │ │ ├── floatdidf.c │ │ ├── floatdisf.c │ │ ├── floatdixf.c │ │ ├── floattixf.c │ │ ├── floatundidf.S │ │ ├── floatundisf.S │ │ ├── floatundixf.S │ │ ├── floatundixf.c │ │ ├── floatuntixf.c │ │ ├── mulxc3.c │ │ └── powixf2.c ├── libunwind │ ├── LICENSE.TXT │ ├── include │ │ ├── __libunwind_config.h │ │ ├── libunwind.h │ │ ├── mach-o │ │ │ └── compact_unwind_encoding.h │ │ ├── unwind.h │ │ ├── unwind_arm_ehabi.h │ │ └── unwind_itanium.h │ └── src │ │ ├── AddressSpace.hpp │ │ ├── CompactUnwinder.hpp │ │ ├── DwarfInstructions.hpp │ │ ├── DwarfParser.hpp │ │ ├── EHHeaderParser.hpp │ │ ├── FrameHeaderCache.hpp │ │ ├── RWMutex.hpp │ │ ├── Registers.hpp │ │ ├── Unwind-EHABI.cpp │ │ ├── Unwind-EHABI.h │ │ ├── Unwind-seh.cpp │ │ ├── Unwind-sjlj.c │ │ ├── UnwindCursor.hpp │ │ ├── UnwindLevel1-gcc-ext.c │ │ ├── UnwindLevel1.c │ │ ├── UnwindRegistersRestore.S │ │ ├── UnwindRegistersSave.S │ │ ├── Unwind_AIXExtras.cpp │ │ ├── Unwind_AppleExtras.cpp │ │ ├── assembly.h │ │ ├── cet_unwind.h │ │ ├── config.h │ │ ├── dwarf2.h │ │ ├── libunwind.cpp │ │ └── libunwind_ext.h ├── musl │ ├── COPYRIGHT │ ├── arch │ │ ├── aarch64 │ │ │ ├── atomic_arch.h │ │ │ ├── crt_arch.h │ │ │ ├── fp_arch.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── arm │ │ │ ├── atomic_arch.h │ │ │ ├── crt_arch.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── generic │ │ │ ├── bits │ │ │ │ ├── fenv.h │ │ │ │ ├── io.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── ptrace.h │ │ │ │ └── sem.h │ │ │ └── fp_arch.h │ │ ├── i386 │ │ │ ├── atomic_arch.h │ │ │ ├── crt_arch.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── riscv64 │ │ │ ├── atomic_arch.h │ │ │ ├── crt_arch.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ └── x86_64 │ │ │ ├── atomic_arch.h │ │ │ ├── crt_arch.h │ │ │ ├── ksigaction.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ ├── compat │ │ └── time32 │ │ │ ├── __xstat.c │ │ │ ├── adjtime32.c │ │ │ ├── adjtimex_time32.c │ │ │ ├── aio_suspend_time32.c │ │ │ ├── clock_adjtime32.c │ │ │ ├── clock_getres_time32.c │ │ │ ├── clock_gettime32.c │ │ │ ├── clock_nanosleep_time32.c │ │ │ ├── clock_settime32.c │ │ │ ├── cnd_timedwait_time32.c │ │ │ ├── ctime32.c │ │ │ ├── ctime32_r.c │ │ │ ├── difftime32.c │ │ │ ├── fstat_time32.c │ │ │ ├── fstatat_time32.c │ │ │ ├── ftime32.c │ │ │ ├── futimens_time32.c │ │ │ ├── futimes_time32.c │ │ │ ├── futimesat_time32.c │ │ │ ├── getitimer_time32.c │ │ │ ├── getrusage_time32.c │ │ │ ├── gettimeofday_time32.c │ │ │ ├── gmtime32.c │ │ │ ├── gmtime32_r.c │ │ │ ├── localtime32.c │ │ │ ├── localtime32_r.c │ │ │ ├── lstat_time32.c │ │ │ ├── lutimes_time32.c │ │ │ ├── mktime32.c │ │ │ ├── mq_timedreceive_time32.c │ │ │ ├── mq_timedsend_time32.c │ │ │ ├── mtx_timedlock_time32.c │ │ │ ├── nanosleep_time32.c │ │ │ ├── ppoll_time32.c │ │ │ ├── pselect_time32.c │ │ │ ├── pthread_cond_timedwait_time32.c │ │ │ ├── pthread_mutex_timedlock_time32.c │ │ │ ├── pthread_rwlock_timedrdlock_time32.c │ │ │ ├── pthread_rwlock_timedwrlock_time32.c │ │ │ ├── pthread_timedjoin_np_time32.c │ │ │ ├── recvmmsg_time32.c │ │ │ ├── sched_rr_get_interval_time32.c │ │ │ ├── select_time32.c │ │ │ ├── sem_timedwait_time32.c │ │ │ ├── semtimedop_time32.c │ │ │ ├── setitimer_time32.c │ │ │ ├── settimeofday_time32.c │ │ │ ├── sigtimedwait_time32.c │ │ │ ├── stat_time32.c │ │ │ ├── stime32.c │ │ │ ├── thrd_sleep_time32.c │ │ │ ├── time32.c │ │ │ ├── time32.h │ │ │ ├── time32gm.c │ │ │ ├── timer_gettime32.c │ │ │ ├── timer_settime32.c │ │ │ ├── timerfd_gettime32.c │ │ │ ├── timerfd_settime32.c │ │ │ ├── timespec_get_time32.c │ │ │ ├── utime_time32.c │ │ │ ├── utimensat_time32.c │ │ │ ├── utimes_time32.c │ │ │ ├── wait3_time32.c │ │ │ └── wait4_time32.c │ ├── crt │ │ ├── Scrt1.c │ │ ├── aarch64 │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── arm │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── crt1.c │ │ ├── crti.c │ │ ├── crtn.c │ │ ├── i386 │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── rcrt1.c │ │ └── x86_64 │ │ │ ├── crti.s │ │ │ └── crtn.s │ ├── include-arch │ │ ├── aarch64 │ │ │ └── bits │ │ │ │ ├── alltypes.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl_fix.h │ │ │ │ ├── ipcstat.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── reg.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ └── user.h │ │ ├── arm │ │ │ └── bits │ │ │ │ ├── alltypes.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl_fix.h │ │ │ │ ├── ipcstat.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── reg.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ └── user.h │ │ ├── i386 │ │ │ └── bits │ │ │ │ ├── alltypes.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl_fix.h │ │ │ │ ├── ipcstat.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── reg.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ └── user.h │ │ ├── riscv64 │ │ │ └── bits │ │ │ │ ├── alltypes.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl_fix.h │ │ │ │ ├── ipcstat.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── reg.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h │ │ │ │ └── user.h │ │ └── x86_64 │ │ │ └── bits │ │ │ ├── alltypes.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── hwcap.h │ │ │ ├── io.h │ │ │ ├── ioctl_fix.h │ │ │ ├── ipcstat.h │ │ │ ├── limits.h │ │ │ ├── mman.h │ │ │ ├── msg.h │ │ │ ├── posix.h │ │ │ ├── ptrace.h │ │ │ ├── reg.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h │ │ │ └── user.h │ ├── include │ │ ├── aio.h │ │ ├── alloca.h │ │ ├── ar.h │ │ ├── arpa │ │ │ ├── ftp.h │ │ │ ├── inet.h │ │ │ ├── nameser.h │ │ │ ├── nameser_compat.h │ │ │ ├── telnet.h │ │ │ └── tftp.h │ │ ├── assert.h │ │ ├── bits │ │ │ ├── dirent.h │ │ │ ├── errno.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── kd.h │ │ │ ├── link.h │ │ │ ├── poll.h │ │ │ ├── resource.h │ │ │ ├── socket.h │ │ │ ├── soundcard.h │ │ │ ├── statfs.h │ │ │ ├── termios.h │ │ │ └── vt.h │ │ ├── byteswap.h │ │ ├── complex.h │ │ ├── cpio.h │ │ ├── crypt.h │ │ ├── ctype.h │ │ ├── dirent.h │ │ ├── dlfcn.h │ │ ├── elf.h │ │ ├── endian.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── features.h │ │ ├── fenv.h │ │ ├── float.h │ │ ├── fmtmsg.h │ │ ├── fnmatch.h │ │ ├── ftw.h │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── grp.h │ │ ├── iconv.h │ │ ├── ifaddrs.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── langinfo.h │ │ ├── lastlog.h │ │ ├── libgen.h │ │ ├── libintl.h │ │ ├── limits.h │ │ ├── link.h │ │ ├── locale.h │ │ ├── malloc.h │ │ ├── math.h │ │ ├── memory.h │ │ ├── mntent.h │ │ ├── monetary.h │ │ ├── mqueue.h │ │ ├── net │ │ │ ├── ethernet.h │ │ │ ├── if.h │ │ │ ├── if_arp.h │ │ │ └── route.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ ├── ether.h │ │ │ ├── icmp6.h │ │ │ ├── if_ether.h │ │ │ ├── igmp.h │ │ │ ├── in.h │ │ │ ├── in_systm.h │ │ │ ├── ip.h │ │ │ ├── ip6.h │ │ │ ├── ip_icmp.h │ │ │ ├── tcp.h │ │ │ └── udp.h │ │ ├── netpacket │ │ │ └── packet.h │ │ ├── nl_types.h │ │ ├── paths.h │ │ ├── poll.h │ │ ├── pthread.h │ │ ├── pty.h │ │ ├── pwd.h │ │ ├── regex.h │ │ ├── resolv.h │ │ ├── sched.h │ │ ├── scsi │ │ │ ├── scsi.h │ │ │ ├── scsi_ioctl.h │ │ │ └── sg.h │ │ ├── search.h │ │ ├── semaphore.h │ │ ├── setjmp.h │ │ ├── shadow.h │ │ ├── signal.h │ │ ├── spawn.h │ │ ├── stdalign.h │ │ ├── stdarg.h │ │ ├── stdbool.h │ │ ├── stdc-predef.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdio_ext.h │ │ ├── stdlib.h │ │ ├── stdnoreturn.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── stropts.h │ │ ├── sys │ │ │ ├── acct.h │ │ │ ├── auxv.h │ │ │ ├── cachectl.h │ │ │ ├── dir.h │ │ │ ├── epoll.h │ │ │ ├── errno.h │ │ │ ├── eventfd.h │ │ │ ├── fanotify.h │ │ │ ├── fcntl.h │ │ │ ├── file.h │ │ │ ├── fsuid.h │ │ │ ├── inotify.h │ │ │ ├── io.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── kd.h │ │ │ ├── klog.h │ │ │ ├── membarrier.h │ │ │ ├── mman.h │ │ │ ├── mount.h │ │ │ ├── msg.h │ │ │ ├── mtio.h │ │ │ ├── param.h │ │ │ ├── personality.h │ │ │ ├── poll.h │ │ │ ├── prctl.h │ │ │ ├── procfs.h │ │ │ ├── ptrace.h │ │ │ ├── quota.h │ │ │ ├── random.h │ │ │ ├── reboot.h │ │ │ ├── reg.h │ │ │ ├── resource.h │ │ │ ├── select.h │ │ │ ├── sem.h │ │ │ ├── sendfile.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── signalfd.h │ │ │ ├── socket.h │ │ │ ├── soundcard.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── statvfs.h │ │ │ ├── stropts.h │ │ │ ├── swap.h │ │ │ ├── syscall.h │ │ │ ├── sysinfo.h │ │ │ ├── syslog.h │ │ │ ├── sysmacros.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── timerfd.h │ │ │ ├── times.h │ │ │ ├── timex.h │ │ │ ├── ttydefaults.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ ├── uio.h │ │ │ ├── un.h │ │ │ ├── user.h │ │ │ ├── utsname.h │ │ │ ├── vfs.h │ │ │ ├── vt.h │ │ │ ├── wait.h │ │ │ └── xattr.h │ │ ├── syscall.h │ │ ├── sysexits.h │ │ ├── syslog.h │ │ ├── tar.h │ │ ├── termios.h │ │ ├── tgmath.h │ │ ├── threads.h │ │ ├── time.h │ │ ├── uchar.h │ │ ├── ucontext.h │ │ ├── ulimit.h │ │ ├── unistd.h │ │ ├── utime.h │ │ ├── utmp.h │ │ ├── utmpx.h │ │ ├── values.h │ │ ├── wait.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ └── wordexp.h │ ├── ldso │ │ ├── dlstart.c │ │ └── dynlink.c │ └── src │ │ ├── aio │ │ ├── aio.c │ │ ├── aio_suspend.c │ │ └── lio_listio.c │ │ ├── complex │ │ ├── __cexp.c │ │ ├── __cexpf.c │ │ ├── cabs.c │ │ ├── cabsf.c │ │ ├── cabsl.c │ │ ├── cacos.c │ │ ├── cacosf.c │ │ ├── cacosh.c │ │ ├── cacoshf.c │ │ ├── cacoshl.c │ │ ├── cacosl.c │ │ ├── carg.c │ │ ├── cargf.c │ │ ├── cargl.c │ │ ├── casin.c │ │ ├── casinf.c │ │ ├── casinh.c │ │ ├── casinhf.c │ │ ├── casinhl.c │ │ ├── casinl.c │ │ ├── catan.c │ │ ├── catanf.c │ │ ├── catanh.c │ │ ├── catanhf.c │ │ ├── catanhl.c │ │ ├── catanl.c │ │ ├── ccos.c │ │ ├── ccosf.c │ │ ├── ccosh.c │ │ ├── ccoshf.c │ │ ├── ccoshl.c │ │ ├── ccosl.c │ │ ├── cexp.c │ │ ├── cexpf.c │ │ ├── cexpl.c │ │ ├── cimag.c │ │ ├── cimagf.c │ │ ├── cimagl.c │ │ ├── clog.c │ │ ├── clogf.c │ │ ├── clogl.c │ │ ├── conj.c │ │ ├── conjf.c │ │ ├── conjl.c │ │ ├── cpow.c │ │ ├── cpowf.c │ │ ├── cpowl.c │ │ ├── cproj.c │ │ ├── cprojf.c │ │ ├── cprojl.c │ │ ├── creal.c │ │ ├── crealf.c │ │ ├── creall.c │ │ ├── csin.c │ │ ├── csinf.c │ │ ├── csinh.c │ │ ├── csinhf.c │ │ ├── csinhl.c │ │ ├── csinl.c │ │ ├── csqrt.c │ │ ├── csqrtf.c │ │ ├── csqrtl.c │ │ ├── ctan.c │ │ ├── ctanf.c │ │ ├── ctanh.c │ │ ├── ctanhf.c │ │ ├── ctanhl.c │ │ └── ctanl.c │ │ ├── conf │ │ ├── confstr.c │ │ ├── fpathconf.c │ │ ├── legacy.c │ │ ├── pathconf.c │ │ └── sysconf.c │ │ ├── crypt │ │ ├── crypt.c │ │ ├── crypt_blowfish.c │ │ ├── crypt_des.c │ │ ├── crypt_des.h │ │ ├── crypt_md5.c │ │ ├── crypt_r.c │ │ ├── crypt_sha256.c │ │ ├── crypt_sha512.c │ │ └── encrypt.c │ │ ├── ctype │ │ ├── __ctype_b_loc.c │ │ ├── __ctype_get_mb_cur_max.c │ │ ├── __ctype_tolower_loc.c │ │ ├── __ctype_toupper_loc.c │ │ ├── alpha.h │ │ ├── casemap.h │ │ ├── isalnum.c │ │ ├── isalpha.c │ │ ├── isascii.c │ │ ├── isblank.c │ │ ├── iscntrl.c │ │ ├── isdigit.c │ │ ├── isgraph.c │ │ ├── islower.c │ │ ├── isprint.c │ │ ├── ispunct.c │ │ ├── isspace.c │ │ ├── isupper.c │ │ ├── iswalnum.c │ │ ├── iswalpha.c │ │ ├── iswblank.c │ │ ├── iswcntrl.c │ │ ├── iswctype.c │ │ ├── iswdigit.c │ │ ├── iswgraph.c │ │ ├── iswlower.c │ │ ├── iswprint.c │ │ ├── iswpunct.c │ │ ├── iswspace.c │ │ ├── iswupper.c │ │ ├── iswxdigit.c │ │ ├── isxdigit.c │ │ ├── nonspacing.h │ │ ├── punct.h │ │ ├── toascii.c │ │ ├── tolower.c │ │ ├── toupper.c │ │ ├── towctrans.c │ │ ├── wcswidth.c │ │ ├── wctrans.c │ │ ├── wcwidth.c │ │ └── wide.h │ │ ├── dirent │ │ ├── __dirent.h │ │ ├── alphasort.c │ │ ├── closedir.c │ │ ├── dirfd.c │ │ ├── fdopendir.c │ │ ├── opendir.c │ │ ├── readdir.c │ │ ├── readdir_r.c │ │ ├── rewinddir.c │ │ ├── scandir.c │ │ ├── seekdir.c │ │ ├── telldir.c │ │ └── versionsort.c │ │ ├── env │ │ ├── __environ.c │ │ ├── __init_tls.c │ │ ├── __libc_start_main.c │ │ ├── __reset_tls.c │ │ ├── __stack_chk_fail.c │ │ ├── clearenv.c │ │ ├── getenv.c │ │ ├── putenv.c │ │ ├── secure_getenv.c │ │ ├── setenv.c │ │ └── unsetenv.c │ │ ├── errno │ │ ├── __errno_location.c │ │ ├── __strerror.h │ │ └── strerror.c │ │ ├── exit │ │ ├── _Exit.c │ │ ├── abort.c │ │ ├── abort_lock.c │ │ ├── arm │ │ │ └── __aeabi_atexit.c │ │ ├── assert.c │ │ ├── at_quick_exit.c │ │ ├── atexit.c │ │ ├── exit.c │ │ └── quick_exit.c │ │ ├── fcntl │ │ ├── creat.c │ │ ├── fcntl.c │ │ ├── open.c │ │ ├── openat.c │ │ ├── posix_fadvise.c │ │ └── posix_fallocate.c │ │ ├── fenv │ │ ├── __flt_rounds.c │ │ ├── aarch64 │ │ │ └── fenv.s │ │ ├── arm │ │ │ ├── fenv-hf.S │ │ │ └── fenv.c │ │ ├── fegetexceptflag.c │ │ ├── feholdexcept.c │ │ ├── fenv.c │ │ ├── fesetexceptflag.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── i386 │ │ │ └── fenv.s │ │ ├── riscv64 │ │ │ ├── fenv-sf.c │ │ │ └── fenv.S │ │ └── x86_64 │ │ │ └── fenv.s │ │ ├── include │ │ ├── arpa │ │ │ └── inet.h │ │ ├── crypt.h │ │ ├── errno.h │ │ ├── features.h │ │ ├── langinfo.h │ │ ├── pthread.h │ │ ├── resolv.h │ │ ├── signal.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── sys │ │ │ ├── auxv.h │ │ │ ├── membarrier.h │ │ │ ├── mman.h │ │ │ ├── sysinfo.h │ │ │ └── time.h │ │ ├── time.h │ │ ├── unistd.h │ │ └── wchar.h │ │ ├── internal │ │ ├── aio_impl.h │ │ ├── atomic.h │ │ ├── complex_impl.h │ │ ├── defsysinfo.c │ │ ├── dynlink.h │ │ ├── fdpic_crt.h │ │ ├── floatscan.c │ │ ├── floatscan.h │ │ ├── fork_impl.h │ │ ├── futex.h │ │ ├── i386 │ │ │ └── defsysinfo.s │ │ ├── intscan.c │ │ ├── intscan.h │ │ ├── ksigaction.h │ │ ├── libc.c │ │ ├── libc.h │ │ ├── libm.h │ │ ├── locale_impl.h │ │ ├── lock.h │ │ ├── procfdname.c │ │ ├── pthread_impl.h │ │ ├── shgetc.c │ │ ├── shgetc.h │ │ ├── stdio_impl.h │ │ ├── syscall.h │ │ ├── syscall_ret.c │ │ ├── vdso.c │ │ ├── version.c │ │ └── version.h │ │ ├── ipc │ │ ├── ftok.c │ │ ├── ipc.h │ │ ├── msgctl.c │ │ ├── msgget.c │ │ ├── msgrcv.c │ │ ├── msgsnd.c │ │ ├── semctl.c │ │ ├── semget.c │ │ ├── semop.c │ │ ├── semtimedop.c │ │ ├── shmat.c │ │ ├── shmctl.c │ │ ├── shmdt.c │ │ └── shmget.c │ │ ├── ldso │ │ ├── __dlsym.c │ │ ├── aarch64 │ │ │ ├── dlsym.s │ │ │ └── tlsdesc.s │ │ ├── arm │ │ │ ├── dlsym.s │ │ │ ├── dlsym_time64.S │ │ │ ├── find_exidx.c │ │ │ └── tlsdesc.S │ │ ├── dl_iterate_phdr.c │ │ ├── dladdr.c │ │ ├── dlclose.c │ │ ├── dlerror.c │ │ ├── dlinfo.c │ │ ├── dlopen.c │ │ ├── dlsym.c │ │ ├── i386 │ │ │ ├── dlsym.s │ │ │ ├── dlsym_time64.S │ │ │ └── tlsdesc.s │ │ ├── riscv64 │ │ │ └── dlsym.s │ │ ├── tlsdesc.c │ │ └── x86_64 │ │ │ ├── dlsym.s │ │ │ └── tlsdesc.s │ │ ├── legacy │ │ ├── cuserid.c │ │ ├── daemon.c │ │ ├── err.c │ │ ├── euidaccess.c │ │ ├── ftw.c │ │ ├── futimes.c │ │ ├── getdtablesize.c │ │ ├── getloadavg.c │ │ ├── getpagesize.c │ │ ├── getpass.c │ │ ├── getusershell.c │ │ ├── isastream.c │ │ ├── lutimes.c │ │ ├── ulimit.c │ │ ├── utmpx.c │ │ └── valloc.c │ │ ├── linux │ │ ├── adjtime.c │ │ ├── adjtimex.c │ │ ├── arch_prctl.c │ │ ├── brk.c │ │ ├── cache.c │ │ ├── cap.c │ │ ├── chroot.c │ │ ├── clock_adjtime.c │ │ ├── clone.c │ │ ├── copy_file_range.c │ │ ├── epoll.c │ │ ├── eventfd.c │ │ ├── fallocate.c │ │ ├── fanotify.c │ │ ├── flock.c │ │ ├── getdents.c │ │ ├── getrandom.c │ │ ├── gettid.c │ │ ├── inotify.c │ │ ├── ioperm.c │ │ ├── iopl.c │ │ ├── klogctl.c │ │ ├── membarrier.c │ │ ├── memfd_create.c │ │ ├── mlock2.c │ │ ├── module.c │ │ ├── mount.c │ │ ├── name_to_handle_at.c │ │ ├── open_by_handle_at.c │ │ ├── personality.c │ │ ├── pivot_root.c │ │ ├── ppoll.c │ │ ├── prctl.c │ │ ├── prlimit.c │ │ ├── process_vm.c │ │ ├── ptrace.c │ │ ├── quotactl.c │ │ ├── readahead.c │ │ ├── reboot.c │ │ ├── remap_file_pages.c │ │ ├── sbrk.c │ │ ├── sendfile.c │ │ ├── setfsgid.c │ │ ├── setfsuid.c │ │ ├── setgroups.c │ │ ├── sethostname.c │ │ ├── setns.c │ │ ├── settimeofday.c │ │ ├── signalfd.c │ │ ├── splice.c │ │ ├── stime.c │ │ ├── swap.c │ │ ├── sync_file_range.c │ │ ├── syncfs.c │ │ ├── sysinfo.c │ │ ├── tee.c │ │ ├── timerfd.c │ │ ├── unshare.c │ │ ├── utimes.c │ │ ├── vhangup.c │ │ ├── vmsplice.c │ │ ├── wait3.c │ │ ├── wait4.c │ │ └── xattr.c │ │ ├── locale │ │ ├── __lctrans.c │ │ ├── __mo_lookup.c │ │ ├── big5.h │ │ ├── bind_textdomain_codeset.c │ │ ├── c_locale.c │ │ ├── catclose.c │ │ ├── catgets.c │ │ ├── catopen.c │ │ ├── codepages.h │ │ ├── dcngettext.c │ │ ├── duplocale.c │ │ ├── freelocale.c │ │ ├── gb18030.h │ │ ├── hkscs.h │ │ ├── iconv.c │ │ ├── iconv_close.c │ │ ├── jis0208.h │ │ ├── ksc.h │ │ ├── langinfo.c │ │ ├── legacychars.h │ │ ├── locale_map.c │ │ ├── localeconv.c │ │ ├── newlocale.c │ │ ├── pleval.c │ │ ├── pleval.h │ │ ├── revjis.h │ │ ├── setlocale.c │ │ ├── strcoll.c │ │ ├── strfmon.c │ │ ├── strtod_l.c │ │ ├── strxfrm.c │ │ ├── textdomain.c │ │ ├── uselocale.c │ │ ├── wcscoll.c │ │ └── wcsxfrm.c │ │ ├── malloc │ │ ├── calloc.c │ │ ├── free.c │ │ ├── libc_calloc.c │ │ ├── lite_malloc.c │ │ ├── mallocng │ │ │ ├── aligned_alloc.c │ │ │ ├── donate.c │ │ │ ├── free.c │ │ │ ├── glue.h │ │ │ ├── malloc.c │ │ │ ├── malloc_usable_size.c │ │ │ ├── meta.h │ │ │ └── realloc.c │ │ ├── memalign.c │ │ ├── oldmalloc │ │ │ └── malloc_impl.h │ │ ├── posix_memalign.c │ │ ├── realloc.c │ │ ├── reallocarray.c │ │ └── replaced.c │ │ ├── math │ │ ├── __cos.c │ │ ├── __cosdf.c │ │ ├── __cosl.c │ │ ├── __expo2.c │ │ ├── __expo2f.c │ │ ├── __fpclassify.c │ │ ├── __fpclassifyf.c │ │ ├── __fpclassifyl.c │ │ ├── __invtrigl.c │ │ ├── __invtrigl.h │ │ ├── __math_divzero.c │ │ ├── __math_divzerof.c │ │ ├── __math_invalid.c │ │ ├── __math_invalidf.c │ │ ├── __math_invalidl.c │ │ ├── __math_oflow.c │ │ ├── __math_oflowf.c │ │ ├── __math_uflow.c │ │ ├── __math_uflowf.c │ │ ├── __math_xflow.c │ │ ├── __math_xflowf.c │ │ ├── __polevll.c │ │ ├── __rem_pio2.c │ │ ├── __rem_pio2_large.c │ │ ├── __rem_pio2f.c │ │ ├── __rem_pio2l.c │ │ ├── __signbit.c │ │ ├── __signbitf.c │ │ ├── __signbitl.c │ │ ├── __sin.c │ │ ├── __sindf.c │ │ ├── __sinl.c │ │ ├── __tan.c │ │ ├── __tandf.c │ │ ├── __tanl.c │ │ ├── aarch64 │ │ │ ├── ceil.c │ │ │ ├── ceilf.c │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── floor.c │ │ │ ├── floorf.c │ │ │ ├── fma.c │ │ │ ├── fmaf.c │ │ │ ├── fmax.c │ │ │ ├── fmaxf.c │ │ │ ├── fmin.c │ │ │ ├── fminf.c │ │ │ ├── llrint.c │ │ │ ├── llrintf.c │ │ │ ├── llround.c │ │ │ ├── llroundf.c │ │ │ ├── lrint.c │ │ │ ├── lrintf.c │ │ │ ├── lround.c │ │ │ ├── lroundf.c │ │ │ ├── nearbyint.c │ │ │ ├── nearbyintf.c │ │ │ ├── rint.c │ │ │ ├── rintf.c │ │ │ ├── round.c │ │ │ ├── roundf.c │ │ │ ├── sqrt.c │ │ │ ├── sqrtf.c │ │ │ ├── trunc.c │ │ │ └── truncf.c │ │ ├── acos.c │ │ ├── acosf.c │ │ ├── acosh.c │ │ ├── acoshf.c │ │ ├── acoshl.c │ │ ├── acosl.c │ │ ├── arm │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── fma.c │ │ │ ├── fmaf.c │ │ │ ├── sqrt.c │ │ │ └── sqrtf.c │ │ ├── asin.c │ │ ├── asinf.c │ │ ├── asinh.c │ │ ├── asinhf.c │ │ ├── asinhl.c │ │ ├── asinl.c │ │ ├── atan.c │ │ ├── atan2.c │ │ ├── atan2f.c │ │ ├── atan2l.c │ │ ├── atanf.c │ │ ├── atanh.c │ │ ├── atanhf.c │ │ ├── atanhl.c │ │ ├── atanl.c │ │ ├── cbrt.c │ │ ├── cbrtf.c │ │ ├── cbrtl.c │ │ ├── ceil.c │ │ ├── ceilf.c │ │ ├── ceill.c │ │ ├── copysign.c │ │ ├── copysignf.c │ │ ├── copysignl.c │ │ ├── cos.c │ │ ├── cosf.c │ │ ├── cosh.c │ │ ├── coshf.c │ │ ├── coshl.c │ │ ├── cosl.c │ │ ├── erf.c │ │ ├── erff.c │ │ ├── erfl.c │ │ ├── exp.c │ │ ├── exp10.c │ │ ├── exp10f.c │ │ ├── exp10l.c │ │ ├── exp2.c │ │ ├── exp2f.c │ │ ├── exp2f_data.c │ │ ├── exp2f_data.h │ │ ├── exp2l.c │ │ ├── exp_data.c │ │ ├── exp_data.h │ │ ├── expf.c │ │ ├── expl.c │ │ ├── expm1.c │ │ ├── expm1f.c │ │ ├── expm1l.c │ │ ├── fabs.c │ │ ├── fabsf.c │ │ ├── fabsl.c │ │ ├── fdim.c │ │ ├── fdimf.c │ │ ├── fdiml.c │ │ ├── finite.c │ │ ├── finitef.c │ │ ├── floor.c │ │ ├── floorf.c │ │ ├── floorl.c │ │ ├── fma.c │ │ ├── fmaf.c │ │ ├── fmal.c │ │ ├── fmax.c │ │ ├── fmaxf.c │ │ ├── fmaxl.c │ │ ├── fmin.c │ │ ├── fminf.c │ │ ├── fminl.c │ │ ├── fmod.c │ │ ├── fmodf.c │ │ ├── fmodl.c │ │ ├── frexp.c │ │ ├── frexpf.c │ │ ├── frexpl.c │ │ ├── hypot.c │ │ ├── hypotf.c │ │ ├── hypotl.c │ │ ├── i386 │ │ │ ├── __invtrigl.s │ │ │ ├── acos.s │ │ │ ├── acosf.s │ │ │ ├── acosl.s │ │ │ ├── asin.s │ │ │ ├── asinf.s │ │ │ ├── asinl.s │ │ │ ├── atan.s │ │ │ ├── atan2.s │ │ │ ├── atan2f.s │ │ │ ├── atan2l.s │ │ │ ├── atanf.s │ │ │ ├── atanl.s │ │ │ ├── ceil.s │ │ │ ├── ceilf.s │ │ │ ├── ceill.s │ │ │ ├── exp2l.s │ │ │ ├── exp_ld.s │ │ │ ├── expl.s │ │ │ ├── expm1l.s │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── fabsl.c │ │ │ ├── floor.s │ │ │ ├── floorf.s │ │ │ ├── floorl.s │ │ │ ├── fmod.c │ │ │ ├── fmodf.c │ │ │ ├── fmodl.c │ │ │ ├── hypot.s │ │ │ ├── hypotf.s │ │ │ ├── ldexp.s │ │ │ ├── ldexpf.s │ │ │ ├── ldexpl.s │ │ │ ├── llrint.c │ │ │ ├── llrintf.c │ │ │ ├── llrintl.c │ │ │ ├── log.s │ │ │ ├── log10.s │ │ │ ├── log10f.s │ │ │ ├── log10l.s │ │ │ ├── log1p.s │ │ │ ├── log1pf.s │ │ │ ├── log1pl.s │ │ │ ├── log2.s │ │ │ ├── log2f.s │ │ │ ├── log2l.s │ │ │ ├── logf.s │ │ │ ├── logl.s │ │ │ ├── lrint.c │ │ │ ├── lrintf.c │ │ │ ├── lrintl.c │ │ │ ├── remainder.c │ │ │ ├── remainderf.c │ │ │ ├── remainderl.c │ │ │ ├── remquo.s │ │ │ ├── remquof.s │ │ │ ├── remquol.s │ │ │ ├── rint.c │ │ │ ├── rintf.c │ │ │ ├── rintl.c │ │ │ ├── scalbln.s │ │ │ ├── scalblnf.s │ │ │ ├── scalblnl.s │ │ │ ├── scalbn.s │ │ │ ├── scalbnf.s │ │ │ ├── scalbnl.s │ │ │ ├── sqrt.c │ │ │ ├── sqrtf.c │ │ │ ├── sqrtl.c │ │ │ ├── trunc.s │ │ │ ├── truncf.s │ │ │ └── truncl.s │ │ ├── ilogb.c │ │ ├── ilogbf.c │ │ ├── ilogbl.c │ │ ├── j0.c │ │ ├── j0f.c │ │ ├── j1.c │ │ ├── j1f.c │ │ ├── jn.c │ │ ├── jnf.c │ │ ├── ldexp.c │ │ ├── ldexpf.c │ │ ├── ldexpl.c │ │ ├── lgamma.c │ │ ├── lgamma_r.c │ │ ├── lgammaf.c │ │ ├── lgammaf_r.c │ │ ├── lgammal.c │ │ ├── llrint.c │ │ ├── llrintf.c │ │ ├── llrintl.c │ │ ├── llround.c │ │ ├── llroundf.c │ │ ├── llroundl.c │ │ ├── log.c │ │ ├── log10.c │ │ ├── log10f.c │ │ ├── log10l.c │ │ ├── log1p.c │ │ ├── log1pf.c │ │ ├── log1pl.c │ │ ├── log2.c │ │ ├── log2_data.c │ │ ├── log2_data.h │ │ ├── log2f.c │ │ ├── log2f_data.c │ │ ├── log2f_data.h │ │ ├── log2l.c │ │ ├── log_data.c │ │ ├── log_data.h │ │ ├── logb.c │ │ ├── logbf.c │ │ ├── logbl.c │ │ ├── logf.c │ │ ├── logf_data.c │ │ ├── logf_data.h │ │ ├── logl.c │ │ ├── lrint.c │ │ ├── lrintf.c │ │ ├── lrintl.c │ │ ├── lround.c │ │ ├── lroundf.c │ │ ├── lroundl.c │ │ ├── modf.c │ │ ├── modff.c │ │ ├── modfl.c │ │ ├── nan.c │ │ ├── nanf.c │ │ ├── nanl.c │ │ ├── nearbyint.c │ │ ├── nearbyintf.c │ │ ├── nearbyintl.c │ │ ├── nextafter.c │ │ ├── nextafterf.c │ │ ├── nextafterl.c │ │ ├── nexttoward.c │ │ ├── nexttowardf.c │ │ ├── nexttowardl.c │ │ ├── pow.c │ │ ├── pow_data.c │ │ ├── pow_data.h │ │ ├── powf.c │ │ ├── powf_data.c │ │ ├── powf_data.h │ │ ├── powl.c │ │ ├── remainder.c │ │ ├── remainderf.c │ │ ├── remainderl.c │ │ ├── remquo.c │ │ ├── remquof.c │ │ ├── remquol.c │ │ ├── rint.c │ │ ├── rintf.c │ │ ├── rintl.c │ │ ├── riscv64 │ │ │ ├── copysign.c │ │ │ ├── copysignf.c │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── fma.c │ │ │ ├── fmaf.c │ │ │ ├── fmax.c │ │ │ ├── fmaxf.c │ │ │ ├── fmin.c │ │ │ ├── fminf.c │ │ │ ├── sqrt.c │ │ │ └── sqrtf.c │ │ ├── round.c │ │ ├── roundf.c │ │ ├── roundl.c │ │ ├── scalb.c │ │ ├── scalbf.c │ │ ├── scalbln.c │ │ ├── scalblnf.c │ │ ├── scalblnl.c │ │ ├── scalbn.c │ │ ├── scalbnf.c │ │ ├── scalbnl.c │ │ ├── signgam.c │ │ ├── significand.c │ │ ├── significandf.c │ │ ├── sin.c │ │ ├── sincos.c │ │ ├── sincosf.c │ │ ├── sincosl.c │ │ ├── sinf.c │ │ ├── sinh.c │ │ ├── sinhf.c │ │ ├── sinhl.c │ │ ├── sinl.c │ │ ├── sqrt.c │ │ ├── sqrt_data.c │ │ ├── sqrt_data.h │ │ ├── sqrtf.c │ │ ├── sqrtl.c │ │ ├── tan.c │ │ ├── tanf.c │ │ ├── tanh.c │ │ ├── tanhf.c │ │ ├── tanhl.c │ │ ├── tanl.c │ │ ├── tgamma.c │ │ ├── tgammaf.c │ │ ├── tgammal.c │ │ ├── trunc.c │ │ ├── truncf.c │ │ ├── truncl.c │ │ └── x86_64 │ │ │ ├── __invtrigl.s │ │ │ ├── acosl.s │ │ │ ├── asinl.s │ │ │ ├── atan2l.s │ │ │ ├── atanl.s │ │ │ ├── ceill.s │ │ │ ├── exp2l.s │ │ │ ├── expl.s │ │ │ ├── expm1l.s │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── fabsl.c │ │ │ ├── floorl.s │ │ │ ├── fma.c │ │ │ ├── fmaf.c │ │ │ ├── fmodl.c │ │ │ ├── llrint.c │ │ │ ├── llrintf.c │ │ │ ├── llrintl.c │ │ │ ├── log10l.s │ │ │ ├── log1pl.s │ │ │ ├── log2l.s │ │ │ ├── logl.s │ │ │ ├── lrint.c │ │ │ ├── lrintf.c │ │ │ ├── lrintl.c │ │ │ ├── remainderl.c │ │ │ ├── remquol.c │ │ │ ├── rintl.c │ │ │ ├── sqrt.c │ │ │ ├── sqrtf.c │ │ │ ├── sqrtl.c │ │ │ └── truncl.s │ │ ├── misc │ │ ├── a64l.c │ │ ├── basename.c │ │ ├── dirname.c │ │ ├── ffs.c │ │ ├── ffsl.c │ │ ├── ffsll.c │ │ ├── fmtmsg.c │ │ ├── forkpty.c │ │ ├── get_current_dir_name.c │ │ ├── getauxval.c │ │ ├── getdomainname.c │ │ ├── getentropy.c │ │ ├── gethostid.c │ │ ├── getopt.c │ │ ├── getopt_long.c │ │ ├── getpriority.c │ │ ├── getresgid.c │ │ ├── getresuid.c │ │ ├── getrlimit.c │ │ ├── getrusage.c │ │ ├── getsubopt.c │ │ ├── initgroups.c │ │ ├── ioctl.c │ │ ├── issetugid.c │ │ ├── lockf.c │ │ ├── login_tty.c │ │ ├── mntent.c │ │ ├── nftw.c │ │ ├── openpty.c │ │ ├── ptsname.c │ │ ├── pty.c │ │ ├── realpath.c │ │ ├── setdomainname.c │ │ ├── setpriority.c │ │ ├── setrlimit.c │ │ ├── syscall.c │ │ ├── syslog.c │ │ ├── uname.c │ │ └── wordexp.c │ │ ├── mman │ │ ├── madvise.c │ │ ├── mincore.c │ │ ├── mlock.c │ │ ├── mlockall.c │ │ ├── mmap.c │ │ ├── mprotect.c │ │ ├── mremap.c │ │ ├── msync.c │ │ ├── munlock.c │ │ ├── munlockall.c │ │ ├── munmap.c │ │ ├── posix_madvise.c │ │ └── shm_open.c │ │ ├── mq │ │ ├── mq_close.c │ │ ├── mq_getattr.c │ │ ├── mq_notify.c │ │ ├── mq_open.c │ │ ├── mq_receive.c │ │ ├── mq_send.c │ │ ├── mq_setattr.c │ │ ├── mq_timedreceive.c │ │ ├── mq_timedsend.c │ │ └── mq_unlink.c │ │ ├── multibyte │ │ ├── btowc.c │ │ ├── c16rtomb.c │ │ ├── c32rtomb.c │ │ ├── internal.c │ │ ├── internal.h │ │ ├── mblen.c │ │ ├── mbrlen.c │ │ ├── mbrtoc16.c │ │ ├── mbrtoc32.c │ │ ├── mbrtowc.c │ │ ├── mbsinit.c │ │ ├── mbsnrtowcs.c │ │ ├── mbsrtowcs.c │ │ ├── mbstowcs.c │ │ ├── mbtowc.c │ │ ├── wcrtomb.c │ │ ├── wcsnrtombs.c │ │ ├── wcsrtombs.c │ │ ├── wcstombs.c │ │ ├── wctob.c │ │ └── wctomb.c │ │ ├── network │ │ ├── accept.c │ │ ├── accept4.c │ │ ├── bind.c │ │ ├── connect.c │ │ ├── dn_comp.c │ │ ├── dn_expand.c │ │ ├── dn_skipname.c │ │ ├── dns_parse.c │ │ ├── ent.c │ │ ├── ether.c │ │ ├── freeaddrinfo.c │ │ ├── gai_strerror.c │ │ ├── getaddrinfo.c │ │ ├── gethostbyaddr.c │ │ ├── gethostbyaddr_r.c │ │ ├── gethostbyname.c │ │ ├── gethostbyname2.c │ │ ├── gethostbyname2_r.c │ │ ├── gethostbyname_r.c │ │ ├── getifaddrs.c │ │ ├── getnameinfo.c │ │ ├── getpeername.c │ │ ├── getservbyname.c │ │ ├── getservbyname_r.c │ │ ├── getservbyport.c │ │ ├── getservbyport_r.c │ │ ├── getsockname.c │ │ ├── getsockopt.c │ │ ├── h_errno.c │ │ ├── herror.c │ │ ├── hstrerror.c │ │ ├── htonl.c │ │ ├── htons.c │ │ ├── if_freenameindex.c │ │ ├── if_indextoname.c │ │ ├── if_nameindex.c │ │ ├── if_nametoindex.c │ │ ├── in6addr_any.c │ │ ├── in6addr_loopback.c │ │ ├── inet_addr.c │ │ ├── inet_aton.c │ │ ├── inet_legacy.c │ │ ├── inet_ntoa.c │ │ ├── inet_ntop.c │ │ ├── inet_pton.c │ │ ├── listen.c │ │ ├── lookup.h │ │ ├── lookup_ipliteral.c │ │ ├── lookup_name.c │ │ ├── lookup_serv.c │ │ ├── netlink.c │ │ ├── netlink.h │ │ ├── netname.c │ │ ├── ns_parse.c │ │ ├── ntohl.c │ │ ├── ntohs.c │ │ ├── proto.c │ │ ├── recv.c │ │ ├── recvfrom.c │ │ ├── recvmmsg.c │ │ ├── recvmsg.c │ │ ├── res_init.c │ │ ├── res_mkquery.c │ │ ├── res_msend.c │ │ ├── res_query.c │ │ ├── res_querydomain.c │ │ ├── res_send.c │ │ ├── res_state.c │ │ ├── resolvconf.c │ │ ├── send.c │ │ ├── sendmmsg.c │ │ ├── sendmsg.c │ │ ├── sendto.c │ │ ├── serv.c │ │ ├── setsockopt.c │ │ ├── shutdown.c │ │ ├── sockatmark.c │ │ ├── socket.c │ │ └── socketpair.c │ │ ├── passwd │ │ ├── fgetgrent.c │ │ ├── fgetpwent.c │ │ ├── fgetspent.c │ │ ├── getgr_a.c │ │ ├── getgr_r.c │ │ ├── getgrent.c │ │ ├── getgrent_a.c │ │ ├── getgrouplist.c │ │ ├── getpw_a.c │ │ ├── getpw_r.c │ │ ├── getpwent.c │ │ ├── getpwent_a.c │ │ ├── getspent.c │ │ ├── getspnam.c │ │ ├── getspnam_r.c │ │ ├── lckpwdf.c │ │ ├── nscd.h │ │ ├── nscd_query.c │ │ ├── putgrent.c │ │ ├── putpwent.c │ │ ├── putspent.c │ │ └── pwf.h │ │ ├── prng │ │ ├── __rand48_step.c │ │ ├── __seed48.c │ │ ├── drand48.c │ │ ├── lcong48.c │ │ ├── lrand48.c │ │ ├── mrand48.c │ │ ├── rand.c │ │ ├── rand48.h │ │ ├── rand_r.c │ │ ├── random.c │ │ ├── seed48.c │ │ └── srand48.c │ │ ├── process │ │ ├── _Fork.c │ │ ├── arm │ │ │ └── vfork.s │ │ ├── execl.c │ │ ├── execle.c │ │ ├── execlp.c │ │ ├── execv.c │ │ ├── execve.c │ │ ├── execvp.c │ │ ├── fdop.h │ │ ├── fexecve.c │ │ ├── fork.c │ │ ├── i386 │ │ │ └── vfork.s │ │ ├── posix_spawn.c │ │ ├── posix_spawn_file_actions_addchdir.c │ │ ├── posix_spawn_file_actions_addclose.c │ │ ├── posix_spawn_file_actions_adddup2.c │ │ ├── posix_spawn_file_actions_addfchdir.c │ │ ├── posix_spawn_file_actions_addopen.c │ │ ├── posix_spawn_file_actions_destroy.c │ │ ├── posix_spawn_file_actions_init.c │ │ ├── posix_spawnattr_destroy.c │ │ ├── posix_spawnattr_getflags.c │ │ ├── posix_spawnattr_getpgroup.c │ │ ├── posix_spawnattr_getsigdefault.c │ │ ├── posix_spawnattr_getsigmask.c │ │ ├── posix_spawnattr_init.c │ │ ├── posix_spawnattr_sched.c │ │ ├── posix_spawnattr_setflags.c │ │ ├── posix_spawnattr_setpgroup.c │ │ ├── posix_spawnattr_setsigdefault.c │ │ ├── posix_spawnattr_setsigmask.c │ │ ├── posix_spawnp.c │ │ ├── system.c │ │ ├── vfork.c │ │ ├── wait.c │ │ ├── waitid.c │ │ ├── waitpid.c │ │ └── x86_64 │ │ │ └── vfork.s │ │ ├── regex │ │ ├── fnmatch.c │ │ ├── glob.c │ │ ├── regcomp.c │ │ ├── regerror.c │ │ ├── regexec.c │ │ ├── tre-mem.c │ │ └── tre.h │ │ ├── sched │ │ ├── affinity.c │ │ ├── sched_cpucount.c │ │ ├── sched_get_priority_max.c │ │ ├── sched_getcpu.c │ │ ├── sched_getparam.c │ │ ├── sched_getscheduler.c │ │ ├── sched_rr_get_interval.c │ │ ├── sched_setparam.c │ │ ├── sched_setscheduler.c │ │ └── sched_yield.c │ │ ├── search │ │ ├── hsearch.c │ │ ├── insque.c │ │ ├── lsearch.c │ │ ├── tdelete.c │ │ ├── tdestroy.c │ │ ├── tfind.c │ │ ├── tsearch.c │ │ ├── tsearch.h │ │ └── twalk.c │ │ ├── select │ │ ├── poll.c │ │ ├── pselect.c │ │ └── select.c │ │ ├── setjmp │ │ ├── aarch64 │ │ │ ├── longjmp.s │ │ │ └── setjmp.s │ │ ├── arm │ │ │ ├── longjmp.S │ │ │ └── setjmp.S │ │ ├── i386 │ │ │ ├── longjmp.s │ │ │ └── setjmp.s │ │ ├── longjmp.c │ │ ├── riscv64 │ │ │ ├── longjmp.S │ │ │ └── setjmp.S │ │ ├── setjmp.c │ │ └── x86_64 │ │ │ ├── longjmp.s │ │ │ └── setjmp.s │ │ ├── signal │ │ ├── aarch64 │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── arm │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── block.c │ │ ├── getitimer.c │ │ ├── i386 │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── kill.c │ │ ├── killpg.c │ │ ├── psiginfo.c │ │ ├── psignal.c │ │ ├── raise.c │ │ ├── restore.c │ │ ├── riscv64 │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── setitimer.c │ │ ├── sigaction.c │ │ ├── sigaddset.c │ │ ├── sigaltstack.c │ │ ├── sigandset.c │ │ ├── sigdelset.c │ │ ├── sigemptyset.c │ │ ├── sigfillset.c │ │ ├── sighold.c │ │ ├── sigignore.c │ │ ├── siginterrupt.c │ │ ├── sigisemptyset.c │ │ ├── sigismember.c │ │ ├── siglongjmp.c │ │ ├── signal.c │ │ ├── sigorset.c │ │ ├── sigpause.c │ │ ├── sigpending.c │ │ ├── sigprocmask.c │ │ ├── sigqueue.c │ │ ├── sigrelse.c │ │ ├── sigrtmax.c │ │ ├── sigrtmin.c │ │ ├── sigset.c │ │ ├── sigsetjmp.c │ │ ├── sigsetjmp_tail.c │ │ ├── sigsuspend.c │ │ ├── sigtimedwait.c │ │ ├── sigwait.c │ │ ├── sigwaitinfo.c │ │ └── x86_64 │ │ │ ├── restore.s │ │ │ └── sigsetjmp.s │ │ ├── stat │ │ ├── __xstat.c │ │ ├── chmod.c │ │ ├── fchmod.c │ │ ├── fchmodat.c │ │ ├── fstat.c │ │ ├── fstatat.c │ │ ├── futimens.c │ │ ├── futimesat.c │ │ ├── lchmod.c │ │ ├── lstat.c │ │ ├── mkdir.c │ │ ├── mkdirat.c │ │ ├── mkfifo.c │ │ ├── mkfifoat.c │ │ ├── mknod.c │ │ ├── mknodat.c │ │ ├── stat.c │ │ ├── statvfs.c │ │ ├── umask.c │ │ └── utimensat.c │ │ ├── stdio │ │ ├── __fclose_ca.c │ │ ├── __fdopen.c │ │ ├── __fmodeflags.c │ │ ├── __fopen_rb_ca.c │ │ ├── __lockfile.c │ │ ├── __overflow.c │ │ ├── __stdio_close.c │ │ ├── __stdio_exit.c │ │ ├── __stdio_read.c │ │ ├── __stdio_seek.c │ │ ├── __stdio_write.c │ │ ├── __stdout_write.c │ │ ├── __toread.c │ │ ├── __towrite.c │ │ ├── __uflow.c │ │ ├── asprintf.c │ │ ├── clearerr.c │ │ ├── dprintf.c │ │ ├── ext.c │ │ ├── ext2.c │ │ ├── fclose.c │ │ ├── feof.c │ │ ├── ferror.c │ │ ├── fflush.c │ │ ├── fgetc.c │ │ ├── fgetln.c │ │ ├── fgetpos.c │ │ ├── fgets.c │ │ ├── fgetwc.c │ │ ├── fgetws.c │ │ ├── fileno.c │ │ ├── flockfile.c │ │ ├── fmemopen.c │ │ ├── fopen.c │ │ ├── fopencookie.c │ │ ├── fprintf.c │ │ ├── fputc.c │ │ ├── fputs.c │ │ ├── fputwc.c │ │ ├── fputws.c │ │ ├── fread.c │ │ ├── freopen.c │ │ ├── fscanf.c │ │ ├── fseek.c │ │ ├── fsetpos.c │ │ ├── ftell.c │ │ ├── ftrylockfile.c │ │ ├── funlockfile.c │ │ ├── fwide.c │ │ ├── fwprintf.c │ │ ├── fwrite.c │ │ ├── fwscanf.c │ │ ├── getc.c │ │ ├── getc.h │ │ ├── getc_unlocked.c │ │ ├── getchar.c │ │ ├── getchar_unlocked.c │ │ ├── getdelim.c │ │ ├── getline.c │ │ ├── gets.c │ │ ├── getw.c │ │ ├── getwc.c │ │ ├── getwchar.c │ │ ├── ofl.c │ │ ├── ofl_add.c │ │ ├── open_memstream.c │ │ ├── open_wmemstream.c │ │ ├── pclose.c │ │ ├── perror.c │ │ ├── popen.c │ │ ├── printf.c │ │ ├── putc.c │ │ ├── putc.h │ │ ├── putc_unlocked.c │ │ ├── putchar.c │ │ ├── putchar_unlocked.c │ │ ├── puts.c │ │ ├── putw.c │ │ ├── putwc.c │ │ ├── putwchar.c │ │ ├── remove.c │ │ ├── rename.c │ │ ├── rewind.c │ │ ├── scanf.c │ │ ├── setbuf.c │ │ ├── setbuffer.c │ │ ├── setlinebuf.c │ │ ├── setvbuf.c │ │ ├── snprintf.c │ │ ├── sprintf.c │ │ ├── sscanf.c │ │ ├── stderr.c │ │ ├── stdin.c │ │ ├── stdout.c │ │ ├── swprintf.c │ │ ├── swscanf.c │ │ ├── tempnam.c │ │ ├── tmpfile.c │ │ ├── tmpnam.c │ │ ├── ungetc.c │ │ ├── ungetwc.c │ │ ├── vasprintf.c │ │ ├── vdprintf.c │ │ ├── vfprintf.c │ │ ├── vfscanf.c │ │ ├── vfwprintf.c │ │ ├── vfwscanf.c │ │ ├── vprintf.c │ │ ├── vscanf.c │ │ ├── vsnprintf.c │ │ ├── vsprintf.c │ │ ├── vsscanf.c │ │ ├── vswprintf.c │ │ ├── vswscanf.c │ │ ├── vwprintf.c │ │ ├── vwscanf.c │ │ ├── wprintf.c │ │ └── wscanf.c │ │ ├── stdlib │ │ ├── abs.c │ │ ├── atof.c │ │ ├── atoi.c │ │ ├── atol.c │ │ ├── atoll.c │ │ ├── bsearch.c │ │ ├── div.c │ │ ├── ecvt.c │ │ ├── fcvt.c │ │ ├── gcvt.c │ │ ├── imaxabs.c │ │ ├── imaxdiv.c │ │ ├── labs.c │ │ ├── ldiv.c │ │ ├── llabs.c │ │ ├── lldiv.c │ │ ├── qsort.c │ │ ├── qsort_nr.c │ │ ├── strtod.c │ │ ├── strtol.c │ │ ├── wcstod.c │ │ └── wcstol.c │ │ ├── string │ │ ├── aarch64 │ │ │ ├── memcpy.S │ │ │ └── memset.S │ │ ├── arm │ │ │ ├── __aeabi_memcpy.s │ │ │ ├── __aeabi_memset.s │ │ │ └── memcpy.S │ │ ├── bcmp.c │ │ ├── bcopy.c │ │ ├── bzero.c │ │ ├── explicit_bzero.c │ │ ├── i386 │ │ │ ├── memcpy.s │ │ │ ├── memmove.s │ │ │ └── memset.s │ │ ├── index.c │ │ ├── memccpy.c │ │ ├── memchr.c │ │ ├── memcmp.c │ │ ├── memcpy.c │ │ ├── memmem.c │ │ ├── memmove.c │ │ ├── mempcpy.c │ │ ├── memrchr.c │ │ ├── memset.c │ │ ├── rindex.c │ │ ├── stpcpy.c │ │ ├── stpncpy.c │ │ ├── strcasecmp.c │ │ ├── strcasestr.c │ │ ├── strcat.c │ │ ├── strchr.c │ │ ├── strchrnul.c │ │ ├── strcmp.c │ │ ├── strcpy.c │ │ ├── strcspn.c │ │ ├── strdup.c │ │ ├── strerror_r.c │ │ ├── strlcat.c │ │ ├── strlcpy.c │ │ ├── strlen.c │ │ ├── strncasecmp.c │ │ ├── strncat.c │ │ ├── strncmp.c │ │ ├── strncpy.c │ │ ├── strndup.c │ │ ├── strnlen.c │ │ ├── strpbrk.c │ │ ├── strrchr.c │ │ ├── strsep.c │ │ ├── strsignal.c │ │ ├── strspn.c │ │ ├── strstr.c │ │ ├── strtok.c │ │ ├── strtok_r.c │ │ ├── strverscmp.c │ │ ├── swab.c │ │ ├── wcpcpy.c │ │ ├── wcpncpy.c │ │ ├── wcscasecmp.c │ │ ├── wcscasecmp_l.c │ │ ├── wcscat.c │ │ ├── wcschr.c │ │ ├── wcscmp.c │ │ ├── wcscpy.c │ │ ├── wcscspn.c │ │ ├── wcsdup.c │ │ ├── wcslen.c │ │ ├── wcsncasecmp.c │ │ ├── wcsncasecmp_l.c │ │ ├── wcsncat.c │ │ ├── wcsncmp.c │ │ ├── wcsncpy.c │ │ ├── wcsnlen.c │ │ ├── wcspbrk.c │ │ ├── wcsrchr.c │ │ ├── wcsspn.c │ │ ├── wcsstr.c │ │ ├── wcstok.c │ │ ├── wcswcs.c │ │ ├── wmemchr.c │ │ ├── wmemcmp.c │ │ ├── wmemcpy.c │ │ ├── wmemmove.c │ │ ├── wmemset.c │ │ └── x86_64 │ │ │ ├── memcpy.s │ │ │ ├── memmove.s │ │ │ └── memset.s │ │ ├── temp │ │ ├── __randname.c │ │ ├── mkdtemp.c │ │ ├── mkostemp.c │ │ ├── mkostemps.c │ │ ├── mkstemp.c │ │ ├── mkstemps.c │ │ └── mktemp.c │ │ ├── termios │ │ ├── cfgetospeed.c │ │ ├── cfmakeraw.c │ │ ├── cfsetospeed.c │ │ ├── tcdrain.c │ │ ├── tcflow.c │ │ ├── tcflush.c │ │ ├── tcgetattr.c │ │ ├── tcgetsid.c │ │ ├── tcgetwinsize.c │ │ ├── tcsendbreak.c │ │ ├── tcsetattr.c │ │ └── tcsetwinsize.c │ │ ├── thread │ │ ├── __lock.c │ │ ├── __set_thread_area.c │ │ ├── __syscall_cp.c │ │ ├── __timedwait.c │ │ ├── __tls_get_addr.c │ │ ├── __unmapself.c │ │ ├── __wait.c │ │ ├── aarch64 │ │ │ ├── __set_thread_area.s │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── arm │ │ │ ├── __aeabi_read_tp.s │ │ │ ├── __set_thread_area.c │ │ │ ├── __unmapself.s │ │ │ ├── atomics.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── call_once.c │ │ ├── clone.c │ │ ├── cnd_broadcast.c │ │ ├── cnd_destroy.c │ │ ├── cnd_init.c │ │ ├── cnd_signal.c │ │ ├── cnd_timedwait.c │ │ ├── cnd_wait.c │ │ ├── default_attr.c │ │ ├── i386 │ │ │ ├── __set_thread_area.s │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ ├── syscall_cp.s │ │ │ └── tls.s │ │ ├── lock_ptc.c │ │ ├── mtx_destroy.c │ │ ├── mtx_init.c │ │ ├── mtx_lock.c │ │ ├── mtx_timedlock.c │ │ ├── mtx_trylock.c │ │ ├── mtx_unlock.c │ │ ├── pthread_atfork.c │ │ ├── pthread_attr_destroy.c │ │ ├── pthread_attr_get.c │ │ ├── pthread_attr_init.c │ │ ├── pthread_attr_setdetachstate.c │ │ ├── pthread_attr_setguardsize.c │ │ ├── pthread_attr_setinheritsched.c │ │ ├── pthread_attr_setschedparam.c │ │ ├── pthread_attr_setschedpolicy.c │ │ ├── pthread_attr_setscope.c │ │ ├── pthread_attr_setstack.c │ │ ├── pthread_attr_setstacksize.c │ │ ├── pthread_barrier_destroy.c │ │ ├── pthread_barrier_init.c │ │ ├── pthread_barrier_wait.c │ │ ├── pthread_barrierattr_destroy.c │ │ ├── pthread_barrierattr_init.c │ │ ├── pthread_barrierattr_setpshared.c │ │ ├── pthread_cancel.c │ │ ├── pthread_cleanup_push.c │ │ ├── pthread_cond_broadcast.c │ │ ├── pthread_cond_destroy.c │ │ ├── pthread_cond_init.c │ │ ├── pthread_cond_signal.c │ │ ├── pthread_cond_timedwait.c │ │ ├── pthread_cond_wait.c │ │ ├── pthread_condattr_destroy.c │ │ ├── pthread_condattr_init.c │ │ ├── pthread_condattr_setclock.c │ │ ├── pthread_condattr_setpshared.c │ │ ├── pthread_create.c │ │ ├── pthread_detach.c │ │ ├── pthread_equal.c │ │ ├── pthread_getattr_np.c │ │ ├── pthread_getconcurrency.c │ │ ├── pthread_getcpuclockid.c │ │ ├── pthread_getname_np.c │ │ ├── pthread_getschedparam.c │ │ ├── pthread_getspecific.c │ │ ├── pthread_join.c │ │ ├── pthread_key_create.c │ │ ├── pthread_kill.c │ │ ├── pthread_mutex_consistent.c │ │ ├── pthread_mutex_destroy.c │ │ ├── pthread_mutex_getprioceiling.c │ │ ├── pthread_mutex_init.c │ │ ├── pthread_mutex_lock.c │ │ ├── pthread_mutex_setprioceiling.c │ │ ├── pthread_mutex_timedlock.c │ │ ├── pthread_mutex_trylock.c │ │ ├── pthread_mutex_unlock.c │ │ ├── pthread_mutexattr_destroy.c │ │ ├── pthread_mutexattr_init.c │ │ ├── pthread_mutexattr_setprotocol.c │ │ ├── pthread_mutexattr_setpshared.c │ │ ├── pthread_mutexattr_setrobust.c │ │ ├── pthread_mutexattr_settype.c │ │ ├── pthread_once.c │ │ ├── pthread_rwlock_destroy.c │ │ ├── pthread_rwlock_init.c │ │ ├── pthread_rwlock_rdlock.c │ │ ├── pthread_rwlock_timedrdlock.c │ │ ├── pthread_rwlock_timedwrlock.c │ │ ├── pthread_rwlock_tryrdlock.c │ │ ├── pthread_rwlock_trywrlock.c │ │ ├── pthread_rwlock_unlock.c │ │ ├── pthread_rwlock_wrlock.c │ │ ├── pthread_rwlockattr_destroy.c │ │ ├── pthread_rwlockattr_init.c │ │ ├── pthread_rwlockattr_setpshared.c │ │ ├── pthread_self.c │ │ ├── pthread_setattr_default_np.c │ │ ├── pthread_setcancelstate.c │ │ ├── pthread_setcanceltype.c │ │ ├── pthread_setconcurrency.c │ │ ├── pthread_setname_np.c │ │ ├── pthread_setschedparam.c │ │ ├── pthread_setschedprio.c │ │ ├── pthread_setspecific.c │ │ ├── pthread_sigmask.c │ │ ├── pthread_spin_destroy.c │ │ ├── pthread_spin_init.c │ │ ├── pthread_spin_lock.c │ │ ├── pthread_spin_trylock.c │ │ ├── pthread_spin_unlock.c │ │ ├── pthread_testcancel.c │ │ ├── riscv64 │ │ │ ├── __set_thread_area.s │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── sem_destroy.c │ │ ├── sem_getvalue.c │ │ ├── sem_init.c │ │ ├── sem_open.c │ │ ├── sem_post.c │ │ ├── sem_timedwait.c │ │ ├── sem_trywait.c │ │ ├── sem_unlink.c │ │ ├── sem_wait.c │ │ ├── synccall.c │ │ ├── syscall_cp.c │ │ ├── thrd_create.c │ │ ├── thrd_exit.c │ │ ├── thrd_join.c │ │ ├── thrd_sleep.c │ │ ├── thrd_yield.c │ │ ├── tls.c │ │ ├── tss_create.c │ │ ├── tss_delete.c │ │ ├── tss_set.c │ │ ├── vmlock.c │ │ └── x86_64 │ │ │ ├── __set_thread_area.s │ │ │ ├── __unmapself.s │ │ │ ├── clone.s │ │ │ └── syscall_cp.s │ │ ├── time │ │ ├── __map_file.c │ │ ├── __month_to_secs.c │ │ ├── __secs_to_tm.c │ │ ├── __tm_to_secs.c │ │ ├── __tz.c │ │ ├── __year_to_secs.c │ │ ├── asctime.c │ │ ├── asctime_r.c │ │ ├── clock.c │ │ ├── clock_getcpuclockid.c │ │ ├── clock_getres.c │ │ ├── clock_gettime.c │ │ ├── clock_nanosleep.c │ │ ├── clock_settime.c │ │ ├── ctime.c │ │ ├── ctime_r.c │ │ ├── difftime.c │ │ ├── ftime.c │ │ ├── getdate.c │ │ ├── gettimeofday.c │ │ ├── gmtime.c │ │ ├── gmtime_r.c │ │ ├── localtime.c │ │ ├── localtime_r.c │ │ ├── mktime.c │ │ ├── nanosleep.c │ │ ├── strftime.c │ │ ├── strptime.c │ │ ├── time.c │ │ ├── time_impl.h │ │ ├── timegm.c │ │ ├── timer_create.c │ │ ├── timer_delete.c │ │ ├── timer_getoverrun.c │ │ ├── timer_gettime.c │ │ ├── timer_settime.c │ │ ├── times.c │ │ ├── timespec_get.c │ │ ├── utime.c │ │ └── wcsftime.c │ │ └── unistd │ │ ├── _exit.c │ │ ├── access.c │ │ ├── acct.c │ │ ├── alarm.c │ │ ├── chdir.c │ │ ├── chown.c │ │ ├── close.c │ │ ├── ctermid.c │ │ ├── dup.c │ │ ├── dup2.c │ │ ├── dup3.c │ │ ├── faccessat.c │ │ ├── fchdir.c │ │ ├── fchown.c │ │ ├── fchownat.c │ │ ├── fdatasync.c │ │ ├── fsync.c │ │ ├── ftruncate.c │ │ ├── getcwd.c │ │ ├── getegid.c │ │ ├── geteuid.c │ │ ├── getgid.c │ │ ├── getgroups.c │ │ ├── gethostname.c │ │ ├── getlogin.c │ │ ├── getlogin_r.c │ │ ├── getpgid.c │ │ ├── getpgrp.c │ │ ├── getpid.c │ │ ├── getppid.c │ │ ├── getsid.c │ │ ├── getuid.c │ │ ├── isatty.c │ │ ├── lchown.c │ │ ├── link.c │ │ ├── linkat.c │ │ ├── lseek.c │ │ ├── nice.c │ │ ├── pause.c │ │ ├── pipe.c │ │ ├── pipe2.c │ │ ├── posix_close.c │ │ ├── pread.c │ │ ├── preadv.c │ │ ├── pwrite.c │ │ ├── pwritev.c │ │ ├── read.c │ │ ├── readlink.c │ │ ├── readlinkat.c │ │ ├── readv.c │ │ ├── renameat.c │ │ ├── rmdir.c │ │ ├── setegid.c │ │ ├── seteuid.c │ │ ├── setgid.c │ │ ├── setpgid.c │ │ ├── setpgrp.c │ │ ├── setregid.c │ │ ├── setresgid.c │ │ ├── setresuid.c │ │ ├── setreuid.c │ │ ├── setsid.c │ │ ├── setuid.c │ │ ├── setxid.c │ │ ├── sleep.c │ │ ├── symlink.c │ │ ├── symlinkat.c │ │ ├── sync.c │ │ ├── tcgetpgrp.c │ │ ├── tcsetpgrp.c │ │ ├── truncate.c │ │ ├── ttyname.c │ │ ├── ttyname_r.c │ │ ├── ualarm.c │ │ ├── unlink.c │ │ ├── unlinkat.c │ │ ├── usleep.c │ │ ├── write.c │ │ └── writev.c ├── std │ └── runtime │ │ ├── pub-api.co.h │ │ ├── runtime.c │ │ ├── runtime.co │ │ └── runtime.h ├── sysinc-src │ ├── aarch64-linux │ │ ├── asm-generic │ │ │ ├── auxvec.h │ │ │ ├── bitsperlong.h │ │ │ ├── bpf_perf_event.h │ │ │ ├── errno-base.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── hugetlb_encode.h │ │ │ ├── int-l64.h │ │ │ ├── int-ll64.h │ │ │ ├── ioctl.h │ │ │ ├── ioctls.h │ │ │ ├── ipcbuf.h │ │ │ ├── kvm_para.h │ │ │ ├── mman-common.h │ │ │ ├── mman.h │ │ │ ├── msgbuf.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── posix_types.h │ │ │ ├── resource.h │ │ │ ├── sembuf.h │ │ │ ├── setup.h │ │ │ ├── shmbuf.h │ │ │ ├── siginfo.h │ │ │ ├── signal-defs.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockios.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── swab.h │ │ │ ├── termbits-common.h │ │ │ ├── termbits.h │ │ │ ├── termios.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ └── unistd.h │ │ ├── asm │ │ │ ├── auxvec.h │ │ │ ├── bitsperlong.h │ │ │ ├── bpf_perf_event.h │ │ │ ├── byteorder.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── hwcap.h │ │ │ ├── ioctl.h │ │ │ ├── ioctls.h │ │ │ ├── ipcbuf.h │ │ │ ├── kvm.h │ │ │ ├── kvm_para.h │ │ │ ├── mman.h │ │ │ ├── msgbuf.h │ │ │ ├── param.h │ │ │ ├── perf_regs.h │ │ │ ├── poll.h │ │ │ ├── posix_types.h │ │ │ ├── ptrace.h │ │ │ ├── resource.h │ │ │ ├── sembuf.h │ │ │ ├── setup.h │ │ │ ├── shmbuf.h │ │ │ ├── sigcontext.h │ │ │ ├── siginfo.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockios.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── swab.h │ │ │ ├── termbits.h │ │ │ ├── termios.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ └── unistd.h │ │ ├── drm │ │ │ ├── amdgpu_drm.h │ │ │ ├── armada_drm.h │ │ │ ├── drm.h │ │ │ ├── drm_fourcc.h │ │ │ ├── drm_mode.h │ │ │ ├── drm_sarea.h │ │ │ ├── etnaviv_drm.h │ │ │ ├── exynos_drm.h │ │ │ ├── habanalabs_accel.h │ │ │ ├── i915_drm.h │ │ │ ├── ivpu_accel.h │ │ │ ├── lima_drm.h │ │ │ ├── msm_drm.h │ │ │ ├── nouveau_drm.h │ │ │ ├── omap_drm.h │ │ │ ├── panfrost_drm.h │ │ │ ├── qaic_accel.h │ │ │ ├── qxl_drm.h │ │ │ ├── radeon_drm.h │ │ │ ├── tegra_drm.h │ │ │ ├── v3d_drm.h │ │ │ ├── vc4_drm.h │ │ │ ├── vgem_drm.h │ │ │ ├── virtgpu_drm.h │ │ │ └── vmwgfx_drm.h │ │ ├── linux │ │ │ ├── a.out.h │ │ │ ├── acct.h │ │ │ ├── acrn.h │ │ │ ├── adb.h │ │ │ ├── adfs_fs.h │ │ │ ├── affs_hardblocks.h │ │ │ ├── agpgart.h │ │ │ ├── aio_abi.h │ │ │ ├── am437x-vpfe.h │ │ │ ├── amt.h │ │ │ ├── android │ │ │ │ ├── binder.h │ │ │ │ └── binderfs.h │ │ │ ├── apm_bios.h │ │ │ ├── arcfb.h │ │ │ ├── arm_sdei.h │ │ │ ├── aspeed-lpc-ctrl.h │ │ │ ├── aspeed-p2a-ctrl.h │ │ │ ├── aspeed-video.h │ │ │ ├── atalk.h │ │ │ ├── atm.h │ │ │ ├── atm_eni.h │ │ │ ├── atm_he.h │ │ │ ├── atm_idt77105.h │ │ │ ├── atm_nicstar.h │ │ │ ├── atm_tcp.h │ │ │ ├── atm_zatm.h │ │ │ ├── atmapi.h │ │ │ ├── atmarp.h │ │ │ ├── atmbr2684.h │ │ │ ├── atmclip.h │ │ │ ├── atmdev.h │ │ │ ├── atmioc.h │ │ │ ├── atmlec.h │ │ │ ├── atmmpc.h │ │ │ ├── atmppp.h │ │ │ ├── atmsap.h │ │ │ ├── atmsvc.h │ │ │ ├── audit.h │ │ │ ├── auto_dev-ioctl.h │ │ │ ├── auto_fs.h │ │ │ ├── auto_fs4.h │ │ │ ├── auxvec.h │ │ │ ├── ax25.h │ │ │ ├── batadv_packet.h │ │ │ ├── batman_adv.h │ │ │ ├── baycom.h │ │ │ ├── bcm933xx_hcs.h │ │ │ ├── bfs_fs.h │ │ │ ├── binfmts.h │ │ │ ├── blkpg.h │ │ │ ├── blktrace_api.h │ │ │ ├── blkzoned.h │ │ │ ├── bpf.h │ │ │ ├── bpf_common.h │ │ │ ├── bpf_perf_event.h │ │ │ ├── bpfilter.h │ │ │ ├── bpqether.h │ │ │ ├── bsg.h │ │ │ ├── bt-bmc.h │ │ │ ├── btf.h │ │ │ ├── btrfs.h │ │ │ ├── btrfs_tree.h │ │ │ ├── byteorder │ │ │ │ ├── big_endian.h │ │ │ │ └── little_endian.h │ │ │ ├── cachefiles.h │ │ │ ├── caif │ │ │ │ ├── caif_socket.h │ │ │ │ └── if_caif.h │ │ │ ├── can.h │ │ │ ├── can │ │ │ │ ├── bcm.h │ │ │ │ ├── error.h │ │ │ │ ├── gw.h │ │ │ │ ├── isotp.h │ │ │ │ ├── j1939.h │ │ │ │ ├── netlink.h │ │ │ │ ├── raw.h │ │ │ │ └── vxcan.h │ │ │ ├── capability.h │ │ │ ├── capi.h │ │ │ ├── cciss_defs.h │ │ │ ├── cciss_ioctl.h │ │ │ ├── ccs.h │ │ │ ├── cdrom.h │ │ │ ├── cec-funcs.h │ │ │ ├── cec.h │ │ │ ├── cfm_bridge.h │ │ │ ├── cgroupstats.h │ │ │ ├── chio.h │ │ │ ├── cifs │ │ │ │ ├── cifs_mount.h │ │ │ │ └── cifs_netlink.h │ │ │ ├── close_range.h │ │ │ ├── cn_proc.h │ │ │ ├── coda.h │ │ │ ├── coff.h │ │ │ ├── comedi.h │ │ │ ├── connector.h │ │ │ ├── const.h │ │ │ ├── coresight-stm.h │ │ │ ├── counter.h │ │ │ ├── cramfs_fs.h │ │ │ ├── cryptouser.h │ │ │ ├── cuda.h │ │ │ ├── cxl_mem.h │ │ │ ├── cyclades.h │ │ │ ├── cycx_cfm.h │ │ │ ├── dcbnl.h │ │ │ ├── dccp.h │ │ │ ├── devlink.h │ │ │ ├── dlm.h │ │ │ ├── dlm_device.h │ │ │ ├── dlm_plock.h │ │ │ ├── dlmconstants.h │ │ │ ├── dm-ioctl.h │ │ │ ├── dm-log-userspace.h │ │ │ ├── dma-buf.h │ │ │ ├── dma-heap.h │ │ │ ├── dns_resolver.h │ │ │ ├── dqblk_xfs.h │ │ │ ├── dvb │ │ │ │ ├── audio.h │ │ │ │ ├── ca.h │ │ │ │ ├── dmx.h │ │ │ │ ├── frontend.h │ │ │ │ ├── net.h │ │ │ │ ├── osd.h │ │ │ │ ├── version.h │ │ │ │ └── video.h │ │ │ ├── dw100.h │ │ │ ├── edd.h │ │ │ ├── efs_fs_sb.h │ │ │ ├── elf-em.h │ │ │ ├── elf-fdpic.h │ │ │ ├── elf.h │ │ │ ├── errno.h │ │ │ ├── errqueue.h │ │ │ ├── erspan.h │ │ │ ├── ethtool.h │ │ │ ├── ethtool_netlink.h │ │ │ ├── eventfd.h │ │ │ ├── eventpoll.h │ │ │ ├── ext4.h │ │ │ ├── f2fs.h │ │ │ ├── fadvise.h │ │ │ ├── falloc.h │ │ │ ├── fanotify.h │ │ │ ├── fb.h │ │ │ ├── fcntl.h │ │ │ ├── fd.h │ │ │ ├── fdreg.h │ │ │ ├── fib_rules.h │ │ │ ├── fiemap.h │ │ │ ├── filter.h │ │ │ ├── firewire-cdev.h │ │ │ ├── firewire-constants.h │ │ │ ├── fou.h │ │ │ ├── fpga-dfl.h │ │ │ ├── fs.h │ │ │ ├── fscrypt.h │ │ │ ├── fsi.h │ │ │ ├── fsl_hypervisor.h │ │ │ ├── fsl_mc.h │ │ │ ├── fsmap.h │ │ │ ├── fsverity.h │ │ │ ├── fuse.h │ │ │ ├── futex.h │ │ │ ├── gameport.h │ │ │ ├── gen_stats.h │ │ │ ├── genetlink.h │ │ │ ├── genwqe │ │ │ │ └── genwqe_card.h │ │ │ ├── gfs2_ondisk.h │ │ │ ├── gpio.h │ │ │ ├── gsmmux.h │ │ │ ├── gtp.h │ │ │ ├── handshake.h │ │ │ ├── hash_info.h │ │ │ ├── hdlc.h │ │ │ ├── hdlc │ │ │ │ └── ioctl.h │ │ │ ├── hdlcdrv.h │ │ │ ├── hdreg.h │ │ │ ├── hid.h │ │ │ ├── hiddev.h │ │ │ ├── hidraw.h │ │ │ ├── hpet.h │ │ │ ├── hsi │ │ │ │ ├── cs-protocol.h │ │ │ │ └── hsi_char.h │ │ │ ├── hsr_netlink.h │ │ │ ├── hw_breakpoint.h │ │ │ ├── hyperv.h │ │ │ ├── i2c-dev.h │ │ │ ├── i2c.h │ │ │ ├── i2o-dev.h │ │ │ ├── i8k.h │ │ │ ├── icmp.h │ │ │ ├── icmpv6.h │ │ │ ├── idxd.h │ │ │ ├── if.h │ │ │ ├── if_addr.h │ │ │ ├── if_addrlabel.h │ │ │ ├── if_alg.h │ │ │ ├── if_arcnet.h │ │ │ ├── if_arp.h │ │ │ ├── if_bonding.h │ │ │ ├── if_bridge.h │ │ │ ├── if_cablemodem.h │ │ │ ├── if_eql.h │ │ │ ├── if_ether.h │ │ │ ├── if_fc.h │ │ │ ├── if_fddi.h │ │ │ ├── if_hippi.h │ │ │ ├── if_infiniband.h │ │ │ ├── if_link.h │ │ │ ├── if_ltalk.h │ │ │ ├── if_macsec.h │ │ │ ├── if_packet.h │ │ │ ├── if_phonet.h │ │ │ ├── if_plip.h │ │ │ ├── if_ppp.h │ │ │ ├── if_pppol2tp.h │ │ │ ├── if_pppox.h │ │ │ ├── if_slip.h │ │ │ ├── if_team.h │ │ │ ├── if_tun.h │ │ │ ├── if_tunnel.h │ │ │ ├── if_vlan.h │ │ │ ├── if_x25.h │ │ │ ├── if_xdp.h │ │ │ ├── ife.h │ │ │ ├── igmp.h │ │ │ ├── iio │ │ │ │ ├── buffer.h │ │ │ │ ├── events.h │ │ │ │ └── types.h │ │ │ ├── ila.h │ │ │ ├── in.h │ │ │ ├── in6.h │ │ │ ├── in_route.h │ │ │ ├── inet_diag.h │ │ │ ├── inotify.h │ │ │ ├── input-event-codes.h │ │ │ ├── input.h │ │ │ ├── io_uring.h │ │ │ ├── ioam6.h │ │ │ ├── ioam6_genl.h │ │ │ ├── ioam6_iptunnel.h │ │ │ ├── ioctl.h │ │ │ ├── iommu.h │ │ │ ├── iommufd.h │ │ │ ├── ioprio.h │ │ │ ├── ip.h │ │ │ ├── ip6_tunnel.h │ │ │ ├── ip_vs.h │ │ │ ├── ipc.h │ │ │ ├── ipmi.h │ │ │ ├── ipmi_bmc.h │ │ │ ├── ipmi_msgdefs.h │ │ │ ├── ipmi_ssif_bmc.h │ │ │ ├── ipsec.h │ │ │ ├── ipv6.h │ │ │ ├── ipv6_route.h │ │ │ ├── irqnr.h │ │ │ ├── isdn │ │ │ │ └── capicmd.h │ │ │ ├── iso_fs.h │ │ │ ├── isst_if.h │ │ │ ├── ivtv.h │ │ │ ├── ivtvfb.h │ │ │ ├── jffs2.h │ │ │ ├── joystick.h │ │ │ ├── kcm.h │ │ │ ├── kcmp.h │ │ │ ├── kcov.h │ │ │ ├── kd.h │ │ │ ├── kdev_t.h │ │ │ ├── kernel-page-flags.h │ │ │ ├── kernel.h │ │ │ ├── kernelcapi.h │ │ │ ├── kexec.h │ │ │ ├── keyboard.h │ │ │ ├── keyctl.h │ │ │ ├── kfd_ioctl.h │ │ │ ├── kfd_sysfs.h │ │ │ ├── kvm.h │ │ │ ├── kvm_para.h │ │ │ ├── l2tp.h │ │ │ ├── landlock.h │ │ │ ├── libc-compat.h │ │ │ ├── limits.h │ │ │ ├── lirc.h │ │ │ ├── llc.h │ │ │ ├── loadpin.h │ │ │ ├── loop.h │ │ │ ├── lp.h │ │ │ ├── lwtunnel.h │ │ │ ├── magic.h │ │ │ ├── major.h │ │ │ ├── map_to_14segment.h │ │ │ ├── map_to_7segment.h │ │ │ ├── matroxfb.h │ │ │ ├── max2175.h │ │ │ ├── mctp.h │ │ │ ├── mdio.h │ │ │ ├── media-bus-format.h │ │ │ ├── media.h │ │ │ ├── mei.h │ │ │ ├── mei_uuid.h │ │ │ ├── membarrier.h │ │ │ ├── memfd.h │ │ │ ├── mempolicy.h │ │ │ ├── mii.h │ │ │ ├── minix_fs.h │ │ │ ├── misc │ │ │ │ └── bcm_vk.h │ │ │ ├── mman.h │ │ │ ├── mmc │ │ │ │ └── ioctl.h │ │ │ ├── mmtimer.h │ │ │ ├── module.h │ │ │ ├── mount.h │ │ │ ├── mpls.h │ │ │ ├── mpls_iptunnel.h │ │ │ ├── mptcp.h │ │ │ ├── mqueue.h │ │ │ ├── mroute.h │ │ │ ├── mroute6.h │ │ │ ├── mrp_bridge.h │ │ │ ├── msdos_fs.h │ │ │ ├── msg.h │ │ │ ├── mtio.h │ │ │ ├── nbd-netlink.h │ │ │ ├── nbd.h │ │ │ ├── ncsi.h │ │ │ ├── ndctl.h │ │ │ ├── neighbour.h │ │ │ ├── net.h │ │ │ ├── net_dropmon.h │ │ │ ├── net_namespace.h │ │ │ ├── net_tstamp.h │ │ │ ├── netconf.h │ │ │ ├── netdev.h │ │ │ ├── netdevice.h │ │ │ ├── netfilter.h │ │ │ ├── netfilter │ │ │ │ ├── ipset │ │ │ │ │ ├── ip_set.h │ │ │ │ │ ├── ip_set_bitmap.h │ │ │ │ │ ├── ip_set_hash.h │ │ │ │ │ └── ip_set_list.h │ │ │ │ ├── nf_conntrack_common.h │ │ │ │ ├── nf_conntrack_ftp.h │ │ │ │ ├── nf_conntrack_sctp.h │ │ │ │ ├── nf_conntrack_tcp.h │ │ │ │ ├── nf_conntrack_tuple_common.h │ │ │ │ ├── nf_log.h │ │ │ │ ├── nf_nat.h │ │ │ │ ├── nf_synproxy.h │ │ │ │ ├── nf_tables.h │ │ │ │ ├── nf_tables_compat.h │ │ │ │ ├── nfnetlink.h │ │ │ │ ├── nfnetlink_acct.h │ │ │ │ ├── nfnetlink_compat.h │ │ │ │ ├── nfnetlink_conntrack.h │ │ │ │ ├── nfnetlink_cthelper.h │ │ │ │ ├── nfnetlink_cttimeout.h │ │ │ │ ├── nfnetlink_hook.h │ │ │ │ ├── nfnetlink_log.h │ │ │ │ ├── nfnetlink_osf.h │ │ │ │ ├── nfnetlink_queue.h │ │ │ │ ├── x_tables.h │ │ │ │ ├── xt_AUDIT.h │ │ │ │ ├── xt_CHECKSUM.h │ │ │ │ ├── xt_CLASSIFY.h │ │ │ │ ├── xt_CONNSECMARK.h │ │ │ │ ├── xt_CT.h │ │ │ │ ├── xt_HMARK.h │ │ │ │ ├── xt_IDLETIMER.h │ │ │ │ ├── xt_LED.h │ │ │ │ ├── xt_LOG.h │ │ │ │ ├── xt_NFLOG.h │ │ │ │ ├── xt_NFQUEUE.h │ │ │ │ ├── xt_SECMARK.h │ │ │ │ ├── xt_SYNPROXY.h │ │ │ │ ├── xt_TCPOPTSTRIP.h │ │ │ │ ├── xt_TEE.h │ │ │ │ ├── xt_TPROXY.h │ │ │ │ ├── xt_addrtype.h │ │ │ │ ├── xt_bpf.h │ │ │ │ ├── xt_cgroup.h │ │ │ │ ├── xt_cluster.h │ │ │ │ ├── xt_comment.h │ │ │ │ ├── xt_connbytes.h │ │ │ │ ├── xt_connlabel.h │ │ │ │ ├── xt_connlimit.h │ │ │ │ ├── xt_connmark.h │ │ │ │ ├── xt_conntrack.h │ │ │ │ ├── xt_cpu.h │ │ │ │ ├── xt_dccp.h │ │ │ │ ├── xt_devgroup.h │ │ │ │ ├── xt_dscp.h │ │ │ │ ├── xt_ecn.h │ │ │ │ ├── xt_esp.h │ │ │ │ ├── xt_hashlimit.h │ │ │ │ ├── xt_helper.h │ │ │ │ ├── xt_ipcomp.h │ │ │ │ ├── xt_iprange.h │ │ │ │ ├── xt_ipvs.h │ │ │ │ ├── xt_l2tp.h │ │ │ │ ├── xt_length.h │ │ │ │ ├── xt_limit.h │ │ │ │ ├── xt_mac.h │ │ │ │ ├── xt_mark.h │ │ │ │ ├── xt_multiport.h │ │ │ │ ├── xt_nfacct.h │ │ │ │ ├── xt_osf.h │ │ │ │ ├── xt_owner.h │ │ │ │ ├── xt_physdev.h │ │ │ │ ├── xt_pkttype.h │ │ │ │ ├── xt_policy.h │ │ │ │ ├── xt_quota.h │ │ │ │ ├── xt_rateest.h │ │ │ │ ├── xt_realm.h │ │ │ │ ├── xt_recent.h │ │ │ │ ├── xt_rpfilter.h │ │ │ │ ├── xt_sctp.h │ │ │ │ ├── xt_set.h │ │ │ │ ├── xt_socket.h │ │ │ │ ├── xt_state.h │ │ │ │ ├── xt_statistic.h │ │ │ │ ├── xt_string.h │ │ │ │ ├── xt_tcpmss.h │ │ │ │ ├── xt_tcpudp.h │ │ │ │ ├── xt_time.h │ │ │ │ └── xt_u32.h │ │ │ ├── netfilter_arp.h │ │ │ ├── netfilter_arp │ │ │ │ ├── arp_tables.h │ │ │ │ └── arpt_mangle.h │ │ │ ├── netfilter_bridge.h │ │ │ ├── netfilter_bridge │ │ │ │ ├── ebt_802_3.h │ │ │ │ ├── ebt_among.h │ │ │ │ ├── ebt_arp.h │ │ │ │ ├── ebt_arpreply.h │ │ │ │ ├── ebt_ip.h │ │ │ │ ├── ebt_ip6.h │ │ │ │ ├── ebt_limit.h │ │ │ │ ├── ebt_log.h │ │ │ │ ├── ebt_mark_m.h │ │ │ │ ├── ebt_mark_t.h │ │ │ │ ├── ebt_nat.h │ │ │ │ ├── ebt_nflog.h │ │ │ │ ├── ebt_pkttype.h │ │ │ │ ├── ebt_redirect.h │ │ │ │ ├── ebt_stp.h │ │ │ │ ├── ebt_vlan.h │ │ │ │ └── ebtables.h │ │ │ ├── netfilter_ipv4.h │ │ │ ├── netfilter_ipv4 │ │ │ │ ├── ip_tables.h │ │ │ │ ├── ipt_CLUSTERIP.h │ │ │ │ ├── ipt_LOG.h │ │ │ │ ├── ipt_REJECT.h │ │ │ │ ├── ipt_ah.h │ │ │ │ ├── ipt_ecn.h │ │ │ │ └── ipt_ttl.h │ │ │ ├── netfilter_ipv6.h │ │ │ ├── netfilter_ipv6 │ │ │ │ ├── ip6_tables.h │ │ │ │ ├── ip6t_LOG.h │ │ │ │ ├── ip6t_NPT.h │ │ │ │ ├── ip6t_REJECT.h │ │ │ │ ├── ip6t_ah.h │ │ │ │ ├── ip6t_frag.h │ │ │ │ ├── ip6t_hl.h │ │ │ │ ├── ip6t_ipv6header.h │ │ │ │ ├── ip6t_mh.h │ │ │ │ ├── ip6t_opts.h │ │ │ │ ├── ip6t_rt.h │ │ │ │ └── ip6t_srh.h │ │ │ ├── netlink.h │ │ │ ├── netlink_diag.h │ │ │ ├── netrom.h │ │ │ ├── nexthop.h │ │ │ ├── nfc.h │ │ │ ├── nfs.h │ │ │ ├── nfs2.h │ │ │ ├── nfs3.h │ │ │ ├── nfs4.h │ │ │ ├── nfs4_mount.h │ │ │ ├── nfs_fs.h │ │ │ ├── nfs_idmap.h │ │ │ ├── nfs_mount.h │ │ │ ├── nfsacl.h │ │ │ ├── nfsd │ │ │ │ ├── cld.h │ │ │ │ ├── debug.h │ │ │ │ ├── export.h │ │ │ │ └── stats.h │ │ │ ├── nilfs2_api.h │ │ │ ├── nilfs2_ondisk.h │ │ │ ├── nitro_enclaves.h │ │ │ ├── nl80211-vnd-intel.h │ │ │ ├── nl80211.h │ │ │ ├── nsfs.h │ │ │ ├── nubus.h │ │ │ ├── nvme_ioctl.h │ │ │ ├── nvram.h │ │ │ ├── omap3isp.h │ │ │ ├── omapfb.h │ │ │ ├── oom.h │ │ │ ├── openat2.h │ │ │ ├── openvswitch.h │ │ │ ├── packet_diag.h │ │ │ ├── param.h │ │ │ ├── parport.h │ │ │ ├── patchkey.h │ │ │ ├── pci.h │ │ │ ├── pci_regs.h │ │ │ ├── pcitest.h │ │ │ ├── perf_event.h │ │ │ ├── personality.h │ │ │ ├── pfkeyv2.h │ │ │ ├── pfrut.h │ │ │ ├── pg.h │ │ │ ├── phantom.h │ │ │ ├── phonet.h │ │ │ ├── pidfd.h │ │ │ ├── pkt_cls.h │ │ │ ├── pkt_sched.h │ │ │ ├── pktcdvd.h │ │ │ ├── pmu.h │ │ │ ├── poll.h │ │ │ ├── posix_acl.h │ │ │ ├── posix_acl_xattr.h │ │ │ ├── posix_types.h │ │ │ ├── ppdev.h │ │ │ ├── ppp-comp.h │ │ │ ├── ppp-ioctl.h │ │ │ ├── ppp_defs.h │ │ │ ├── pps.h │ │ │ ├── pr.h │ │ │ ├── prctl.h │ │ │ ├── psample.h │ │ │ ├── psci.h │ │ │ ├── psp-dbc.h │ │ │ ├── psp-sev.h │ │ │ ├── ptp_clock.h │ │ │ ├── ptrace.h │ │ │ ├── qemu_fw_cfg.h │ │ │ ├── qnx4_fs.h │ │ │ ├── qnxtypes.h │ │ │ ├── qrtr.h │ │ │ ├── quota.h │ │ │ ├── radeonfb.h │ │ │ ├── raid │ │ │ │ ├── md_p.h │ │ │ │ └── md_u.h │ │ │ ├── random.h │ │ │ ├── rds.h │ │ │ ├── reboot.h │ │ │ ├── reiserfs_fs.h │ │ │ ├── reiserfs_xattr.h │ │ │ ├── remoteproc_cdev.h │ │ │ ├── resource.h │ │ │ ├── rfkill.h │ │ │ ├── rio_cm_cdev.h │ │ │ ├── rio_mport_cdev.h │ │ │ ├── rkisp1-config.h │ │ │ ├── romfs_fs.h │ │ │ ├── rose.h │ │ │ ├── route.h │ │ │ ├── rpl.h │ │ │ ├── rpl_iptunnel.h │ │ │ ├── rpmsg.h │ │ │ ├── rpmsg_types.h │ │ │ ├── rseq.h │ │ │ ├── rtc.h │ │ │ ├── rtnetlink.h │ │ │ ├── rxrpc.h │ │ │ ├── scc.h │ │ │ ├── sched.h │ │ │ ├── sched │ │ │ │ └── types.h │ │ │ ├── scif_ioctl.h │ │ │ ├── screen_info.h │ │ │ ├── sctp.h │ │ │ ├── seccomp.h │ │ │ ├── securebits.h │ │ │ ├── sed-opal.h │ │ │ ├── seg6.h │ │ │ ├── seg6_genl.h │ │ │ ├── seg6_hmac.h │ │ │ ├── seg6_iptunnel.h │ │ │ ├── seg6_local.h │ │ │ ├── selinux_netlink.h │ │ │ ├── sem.h │ │ │ ├── serial.h │ │ │ ├── serial_core.h │ │ │ ├── serial_reg.h │ │ │ ├── serio.h │ │ │ ├── sev-guest.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── signalfd.h │ │ │ ├── smc.h │ │ │ ├── smc_diag.h │ │ │ ├── smiapp.h │ │ │ ├── snmp.h │ │ │ ├── sock_diag.h │ │ │ ├── socket.h │ │ │ ├── sockios.h │ │ │ ├── sonet.h │ │ │ ├── sonypi.h │ │ │ ├── sound.h │ │ │ ├── soundcard.h │ │ │ ├── spi │ │ │ │ ├── spi.h │ │ │ │ └── spidev.h │ │ │ ├── stat.h │ │ │ ├── stddef.h │ │ │ ├── stm.h │ │ │ ├── string.h │ │ │ ├── sunrpc │ │ │ │ └── debug.h │ │ │ ├── surface_aggregator │ │ │ │ ├── cdev.h │ │ │ │ └── dtx.h │ │ │ ├── suspend_ioctls.h │ │ │ ├── swab.h │ │ │ ├── switchtec_ioctl.h │ │ │ ├── sync_file.h │ │ │ ├── synclink.h │ │ │ ├── sysctl.h │ │ │ ├── sysinfo.h │ │ │ ├── target_core_user.h │ │ │ ├── taskstats.h │ │ │ ├── tc_act │ │ │ │ ├── tc_bpf.h │ │ │ │ ├── tc_connmark.h │ │ │ │ ├── tc_csum.h │ │ │ │ ├── tc_ct.h │ │ │ │ ├── tc_ctinfo.h │ │ │ │ ├── tc_defact.h │ │ │ │ ├── tc_gact.h │ │ │ │ ├── tc_gate.h │ │ │ │ ├── tc_ife.h │ │ │ │ ├── tc_ipt.h │ │ │ │ ├── tc_mirred.h │ │ │ │ ├── tc_mpls.h │ │ │ │ ├── tc_nat.h │ │ │ │ ├── tc_pedit.h │ │ │ │ ├── tc_sample.h │ │ │ │ ├── tc_skbedit.h │ │ │ │ ├── tc_skbmod.h │ │ │ │ ├── tc_tunnel_key.h │ │ │ │ └── tc_vlan.h │ │ │ ├── tc_ematch │ │ │ │ ├── tc_em_cmp.h │ │ │ │ ├── tc_em_ipt.h │ │ │ │ ├── tc_em_meta.h │ │ │ │ ├── tc_em_nbyte.h │ │ │ │ └── tc_em_text.h │ │ │ ├── tcp.h │ │ │ ├── tcp_metrics.h │ │ │ ├── tdx-guest.h │ │ │ ├── tee.h │ │ │ ├── termios.h │ │ │ ├── thermal.h │ │ │ ├── time.h │ │ │ ├── time_types.h │ │ │ ├── timerfd.h │ │ │ ├── times.h │ │ │ ├── timex.h │ │ │ ├── tiocl.h │ │ │ ├── tipc.h │ │ │ ├── tipc_config.h │ │ │ ├── tipc_netlink.h │ │ │ ├── tipc_sockets_diag.h │ │ │ ├── tls.h │ │ │ ├── toshiba.h │ │ │ ├── tps6594_pfsm.h │ │ │ ├── tty.h │ │ │ ├── tty_flags.h │ │ │ ├── types.h │ │ │ ├── ublk_cmd.h │ │ │ ├── udf_fs_i.h │ │ │ ├── udmabuf.h │ │ │ ├── udp.h │ │ │ ├── uhid.h │ │ │ ├── uinput.h │ │ │ ├── uio.h │ │ │ ├── uleds.h │ │ │ ├── ultrasound.h │ │ │ ├── um_timetravel.h │ │ │ ├── un.h │ │ │ ├── unistd.h │ │ │ ├── unix_diag.h │ │ │ ├── usb │ │ │ │ ├── audio.h │ │ │ │ ├── cdc-wdm.h │ │ │ │ ├── cdc.h │ │ │ │ ├── ch11.h │ │ │ │ ├── ch9.h │ │ │ │ ├── charger.h │ │ │ │ ├── functionfs.h │ │ │ │ ├── g_printer.h │ │ │ │ ├── g_uvc.h │ │ │ │ ├── gadgetfs.h │ │ │ │ ├── midi.h │ │ │ │ ├── raw_gadget.h │ │ │ │ ├── tmc.h │ │ │ │ └── video.h │ │ │ ├── usbdevice_fs.h │ │ │ ├── usbip.h │ │ │ ├── user_events.h │ │ │ ├── userfaultfd.h │ │ │ ├── userio.h │ │ │ ├── utime.h │ │ │ ├── utsname.h │ │ │ ├── uuid.h │ │ │ ├── uvcvideo.h │ │ │ ├── v4l2-common.h │ │ │ ├── v4l2-controls.h │ │ │ ├── v4l2-dv-timings.h │ │ │ ├── v4l2-mediabus.h │ │ │ ├── v4l2-subdev.h │ │ │ ├── vbox_err.h │ │ │ ├── vbox_vmmdev_types.h │ │ │ ├── vboxguest.h │ │ │ ├── vdpa.h │ │ │ ├── vduse.h │ │ │ ├── version.h │ │ │ ├── veth.h │ │ │ ├── vfio.h │ │ │ ├── vfio_ccw.h │ │ │ ├── vfio_zdev.h │ │ │ ├── vhost.h │ │ │ ├── vhost_types.h │ │ │ ├── videodev2.h │ │ │ ├── virtio_9p.h │ │ │ ├── virtio_balloon.h │ │ │ ├── virtio_blk.h │ │ │ ├── virtio_bt.h │ │ │ ├── virtio_config.h │ │ │ ├── virtio_console.h │ │ │ ├── virtio_crypto.h │ │ │ ├── virtio_fs.h │ │ │ ├── virtio_gpio.h │ │ │ ├── virtio_gpu.h │ │ │ ├── virtio_i2c.h │ │ │ ├── virtio_ids.h │ │ │ ├── virtio_input.h │ │ │ ├── virtio_iommu.h │ │ │ ├── virtio_mem.h │ │ │ ├── virtio_mmio.h │ │ │ ├── virtio_net.h │ │ │ ├── virtio_pci.h │ │ │ ├── virtio_pcidev.h │ │ │ ├── virtio_pmem.h │ │ │ ├── virtio_ring.h │ │ │ ├── virtio_rng.h │ │ │ ├── virtio_scmi.h │ │ │ ├── virtio_scsi.h │ │ │ ├── virtio_snd.h │ │ │ ├── virtio_types.h │ │ │ ├── virtio_vsock.h │ │ │ ├── vm_sockets.h │ │ │ ├── vm_sockets_diag.h │ │ │ ├── vmcore.h │ │ │ ├── vsockmon.h │ │ │ ├── vt.h │ │ │ ├── vtpm_proxy.h │ │ │ ├── wait.h │ │ │ ├── watch_queue.h │ │ │ ├── watchdog.h │ │ │ ├── wireguard.h │ │ │ ├── wireless.h │ │ │ ├── wmi.h │ │ │ ├── wwan.h │ │ │ ├── x25.h │ │ │ ├── xattr.h │ │ │ ├── xdp_diag.h │ │ │ ├── xfrm.h │ │ │ ├── xilinx-v4l2-controls.h │ │ │ ├── zorro.h │ │ │ └── zorro_ids.h │ │ ├── misc │ │ │ ├── cxl.h │ │ │ ├── fastrpc.h │ │ │ ├── ocxl.h │ │ │ ├── pvpanic.h │ │ │ ├── uacce │ │ │ │ ├── hisi_qm.h │ │ │ │ └── uacce.h │ │ │ └── xilinx_sdfec.h │ │ ├── mtd │ │ │ ├── inftl-user.h │ │ │ ├── mtd-abi.h │ │ │ ├── mtd-user.h │ │ │ ├── nftl-user.h │ │ │ └── ubi-user.h │ │ ├── rdma │ │ │ ├── bnxt_re-abi.h │ │ │ ├── cxgb4-abi.h │ │ │ ├── efa-abi.h │ │ │ ├── erdma-abi.h │ │ │ ├── hfi │ │ │ │ ├── hfi1_ioctl.h │ │ │ │ └── hfi1_user.h │ │ │ ├── hns-abi.h │ │ │ ├── ib_user_ioctl_cmds.h │ │ │ ├── ib_user_ioctl_verbs.h │ │ │ ├── ib_user_mad.h │ │ │ ├── ib_user_sa.h │ │ │ ├── ib_user_verbs.h │ │ │ ├── irdma-abi.h │ │ │ ├── mana-abi.h │ │ │ ├── mlx4-abi.h │ │ │ ├── mlx5-abi.h │ │ │ ├── mlx5_user_ioctl_cmds.h │ │ │ ├── mlx5_user_ioctl_verbs.h │ │ │ ├── mthca-abi.h │ │ │ ├── ocrdma-abi.h │ │ │ ├── qedr-abi.h │ │ │ ├── rdma_netlink.h │ │ │ ├── rdma_user_cm.h │ │ │ ├── rdma_user_ioctl.h │ │ │ ├── rdma_user_ioctl_cmds.h │ │ │ ├── rdma_user_rxe.h │ │ │ ├── rvt-abi.h │ │ │ ├── siw-abi.h │ │ │ └── vmw_pvrdma-abi.h │ │ ├── scsi │ │ │ ├── cxlflash_ioctl.h │ │ │ ├── fc │ │ │ │ ├── fc_els.h │ │ │ │ ├── fc_fs.h │ │ │ │ ├── fc_gs.h │ │ │ │ └── fc_ns.h │ │ │ ├── scsi_bsg_fc.h │ │ │ ├── scsi_bsg_mpi3mr.h │ │ │ ├── scsi_bsg_ufs.h │ │ │ ├── scsi_netlink.h │ │ │ └── scsi_netlink_fc.h │ │ ├── sound │ │ │ ├── asequencer.h │ │ │ ├── asoc.h │ │ │ ├── asound.h │ │ │ ├── asound_fm.h │ │ │ ├── compress_offload.h │ │ │ ├── compress_params.h │ │ │ ├── emu10k1.h │ │ │ ├── firewire.h │ │ │ ├── hdsp.h │ │ │ ├── hdspm.h │ │ │ ├── intel │ │ │ │ └── avs │ │ │ │ │ └── tokens.h │ │ │ ├── sb16_csp.h │ │ │ ├── sfnt_info.h │ │ │ ├── skl-tplg-interface.h │ │ │ ├── snd_ar_tokens.h │ │ │ ├── snd_sst_tokens.h │ │ │ ├── sof │ │ │ │ ├── abi.h │ │ │ │ ├── fw.h │ │ │ │ ├── header.h │ │ │ │ └── tokens.h │ │ │ ├── tlv.h │ │ │ └── usb_stream.h │ │ ├── video │ │ │ ├── edid.h │ │ │ ├── sisfb.h │ │ │ └── uvesafb.h │ │ └── xen │ │ │ ├── evtchn.h │ │ │ ├── gntalloc.h │ │ │ ├── gntdev.h │ │ │ └── privcmd.h │ ├── aarch64-macos.11 │ │ ├── AssertMacros.h │ │ ├── Availability.h │ │ ├── AvailabilityInternal.h │ │ ├── AvailabilityMacros.h │ │ ├── AvailabilityVersions.h │ │ ├── Block.h │ │ ├── CommonCrypto │ │ │ ├── CommonCrypto.h │ │ │ ├── CommonCryptoError.h │ │ │ ├── CommonCryptor.h │ │ │ ├── CommonDigest.h │ │ │ ├── CommonHMAC.h │ │ │ ├── CommonKeyDerivation.h │ │ │ └── CommonSymmetricKeywrap.h │ │ ├── ConditionalMacros.h │ │ ├── CoreFoundation │ │ │ ├── CFAvailability.h │ │ │ └── CFBase.h │ │ ├── MacTypes.h │ │ ├── TargetConditionals.h │ │ ├── __wctype.h │ │ ├── _ctermid.h │ │ ├── _ctype.h │ │ ├── _locale.h │ │ ├── _regex.h │ │ ├── _stdio.h │ │ ├── _types.h │ │ ├── _types │ │ │ ├── _intmax_t.h │ │ │ ├── _nl_item.h │ │ │ ├── _uint16_t.h │ │ │ ├── _uint32_t.h │ │ │ ├── _uint64_t.h │ │ │ ├── _uint8_t.h │ │ │ ├── _uintmax_t.h │ │ │ ├── _wctrans_t.h │ │ │ └── _wctype_t.h │ │ ├── _wctype.h │ │ ├── _xlocale.h │ │ ├── aio.h │ │ ├── alloca.h │ │ ├── ar.h │ │ ├── architecture │ │ │ └── byte_order.h │ │ ├── arm │ │ │ ├── _limits.h │ │ │ ├── _mcontext.h │ │ │ ├── _param.h │ │ │ ├── _types.h │ │ │ ├── arch.h │ │ │ ├── endian.h │ │ │ ├── limits.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── arpa │ │ │ └── inet.h │ │ ├── asl.h │ │ ├── assert.h │ │ ├── bsm │ │ │ └── audit.h │ │ ├── complex.h │ │ ├── copyfile.h │ │ ├── cpio.h │ │ ├── crt_externs.h │ │ ├── ctype.h │ │ ├── device │ │ │ └── device_types.h │ │ ├── dirent.h │ │ ├── dispatch │ │ │ ├── base.h │ │ │ ├── block.h │ │ │ ├── data.h │ │ │ ├── dispatch.h │ │ │ ├── group.h │ │ │ ├── io.h │ │ │ ├── object.h │ │ │ ├── once.h │ │ │ ├── queue.h │ │ │ ├── semaphore.h │ │ │ ├── source.h │ │ │ ├── time.h │ │ │ └── workloop.h │ │ ├── dlfcn.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── execinfo.h │ │ ├── fcntl.h │ │ ├── fenv.h │ │ ├── float.h │ │ ├── fmtmsg.h │ │ ├── fnmatch.h │ │ ├── fstab.h │ │ ├── fts.h │ │ ├── ftw.h │ │ ├── gethostuuid.h │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── grp.h │ │ ├── hfs │ │ │ ├── hfs_format.h │ │ │ └── hfs_unistr.h │ │ ├── iconv.h │ │ ├── ifaddrs.h │ │ ├── inttypes.h │ │ ├── langinfo.h │ │ ├── launch.h │ │ ├── libgen.h │ │ ├── libkern │ │ │ ├── OSAtomic.h │ │ │ ├── OSAtomicDeprecated.h │ │ │ ├── OSAtomicQueue.h │ │ │ ├── OSByteOrder.h │ │ │ ├── OSCacheControl.h │ │ │ ├── OSSpinLockDeprecated.h │ │ │ ├── OSTypes.h │ │ │ ├── _OSByteOrder.h │ │ │ └── arm │ │ │ │ └── OSByteOrder.h │ │ ├── libproc.h │ │ ├── limits.h │ │ ├── locale.h │ │ ├── mach-o │ │ │ ├── arch.h │ │ │ ├── arm64 │ │ │ │ └── reloc.h │ │ │ ├── compact_unwind_encoding.h │ │ │ ├── dyld.h │ │ │ ├── fat.h │ │ │ ├── getsect.h │ │ │ ├── loader.h │ │ │ ├── nlist.h │ │ │ ├── ranlib.h │ │ │ ├── reloc.h │ │ │ ├── stab.h │ │ │ └── x86_64 │ │ │ │ └── reloc.h │ │ ├── mach │ │ │ ├── arm │ │ │ │ ├── _structs.h │ │ │ │ ├── boolean.h │ │ │ │ ├── exception.h │ │ │ │ ├── kern_return.h │ │ │ │ ├── processor_info.h │ │ │ │ ├── rpc.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ ├── boolean.h │ │ │ ├── clock.h │ │ │ ├── clock_priv.h │ │ │ ├── clock_types.h │ │ │ ├── dyld_kernel.h │ │ │ ├── error.h │ │ │ ├── exception_types.h │ │ │ ├── host_info.h │ │ │ ├── host_notify.h │ │ │ ├── host_priv.h │ │ │ ├── host_security.h │ │ │ ├── host_special_ports.h │ │ │ ├── kern_return.h │ │ │ ├── kmod.h │ │ │ ├── lock_set.h │ │ │ ├── mach.h │ │ │ ├── mach_error.h │ │ │ ├── mach_host.h │ │ │ ├── mach_init.h │ │ │ ├── mach_interface.h │ │ │ ├── mach_port.h │ │ │ ├── mach_time.h │ │ │ ├── mach_traps.h │ │ │ ├── mach_types.h │ │ │ ├── mach_voucher_types.h │ │ │ ├── machine.h │ │ │ ├── machine │ │ │ │ ├── _structs.h │ │ │ │ ├── boolean.h │ │ │ │ ├── exception.h │ │ │ │ ├── kern_return.h │ │ │ │ ├── processor_info.h │ │ │ │ ├── rpc.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ ├── memory_object_types.h │ │ │ ├── message.h │ │ │ ├── mig.h │ │ │ ├── mig_errors.h │ │ │ ├── mig_strncpy_zerofill_support.h │ │ │ ├── ndr.h │ │ │ ├── notify.h │ │ │ ├── policy.h │ │ │ ├── port.h │ │ │ ├── processor.h │ │ │ ├── processor_info.h │ │ │ ├── processor_set.h │ │ │ ├── rpc.h │ │ │ ├── semaphore.h │ │ │ ├── std_types.h │ │ │ ├── sync_policy.h │ │ │ ├── task.h │ │ │ ├── task_info.h │ │ │ ├── task_inspect.h │ │ │ ├── task_policy.h │ │ │ ├── task_special_ports.h │ │ │ ├── thread_act.h │ │ │ ├── thread_info.h │ │ │ ├── thread_policy.h │ │ │ ├── thread_special_ports.h │ │ │ ├── thread_state.h │ │ │ ├── thread_status.h │ │ │ ├── thread_switch.h │ │ │ ├── time_value.h │ │ │ ├── vm_attributes.h │ │ │ ├── vm_behavior.h │ │ │ ├── vm_inherit.h │ │ │ ├── vm_map.h │ │ │ ├── vm_page_size.h │ │ │ ├── vm_param.h │ │ │ ├── vm_prot.h │ │ │ ├── vm_purgable.h │ │ │ ├── vm_region.h │ │ │ ├── vm_statistics.h │ │ │ ├── vm_sync.h │ │ │ └── vm_types.h │ │ ├── mach_debug │ │ │ ├── hash_info.h │ │ │ ├── ipc_info.h │ │ │ ├── lockgroup_info.h │ │ │ ├── mach_debug_types.h │ │ │ ├── page_info.h │ │ │ ├── vm_info.h │ │ │ └── zone_info.h │ │ ├── machine │ │ │ ├── _mcontext.h │ │ │ ├── _param.h │ │ │ ├── _types.h │ │ │ ├── endian.h │ │ │ ├── limits.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── malloc │ │ │ ├── _malloc.h │ │ │ └── malloc.h │ │ ├── math.h │ │ ├── memory.h │ │ ├── monetary.h │ │ ├── ndbm.h │ │ ├── net │ │ │ ├── ethernet.h │ │ │ ├── if.h │ │ │ ├── if_dl.h │ │ │ ├── if_var.h │ │ │ ├── net_kev.h │ │ │ └── route.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ ├── in.h │ │ │ └── tcp.h │ │ ├── netinet6 │ │ │ └── in6.h │ │ ├── nl_types.h │ │ ├── objc │ │ │ ├── NSObjCRuntime.h │ │ │ ├── NSObject.h │ │ │ ├── message.h │ │ │ ├── objc-api.h │ │ │ ├── objc-runtime.h │ │ │ ├── objc-sync.h │ │ │ ├── objc.h │ │ │ └── runtime.h │ │ ├── os │ │ │ ├── availability.h │ │ │ ├── base.h │ │ │ ├── clock.h │ │ │ ├── lock.h │ │ │ ├── log.h │ │ │ ├── object.h │ │ │ ├── trace.h │ │ │ ├── trace_base.h │ │ │ ├── workgroup.h │ │ │ ├── workgroup_base.h │ │ │ ├── workgroup_interval.h │ │ │ ├── workgroup_object.h │ │ │ └── workgroup_parallel.h │ │ ├── poll.h │ │ ├── pthread.h │ │ ├── pthread │ │ │ ├── introspection.h │ │ │ ├── pthread.h │ │ │ ├── pthread_impl.h │ │ │ ├── qos.h │ │ │ └── sched.h │ │ ├── pwd.h │ │ ├── regex.h │ │ ├── runetype.h │ │ ├── sched.h │ │ ├── search.h │ │ ├── secure │ │ │ ├── _common.h │ │ │ ├── _stdio.h │ │ │ ├── _string.h │ │ │ └── _strings.h │ │ ├── semaphore.h │ │ ├── setjmp.h │ │ ├── signal.h │ │ ├── simd │ │ │ ├── base.h │ │ │ ├── common.h │ │ │ ├── conversion.h │ │ │ ├── extern.h │ │ │ ├── geometry.h │ │ │ ├── logic.h │ │ │ ├── math.h │ │ │ ├── matrix.h │ │ │ ├── matrix_types.h │ │ │ ├── packed.h │ │ │ ├── quaternion.h │ │ │ ├── simd.h │ │ │ ├── types.h │ │ │ ├── vector.h │ │ │ ├── vector_make.h │ │ │ └── vector_types.h │ │ ├── spawn.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── sys │ │ │ ├── _endian.h │ │ │ ├── _posix_availability.h │ │ │ ├── _pthread │ │ │ │ ├── _pthread_attr_t.h │ │ │ │ ├── _pthread_cond_t.h │ │ │ │ ├── _pthread_condattr_t.h │ │ │ │ ├── _pthread_key_t.h │ │ │ │ ├── _pthread_mutex_t.h │ │ │ │ ├── _pthread_mutexattr_t.h │ │ │ │ ├── _pthread_once_t.h │ │ │ │ ├── _pthread_rwlock_t.h │ │ │ │ ├── _pthread_rwlockattr_t.h │ │ │ │ ├── _pthread_t.h │ │ │ │ └── _pthread_types.h │ │ │ ├── _select.h │ │ │ ├── _symbol_aliasing.h │ │ │ ├── _types.h │ │ │ ├── _types │ │ │ │ ├── _blkcnt_t.h │ │ │ │ ├── _blksize_t.h │ │ │ │ ├── _caddr_t.h │ │ │ │ ├── _clock_t.h │ │ │ │ ├── _ct_rune_t.h │ │ │ │ ├── _dev_t.h │ │ │ │ ├── _errno_t.h │ │ │ │ ├── _fd_clr.h │ │ │ │ ├── _fd_copy.h │ │ │ │ ├── _fd_def.h │ │ │ │ ├── _fd_isset.h │ │ │ │ ├── _fd_set.h │ │ │ │ ├── _fd_setsize.h │ │ │ │ ├── _fd_zero.h │ │ │ │ ├── _filesec_t.h │ │ │ │ ├── _fsblkcnt_t.h │ │ │ │ ├── _fsfilcnt_t.h │ │ │ │ ├── _fsid_t.h │ │ │ │ ├── _fsobj_id_t.h │ │ │ │ ├── _gid_t.h │ │ │ │ ├── _guid_t.h │ │ │ │ ├── _id_t.h │ │ │ │ ├── _in_addr_t.h │ │ │ │ ├── _in_port_t.h │ │ │ │ ├── _ino64_t.h │ │ │ │ ├── _ino_t.h │ │ │ │ ├── _int16_t.h │ │ │ │ ├── _int32_t.h │ │ │ │ ├── _int64_t.h │ │ │ │ ├── _int8_t.h │ │ │ │ ├── _intptr_t.h │ │ │ │ ├── _iovec_t.h │ │ │ │ ├── _key_t.h │ │ │ │ ├── _mach_port_t.h │ │ │ │ ├── _mbstate_t.h │ │ │ │ ├── _mode_t.h │ │ │ │ ├── _nlink_t.h │ │ │ │ ├── _null.h │ │ │ │ ├── _o_dsync.h │ │ │ │ ├── _o_sync.h │ │ │ │ ├── _off_t.h │ │ │ │ ├── _os_inline.h │ │ │ │ ├── _pid_t.h │ │ │ │ ├── _posix_vdisable.h │ │ │ │ ├── _rsize_t.h │ │ │ │ ├── _rune_t.h │ │ │ │ ├── _s_ifmt.h │ │ │ │ ├── _sa_family_t.h │ │ │ │ ├── _seek_set.h │ │ │ │ ├── _sigaltstack.h │ │ │ │ ├── _sigset_t.h │ │ │ │ ├── _size_t.h │ │ │ │ ├── _socklen_t.h │ │ │ │ ├── _ssize_t.h │ │ │ │ ├── _suseconds_t.h │ │ │ │ ├── _time_t.h │ │ │ │ ├── _timespec.h │ │ │ │ ├── _timeval.h │ │ │ │ ├── _timeval32.h │ │ │ │ ├── _timeval64.h │ │ │ │ ├── _u_char.h │ │ │ │ ├── _u_int.h │ │ │ │ ├── _u_int16_t.h │ │ │ │ ├── _u_int32_t.h │ │ │ │ ├── _u_int64_t.h │ │ │ │ ├── _u_int8_t.h │ │ │ │ ├── _u_short.h │ │ │ │ ├── _ucontext.h │ │ │ │ ├── _uid_t.h │ │ │ │ ├── _uintptr_t.h │ │ │ │ ├── _useconds_t.h │ │ │ │ ├── _uuid_t.h │ │ │ │ ├── _va_list.h │ │ │ │ ├── _wchar_t.h │ │ │ │ └── _wint_t.h │ │ │ ├── acl.h │ │ │ ├── aio.h │ │ │ ├── appleapiopts.h │ │ │ ├── attr.h │ │ │ ├── cdefs.h │ │ │ ├── clonefile.h │ │ │ ├── dirent.h │ │ │ ├── errno.h │ │ │ ├── event.h │ │ │ ├── fcntl.h │ │ │ ├── file.h │ │ │ ├── filio.h │ │ │ ├── ioccom.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── kauth.h │ │ │ ├── kern_control.h │ │ │ ├── lock.h │ │ │ ├── mman.h │ │ │ ├── mount.h │ │ │ ├── msg.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── proc.h │ │ │ ├── proc_info.h │ │ │ ├── qos.h │ │ │ ├── queue.h │ │ │ ├── random.h │ │ │ ├── resource.h │ │ │ ├── select.h │ │ │ ├── sem.h │ │ │ ├── semaphore.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockio.h │ │ │ ├── spawn.h │ │ │ ├── stat.h │ │ │ ├── statvfs.h │ │ │ ├── stdio.h │ │ │ ├── syscall.h │ │ │ ├── sysctl.h │ │ │ ├── syslimits.h │ │ │ ├── syslog.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── times.h │ │ │ ├── ttycom.h │ │ │ ├── ttydefaults.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ ├── ucred.h │ │ │ ├── uio.h │ │ │ ├── un.h │ │ │ ├── unistd.h │ │ │ ├── utsname.h │ │ │ ├── vm.h │ │ │ ├── vnode.h │ │ │ ├── wait.h │ │ │ └── xattr.h │ │ ├── sysexits.h │ │ ├── syslog.h │ │ ├── tar.h │ │ ├── termios.h │ │ ├── tgmath.h │ │ ├── time.h │ │ ├── ucontext.h │ │ ├── ulimit.h │ │ ├── unistd.h │ │ ├── util.h │ │ ├── utime.h │ │ ├── utmp.h │ │ ├── utmpx.h │ │ ├── uuid │ │ │ └── uuid.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ ├── wordexp.h │ │ ├── xlocale.h │ │ ├── xlocale │ │ │ ├── __wctype.h │ │ │ ├── _ctype.h │ │ │ ├── _inttypes.h │ │ │ ├── _langinfo.h │ │ │ ├── _monetary.h │ │ │ ├── _regex.h │ │ │ ├── _stdio.h │ │ │ ├── _stdlib.h │ │ │ ├── _string.h │ │ │ ├── _time.h │ │ │ ├── _wchar.h │ │ │ └── _wctype.h │ │ └── xpc │ │ │ ├── activity.h │ │ │ ├── availability.h │ │ │ ├── base.h │ │ │ ├── connection.h │ │ │ ├── debug.h │ │ │ ├── endpoint.h │ │ │ └── xpc.h │ ├── aarch64-macos.12 │ │ ├── AssertMacros.h │ │ ├── Availability.h │ │ ├── AvailabilityInternal.h │ │ ├── AvailabilityMacros.h │ │ ├── AvailabilityVersions.h │ │ ├── Block.h │ │ ├── CommonCrypto │ │ │ ├── CommonCrypto.h │ │ │ ├── CommonCryptoError.h │ │ │ ├── CommonCryptor.h │ │ │ ├── CommonDigest.h │ │ │ ├── CommonHMAC.h │ │ │ ├── CommonKeyDerivation.h │ │ │ └── CommonSymmetricKeywrap.h │ │ ├── ConditionalMacros.h │ │ ├── CoreFoundation │ │ │ ├── CFAvailability.h │ │ │ └── CFBase.h │ │ ├── MacTypes.h │ │ ├── TargetConditionals.h │ │ ├── __wctype.h │ │ ├── _ctermid.h │ │ ├── _ctype.h │ │ ├── _locale.h │ │ ├── _regex.h │ │ ├── _stdio.h │ │ ├── _types.h │ │ ├── _types │ │ │ ├── _intmax_t.h │ │ │ ├── _nl_item.h │ │ │ ├── _uint16_t.h │ │ │ ├── _uint32_t.h │ │ │ ├── _uint64_t.h │ │ │ ├── _uint8_t.h │ │ │ ├── _uintmax_t.h │ │ │ ├── _wctrans_t.h │ │ │ └── _wctype_t.h │ │ ├── _wctype.h │ │ ├── _xlocale.h │ │ ├── aio.h │ │ ├── alloca.h │ │ ├── ar.h │ │ ├── architecture │ │ │ └── byte_order.h │ │ ├── arm │ │ │ ├── _limits.h │ │ │ ├── _mcontext.h │ │ │ ├── _param.h │ │ │ ├── _types.h │ │ │ ├── arch.h │ │ │ ├── endian.h │ │ │ ├── limits.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── arpa │ │ │ └── inet.h │ │ ├── asl.h │ │ ├── assert.h │ │ ├── bsm │ │ │ └── audit.h │ │ ├── complex.h │ │ ├── copyfile.h │ │ ├── cpio.h │ │ ├── crt_externs.h │ │ ├── ctype.h │ │ ├── device │ │ │ └── device_types.h │ │ ├── dirent.h │ │ ├── dispatch │ │ │ ├── base.h │ │ │ ├── block.h │ │ │ ├── data.h │ │ │ ├── dispatch.h │ │ │ ├── group.h │ │ │ ├── io.h │ │ │ ├── object.h │ │ │ ├── once.h │ │ │ ├── queue.h │ │ │ ├── semaphore.h │ │ │ ├── source.h │ │ │ ├── time.h │ │ │ └── workloop.h │ │ ├── dlfcn.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── execinfo.h │ │ ├── fcntl.h │ │ ├── fenv.h │ │ ├── float.h │ │ ├── fmtmsg.h │ │ ├── fnmatch.h │ │ ├── fstab.h │ │ ├── fts.h │ │ ├── ftw.h │ │ ├── gethostuuid.h │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── grp.h │ │ ├── hfs │ │ │ ├── hfs_format.h │ │ │ └── hfs_unistr.h │ │ ├── iconv.h │ │ ├── ifaddrs.h │ │ ├── inttypes.h │ │ ├── langinfo.h │ │ ├── launch.h │ │ ├── libgen.h │ │ ├── libkern │ │ │ ├── OSAtomic.h │ │ │ ├── OSAtomicDeprecated.h │ │ │ ├── OSAtomicQueue.h │ │ │ ├── OSByteOrder.h │ │ │ ├── OSCacheControl.h │ │ │ ├── OSSpinLockDeprecated.h │ │ │ ├── OSTypes.h │ │ │ ├── _OSByteOrder.h │ │ │ └── arm │ │ │ │ └── OSByteOrder.h │ │ ├── libproc.h │ │ ├── limits.h │ │ ├── locale.h │ │ ├── mach-o │ │ │ ├── arch.h │ │ │ ├── arm64 │ │ │ │ └── reloc.h │ │ │ ├── compact_unwind_encoding.h │ │ │ ├── dyld.h │ │ │ ├── fat.h │ │ │ ├── getsect.h │ │ │ ├── loader.h │ │ │ ├── nlist.h │ │ │ ├── ranlib.h │ │ │ ├── reloc.h │ │ │ ├── stab.h │ │ │ └── x86_64 │ │ │ │ └── reloc.h │ │ ├── mach │ │ │ ├── arm │ │ │ │ ├── _structs.h │ │ │ │ ├── boolean.h │ │ │ │ ├── exception.h │ │ │ │ ├── kern_return.h │ │ │ │ ├── processor_info.h │ │ │ │ ├── rpc.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ ├── boolean.h │ │ │ ├── clock.h │ │ │ ├── clock_priv.h │ │ │ ├── clock_types.h │ │ │ ├── dyld_kernel.h │ │ │ ├── error.h │ │ │ ├── exception_types.h │ │ │ ├── host_info.h │ │ │ ├── host_notify.h │ │ │ ├── host_priv.h │ │ │ ├── host_security.h │ │ │ ├── host_special_ports.h │ │ │ ├── kern_return.h │ │ │ ├── kmod.h │ │ │ ├── lock_set.h │ │ │ ├── mach.h │ │ │ ├── mach_error.h │ │ │ ├── mach_host.h │ │ │ ├── mach_init.h │ │ │ ├── mach_interface.h │ │ │ ├── mach_port.h │ │ │ ├── mach_time.h │ │ │ ├── mach_traps.h │ │ │ ├── mach_types.h │ │ │ ├── mach_voucher_types.h │ │ │ ├── machine.h │ │ │ ├── machine │ │ │ │ ├── _structs.h │ │ │ │ ├── boolean.h │ │ │ │ ├── exception.h │ │ │ │ ├── kern_return.h │ │ │ │ ├── processor_info.h │ │ │ │ ├── rpc.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ ├── memory_object_types.h │ │ │ ├── message.h │ │ │ ├── mig.h │ │ │ ├── mig_errors.h │ │ │ ├── mig_strncpy_zerofill_support.h │ │ │ ├── ndr.h │ │ │ ├── notify.h │ │ │ ├── policy.h │ │ │ ├── port.h │ │ │ ├── processor.h │ │ │ ├── processor_info.h │ │ │ ├── processor_set.h │ │ │ ├── rpc.h │ │ │ ├── semaphore.h │ │ │ ├── std_types.h │ │ │ ├── sync_policy.h │ │ │ ├── task.h │ │ │ ├── task_info.h │ │ │ ├── task_inspect.h │ │ │ ├── task_policy.h │ │ │ ├── task_special_ports.h │ │ │ ├── thread_act.h │ │ │ ├── thread_info.h │ │ │ ├── thread_policy.h │ │ │ ├── thread_special_ports.h │ │ │ ├── thread_state.h │ │ │ ├── thread_status.h │ │ │ ├── thread_switch.h │ │ │ ├── time_value.h │ │ │ ├── vm_attributes.h │ │ │ ├── vm_behavior.h │ │ │ ├── vm_inherit.h │ │ │ ├── vm_map.h │ │ │ ├── vm_page_size.h │ │ │ ├── vm_param.h │ │ │ ├── vm_prot.h │ │ │ ├── vm_purgable.h │ │ │ ├── vm_region.h │ │ │ ├── vm_statistics.h │ │ │ ├── vm_sync.h │ │ │ └── vm_types.h │ │ ├── mach_debug │ │ │ ├── hash_info.h │ │ │ ├── ipc_info.h │ │ │ ├── lockgroup_info.h │ │ │ ├── mach_debug_types.h │ │ │ ├── page_info.h │ │ │ ├── vm_info.h │ │ │ └── zone_info.h │ │ ├── machine │ │ │ ├── _mcontext.h │ │ │ ├── _param.h │ │ │ ├── _types.h │ │ │ ├── endian.h │ │ │ ├── limits.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── malloc │ │ │ ├── _malloc.h │ │ │ └── malloc.h │ │ ├── math.h │ │ ├── memory.h │ │ ├── monetary.h │ │ ├── ndbm.h │ │ ├── net │ │ │ ├── ethernet.h │ │ │ ├── if.h │ │ │ ├── if_dl.h │ │ │ ├── if_var.h │ │ │ ├── net_kev.h │ │ │ └── route.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ ├── in.h │ │ │ └── tcp.h │ │ ├── netinet6 │ │ │ └── in6.h │ │ ├── nl_types.h │ │ ├── objc │ │ │ ├── NSObjCRuntime.h │ │ │ ├── NSObject.h │ │ │ ├── message.h │ │ │ ├── objc-api.h │ │ │ ├── objc-runtime.h │ │ │ ├── objc-sync.h │ │ │ ├── objc.h │ │ │ └── runtime.h │ │ ├── os │ │ │ ├── availability.h │ │ │ ├── base.h │ │ │ ├── clock.h │ │ │ ├── lock.h │ │ │ ├── log.h │ │ │ ├── object.h │ │ │ ├── trace.h │ │ │ ├── trace_base.h │ │ │ ├── workgroup.h │ │ │ ├── workgroup_base.h │ │ │ ├── workgroup_interval.h │ │ │ ├── workgroup_object.h │ │ │ └── workgroup_parallel.h │ │ ├── poll.h │ │ ├── pthread.h │ │ ├── pthread │ │ │ ├── introspection.h │ │ │ ├── pthread.h │ │ │ ├── pthread_impl.h │ │ │ ├── qos.h │ │ │ └── sched.h │ │ ├── pwd.h │ │ ├── regex.h │ │ ├── runetype.h │ │ ├── sched.h │ │ ├── search.h │ │ ├── secure │ │ │ ├── _common.h │ │ │ ├── _stdio.h │ │ │ ├── _string.h │ │ │ └── _strings.h │ │ ├── semaphore.h │ │ ├── setjmp.h │ │ ├── signal.h │ │ ├── simd │ │ │ ├── base.h │ │ │ ├── common.h │ │ │ ├── conversion.h │ │ │ ├── extern.h │ │ │ ├── geometry.h │ │ │ ├── logic.h │ │ │ ├── math.h │ │ │ ├── matrix.h │ │ │ ├── matrix_types.h │ │ │ ├── packed.h │ │ │ ├── quaternion.h │ │ │ ├── simd.h │ │ │ ├── types.h │ │ │ ├── vector.h │ │ │ ├── vector_make.h │ │ │ └── vector_types.h │ │ ├── spawn.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── sys │ │ │ ├── _endian.h │ │ │ ├── _posix_availability.h │ │ │ ├── _pthread │ │ │ │ ├── _pthread_attr_t.h │ │ │ │ ├── _pthread_cond_t.h │ │ │ │ ├── _pthread_condattr_t.h │ │ │ │ ├── _pthread_key_t.h │ │ │ │ ├── _pthread_mutex_t.h │ │ │ │ ├── _pthread_mutexattr_t.h │ │ │ │ ├── _pthread_once_t.h │ │ │ │ ├── _pthread_rwlock_t.h │ │ │ │ ├── _pthread_rwlockattr_t.h │ │ │ │ ├── _pthread_t.h │ │ │ │ └── _pthread_types.h │ │ │ ├── _select.h │ │ │ ├── _symbol_aliasing.h │ │ │ ├── _types.h │ │ │ ├── _types │ │ │ │ ├── _blkcnt_t.h │ │ │ │ ├── _blksize_t.h │ │ │ │ ├── _caddr_t.h │ │ │ │ ├── _clock_t.h │ │ │ │ ├── _ct_rune_t.h │ │ │ │ ├── _dev_t.h │ │ │ │ ├── _errno_t.h │ │ │ │ ├── _fd_clr.h │ │ │ │ ├── _fd_copy.h │ │ │ │ ├── _fd_def.h │ │ │ │ ├── _fd_isset.h │ │ │ │ ├── _fd_set.h │ │ │ │ ├── _fd_setsize.h │ │ │ │ ├── _fd_zero.h │ │ │ │ ├── _filesec_t.h │ │ │ │ ├── _fsblkcnt_t.h │ │ │ │ ├── _fsfilcnt_t.h │ │ │ │ ├── _fsid_t.h │ │ │ │ ├── _fsobj_id_t.h │ │ │ │ ├── _gid_t.h │ │ │ │ ├── _guid_t.h │ │ │ │ ├── _id_t.h │ │ │ │ ├── _in_addr_t.h │ │ │ │ ├── _in_port_t.h │ │ │ │ ├── _ino64_t.h │ │ │ │ ├── _ino_t.h │ │ │ │ ├── _int16_t.h │ │ │ │ ├── _int32_t.h │ │ │ │ ├── _int64_t.h │ │ │ │ ├── _int8_t.h │ │ │ │ ├── _intptr_t.h │ │ │ │ ├── _iovec_t.h │ │ │ │ ├── _key_t.h │ │ │ │ ├── _mach_port_t.h │ │ │ │ ├── _mbstate_t.h │ │ │ │ ├── _mode_t.h │ │ │ │ ├── _nlink_t.h │ │ │ │ ├── _null.h │ │ │ │ ├── _o_dsync.h │ │ │ │ ├── _o_sync.h │ │ │ │ ├── _off_t.h │ │ │ │ ├── _os_inline.h │ │ │ │ ├── _pid_t.h │ │ │ │ ├── _posix_vdisable.h │ │ │ │ ├── _rsize_t.h │ │ │ │ ├── _rune_t.h │ │ │ │ ├── _s_ifmt.h │ │ │ │ ├── _sa_family_t.h │ │ │ │ ├── _seek_set.h │ │ │ │ ├── _sigaltstack.h │ │ │ │ ├── _sigset_t.h │ │ │ │ ├── _size_t.h │ │ │ │ ├── _socklen_t.h │ │ │ │ ├── _ssize_t.h │ │ │ │ ├── _suseconds_t.h │ │ │ │ ├── _time_t.h │ │ │ │ ├── _timespec.h │ │ │ │ ├── _timeval.h │ │ │ │ ├── _timeval32.h │ │ │ │ ├── _timeval64.h │ │ │ │ ├── _u_char.h │ │ │ │ ├── _u_int.h │ │ │ │ ├── _u_int16_t.h │ │ │ │ ├── _u_int32_t.h │ │ │ │ ├── _u_int64_t.h │ │ │ │ ├── _u_int8_t.h │ │ │ │ ├── _u_short.h │ │ │ │ ├── _ucontext.h │ │ │ │ ├── _uid_t.h │ │ │ │ ├── _uintptr_t.h │ │ │ │ ├── _useconds_t.h │ │ │ │ ├── _uuid_t.h │ │ │ │ ├── _va_list.h │ │ │ │ ├── _wchar_t.h │ │ │ │ └── _wint_t.h │ │ │ ├── acl.h │ │ │ ├── aio.h │ │ │ ├── appleapiopts.h │ │ │ ├── attr.h │ │ │ ├── cdefs.h │ │ │ ├── clonefile.h │ │ │ ├── dirent.h │ │ │ ├── errno.h │ │ │ ├── event.h │ │ │ ├── fcntl.h │ │ │ ├── file.h │ │ │ ├── filio.h │ │ │ ├── ioccom.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── kauth.h │ │ │ ├── kern_control.h │ │ │ ├── lock.h │ │ │ ├── mman.h │ │ │ ├── mount.h │ │ │ ├── msg.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── proc.h │ │ │ ├── proc_info.h │ │ │ ├── qos.h │ │ │ ├── queue.h │ │ │ ├── random.h │ │ │ ├── resource.h │ │ │ ├── select.h │ │ │ ├── sem.h │ │ │ ├── semaphore.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockio.h │ │ │ ├── spawn.h │ │ │ ├── stat.h │ │ │ ├── statvfs.h │ │ │ ├── stdio.h │ │ │ ├── syscall.h │ │ │ ├── sysctl.h │ │ │ ├── syslimits.h │ │ │ ├── syslog.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── times.h │ │ │ ├── ttycom.h │ │ │ ├── ttydefaults.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ ├── ucred.h │ │ │ ├── uio.h │ │ │ ├── un.h │ │ │ ├── unistd.h │ │ │ ├── utsname.h │ │ │ ├── vm.h │ │ │ ├── vnode.h │ │ │ ├── wait.h │ │ │ └── xattr.h │ │ ├── sysexits.h │ │ ├── syslog.h │ │ ├── tar.h │ │ ├── termios.h │ │ ├── tgmath.h │ │ ├── time.h │ │ ├── ucontext.h │ │ ├── ulimit.h │ │ ├── unistd.h │ │ ├── util.h │ │ ├── utime.h │ │ ├── utmp.h │ │ ├── utmpx.h │ │ ├── uuid │ │ │ └── uuid.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ ├── wordexp.h │ │ ├── xlocale.h │ │ ├── xlocale │ │ │ ├── __wctype.h │ │ │ ├── _ctype.h │ │ │ ├── _inttypes.h │ │ │ ├── _langinfo.h │ │ │ ├── _monetary.h │ │ │ ├── _regex.h │ │ │ ├── _stdio.h │ │ │ ├── _stdlib.h │ │ │ ├── _string.h │ │ │ ├── _time.h │ │ │ ├── _wchar.h │ │ │ └── _wctype.h │ │ └── xpc │ │ │ ├── activity.h │ │ │ ├── availability.h │ │ │ ├── base.h │ │ │ ├── connection.h │ │ │ ├── debug.h │ │ │ ├── endpoint.h │ │ │ └── xpc.h │ ├── aarch64-macos.13 │ │ ├── AssertMacros.h │ │ ├── Availability.h │ │ ├── AvailabilityInternal.h │ │ ├── AvailabilityMacros.h │ │ ├── AvailabilityVersions.h │ │ ├── Block.h │ │ ├── CommonCrypto │ │ │ ├── CommonCrypto.h │ │ │ ├── CommonCryptoError.h │ │ │ ├── CommonCryptor.h │ │ │ ├── CommonDigest.h │ │ │ ├── CommonHMAC.h │ │ │ ├── CommonKeyDerivation.h │ │ │ └── CommonSymmetricKeywrap.h │ │ ├── ConditionalMacros.h │ │ ├── CoreFoundation │ │ │ ├── CFAvailability.h │ │ │ └── CFBase.h │ │ ├── MacTypes.h │ │ ├── TargetConditionals.h │ │ ├── __wctype.h │ │ ├── _ctermid.h │ │ ├── _ctype.h │ │ ├── _locale.h │ │ ├── _regex.h │ │ ├── _stdio.h │ │ ├── _types.h │ │ ├── _types │ │ │ ├── _intmax_t.h │ │ │ ├── _nl_item.h │ │ │ ├── _uint16_t.h │ │ │ ├── _uint32_t.h │ │ │ ├── _uint64_t.h │ │ │ ├── _uint8_t.h │ │ │ ├── _uintmax_t.h │ │ │ ├── _wctrans_t.h │ │ │ └── _wctype_t.h │ │ ├── _wctype.h │ │ ├── _xlocale.h │ │ ├── aio.h │ │ ├── alloca.h │ │ ├── ar.h │ │ ├── architecture │ │ │ └── byte_order.h │ │ ├── arm │ │ │ ├── _limits.h │ │ │ ├── _mcontext.h │ │ │ ├── _param.h │ │ │ ├── _types.h │ │ │ ├── arch.h │ │ │ ├── endian.h │ │ │ ├── limits.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── arpa │ │ │ └── inet.h │ │ ├── asl.h │ │ ├── assert.h │ │ ├── bsm │ │ │ └── audit.h │ │ ├── complex.h │ │ ├── copyfile.h │ │ ├── cpio.h │ │ ├── crt_externs.h │ │ ├── ctype.h │ │ ├── device │ │ │ └── device_types.h │ │ ├── dirent.h │ │ ├── dispatch │ │ │ ├── base.h │ │ │ ├── block.h │ │ │ ├── data.h │ │ │ ├── dispatch.h │ │ │ ├── group.h │ │ │ ├── io.h │ │ │ ├── object.h │ │ │ ├── once.h │ │ │ ├── queue.h │ │ │ ├── semaphore.h │ │ │ ├── source.h │ │ │ ├── time.h │ │ │ └── workloop.h │ │ ├── dlfcn.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── execinfo.h │ │ ├── fcntl.h │ │ ├── fenv.h │ │ ├── float.h │ │ ├── fmtmsg.h │ │ ├── fnmatch.h │ │ ├── fstab.h │ │ ├── fts.h │ │ ├── ftw.h │ │ ├── gethostuuid.h │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── grp.h │ │ ├── hfs │ │ │ ├── hfs_format.h │ │ │ └── hfs_unistr.h │ │ ├── iconv.h │ │ ├── ifaddrs.h │ │ ├── inttypes.h │ │ ├── langinfo.h │ │ ├── launch.h │ │ ├── libgen.h │ │ ├── libkern │ │ │ ├── OSAtomic.h │ │ │ ├── OSAtomicDeprecated.h │ │ │ ├── OSAtomicQueue.h │ │ │ ├── OSByteOrder.h │ │ │ ├── OSCacheControl.h │ │ │ ├── OSSpinLockDeprecated.h │ │ │ ├── OSTypes.h │ │ │ ├── _OSByteOrder.h │ │ │ └── arm │ │ │ │ └── OSByteOrder.h │ │ ├── libproc.h │ │ ├── limits.h │ │ ├── locale.h │ │ ├── mach-o │ │ │ ├── arch.h │ │ │ ├── arm64 │ │ │ │ └── reloc.h │ │ │ ├── compact_unwind_encoding.h │ │ │ ├── dyld.h │ │ │ ├── fat.h │ │ │ ├── getsect.h │ │ │ ├── loader.h │ │ │ ├── nlist.h │ │ │ ├── ranlib.h │ │ │ ├── reloc.h │ │ │ ├── stab.h │ │ │ └── x86_64 │ │ │ │ └── reloc.h │ │ ├── mach │ │ │ ├── arm │ │ │ │ ├── _structs.h │ │ │ │ ├── boolean.h │ │ │ │ ├── exception.h │ │ │ │ ├── kern_return.h │ │ │ │ ├── processor_info.h │ │ │ │ ├── rpc.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ ├── boolean.h │ │ │ ├── clock.h │ │ │ ├── clock_priv.h │ │ │ ├── clock_types.h │ │ │ ├── dyld_kernel.h │ │ │ ├── error.h │ │ │ ├── exception_types.h │ │ │ ├── host_info.h │ │ │ ├── host_notify.h │ │ │ ├── host_priv.h │ │ │ ├── host_security.h │ │ │ ├── host_special_ports.h │ │ │ ├── kern_return.h │ │ │ ├── kmod.h │ │ │ ├── lock_set.h │ │ │ ├── mach.h │ │ │ ├── mach_error.h │ │ │ ├── mach_host.h │ │ │ ├── mach_init.h │ │ │ ├── mach_interface.h │ │ │ ├── mach_port.h │ │ │ ├── mach_time.h │ │ │ ├── mach_traps.h │ │ │ ├── mach_types.h │ │ │ ├── mach_voucher_types.h │ │ │ ├── machine.h │ │ │ ├── machine │ │ │ │ ├── _structs.h │ │ │ │ ├── boolean.h │ │ │ │ ├── exception.h │ │ │ │ ├── kern_return.h │ │ │ │ ├── processor_info.h │ │ │ │ ├── rpc.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ ├── memory_object_types.h │ │ │ ├── message.h │ │ │ ├── mig.h │ │ │ ├── mig_errors.h │ │ │ ├── mig_strncpy_zerofill_support.h │ │ │ ├── ndr.h │ │ │ ├── notify.h │ │ │ ├── policy.h │ │ │ ├── port.h │ │ │ ├── processor.h │ │ │ ├── processor_info.h │ │ │ ├── processor_set.h │ │ │ ├── rpc.h │ │ │ ├── semaphore.h │ │ │ ├── std_types.h │ │ │ ├── sync_policy.h │ │ │ ├── task.h │ │ │ ├── task_info.h │ │ │ ├── task_inspect.h │ │ │ ├── task_policy.h │ │ │ ├── task_special_ports.h │ │ │ ├── thread_act.h │ │ │ ├── thread_info.h │ │ │ ├── thread_policy.h │ │ │ ├── thread_special_ports.h │ │ │ ├── thread_state.h │ │ │ ├── thread_status.h │ │ │ ├── thread_switch.h │ │ │ ├── time_value.h │ │ │ ├── vm_attributes.h │ │ │ ├── vm_behavior.h │ │ │ ├── vm_inherit.h │ │ │ ├── vm_map.h │ │ │ ├── vm_page_size.h │ │ │ ├── vm_param.h │ │ │ ├── vm_prot.h │ │ │ ├── vm_purgable.h │ │ │ ├── vm_region.h │ │ │ ├── vm_statistics.h │ │ │ ├── vm_sync.h │ │ │ └── vm_types.h │ │ ├── mach_debug │ │ │ ├── hash_info.h │ │ │ ├── ipc_info.h │ │ │ ├── lockgroup_info.h │ │ │ ├── mach_debug_types.h │ │ │ ├── page_info.h │ │ │ ├── vm_info.h │ │ │ └── zone_info.h │ │ ├── machine │ │ │ ├── _mcontext.h │ │ │ ├── _param.h │ │ │ ├── _types.h │ │ │ ├── endian.h │ │ │ ├── limits.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── malloc │ │ │ ├── _malloc.h │ │ │ └── malloc.h │ │ ├── math.h │ │ ├── memory.h │ │ ├── monetary.h │ │ ├── ndbm.h │ │ ├── net │ │ │ ├── ethernet.h │ │ │ ├── if.h │ │ │ ├── if_dl.h │ │ │ ├── if_var.h │ │ │ ├── net_kev.h │ │ │ └── route.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ ├── in.h │ │ │ └── tcp.h │ │ ├── netinet6 │ │ │ └── in6.h │ │ ├── nl_types.h │ │ ├── objc │ │ │ ├── NSObjCRuntime.h │ │ │ ├── NSObject.h │ │ │ ├── message.h │ │ │ ├── objc-api.h │ │ │ ├── objc-runtime.h │ │ │ ├── objc-sync.h │ │ │ ├── objc.h │ │ │ └── runtime.h │ │ ├── os │ │ │ ├── availability.h │ │ │ ├── base.h │ │ │ ├── clock.h │ │ │ ├── lock.h │ │ │ ├── log.h │ │ │ ├── object.h │ │ │ ├── trace.h │ │ │ ├── trace_base.h │ │ │ ├── workgroup.h │ │ │ ├── workgroup_base.h │ │ │ ├── workgroup_interval.h │ │ │ ├── workgroup_object.h │ │ │ └── workgroup_parallel.h │ │ ├── poll.h │ │ ├── pthread.h │ │ ├── pthread │ │ │ ├── introspection.h │ │ │ ├── pthread.h │ │ │ ├── pthread_impl.h │ │ │ ├── qos.h │ │ │ └── sched.h │ │ ├── pwd.h │ │ ├── regex.h │ │ ├── runetype.h │ │ ├── sched.h │ │ ├── search.h │ │ ├── secure │ │ │ ├── _common.h │ │ │ ├── _stdio.h │ │ │ ├── _string.h │ │ │ └── _strings.h │ │ ├── semaphore.h │ │ ├── setjmp.h │ │ ├── signal.h │ │ ├── simd │ │ │ ├── base.h │ │ │ ├── common.h │ │ │ ├── conversion.h │ │ │ ├── extern.h │ │ │ ├── geometry.h │ │ │ ├── logic.h │ │ │ ├── math.h │ │ │ ├── matrix.h │ │ │ ├── matrix_types.h │ │ │ ├── packed.h │ │ │ ├── quaternion.h │ │ │ ├── simd.h │ │ │ ├── types.h │ │ │ ├── vector.h │ │ │ ├── vector_make.h │ │ │ └── vector_types.h │ │ ├── spawn.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── sys │ │ │ ├── _endian.h │ │ │ ├── _posix_availability.h │ │ │ ├── _pthread │ │ │ │ ├── _pthread_attr_t.h │ │ │ │ ├── _pthread_cond_t.h │ │ │ │ ├── _pthread_condattr_t.h │ │ │ │ ├── _pthread_key_t.h │ │ │ │ ├── _pthread_mutex_t.h │ │ │ │ ├── _pthread_mutexattr_t.h │ │ │ │ ├── _pthread_once_t.h │ │ │ │ ├── _pthread_rwlock_t.h │ │ │ │ ├── _pthread_rwlockattr_t.h │ │ │ │ ├── _pthread_t.h │ │ │ │ └── _pthread_types.h │ │ │ ├── _select.h │ │ │ ├── _symbol_aliasing.h │ │ │ ├── _types.h │ │ │ ├── _types │ │ │ │ ├── _blkcnt_t.h │ │ │ │ ├── _blksize_t.h │ │ │ │ ├── _caddr_t.h │ │ │ │ ├── _clock_t.h │ │ │ │ ├── _ct_rune_t.h │ │ │ │ ├── _dev_t.h │ │ │ │ ├── _errno_t.h │ │ │ │ ├── _fd_clr.h │ │ │ │ ├── _fd_copy.h │ │ │ │ ├── _fd_def.h │ │ │ │ ├── _fd_isset.h │ │ │ │ ├── _fd_set.h │ │ │ │ ├── _fd_setsize.h │ │ │ │ ├── _fd_zero.h │ │ │ │ ├── _filesec_t.h │ │ │ │ ├── _fsblkcnt_t.h │ │ │ │ ├── _fsfilcnt_t.h │ │ │ │ ├── _fsid_t.h │ │ │ │ ├── _fsobj_id_t.h │ │ │ │ ├── _gid_t.h │ │ │ │ ├── _guid_t.h │ │ │ │ ├── _id_t.h │ │ │ │ ├── _in_addr_t.h │ │ │ │ ├── _in_port_t.h │ │ │ │ ├── _ino64_t.h │ │ │ │ ├── _ino_t.h │ │ │ │ ├── _int16_t.h │ │ │ │ ├── _int32_t.h │ │ │ │ ├── _int64_t.h │ │ │ │ ├── _int8_t.h │ │ │ │ ├── _intptr_t.h │ │ │ │ ├── _iovec_t.h │ │ │ │ ├── _key_t.h │ │ │ │ ├── _mach_port_t.h │ │ │ │ ├── _mbstate_t.h │ │ │ │ ├── _mode_t.h │ │ │ │ ├── _nlink_t.h │ │ │ │ ├── _null.h │ │ │ │ ├── _o_dsync.h │ │ │ │ ├── _o_sync.h │ │ │ │ ├── _off_t.h │ │ │ │ ├── _os_inline.h │ │ │ │ ├── _pid_t.h │ │ │ │ ├── _posix_vdisable.h │ │ │ │ ├── _rsize_t.h │ │ │ │ ├── _rune_t.h │ │ │ │ ├── _s_ifmt.h │ │ │ │ ├── _sa_family_t.h │ │ │ │ ├── _seek_set.h │ │ │ │ ├── _sigaltstack.h │ │ │ │ ├── _sigset_t.h │ │ │ │ ├── _size_t.h │ │ │ │ ├── _socklen_t.h │ │ │ │ ├── _ssize_t.h │ │ │ │ ├── _suseconds_t.h │ │ │ │ ├── _time_t.h │ │ │ │ ├── _timespec.h │ │ │ │ ├── _timeval.h │ │ │ │ ├── _timeval32.h │ │ │ │ ├── _timeval64.h │ │ │ │ ├── _u_char.h │ │ │ │ ├── _u_int.h │ │ │ │ ├── _u_int16_t.h │ │ │ │ ├── _u_int32_t.h │ │ │ │ ├── _u_int64_t.h │ │ │ │ ├── _u_int8_t.h │ │ │ │ ├── _u_short.h │ │ │ │ ├── _ucontext.h │ │ │ │ ├── _uid_t.h │ │ │ │ ├── _uintptr_t.h │ │ │ │ ├── _useconds_t.h │ │ │ │ ├── _uuid_t.h │ │ │ │ ├── _va_list.h │ │ │ │ ├── _wchar_t.h │ │ │ │ └── _wint_t.h │ │ │ ├── acl.h │ │ │ ├── aio.h │ │ │ ├── appleapiopts.h │ │ │ ├── attr.h │ │ │ ├── cdefs.h │ │ │ ├── clonefile.h │ │ │ ├── dirent.h │ │ │ ├── errno.h │ │ │ ├── event.h │ │ │ ├── fcntl.h │ │ │ ├── file.h │ │ │ ├── filio.h │ │ │ ├── ioccom.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── kauth.h │ │ │ ├── kern_control.h │ │ │ ├── lock.h │ │ │ ├── mman.h │ │ │ ├── mount.h │ │ │ ├── msg.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── proc.h │ │ │ ├── proc_info.h │ │ │ ├── qos.h │ │ │ ├── queue.h │ │ │ ├── random.h │ │ │ ├── resource.h │ │ │ ├── select.h │ │ │ ├── sem.h │ │ │ ├── semaphore.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockio.h │ │ │ ├── spawn.h │ │ │ ├── stat.h │ │ │ ├── statvfs.h │ │ │ ├── stdio.h │ │ │ ├── syscall.h │ │ │ ├── sysctl.h │ │ │ ├── syslimits.h │ │ │ ├── syslog.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── times.h │ │ │ ├── ttycom.h │ │ │ ├── ttydefaults.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ ├── ucred.h │ │ │ ├── uio.h │ │ │ ├── un.h │ │ │ ├── unistd.h │ │ │ ├── utsname.h │ │ │ ├── vm.h │ │ │ ├── vnode.h │ │ │ ├── wait.h │ │ │ └── xattr.h │ │ ├── sysexits.h │ │ ├── syslog.h │ │ ├── tar.h │ │ ├── termios.h │ │ ├── tgmath.h │ │ ├── time.h │ │ ├── ucontext.h │ │ ├── ulimit.h │ │ ├── unistd.h │ │ ├── util.h │ │ ├── utime.h │ │ ├── utmp.h │ │ ├── utmpx.h │ │ ├── uuid │ │ │ └── uuid.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ ├── wordexp.h │ │ ├── xlocale.h │ │ ├── xlocale │ │ │ ├── __wctype.h │ │ │ ├── _ctype.h │ │ │ ├── _inttypes.h │ │ │ ├── _langinfo.h │ │ │ ├── _monetary.h │ │ │ ├── _regex.h │ │ │ ├── _stdio.h │ │ │ ├── _stdlib.h │ │ │ ├── _string.h │ │ │ ├── _time.h │ │ │ ├── _wchar.h │ │ │ └── _wctype.h │ │ └── xpc │ │ │ ├── activity.h │ │ │ ├── availability.h │ │ │ ├── base.h │ │ │ ├── connection.h │ │ │ ├── debug.h │ │ │ ├── endpoint.h │ │ │ └── xpc.h │ ├── arm-linux │ │ ├── asm-generic │ │ │ ├── auxvec.h │ │ │ ├── bitsperlong.h │ │ │ ├── bpf_perf_event.h │ │ │ ├── errno-base.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── hugetlb_encode.h │ │ │ ├── int-l64.h │ │ │ ├── int-ll64.h │ │ │ ├── ioctl.h │ │ │ ├── ioctls.h │ │ │ ├── ipcbuf.h │ │ │ ├── kvm_para.h │ │ │ ├── mman-common.h │ │ │ ├── mman.h │ │ │ ├── msgbuf.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── posix_types.h │ │ │ ├── resource.h │ │ │ ├── sembuf.h │ │ │ ├── setup.h │ │ │ ├── shmbuf.h │ │ │ ├── siginfo.h │ │ │ ├── signal-defs.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockios.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── swab.h │ │ │ ├── termbits-common.h │ │ │ ├── termbits.h │ │ │ ├── termios.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ └── unistd.h │ │ ├── asm │ │ │ ├── auxvec.h │ │ │ ├── bitsperlong.h │ │ │ ├── bpf_perf_event.h │ │ │ ├── byteorder.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── hwcap.h │ │ │ ├── ioctl.h │ │ │ ├── ioctls.h │ │ │ ├── ipcbuf.h │ │ │ ├── kvm_para.h │ │ │ ├── mman.h │ │ │ ├── msgbuf.h │ │ │ ├── param.h │ │ │ ├── perf_regs.h │ │ │ ├── poll.h │ │ │ ├── posix_types.h │ │ │ ├── ptrace.h │ │ │ ├── resource.h │ │ │ ├── sembuf.h │ │ │ ├── setup.h │ │ │ ├── shmbuf.h │ │ │ ├── sigcontext.h │ │ │ ├── siginfo.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockios.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── swab.h │ │ │ ├── termbits.h │ │ │ ├── termios.h │ │ │ ├── types.h │ │ │ ├── unistd-eabi.h │ │ │ ├── unistd-oabi.h │ │ │ └── unistd.h │ │ ├── drm │ │ │ ├── amdgpu_drm.h │ │ │ ├── armada_drm.h │ │ │ ├── drm.h │ │ │ ├── drm_fourcc.h │ │ │ ├── drm_mode.h │ │ │ ├── drm_sarea.h │ │ │ ├── etnaviv_drm.h │ │ │ ├── exynos_drm.h │ │ │ ├── habanalabs_accel.h │ │ │ ├── i915_drm.h │ │ │ ├── ivpu_accel.h │ │ │ ├── lima_drm.h │ │ │ ├── msm_drm.h │ │ │ ├── nouveau_drm.h │ │ │ ├── omap_drm.h │ │ │ ├── panfrost_drm.h │ │ │ ├── qaic_accel.h │ │ │ ├── qxl_drm.h │ │ │ ├── radeon_drm.h │ │ │ ├── tegra_drm.h │ │ │ ├── v3d_drm.h │ │ │ ├── vc4_drm.h │ │ │ ├── vgem_drm.h │ │ │ ├── virtgpu_drm.h │ │ │ └── vmwgfx_drm.h │ │ ├── linux │ │ │ ├── acct.h │ │ │ ├── acrn.h │ │ │ ├── adb.h │ │ │ ├── adfs_fs.h │ │ │ ├── affs_hardblocks.h │ │ │ ├── agpgart.h │ │ │ ├── aio_abi.h │ │ │ ├── am437x-vpfe.h │ │ │ ├── amt.h │ │ │ ├── android │ │ │ │ ├── binder.h │ │ │ │ └── binderfs.h │ │ │ ├── apm_bios.h │ │ │ ├── arcfb.h │ │ │ ├── arm_sdei.h │ │ │ ├── aspeed-lpc-ctrl.h │ │ │ ├── aspeed-p2a-ctrl.h │ │ │ ├── aspeed-video.h │ │ │ ├── atalk.h │ │ │ ├── atm.h │ │ │ ├── atm_eni.h │ │ │ ├── atm_he.h │ │ │ ├── atm_idt77105.h │ │ │ ├── atm_nicstar.h │ │ │ ├── atm_tcp.h │ │ │ ├── atm_zatm.h │ │ │ ├── atmapi.h │ │ │ ├── atmarp.h │ │ │ ├── atmbr2684.h │ │ │ ├── atmclip.h │ │ │ ├── atmdev.h │ │ │ ├── atmioc.h │ │ │ ├── atmlec.h │ │ │ ├── atmmpc.h │ │ │ ├── atmppp.h │ │ │ ├── atmsap.h │ │ │ ├── atmsvc.h │ │ │ ├── audit.h │ │ │ ├── auto_dev-ioctl.h │ │ │ ├── auto_fs.h │ │ │ ├── auto_fs4.h │ │ │ ├── auxvec.h │ │ │ ├── ax25.h │ │ │ ├── batadv_packet.h │ │ │ ├── batman_adv.h │ │ │ ├── baycom.h │ │ │ ├── bcm933xx_hcs.h │ │ │ ├── bfs_fs.h │ │ │ ├── binfmts.h │ │ │ ├── blkpg.h │ │ │ ├── blktrace_api.h │ │ │ ├── blkzoned.h │ │ │ ├── bpf.h │ │ │ ├── bpf_common.h │ │ │ ├── bpf_perf_event.h │ │ │ ├── bpfilter.h │ │ │ ├── bpqether.h │ │ │ ├── bsg.h │ │ │ ├── bt-bmc.h │ │ │ ├── btf.h │ │ │ ├── btrfs.h │ │ │ ├── btrfs_tree.h │ │ │ ├── byteorder │ │ │ │ ├── big_endian.h │ │ │ │ └── little_endian.h │ │ │ ├── cachefiles.h │ │ │ ├── caif │ │ │ │ ├── caif_socket.h │ │ │ │ └── if_caif.h │ │ │ ├── can.h │ │ │ ├── can │ │ │ │ ├── bcm.h │ │ │ │ ├── error.h │ │ │ │ ├── gw.h │ │ │ │ ├── isotp.h │ │ │ │ ├── j1939.h │ │ │ │ ├── netlink.h │ │ │ │ ├── raw.h │ │ │ │ └── vxcan.h │ │ │ ├── capability.h │ │ │ ├── capi.h │ │ │ ├── cciss_defs.h │ │ │ ├── cciss_ioctl.h │ │ │ ├── ccs.h │ │ │ ├── cdrom.h │ │ │ ├── cec-funcs.h │ │ │ ├── cec.h │ │ │ ├── cfm_bridge.h │ │ │ ├── cgroupstats.h │ │ │ ├── chio.h │ │ │ ├── cifs │ │ │ │ ├── cifs_mount.h │ │ │ │ └── cifs_netlink.h │ │ │ ├── close_range.h │ │ │ ├── cn_proc.h │ │ │ ├── coda.h │ │ │ ├── coff.h │ │ │ ├── comedi.h │ │ │ ├── connector.h │ │ │ ├── const.h │ │ │ ├── coresight-stm.h │ │ │ ├── counter.h │ │ │ ├── cramfs_fs.h │ │ │ ├── cryptouser.h │ │ │ ├── cuda.h │ │ │ ├── cxl_mem.h │ │ │ ├── cyclades.h │ │ │ ├── cycx_cfm.h │ │ │ ├── dcbnl.h │ │ │ ├── dccp.h │ │ │ ├── devlink.h │ │ │ ├── dlm.h │ │ │ ├── dlm_device.h │ │ │ ├── dlm_plock.h │ │ │ ├── dlmconstants.h │ │ │ ├── dm-ioctl.h │ │ │ ├── dm-log-userspace.h │ │ │ ├── dma-buf.h │ │ │ ├── dma-heap.h │ │ │ ├── dns_resolver.h │ │ │ ├── dqblk_xfs.h │ │ │ ├── dvb │ │ │ │ ├── audio.h │ │ │ │ ├── ca.h │ │ │ │ ├── dmx.h │ │ │ │ ├── frontend.h │ │ │ │ ├── net.h │ │ │ │ ├── osd.h │ │ │ │ ├── version.h │ │ │ │ └── video.h │ │ │ ├── dw100.h │ │ │ ├── edd.h │ │ │ ├── efs_fs_sb.h │ │ │ ├── elf-em.h │ │ │ ├── elf-fdpic.h │ │ │ ├── elf.h │ │ │ ├── errno.h │ │ │ ├── errqueue.h │ │ │ ├── erspan.h │ │ │ ├── ethtool.h │ │ │ ├── ethtool_netlink.h │ │ │ ├── eventfd.h │ │ │ ├── eventpoll.h │ │ │ ├── ext4.h │ │ │ ├── f2fs.h │ │ │ ├── fadvise.h │ │ │ ├── falloc.h │ │ │ ├── fanotify.h │ │ │ ├── fb.h │ │ │ ├── fcntl.h │ │ │ ├── fd.h │ │ │ ├── fdreg.h │ │ │ ├── fib_rules.h │ │ │ ├── fiemap.h │ │ │ ├── filter.h │ │ │ ├── firewire-cdev.h │ │ │ ├── firewire-constants.h │ │ │ ├── fou.h │ │ │ ├── fpga-dfl.h │ │ │ ├── fs.h │ │ │ ├── fscrypt.h │ │ │ ├── fsi.h │ │ │ ├── fsl_hypervisor.h │ │ │ ├── fsl_mc.h │ │ │ ├── fsmap.h │ │ │ ├── fsverity.h │ │ │ ├── fuse.h │ │ │ ├── futex.h │ │ │ ├── gameport.h │ │ │ ├── gen_stats.h │ │ │ ├── genetlink.h │ │ │ ├── genwqe │ │ │ │ └── genwqe_card.h │ │ │ ├── gfs2_ondisk.h │ │ │ ├── gpio.h │ │ │ ├── gsmmux.h │ │ │ ├── gtp.h │ │ │ ├── handshake.h │ │ │ ├── hash_info.h │ │ │ ├── hdlc.h │ │ │ ├── hdlc │ │ │ │ └── ioctl.h │ │ │ ├── hdlcdrv.h │ │ │ ├── hdreg.h │ │ │ ├── hid.h │ │ │ ├── hiddev.h │ │ │ ├── hidraw.h │ │ │ ├── hpet.h │ │ │ ├── hsi │ │ │ │ ├── cs-protocol.h │ │ │ │ └── hsi_char.h │ │ │ ├── hsr_netlink.h │ │ │ ├── hw_breakpoint.h │ │ │ ├── hyperv.h │ │ │ ├── i2c-dev.h │ │ │ ├── i2c.h │ │ │ ├── i2o-dev.h │ │ │ ├── i8k.h │ │ │ ├── icmp.h │ │ │ ├── icmpv6.h │ │ │ ├── idxd.h │ │ │ ├── if.h │ │ │ ├── if_addr.h │ │ │ ├── if_addrlabel.h │ │ │ ├── if_alg.h │ │ │ ├── if_arcnet.h │ │ │ ├── if_arp.h │ │ │ ├── if_bonding.h │ │ │ ├── if_bridge.h │ │ │ ├── if_cablemodem.h │ │ │ ├── if_eql.h │ │ │ ├── if_ether.h │ │ │ ├── if_fc.h │ │ │ ├── if_fddi.h │ │ │ ├── if_hippi.h │ │ │ ├── if_infiniband.h │ │ │ ├── if_link.h │ │ │ ├── if_ltalk.h │ │ │ ├── if_macsec.h │ │ │ ├── if_packet.h │ │ │ ├── if_phonet.h │ │ │ ├── if_plip.h │ │ │ ├── if_ppp.h │ │ │ ├── if_pppol2tp.h │ │ │ ├── if_pppox.h │ │ │ ├── if_slip.h │ │ │ ├── if_team.h │ │ │ ├── if_tun.h │ │ │ ├── if_tunnel.h │ │ │ ├── if_vlan.h │ │ │ ├── if_x25.h │ │ │ ├── if_xdp.h │ │ │ ├── ife.h │ │ │ ├── igmp.h │ │ │ ├── iio │ │ │ │ ├── buffer.h │ │ │ │ ├── events.h │ │ │ │ └── types.h │ │ │ ├── ila.h │ │ │ ├── in.h │ │ │ ├── in6.h │ │ │ ├── in_route.h │ │ │ ├── inet_diag.h │ │ │ ├── inotify.h │ │ │ ├── input-event-codes.h │ │ │ ├── input.h │ │ │ ├── io_uring.h │ │ │ ├── ioam6.h │ │ │ ├── ioam6_genl.h │ │ │ ├── ioam6_iptunnel.h │ │ │ ├── ioctl.h │ │ │ ├── iommu.h │ │ │ ├── iommufd.h │ │ │ ├── ioprio.h │ │ │ ├── ip.h │ │ │ ├── ip6_tunnel.h │ │ │ ├── ip_vs.h │ │ │ ├── ipc.h │ │ │ ├── ipmi.h │ │ │ ├── ipmi_bmc.h │ │ │ ├── ipmi_msgdefs.h │ │ │ ├── ipmi_ssif_bmc.h │ │ │ ├── ipsec.h │ │ │ ├── ipv6.h │ │ │ ├── ipv6_route.h │ │ │ ├── irqnr.h │ │ │ ├── isdn │ │ │ │ └── capicmd.h │ │ │ ├── iso_fs.h │ │ │ ├── isst_if.h │ │ │ ├── ivtv.h │ │ │ ├── ivtvfb.h │ │ │ ├── jffs2.h │ │ │ ├── joystick.h │ │ │ ├── kcm.h │ │ │ ├── kcmp.h │ │ │ ├── kcov.h │ │ │ ├── kd.h │ │ │ ├── kdev_t.h │ │ │ ├── kernel-page-flags.h │ │ │ ├── kernel.h │ │ │ ├── kernelcapi.h │ │ │ ├── kexec.h │ │ │ ├── keyboard.h │ │ │ ├── keyctl.h │ │ │ ├── kfd_ioctl.h │ │ │ ├── kfd_sysfs.h │ │ │ ├── kvm_para.h │ │ │ ├── l2tp.h │ │ │ ├── landlock.h │ │ │ ├── libc-compat.h │ │ │ ├── limits.h │ │ │ ├── lirc.h │ │ │ ├── llc.h │ │ │ ├── loadpin.h │ │ │ ├── loop.h │ │ │ ├── lp.h │ │ │ ├── lwtunnel.h │ │ │ ├── magic.h │ │ │ ├── major.h │ │ │ ├── map_to_14segment.h │ │ │ ├── map_to_7segment.h │ │ │ ├── matroxfb.h │ │ │ ├── max2175.h │ │ │ ├── mctp.h │ │ │ ├── mdio.h │ │ │ ├── media-bus-format.h │ │ │ ├── media.h │ │ │ ├── mei.h │ │ │ ├── mei_uuid.h │ │ │ ├── membarrier.h │ │ │ ├── memfd.h │ │ │ ├── mempolicy.h │ │ │ ├── mii.h │ │ │ ├── minix_fs.h │ │ │ ├── misc │ │ │ │ └── bcm_vk.h │ │ │ ├── mman.h │ │ │ ├── mmc │ │ │ │ └── ioctl.h │ │ │ ├── mmtimer.h │ │ │ ├── module.h │ │ │ ├── mount.h │ │ │ ├── mpls.h │ │ │ ├── mpls_iptunnel.h │ │ │ ├── mptcp.h │ │ │ ├── mqueue.h │ │ │ ├── mroute.h │ │ │ ├── mroute6.h │ │ │ ├── mrp_bridge.h │ │ │ ├── msdos_fs.h │ │ │ ├── msg.h │ │ │ ├── mtio.h │ │ │ ├── nbd-netlink.h │ │ │ ├── nbd.h │ │ │ ├── ncsi.h │ │ │ ├── ndctl.h │ │ │ ├── neighbour.h │ │ │ ├── net.h │ │ │ ├── net_dropmon.h │ │ │ ├── net_namespace.h │ │ │ ├── net_tstamp.h │ │ │ ├── netconf.h │ │ │ ├── netdev.h │ │ │ ├── netdevice.h │ │ │ ├── netfilter.h │ │ │ ├── netfilter │ │ │ │ ├── ipset │ │ │ │ │ ├── ip_set.h │ │ │ │ │ ├── ip_set_bitmap.h │ │ │ │ │ ├── ip_set_hash.h │ │ │ │ │ └── ip_set_list.h │ │ │ │ ├── nf_conntrack_common.h │ │ │ │ ├── nf_conntrack_ftp.h │ │ │ │ ├── nf_conntrack_sctp.h │ │ │ │ ├── nf_conntrack_tcp.h │ │ │ │ ├── nf_conntrack_tuple_common.h │ │ │ │ ├── nf_log.h │ │ │ │ ├── nf_nat.h │ │ │ │ ├── nf_synproxy.h │ │ │ │ ├── nf_tables.h │ │ │ │ ├── nf_tables_compat.h │ │ │ │ ├── nfnetlink.h │ │ │ │ ├── nfnetlink_acct.h │ │ │ │ ├── nfnetlink_compat.h │ │ │ │ ├── nfnetlink_conntrack.h │ │ │ │ ├── nfnetlink_cthelper.h │ │ │ │ ├── nfnetlink_cttimeout.h │ │ │ │ ├── nfnetlink_hook.h │ │ │ │ ├── nfnetlink_log.h │ │ │ │ ├── nfnetlink_osf.h │ │ │ │ ├── nfnetlink_queue.h │ │ │ │ ├── x_tables.h │ │ │ │ ├── xt_AUDIT.h │ │ │ │ ├── xt_CHECKSUM.h │ │ │ │ ├── xt_CLASSIFY.h │ │ │ │ ├── xt_CONNSECMARK.h │ │ │ │ ├── xt_CT.h │ │ │ │ ├── xt_HMARK.h │ │ │ │ ├── xt_IDLETIMER.h │ │ │ │ ├── xt_LED.h │ │ │ │ ├── xt_LOG.h │ │ │ │ ├── xt_NFLOG.h │ │ │ │ ├── xt_NFQUEUE.h │ │ │ │ ├── xt_SECMARK.h │ │ │ │ ├── xt_SYNPROXY.h │ │ │ │ ├── xt_TCPOPTSTRIP.h │ │ │ │ ├── xt_TEE.h │ │ │ │ ├── xt_TPROXY.h │ │ │ │ ├── xt_addrtype.h │ │ │ │ ├── xt_bpf.h │ │ │ │ ├── xt_cgroup.h │ │ │ │ ├── xt_cluster.h │ │ │ │ ├── xt_comment.h │ │ │ │ ├── xt_connbytes.h │ │ │ │ ├── xt_connlabel.h │ │ │ │ ├── xt_connlimit.h │ │ │ │ ├── xt_connmark.h │ │ │ │ ├── xt_conntrack.h │ │ │ │ ├── xt_cpu.h │ │ │ │ ├── xt_dccp.h │ │ │ │ ├── xt_devgroup.h │ │ │ │ ├── xt_dscp.h │ │ │ │ ├── xt_ecn.h │ │ │ │ ├── xt_esp.h │ │ │ │ ├── xt_hashlimit.h │ │ │ │ ├── xt_helper.h │ │ │ │ ├── xt_ipcomp.h │ │ │ │ ├── xt_iprange.h │ │ │ │ ├── xt_ipvs.h │ │ │ │ ├── xt_l2tp.h │ │ │ │ ├── xt_length.h │ │ │ │ ├── xt_limit.h │ │ │ │ ├── xt_mac.h │ │ │ │ ├── xt_mark.h │ │ │ │ ├── xt_multiport.h │ │ │ │ ├── xt_nfacct.h │ │ │ │ ├── xt_osf.h │ │ │ │ ├── xt_owner.h │ │ │ │ ├── xt_physdev.h │ │ │ │ ├── xt_pkttype.h │ │ │ │ ├── xt_policy.h │ │ │ │ ├── xt_quota.h │ │ │ │ ├── xt_rateest.h │ │ │ │ ├── xt_realm.h │ │ │ │ ├── xt_recent.h │ │ │ │ ├── xt_rpfilter.h │ │ │ │ ├── xt_sctp.h │ │ │ │ ├── xt_set.h │ │ │ │ ├── xt_socket.h │ │ │ │ ├── xt_state.h │ │ │ │ ├── xt_statistic.h │ │ │ │ ├── xt_string.h │ │ │ │ ├── xt_tcpmss.h │ │ │ │ ├── xt_tcpudp.h │ │ │ │ ├── xt_time.h │ │ │ │ └── xt_u32.h │ │ │ ├── netfilter_arp.h │ │ │ ├── netfilter_arp │ │ │ │ ├── arp_tables.h │ │ │ │ └── arpt_mangle.h │ │ │ ├── netfilter_bridge.h │ │ │ ├── netfilter_bridge │ │ │ │ ├── ebt_802_3.h │ │ │ │ ├── ebt_among.h │ │ │ │ ├── ebt_arp.h │ │ │ │ ├── ebt_arpreply.h │ │ │ │ ├── ebt_ip.h │ │ │ │ ├── ebt_ip6.h │ │ │ │ ├── ebt_limit.h │ │ │ │ ├── ebt_log.h │ │ │ │ ├── ebt_mark_m.h │ │ │ │ ├── ebt_mark_t.h │ │ │ │ ├── ebt_nat.h │ │ │ │ ├── ebt_nflog.h │ │ │ │ ├── ebt_pkttype.h │ │ │ │ ├── ebt_redirect.h │ │ │ │ ├── ebt_stp.h │ │ │ │ ├── ebt_vlan.h │ │ │ │ └── ebtables.h │ │ │ ├── netfilter_ipv4.h │ │ │ ├── netfilter_ipv4 │ │ │ │ ├── ip_tables.h │ │ │ │ ├── ipt_CLUSTERIP.h │ │ │ │ ├── ipt_LOG.h │ │ │ │ ├── ipt_REJECT.h │ │ │ │ ├── ipt_ah.h │ │ │ │ ├── ipt_ecn.h │ │ │ │ └── ipt_ttl.h │ │ │ ├── netfilter_ipv6.h │ │ │ ├── netfilter_ipv6 │ │ │ │ ├── ip6_tables.h │ │ │ │ ├── ip6t_LOG.h │ │ │ │ ├── ip6t_NPT.h │ │ │ │ ├── ip6t_REJECT.h │ │ │ │ ├── ip6t_ah.h │ │ │ │ ├── ip6t_frag.h │ │ │ │ ├── ip6t_hl.h │ │ │ │ ├── ip6t_ipv6header.h │ │ │ │ ├── ip6t_mh.h │ │ │ │ ├── ip6t_opts.h │ │ │ │ ├── ip6t_rt.h │ │ │ │ └── ip6t_srh.h │ │ │ ├── netlink.h │ │ │ ├── netlink_diag.h │ │ │ ├── netrom.h │ │ │ ├── nexthop.h │ │ │ ├── nfc.h │ │ │ ├── nfs.h │ │ │ ├── nfs2.h │ │ │ ├── nfs3.h │ │ │ ├── nfs4.h │ │ │ ├── nfs4_mount.h │ │ │ ├── nfs_fs.h │ │ │ ├── nfs_idmap.h │ │ │ ├── nfs_mount.h │ │ │ ├── nfsacl.h │ │ │ ├── nfsd │ │ │ │ ├── cld.h │ │ │ │ ├── debug.h │ │ │ │ ├── export.h │ │ │ │ └── stats.h │ │ │ ├── nilfs2_api.h │ │ │ ├── nilfs2_ondisk.h │ │ │ ├── nitro_enclaves.h │ │ │ ├── nl80211-vnd-intel.h │ │ │ ├── nl80211.h │ │ │ ├── nsfs.h │ │ │ ├── nubus.h │ │ │ ├── nvme_ioctl.h │ │ │ ├── nvram.h │ │ │ ├── omap3isp.h │ │ │ ├── omapfb.h │ │ │ ├── oom.h │ │ │ ├── openat2.h │ │ │ ├── openvswitch.h │ │ │ ├── packet_diag.h │ │ │ ├── param.h │ │ │ ├── parport.h │ │ │ ├── patchkey.h │ │ │ ├── pci.h │ │ │ ├── pci_regs.h │ │ │ ├── pcitest.h │ │ │ ├── perf_event.h │ │ │ ├── personality.h │ │ │ ├── pfkeyv2.h │ │ │ ├── pfrut.h │ │ │ ├── pg.h │ │ │ ├── phantom.h │ │ │ ├── phonet.h │ │ │ ├── pidfd.h │ │ │ ├── pkt_cls.h │ │ │ ├── pkt_sched.h │ │ │ ├── pktcdvd.h │ │ │ ├── pmu.h │ │ │ ├── poll.h │ │ │ ├── posix_acl.h │ │ │ ├── posix_acl_xattr.h │ │ │ ├── posix_types.h │ │ │ ├── ppdev.h │ │ │ ├── ppp-comp.h │ │ │ ├── ppp-ioctl.h │ │ │ ├── ppp_defs.h │ │ │ ├── pps.h │ │ │ ├── pr.h │ │ │ ├── prctl.h │ │ │ ├── psample.h │ │ │ ├── psci.h │ │ │ ├── psp-dbc.h │ │ │ ├── psp-sev.h │ │ │ ├── ptp_clock.h │ │ │ ├── ptrace.h │ │ │ ├── qemu_fw_cfg.h │ │ │ ├── qnx4_fs.h │ │ │ ├── qnxtypes.h │ │ │ ├── qrtr.h │ │ │ ├── quota.h │ │ │ ├── radeonfb.h │ │ │ ├── raid │ │ │ │ ├── md_p.h │ │ │ │ └── md_u.h │ │ │ ├── random.h │ │ │ ├── rds.h │ │ │ ├── reboot.h │ │ │ ├── reiserfs_fs.h │ │ │ ├── reiserfs_xattr.h │ │ │ ├── remoteproc_cdev.h │ │ │ ├── resource.h │ │ │ ├── rfkill.h │ │ │ ├── rio_cm_cdev.h │ │ │ ├── rio_mport_cdev.h │ │ │ ├── rkisp1-config.h │ │ │ ├── romfs_fs.h │ │ │ ├── rose.h │ │ │ ├── route.h │ │ │ ├── rpl.h │ │ │ ├── rpl_iptunnel.h │ │ │ ├── rpmsg.h │ │ │ ├── rpmsg_types.h │ │ │ ├── rseq.h │ │ │ ├── rtc.h │ │ │ ├── rtnetlink.h │ │ │ ├── rxrpc.h │ │ │ ├── scc.h │ │ │ ├── sched.h │ │ │ ├── sched │ │ │ │ └── types.h │ │ │ ├── scif_ioctl.h │ │ │ ├── screen_info.h │ │ │ ├── sctp.h │ │ │ ├── seccomp.h │ │ │ ├── securebits.h │ │ │ ├── sed-opal.h │ │ │ ├── seg6.h │ │ │ ├── seg6_genl.h │ │ │ ├── seg6_hmac.h │ │ │ ├── seg6_iptunnel.h │ │ │ ├── seg6_local.h │ │ │ ├── selinux_netlink.h │ │ │ ├── sem.h │ │ │ ├── serial.h │ │ │ ├── serial_core.h │ │ │ ├── serial_reg.h │ │ │ ├── serio.h │ │ │ ├── sev-guest.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── signalfd.h │ │ │ ├── smc.h │ │ │ ├── smc_diag.h │ │ │ ├── smiapp.h │ │ │ ├── snmp.h │ │ │ ├── sock_diag.h │ │ │ ├── socket.h │ │ │ ├── sockios.h │ │ │ ├── sonet.h │ │ │ ├── sonypi.h │ │ │ ├── sound.h │ │ │ ├── soundcard.h │ │ │ ├── spi │ │ │ │ ├── spi.h │ │ │ │ └── spidev.h │ │ │ ├── stat.h │ │ │ ├── stddef.h │ │ │ ├── stm.h │ │ │ ├── string.h │ │ │ ├── sunrpc │ │ │ │ └── debug.h │ │ │ ├── surface_aggregator │ │ │ │ ├── cdev.h │ │ │ │ └── dtx.h │ │ │ ├── suspend_ioctls.h │ │ │ ├── swab.h │ │ │ ├── switchtec_ioctl.h │ │ │ ├── sync_file.h │ │ │ ├── synclink.h │ │ │ ├── sysctl.h │ │ │ ├── sysinfo.h │ │ │ ├── target_core_user.h │ │ │ ├── taskstats.h │ │ │ ├── tc_act │ │ │ │ ├── tc_bpf.h │ │ │ │ ├── tc_connmark.h │ │ │ │ ├── tc_csum.h │ │ │ │ ├── tc_ct.h │ │ │ │ ├── tc_ctinfo.h │ │ │ │ ├── tc_defact.h │ │ │ │ ├── tc_gact.h │ │ │ │ ├── tc_gate.h │ │ │ │ ├── tc_ife.h │ │ │ │ ├── tc_ipt.h │ │ │ │ ├── tc_mirred.h │ │ │ │ ├── tc_mpls.h │ │ │ │ ├── tc_nat.h │ │ │ │ ├── tc_pedit.h │ │ │ │ ├── tc_sample.h │ │ │ │ ├── tc_skbedit.h │ │ │ │ ├── tc_skbmod.h │ │ │ │ ├── tc_tunnel_key.h │ │ │ │ └── tc_vlan.h │ │ │ ├── tc_ematch │ │ │ │ ├── tc_em_cmp.h │ │ │ │ ├── tc_em_ipt.h │ │ │ │ ├── tc_em_meta.h │ │ │ │ ├── tc_em_nbyte.h │ │ │ │ └── tc_em_text.h │ │ │ ├── tcp.h │ │ │ ├── tcp_metrics.h │ │ │ ├── tdx-guest.h │ │ │ ├── tee.h │ │ │ ├── termios.h │ │ │ ├── thermal.h │ │ │ ├── time.h │ │ │ ├── time_types.h │ │ │ ├── timerfd.h │ │ │ ├── times.h │ │ │ ├── timex.h │ │ │ ├── tiocl.h │ │ │ ├── tipc.h │ │ │ ├── tipc_config.h │ │ │ ├── tipc_netlink.h │ │ │ ├── tipc_sockets_diag.h │ │ │ ├── tls.h │ │ │ ├── toshiba.h │ │ │ ├── tps6594_pfsm.h │ │ │ ├── tty.h │ │ │ ├── tty_flags.h │ │ │ ├── types.h │ │ │ ├── ublk_cmd.h │ │ │ ├── udf_fs_i.h │ │ │ ├── udmabuf.h │ │ │ ├── udp.h │ │ │ ├── uhid.h │ │ │ ├── uinput.h │ │ │ ├── uio.h │ │ │ ├── uleds.h │ │ │ ├── ultrasound.h │ │ │ ├── um_timetravel.h │ │ │ ├── un.h │ │ │ ├── unistd.h │ │ │ ├── unix_diag.h │ │ │ ├── usb │ │ │ │ ├── audio.h │ │ │ │ ├── cdc-wdm.h │ │ │ │ ├── cdc.h │ │ │ │ ├── ch11.h │ │ │ │ ├── ch9.h │ │ │ │ ├── charger.h │ │ │ │ ├── functionfs.h │ │ │ │ ├── g_printer.h │ │ │ │ ├── g_uvc.h │ │ │ │ ├── gadgetfs.h │ │ │ │ ├── midi.h │ │ │ │ ├── raw_gadget.h │ │ │ │ ├── tmc.h │ │ │ │ └── video.h │ │ │ ├── usbdevice_fs.h │ │ │ ├── usbip.h │ │ │ ├── user_events.h │ │ │ ├── userfaultfd.h │ │ │ ├── userio.h │ │ │ ├── utime.h │ │ │ ├── utsname.h │ │ │ ├── uuid.h │ │ │ ├── uvcvideo.h │ │ │ ├── v4l2-common.h │ │ │ ├── v4l2-controls.h │ │ │ ├── v4l2-dv-timings.h │ │ │ ├── v4l2-mediabus.h │ │ │ ├── v4l2-subdev.h │ │ │ ├── vbox_err.h │ │ │ ├── vbox_vmmdev_types.h │ │ │ ├── vboxguest.h │ │ │ ├── vdpa.h │ │ │ ├── vduse.h │ │ │ ├── version.h │ │ │ ├── veth.h │ │ │ ├── vfio.h │ │ │ ├── vfio_ccw.h │ │ │ ├── vfio_zdev.h │ │ │ ├── vhost.h │ │ │ ├── vhost_types.h │ │ │ ├── videodev2.h │ │ │ ├── virtio_9p.h │ │ │ ├── virtio_balloon.h │ │ │ ├── virtio_blk.h │ │ │ ├── virtio_bt.h │ │ │ ├── virtio_config.h │ │ │ ├── virtio_console.h │ │ │ ├── virtio_crypto.h │ │ │ ├── virtio_fs.h │ │ │ ├── virtio_gpio.h │ │ │ ├── virtio_gpu.h │ │ │ ├── virtio_i2c.h │ │ │ ├── virtio_ids.h │ │ │ ├── virtio_input.h │ │ │ ├── virtio_iommu.h │ │ │ ├── virtio_mem.h │ │ │ ├── virtio_mmio.h │ │ │ ├── virtio_net.h │ │ │ ├── virtio_pci.h │ │ │ ├── virtio_pcidev.h │ │ │ ├── virtio_pmem.h │ │ │ ├── virtio_ring.h │ │ │ ├── virtio_rng.h │ │ │ ├── virtio_scmi.h │ │ │ ├── virtio_scsi.h │ │ │ ├── virtio_snd.h │ │ │ ├── virtio_types.h │ │ │ ├── virtio_vsock.h │ │ │ ├── vm_sockets.h │ │ │ ├── vm_sockets_diag.h │ │ │ ├── vmcore.h │ │ │ ├── vsockmon.h │ │ │ ├── vt.h │ │ │ ├── vtpm_proxy.h │ │ │ ├── wait.h │ │ │ ├── watch_queue.h │ │ │ ├── watchdog.h │ │ │ ├── wireguard.h │ │ │ ├── wireless.h │ │ │ ├── wmi.h │ │ │ ├── wwan.h │ │ │ ├── x25.h │ │ │ ├── xattr.h │ │ │ ├── xdp_diag.h │ │ │ ├── xfrm.h │ │ │ ├── xilinx-v4l2-controls.h │ │ │ ├── zorro.h │ │ │ └── zorro_ids.h │ │ ├── misc │ │ │ ├── cxl.h │ │ │ ├── fastrpc.h │ │ │ ├── ocxl.h │ │ │ ├── pvpanic.h │ │ │ ├── uacce │ │ │ │ ├── hisi_qm.h │ │ │ │ └── uacce.h │ │ │ └── xilinx_sdfec.h │ │ ├── mtd │ │ │ ├── inftl-user.h │ │ │ ├── mtd-abi.h │ │ │ ├── mtd-user.h │ │ │ ├── nftl-user.h │ │ │ └── ubi-user.h │ │ ├── rdma │ │ │ ├── bnxt_re-abi.h │ │ │ ├── cxgb4-abi.h │ │ │ ├── efa-abi.h │ │ │ ├── erdma-abi.h │ │ │ ├── hfi │ │ │ │ ├── hfi1_ioctl.h │ │ │ │ └── hfi1_user.h │ │ │ ├── hns-abi.h │ │ │ ├── ib_user_ioctl_cmds.h │ │ │ ├── ib_user_ioctl_verbs.h │ │ │ ├── ib_user_mad.h │ │ │ ├── ib_user_sa.h │ │ │ ├── ib_user_verbs.h │ │ │ ├── irdma-abi.h │ │ │ ├── mana-abi.h │ │ │ ├── mlx4-abi.h │ │ │ ├── mlx5-abi.h │ │ │ ├── mlx5_user_ioctl_cmds.h │ │ │ ├── mlx5_user_ioctl_verbs.h │ │ │ ├── mthca-abi.h │ │ │ ├── ocrdma-abi.h │ │ │ ├── qedr-abi.h │ │ │ ├── rdma_netlink.h │ │ │ ├── rdma_user_cm.h │ │ │ ├── rdma_user_ioctl.h │ │ │ ├── rdma_user_ioctl_cmds.h │ │ │ ├── rdma_user_rxe.h │ │ │ ├── rvt-abi.h │ │ │ ├── siw-abi.h │ │ │ └── vmw_pvrdma-abi.h │ │ ├── scsi │ │ │ ├── cxlflash_ioctl.h │ │ │ ├── fc │ │ │ │ ├── fc_els.h │ │ │ │ ├── fc_fs.h │ │ │ │ ├── fc_gs.h │ │ │ │ └── fc_ns.h │ │ │ ├── scsi_bsg_fc.h │ │ │ ├── scsi_bsg_mpi3mr.h │ │ │ ├── scsi_bsg_ufs.h │ │ │ ├── scsi_netlink.h │ │ │ └── scsi_netlink_fc.h │ │ ├── sound │ │ │ ├── asequencer.h │ │ │ ├── asoc.h │ │ │ ├── asound.h │ │ │ ├── asound_fm.h │ │ │ ├── compress_offload.h │ │ │ ├── compress_params.h │ │ │ ├── emu10k1.h │ │ │ ├── firewire.h │ │ │ ├── hdsp.h │ │ │ ├── hdspm.h │ │ │ ├── intel │ │ │ │ └── avs │ │ │ │ │ └── tokens.h │ │ │ ├── sb16_csp.h │ │ │ ├── sfnt_info.h │ │ │ ├── skl-tplg-interface.h │ │ │ ├── snd_ar_tokens.h │ │ │ ├── snd_sst_tokens.h │ │ │ ├── sof │ │ │ │ ├── abi.h │ │ │ │ ├── fw.h │ │ │ │ ├── header.h │ │ │ │ └── tokens.h │ │ │ ├── tlv.h │ │ │ └── usb_stream.h │ │ ├── video │ │ │ ├── edid.h │ │ │ ├── sisfb.h │ │ │ └── uvesafb.h │ │ └── xen │ │ │ ├── evtchn.h │ │ │ ├── gntalloc.h │ │ │ ├── gntdev.h │ │ │ └── privcmd.h │ ├── i386-linux │ │ ├── asm-generic │ │ │ ├── auxvec.h │ │ │ ├── bitsperlong.h │ │ │ ├── bpf_perf_event.h │ │ │ ├── errno-base.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── hugetlb_encode.h │ │ │ ├── int-l64.h │ │ │ ├── int-ll64.h │ │ │ ├── ioctl.h │ │ │ ├── ioctls.h │ │ │ ├── ipcbuf.h │ │ │ ├── kvm_para.h │ │ │ ├── mman-common.h │ │ │ ├── mman.h │ │ │ ├── msgbuf.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── posix_types.h │ │ │ ├── resource.h │ │ │ ├── sembuf.h │ │ │ ├── setup.h │ │ │ ├── shmbuf.h │ │ │ ├── siginfo.h │ │ │ ├── signal-defs.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockios.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── swab.h │ │ │ ├── termbits-common.h │ │ │ ├── termbits.h │ │ │ ├── termios.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ └── unistd.h │ │ ├── asm │ │ │ ├── a.out.h │ │ │ ├── amd_hsmp.h │ │ │ ├── auxvec.h │ │ │ ├── bitsperlong.h │ │ │ ├── boot.h │ │ │ ├── bootparam.h │ │ │ ├── bpf_perf_event.h │ │ │ ├── byteorder.h │ │ │ ├── debugreg.h │ │ │ ├── e820.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── hw_breakpoint.h │ │ │ ├── hwcap2.h │ │ │ ├── ioctl.h │ │ │ ├── ioctls.h │ │ │ ├── ipcbuf.h │ │ │ ├── ist.h │ │ │ ├── kvm.h │ │ │ ├── kvm_para.h │ │ │ ├── kvm_perf.h │ │ │ ├── ldt.h │ │ │ ├── mce.h │ │ │ ├── mman.h │ │ │ ├── msgbuf.h │ │ │ ├── msr.h │ │ │ ├── mtrr.h │ │ │ ├── param.h │ │ │ ├── perf_regs.h │ │ │ ├── poll.h │ │ │ ├── posix_types.h │ │ │ ├── posix_types_32.h │ │ │ ├── posix_types_64.h │ │ │ ├── posix_types_x32.h │ │ │ ├── prctl.h │ │ │ ├── processor-flags.h │ │ │ ├── ptrace-abi.h │ │ │ ├── ptrace.h │ │ │ ├── resource.h │ │ │ ├── sembuf.h │ │ │ ├── setup.h │ │ │ ├── sgx.h │ │ │ ├── shmbuf.h │ │ │ ├── sigcontext.h │ │ │ ├── sigcontext32.h │ │ │ ├── siginfo.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockios.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── svm.h │ │ │ ├── swab.h │ │ │ ├── termbits.h │ │ │ ├── termios.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ ├── unistd.h │ │ │ ├── unistd_32.h │ │ │ ├── unistd_64.h │ │ │ ├── unistd_x32.h │ │ │ ├── vm86.h │ │ │ ├── vmx.h │ │ │ └── vsyscall.h │ │ ├── drm │ │ │ ├── amdgpu_drm.h │ │ │ ├── armada_drm.h │ │ │ ├── drm.h │ │ │ ├── drm_fourcc.h │ │ │ ├── drm_mode.h │ │ │ ├── drm_sarea.h │ │ │ ├── etnaviv_drm.h │ │ │ ├── exynos_drm.h │ │ │ ├── habanalabs_accel.h │ │ │ ├── i915_drm.h │ │ │ ├── ivpu_accel.h │ │ │ ├── lima_drm.h │ │ │ ├── msm_drm.h │ │ │ ├── nouveau_drm.h │ │ │ ├── omap_drm.h │ │ │ ├── panfrost_drm.h │ │ │ ├── qaic_accel.h │ │ │ ├── qxl_drm.h │ │ │ ├── radeon_drm.h │ │ │ ├── tegra_drm.h │ │ │ ├── v3d_drm.h │ │ │ ├── vc4_drm.h │ │ │ ├── vgem_drm.h │ │ │ ├── virtgpu_drm.h │ │ │ └── vmwgfx_drm.h │ │ ├── linux │ │ │ ├── a.out.h │ │ │ ├── acct.h │ │ │ ├── acrn.h │ │ │ ├── adb.h │ │ │ ├── adfs_fs.h │ │ │ ├── affs_hardblocks.h │ │ │ ├── agpgart.h │ │ │ ├── aio_abi.h │ │ │ ├── am437x-vpfe.h │ │ │ ├── amt.h │ │ │ ├── android │ │ │ │ ├── binder.h │ │ │ │ └── binderfs.h │ │ │ ├── apm_bios.h │ │ │ ├── arcfb.h │ │ │ ├── arm_sdei.h │ │ │ ├── aspeed-lpc-ctrl.h │ │ │ ├── aspeed-p2a-ctrl.h │ │ │ ├── aspeed-video.h │ │ │ ├── atalk.h │ │ │ ├── atm.h │ │ │ ├── atm_eni.h │ │ │ ├── atm_he.h │ │ │ ├── atm_idt77105.h │ │ │ ├── atm_nicstar.h │ │ │ ├── atm_tcp.h │ │ │ ├── atm_zatm.h │ │ │ ├── atmapi.h │ │ │ ├── atmarp.h │ │ │ ├── atmbr2684.h │ │ │ ├── atmclip.h │ │ │ ├── atmdev.h │ │ │ ├── atmioc.h │ │ │ ├── atmlec.h │ │ │ ├── atmmpc.h │ │ │ ├── atmppp.h │ │ │ ├── atmsap.h │ │ │ ├── atmsvc.h │ │ │ ├── audit.h │ │ │ ├── auto_dev-ioctl.h │ │ │ ├── auto_fs.h │ │ │ ├── auto_fs4.h │ │ │ ├── auxvec.h │ │ │ ├── ax25.h │ │ │ ├── batadv_packet.h │ │ │ ├── batman_adv.h │ │ │ ├── baycom.h │ │ │ ├── bcm933xx_hcs.h │ │ │ ├── bfs_fs.h │ │ │ ├── binfmts.h │ │ │ ├── blkpg.h │ │ │ ├── blktrace_api.h │ │ │ ├── blkzoned.h │ │ │ ├── bpf.h │ │ │ ├── bpf_common.h │ │ │ ├── bpf_perf_event.h │ │ │ ├── bpfilter.h │ │ │ ├── bpqether.h │ │ │ ├── bsg.h │ │ │ ├── bt-bmc.h │ │ │ ├── btf.h │ │ │ ├── btrfs.h │ │ │ ├── btrfs_tree.h │ │ │ ├── byteorder │ │ │ │ ├── big_endian.h │ │ │ │ └── little_endian.h │ │ │ ├── cachefiles.h │ │ │ ├── caif │ │ │ │ ├── caif_socket.h │ │ │ │ └── if_caif.h │ │ │ ├── can.h │ │ │ ├── can │ │ │ │ ├── bcm.h │ │ │ │ ├── error.h │ │ │ │ ├── gw.h │ │ │ │ ├── isotp.h │ │ │ │ ├── j1939.h │ │ │ │ ├── netlink.h │ │ │ │ ├── raw.h │ │ │ │ └── vxcan.h │ │ │ ├── capability.h │ │ │ ├── capi.h │ │ │ ├── cciss_defs.h │ │ │ ├── cciss_ioctl.h │ │ │ ├── ccs.h │ │ │ ├── cdrom.h │ │ │ ├── cec-funcs.h │ │ │ ├── cec.h │ │ │ ├── cfm_bridge.h │ │ │ ├── cgroupstats.h │ │ │ ├── chio.h │ │ │ ├── cifs │ │ │ │ ├── cifs_mount.h │ │ │ │ └── cifs_netlink.h │ │ │ ├── close_range.h │ │ │ ├── cn_proc.h │ │ │ ├── coda.h │ │ │ ├── coff.h │ │ │ ├── comedi.h │ │ │ ├── connector.h │ │ │ ├── const.h │ │ │ ├── coresight-stm.h │ │ │ ├── counter.h │ │ │ ├── cramfs_fs.h │ │ │ ├── cryptouser.h │ │ │ ├── cuda.h │ │ │ ├── cxl_mem.h │ │ │ ├── cyclades.h │ │ │ ├── cycx_cfm.h │ │ │ ├── dcbnl.h │ │ │ ├── dccp.h │ │ │ ├── devlink.h │ │ │ ├── dlm.h │ │ │ ├── dlm_device.h │ │ │ ├── dlm_plock.h │ │ │ ├── dlmconstants.h │ │ │ ├── dm-ioctl.h │ │ │ ├── dm-log-userspace.h │ │ │ ├── dma-buf.h │ │ │ ├── dma-heap.h │ │ │ ├── dns_resolver.h │ │ │ ├── dqblk_xfs.h │ │ │ ├── dvb │ │ │ │ ├── audio.h │ │ │ │ ├── ca.h │ │ │ │ ├── dmx.h │ │ │ │ ├── frontend.h │ │ │ │ ├── net.h │ │ │ │ ├── osd.h │ │ │ │ ├── version.h │ │ │ │ └── video.h │ │ │ ├── dw100.h │ │ │ ├── edd.h │ │ │ ├── efs_fs_sb.h │ │ │ ├── elf-em.h │ │ │ ├── elf-fdpic.h │ │ │ ├── elf.h │ │ │ ├── errno.h │ │ │ ├── errqueue.h │ │ │ ├── erspan.h │ │ │ ├── ethtool.h │ │ │ ├── ethtool_netlink.h │ │ │ ├── eventfd.h │ │ │ ├── eventpoll.h │ │ │ ├── ext4.h │ │ │ ├── f2fs.h │ │ │ ├── fadvise.h │ │ │ ├── falloc.h │ │ │ ├── fanotify.h │ │ │ ├── fb.h │ │ │ ├── fcntl.h │ │ │ ├── fd.h │ │ │ ├── fdreg.h │ │ │ ├── fib_rules.h │ │ │ ├── fiemap.h │ │ │ ├── filter.h │ │ │ ├── firewire-cdev.h │ │ │ ├── firewire-constants.h │ │ │ ├── fou.h │ │ │ ├── fpga-dfl.h │ │ │ ├── fs.h │ │ │ ├── fscrypt.h │ │ │ ├── fsi.h │ │ │ ├── fsl_hypervisor.h │ │ │ ├── fsl_mc.h │ │ │ ├── fsmap.h │ │ │ ├── fsverity.h │ │ │ ├── fuse.h │ │ │ ├── futex.h │ │ │ ├── gameport.h │ │ │ ├── gen_stats.h │ │ │ ├── genetlink.h │ │ │ ├── genwqe │ │ │ │ └── genwqe_card.h │ │ │ ├── gfs2_ondisk.h │ │ │ ├── gpio.h │ │ │ ├── gsmmux.h │ │ │ ├── gtp.h │ │ │ ├── handshake.h │ │ │ ├── hash_info.h │ │ │ ├── hdlc.h │ │ │ ├── hdlc │ │ │ │ └── ioctl.h │ │ │ ├── hdlcdrv.h │ │ │ ├── hdreg.h │ │ │ ├── hid.h │ │ │ ├── hiddev.h │ │ │ ├── hidraw.h │ │ │ ├── hpet.h │ │ │ ├── hsi │ │ │ │ ├── cs-protocol.h │ │ │ │ └── hsi_char.h │ │ │ ├── hsr_netlink.h │ │ │ ├── hw_breakpoint.h │ │ │ ├── hyperv.h │ │ │ ├── i2c-dev.h │ │ │ ├── i2c.h │ │ │ ├── i2o-dev.h │ │ │ ├── i8k.h │ │ │ ├── icmp.h │ │ │ ├── icmpv6.h │ │ │ ├── idxd.h │ │ │ ├── if.h │ │ │ ├── if_addr.h │ │ │ ├── if_addrlabel.h │ │ │ ├── if_alg.h │ │ │ ├── if_arcnet.h │ │ │ ├── if_arp.h │ │ │ ├── if_bonding.h │ │ │ ├── if_bridge.h │ │ │ ├── if_cablemodem.h │ │ │ ├── if_eql.h │ │ │ ├── if_ether.h │ │ │ ├── if_fc.h │ │ │ ├── if_fddi.h │ │ │ ├── if_hippi.h │ │ │ ├── if_infiniband.h │ │ │ ├── if_link.h │ │ │ ├── if_ltalk.h │ │ │ ├── if_macsec.h │ │ │ ├── if_packet.h │ │ │ ├── if_phonet.h │ │ │ ├── if_plip.h │ │ │ ├── if_ppp.h │ │ │ ├── if_pppol2tp.h │ │ │ ├── if_pppox.h │ │ │ ├── if_slip.h │ │ │ ├── if_team.h │ │ │ ├── if_tun.h │ │ │ ├── if_tunnel.h │ │ │ ├── if_vlan.h │ │ │ ├── if_x25.h │ │ │ ├── if_xdp.h │ │ │ ├── ife.h │ │ │ ├── igmp.h │ │ │ ├── iio │ │ │ │ ├── buffer.h │ │ │ │ ├── events.h │ │ │ │ └── types.h │ │ │ ├── ila.h │ │ │ ├── in.h │ │ │ ├── in6.h │ │ │ ├── in_route.h │ │ │ ├── inet_diag.h │ │ │ ├── inotify.h │ │ │ ├── input-event-codes.h │ │ │ ├── input.h │ │ │ ├── io_uring.h │ │ │ ├── ioam6.h │ │ │ ├── ioam6_genl.h │ │ │ ├── ioam6_iptunnel.h │ │ │ ├── ioctl.h │ │ │ ├── iommu.h │ │ │ ├── iommufd.h │ │ │ ├── ioprio.h │ │ │ ├── ip.h │ │ │ ├── ip6_tunnel.h │ │ │ ├── ip_vs.h │ │ │ ├── ipc.h │ │ │ ├── ipmi.h │ │ │ ├── ipmi_bmc.h │ │ │ ├── ipmi_msgdefs.h │ │ │ ├── ipmi_ssif_bmc.h │ │ │ ├── ipsec.h │ │ │ ├── ipv6.h │ │ │ ├── ipv6_route.h │ │ │ ├── irqnr.h │ │ │ ├── isdn │ │ │ │ └── capicmd.h │ │ │ ├── iso_fs.h │ │ │ ├── isst_if.h │ │ │ ├── ivtv.h │ │ │ ├── ivtvfb.h │ │ │ ├── jffs2.h │ │ │ ├── joystick.h │ │ │ ├── kcm.h │ │ │ ├── kcmp.h │ │ │ ├── kcov.h │ │ │ ├── kd.h │ │ │ ├── kdev_t.h │ │ │ ├── kernel-page-flags.h │ │ │ ├── kernel.h │ │ │ ├── kernelcapi.h │ │ │ ├── kexec.h │ │ │ ├── keyboard.h │ │ │ ├── keyctl.h │ │ │ ├── kfd_ioctl.h │ │ │ ├── kfd_sysfs.h │ │ │ ├── kvm.h │ │ │ ├── kvm_para.h │ │ │ ├── l2tp.h │ │ │ ├── landlock.h │ │ │ ├── libc-compat.h │ │ │ ├── limits.h │ │ │ ├── lirc.h │ │ │ ├── llc.h │ │ │ ├── loadpin.h │ │ │ ├── loop.h │ │ │ ├── lp.h │ │ │ ├── lwtunnel.h │ │ │ ├── magic.h │ │ │ ├── major.h │ │ │ ├── map_to_14segment.h │ │ │ ├── map_to_7segment.h │ │ │ ├── matroxfb.h │ │ │ ├── max2175.h │ │ │ ├── mctp.h │ │ │ ├── mdio.h │ │ │ ├── media-bus-format.h │ │ │ ├── media.h │ │ │ ├── mei.h │ │ │ ├── mei_uuid.h │ │ │ ├── membarrier.h │ │ │ ├── memfd.h │ │ │ ├── mempolicy.h │ │ │ ├── mii.h │ │ │ ├── minix_fs.h │ │ │ ├── misc │ │ │ │ └── bcm_vk.h │ │ │ ├── mman.h │ │ │ ├── mmc │ │ │ │ └── ioctl.h │ │ │ ├── mmtimer.h │ │ │ ├── module.h │ │ │ ├── mount.h │ │ │ ├── mpls.h │ │ │ ├── mpls_iptunnel.h │ │ │ ├── mptcp.h │ │ │ ├── mqueue.h │ │ │ ├── mroute.h │ │ │ ├── mroute6.h │ │ │ ├── mrp_bridge.h │ │ │ ├── msdos_fs.h │ │ │ ├── msg.h │ │ │ ├── mtio.h │ │ │ ├── nbd-netlink.h │ │ │ ├── nbd.h │ │ │ ├── ncsi.h │ │ │ ├── ndctl.h │ │ │ ├── neighbour.h │ │ │ ├── net.h │ │ │ ├── net_dropmon.h │ │ │ ├── net_namespace.h │ │ │ ├── net_tstamp.h │ │ │ ├── netconf.h │ │ │ ├── netdev.h │ │ │ ├── netdevice.h │ │ │ ├── netfilter.h │ │ │ ├── netfilter │ │ │ │ ├── ipset │ │ │ │ │ ├── ip_set.h │ │ │ │ │ ├── ip_set_bitmap.h │ │ │ │ │ ├── ip_set_hash.h │ │ │ │ │ └── ip_set_list.h │ │ │ │ ├── nf_conntrack_common.h │ │ │ │ ├── nf_conntrack_ftp.h │ │ │ │ ├── nf_conntrack_sctp.h │ │ │ │ ├── nf_conntrack_tcp.h │ │ │ │ ├── nf_conntrack_tuple_common.h │ │ │ │ ├── nf_log.h │ │ │ │ ├── nf_nat.h │ │ │ │ ├── nf_synproxy.h │ │ │ │ ├── nf_tables.h │ │ │ │ ├── nf_tables_compat.h │ │ │ │ ├── nfnetlink.h │ │ │ │ ├── nfnetlink_acct.h │ │ │ │ ├── nfnetlink_compat.h │ │ │ │ ├── nfnetlink_conntrack.h │ │ │ │ ├── nfnetlink_cthelper.h │ │ │ │ ├── nfnetlink_cttimeout.h │ │ │ │ ├── nfnetlink_hook.h │ │ │ │ ├── nfnetlink_log.h │ │ │ │ ├── nfnetlink_osf.h │ │ │ │ ├── nfnetlink_queue.h │ │ │ │ ├── x_tables.h │ │ │ │ ├── xt_AUDIT.h │ │ │ │ ├── xt_CHECKSUM.h │ │ │ │ ├── xt_CLASSIFY.h │ │ │ │ ├── xt_CONNSECMARK.h │ │ │ │ ├── xt_CT.h │ │ │ │ ├── xt_HMARK.h │ │ │ │ ├── xt_IDLETIMER.h │ │ │ │ ├── xt_LED.h │ │ │ │ ├── xt_LOG.h │ │ │ │ ├── xt_NFLOG.h │ │ │ │ ├── xt_NFQUEUE.h │ │ │ │ ├── xt_SECMARK.h │ │ │ │ ├── xt_SYNPROXY.h │ │ │ │ ├── xt_TCPOPTSTRIP.h │ │ │ │ ├── xt_TEE.h │ │ │ │ ├── xt_TPROXY.h │ │ │ │ ├── xt_addrtype.h │ │ │ │ ├── xt_bpf.h │ │ │ │ ├── xt_cgroup.h │ │ │ │ ├── xt_cluster.h │ │ │ │ ├── xt_comment.h │ │ │ │ ├── xt_connbytes.h │ │ │ │ ├── xt_connlabel.h │ │ │ │ ├── xt_connlimit.h │ │ │ │ ├── xt_connmark.h │ │ │ │ ├── xt_conntrack.h │ │ │ │ ├── xt_cpu.h │ │ │ │ ├── xt_dccp.h │ │ │ │ ├── xt_devgroup.h │ │ │ │ ├── xt_dscp.h │ │ │ │ ├── xt_ecn.h │ │ │ │ ├── xt_esp.h │ │ │ │ ├── xt_hashlimit.h │ │ │ │ ├── xt_helper.h │ │ │ │ ├── xt_ipcomp.h │ │ │ │ ├── xt_iprange.h │ │ │ │ ├── xt_ipvs.h │ │ │ │ ├── xt_l2tp.h │ │ │ │ ├── xt_length.h │ │ │ │ ├── xt_limit.h │ │ │ │ ├── xt_mac.h │ │ │ │ ├── xt_mark.h │ │ │ │ ├── xt_multiport.h │ │ │ │ ├── xt_nfacct.h │ │ │ │ ├── xt_osf.h │ │ │ │ ├── xt_owner.h │ │ │ │ ├── xt_physdev.h │ │ │ │ ├── xt_pkttype.h │ │ │ │ ├── xt_policy.h │ │ │ │ ├── xt_quota.h │ │ │ │ ├── xt_rateest.h │ │ │ │ ├── xt_realm.h │ │ │ │ ├── xt_recent.h │ │ │ │ ├── xt_rpfilter.h │ │ │ │ ├── xt_sctp.h │ │ │ │ ├── xt_set.h │ │ │ │ ├── xt_socket.h │ │ │ │ ├── xt_state.h │ │ │ │ ├── xt_statistic.h │ │ │ │ ├── xt_string.h │ │ │ │ ├── xt_tcpmss.h │ │ │ │ ├── xt_tcpudp.h │ │ │ │ ├── xt_time.h │ │ │ │ └── xt_u32.h │ │ │ ├── netfilter_arp.h │ │ │ ├── netfilter_arp │ │ │ │ ├── arp_tables.h │ │ │ │ └── arpt_mangle.h │ │ │ ├── netfilter_bridge.h │ │ │ ├── netfilter_bridge │ │ │ │ ├── ebt_802_3.h │ │ │ │ ├── ebt_among.h │ │ │ │ ├── ebt_arp.h │ │ │ │ ├── ebt_arpreply.h │ │ │ │ ├── ebt_ip.h │ │ │ │ ├── ebt_ip6.h │ │ │ │ ├── ebt_limit.h │ │ │ │ ├── ebt_log.h │ │ │ │ ├── ebt_mark_m.h │ │ │ │ ├── ebt_mark_t.h │ │ │ │ ├── ebt_nat.h │ │ │ │ ├── ebt_nflog.h │ │ │ │ ├── ebt_pkttype.h │ │ │ │ ├── ebt_redirect.h │ │ │ │ ├── ebt_stp.h │ │ │ │ ├── ebt_vlan.h │ │ │ │ └── ebtables.h │ │ │ ├── netfilter_ipv4.h │ │ │ ├── netfilter_ipv4 │ │ │ │ ├── ip_tables.h │ │ │ │ ├── ipt_CLUSTERIP.h │ │ │ │ ├── ipt_LOG.h │ │ │ │ ├── ipt_REJECT.h │ │ │ │ ├── ipt_ah.h │ │ │ │ ├── ipt_ecn.h │ │ │ │ └── ipt_ttl.h │ │ │ ├── netfilter_ipv6.h │ │ │ ├── netfilter_ipv6 │ │ │ │ ├── ip6_tables.h │ │ │ │ ├── ip6t_LOG.h │ │ │ │ ├── ip6t_NPT.h │ │ │ │ ├── ip6t_REJECT.h │ │ │ │ ├── ip6t_ah.h │ │ │ │ ├── ip6t_frag.h │ │ │ │ ├── ip6t_hl.h │ │ │ │ ├── ip6t_ipv6header.h │ │ │ │ ├── ip6t_mh.h │ │ │ │ ├── ip6t_opts.h │ │ │ │ ├── ip6t_rt.h │ │ │ │ └── ip6t_srh.h │ │ │ ├── netlink.h │ │ │ ├── netlink_diag.h │ │ │ ├── netrom.h │ │ │ ├── nexthop.h │ │ │ ├── nfc.h │ │ │ ├── nfs.h │ │ │ ├── nfs2.h │ │ │ ├── nfs3.h │ │ │ ├── nfs4.h │ │ │ ├── nfs4_mount.h │ │ │ ├── nfs_fs.h │ │ │ ├── nfs_idmap.h │ │ │ ├── nfs_mount.h │ │ │ ├── nfsacl.h │ │ │ ├── nfsd │ │ │ │ ├── cld.h │ │ │ │ ├── debug.h │ │ │ │ ├── export.h │ │ │ │ └── stats.h │ │ │ ├── nilfs2_api.h │ │ │ ├── nilfs2_ondisk.h │ │ │ ├── nitro_enclaves.h │ │ │ ├── nl80211-vnd-intel.h │ │ │ ├── nl80211.h │ │ │ ├── nsfs.h │ │ │ ├── nubus.h │ │ │ ├── nvme_ioctl.h │ │ │ ├── nvram.h │ │ │ ├── omap3isp.h │ │ │ ├── omapfb.h │ │ │ ├── oom.h │ │ │ ├── openat2.h │ │ │ ├── openvswitch.h │ │ │ ├── packet_diag.h │ │ │ ├── param.h │ │ │ ├── parport.h │ │ │ ├── patchkey.h │ │ │ ├── pci.h │ │ │ ├── pci_regs.h │ │ │ ├── pcitest.h │ │ │ ├── perf_event.h │ │ │ ├── personality.h │ │ │ ├── pfkeyv2.h │ │ │ ├── pfrut.h │ │ │ ├── pg.h │ │ │ ├── phantom.h │ │ │ ├── phonet.h │ │ │ ├── pidfd.h │ │ │ ├── pkt_cls.h │ │ │ ├── pkt_sched.h │ │ │ ├── pktcdvd.h │ │ │ ├── pmu.h │ │ │ ├── poll.h │ │ │ ├── posix_acl.h │ │ │ ├── posix_acl_xattr.h │ │ │ ├── posix_types.h │ │ │ ├── ppdev.h │ │ │ ├── ppp-comp.h │ │ │ ├── ppp-ioctl.h │ │ │ ├── ppp_defs.h │ │ │ ├── pps.h │ │ │ ├── pr.h │ │ │ ├── prctl.h │ │ │ ├── psample.h │ │ │ ├── psci.h │ │ │ ├── psp-dbc.h │ │ │ ├── psp-sev.h │ │ │ ├── ptp_clock.h │ │ │ ├── ptrace.h │ │ │ ├── qemu_fw_cfg.h │ │ │ ├── qnx4_fs.h │ │ │ ├── qnxtypes.h │ │ │ ├── qrtr.h │ │ │ ├── quota.h │ │ │ ├── radeonfb.h │ │ │ ├── raid │ │ │ │ ├── md_p.h │ │ │ │ └── md_u.h │ │ │ ├── random.h │ │ │ ├── rds.h │ │ │ ├── reboot.h │ │ │ ├── reiserfs_fs.h │ │ │ ├── reiserfs_xattr.h │ │ │ ├── remoteproc_cdev.h │ │ │ ├── resource.h │ │ │ ├── rfkill.h │ │ │ ├── rio_cm_cdev.h │ │ │ ├── rio_mport_cdev.h │ │ │ ├── rkisp1-config.h │ │ │ ├── romfs_fs.h │ │ │ ├── rose.h │ │ │ ├── route.h │ │ │ ├── rpl.h │ │ │ ├── rpl_iptunnel.h │ │ │ ├── rpmsg.h │ │ │ ├── rpmsg_types.h │ │ │ ├── rseq.h │ │ │ ├── rtc.h │ │ │ ├── rtnetlink.h │ │ │ ├── rxrpc.h │ │ │ ├── scc.h │ │ │ ├── sched.h │ │ │ ├── sched │ │ │ │ └── types.h │ │ │ ├── scif_ioctl.h │ │ │ ├── screen_info.h │ │ │ ├── sctp.h │ │ │ ├── seccomp.h │ │ │ ├── securebits.h │ │ │ ├── sed-opal.h │ │ │ ├── seg6.h │ │ │ ├── seg6_genl.h │ │ │ ├── seg6_hmac.h │ │ │ ├── seg6_iptunnel.h │ │ │ ├── seg6_local.h │ │ │ ├── selinux_netlink.h │ │ │ ├── sem.h │ │ │ ├── serial.h │ │ │ ├── serial_core.h │ │ │ ├── serial_reg.h │ │ │ ├── serio.h │ │ │ ├── sev-guest.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── signalfd.h │ │ │ ├── smc.h │ │ │ ├── smc_diag.h │ │ │ ├── smiapp.h │ │ │ ├── snmp.h │ │ │ ├── sock_diag.h │ │ │ ├── socket.h │ │ │ ├── sockios.h │ │ │ ├── sonet.h │ │ │ ├── sonypi.h │ │ │ ├── sound.h │ │ │ ├── soundcard.h │ │ │ ├── spi │ │ │ │ ├── spi.h │ │ │ │ └── spidev.h │ │ │ ├── stat.h │ │ │ ├── stddef.h │ │ │ ├── stm.h │ │ │ ├── string.h │ │ │ ├── sunrpc │ │ │ │ └── debug.h │ │ │ ├── surface_aggregator │ │ │ │ ├── cdev.h │ │ │ │ └── dtx.h │ │ │ ├── suspend_ioctls.h │ │ │ ├── swab.h │ │ │ ├── switchtec_ioctl.h │ │ │ ├── sync_file.h │ │ │ ├── synclink.h │ │ │ ├── sysctl.h │ │ │ ├── sysinfo.h │ │ │ ├── target_core_user.h │ │ │ ├── taskstats.h │ │ │ ├── tc_act │ │ │ │ ├── tc_bpf.h │ │ │ │ ├── tc_connmark.h │ │ │ │ ├── tc_csum.h │ │ │ │ ├── tc_ct.h │ │ │ │ ├── tc_ctinfo.h │ │ │ │ ├── tc_defact.h │ │ │ │ ├── tc_gact.h │ │ │ │ ├── tc_gate.h │ │ │ │ ├── tc_ife.h │ │ │ │ ├── tc_ipt.h │ │ │ │ ├── tc_mirred.h │ │ │ │ ├── tc_mpls.h │ │ │ │ ├── tc_nat.h │ │ │ │ ├── tc_pedit.h │ │ │ │ ├── tc_sample.h │ │ │ │ ├── tc_skbedit.h │ │ │ │ ├── tc_skbmod.h │ │ │ │ ├── tc_tunnel_key.h │ │ │ │ └── tc_vlan.h │ │ │ ├── tc_ematch │ │ │ │ ├── tc_em_cmp.h │ │ │ │ ├── tc_em_ipt.h │ │ │ │ ├── tc_em_meta.h │ │ │ │ ├── tc_em_nbyte.h │ │ │ │ └── tc_em_text.h │ │ │ ├── tcp.h │ │ │ ├── tcp_metrics.h │ │ │ ├── tdx-guest.h │ │ │ ├── tee.h │ │ │ ├── termios.h │ │ │ ├── thermal.h │ │ │ ├── time.h │ │ │ ├── time_types.h │ │ │ ├── timerfd.h │ │ │ ├── times.h │ │ │ ├── timex.h │ │ │ ├── tiocl.h │ │ │ ├── tipc.h │ │ │ ├── tipc_config.h │ │ │ ├── tipc_netlink.h │ │ │ ├── tipc_sockets_diag.h │ │ │ ├── tls.h │ │ │ ├── toshiba.h │ │ │ ├── tps6594_pfsm.h │ │ │ ├── tty.h │ │ │ ├── tty_flags.h │ │ │ ├── types.h │ │ │ ├── ublk_cmd.h │ │ │ ├── udf_fs_i.h │ │ │ ├── udmabuf.h │ │ │ ├── udp.h │ │ │ ├── uhid.h │ │ │ ├── uinput.h │ │ │ ├── uio.h │ │ │ ├── uleds.h │ │ │ ├── ultrasound.h │ │ │ ├── um_timetravel.h │ │ │ ├── un.h │ │ │ ├── unistd.h │ │ │ ├── unix_diag.h │ │ │ ├── usb │ │ │ │ ├── audio.h │ │ │ │ ├── cdc-wdm.h │ │ │ │ ├── cdc.h │ │ │ │ ├── ch11.h │ │ │ │ ├── ch9.h │ │ │ │ ├── charger.h │ │ │ │ ├── functionfs.h │ │ │ │ ├── g_printer.h │ │ │ │ ├── g_uvc.h │ │ │ │ ├── gadgetfs.h │ │ │ │ ├── midi.h │ │ │ │ ├── raw_gadget.h │ │ │ │ ├── tmc.h │ │ │ │ └── video.h │ │ │ ├── usbdevice_fs.h │ │ │ ├── usbip.h │ │ │ ├── user_events.h │ │ │ ├── userfaultfd.h │ │ │ ├── userio.h │ │ │ ├── utime.h │ │ │ ├── utsname.h │ │ │ ├── uuid.h │ │ │ ├── uvcvideo.h │ │ │ ├── v4l2-common.h │ │ │ ├── v4l2-controls.h │ │ │ ├── v4l2-dv-timings.h │ │ │ ├── v4l2-mediabus.h │ │ │ ├── v4l2-subdev.h │ │ │ ├── vbox_err.h │ │ │ ├── vbox_vmmdev_types.h │ │ │ ├── vboxguest.h │ │ │ ├── vdpa.h │ │ │ ├── vduse.h │ │ │ ├── version.h │ │ │ ├── veth.h │ │ │ ├── vfio.h │ │ │ ├── vfio_ccw.h │ │ │ ├── vfio_zdev.h │ │ │ ├── vhost.h │ │ │ ├── vhost_types.h │ │ │ ├── videodev2.h │ │ │ ├── virtio_9p.h │ │ │ ├── virtio_balloon.h │ │ │ ├── virtio_blk.h │ │ │ ├── virtio_bt.h │ │ │ ├── virtio_config.h │ │ │ ├── virtio_console.h │ │ │ ├── virtio_crypto.h │ │ │ ├── virtio_fs.h │ │ │ ├── virtio_gpio.h │ │ │ ├── virtio_gpu.h │ │ │ ├── virtio_i2c.h │ │ │ ├── virtio_ids.h │ │ │ ├── virtio_input.h │ │ │ ├── virtio_iommu.h │ │ │ ├── virtio_mem.h │ │ │ ├── virtio_mmio.h │ │ │ ├── virtio_net.h │ │ │ ├── virtio_pci.h │ │ │ ├── virtio_pcidev.h │ │ │ ├── virtio_pmem.h │ │ │ ├── virtio_ring.h │ │ │ ├── virtio_rng.h │ │ │ ├── virtio_scmi.h │ │ │ ├── virtio_scsi.h │ │ │ ├── virtio_snd.h │ │ │ ├── virtio_types.h │ │ │ ├── virtio_vsock.h │ │ │ ├── vm_sockets.h │ │ │ ├── vm_sockets_diag.h │ │ │ ├── vmcore.h │ │ │ ├── vsockmon.h │ │ │ ├── vt.h │ │ │ ├── vtpm_proxy.h │ │ │ ├── wait.h │ │ │ ├── watch_queue.h │ │ │ ├── watchdog.h │ │ │ ├── wireguard.h │ │ │ ├── wireless.h │ │ │ ├── wmi.h │ │ │ ├── wwan.h │ │ │ ├── x25.h │ │ │ ├── xattr.h │ │ │ ├── xdp_diag.h │ │ │ ├── xfrm.h │ │ │ ├── xilinx-v4l2-controls.h │ │ │ ├── zorro.h │ │ │ └── zorro_ids.h │ │ ├── misc │ │ │ ├── cxl.h │ │ │ ├── fastrpc.h │ │ │ ├── ocxl.h │ │ │ ├── pvpanic.h │ │ │ ├── uacce │ │ │ │ ├── hisi_qm.h │ │ │ │ └── uacce.h │ │ │ └── xilinx_sdfec.h │ │ ├── mtd │ │ │ ├── inftl-user.h │ │ │ ├── mtd-abi.h │ │ │ ├── mtd-user.h │ │ │ ├── nftl-user.h │ │ │ └── ubi-user.h │ │ ├── rdma │ │ │ ├── bnxt_re-abi.h │ │ │ ├── cxgb4-abi.h │ │ │ ├── efa-abi.h │ │ │ ├── erdma-abi.h │ │ │ ├── hfi │ │ │ │ ├── hfi1_ioctl.h │ │ │ │ └── hfi1_user.h │ │ │ ├── hns-abi.h │ │ │ ├── ib_user_ioctl_cmds.h │ │ │ ├── ib_user_ioctl_verbs.h │ │ │ ├── ib_user_mad.h │ │ │ ├── ib_user_sa.h │ │ │ ├── ib_user_verbs.h │ │ │ ├── irdma-abi.h │ │ │ ├── mana-abi.h │ │ │ ├── mlx4-abi.h │ │ │ ├── mlx5-abi.h │ │ │ ├── mlx5_user_ioctl_cmds.h │ │ │ ├── mlx5_user_ioctl_verbs.h │ │ │ ├── mthca-abi.h │ │ │ ├── ocrdma-abi.h │ │ │ ├── qedr-abi.h │ │ │ ├── rdma_netlink.h │ │ │ ├── rdma_user_cm.h │ │ │ ├── rdma_user_ioctl.h │ │ │ ├── rdma_user_ioctl_cmds.h │ │ │ ├── rdma_user_rxe.h │ │ │ ├── rvt-abi.h │ │ │ ├── siw-abi.h │ │ │ └── vmw_pvrdma-abi.h │ │ ├── scsi │ │ │ ├── cxlflash_ioctl.h │ │ │ ├── fc │ │ │ │ ├── fc_els.h │ │ │ │ ├── fc_fs.h │ │ │ │ ├── fc_gs.h │ │ │ │ └── fc_ns.h │ │ │ ├── scsi_bsg_fc.h │ │ │ ├── scsi_bsg_mpi3mr.h │ │ │ ├── scsi_bsg_ufs.h │ │ │ ├── scsi_netlink.h │ │ │ └── scsi_netlink_fc.h │ │ ├── sound │ │ │ ├── asequencer.h │ │ │ ├── asoc.h │ │ │ ├── asound.h │ │ │ ├── asound_fm.h │ │ │ ├── compress_offload.h │ │ │ ├── compress_params.h │ │ │ ├── emu10k1.h │ │ │ ├── firewire.h │ │ │ ├── hdsp.h │ │ │ ├── hdspm.h │ │ │ ├── intel │ │ │ │ └── avs │ │ │ │ │ └── tokens.h │ │ │ ├── sb16_csp.h │ │ │ ├── sfnt_info.h │ │ │ ├── skl-tplg-interface.h │ │ │ ├── snd_ar_tokens.h │ │ │ ├── snd_sst_tokens.h │ │ │ ├── sof │ │ │ │ ├── abi.h │ │ │ │ ├── fw.h │ │ │ │ ├── header.h │ │ │ │ └── tokens.h │ │ │ ├── tlv.h │ │ │ └── usb_stream.h │ │ ├── video │ │ │ ├── edid.h │ │ │ ├── sisfb.h │ │ │ └── uvesafb.h │ │ └── xen │ │ │ ├── evtchn.h │ │ │ ├── gntalloc.h │ │ │ ├── gntdev.h │ │ │ └── privcmd.h │ ├── riscv64-linux │ │ ├── asm-generic │ │ │ ├── auxvec.h │ │ │ ├── bitsperlong.h │ │ │ ├── bpf_perf_event.h │ │ │ ├── errno-base.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── hugetlb_encode.h │ │ │ ├── int-l64.h │ │ │ ├── int-ll64.h │ │ │ ├── ioctl.h │ │ │ ├── ioctls.h │ │ │ ├── ipcbuf.h │ │ │ ├── kvm_para.h │ │ │ ├── mman-common.h │ │ │ ├── mman.h │ │ │ ├── msgbuf.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── posix_types.h │ │ │ ├── resource.h │ │ │ ├── sembuf.h │ │ │ ├── setup.h │ │ │ ├── shmbuf.h │ │ │ ├── siginfo.h │ │ │ ├── signal-defs.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockios.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── swab.h │ │ │ ├── termbits-common.h │ │ │ ├── termbits.h │ │ │ ├── termios.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ └── unistd.h │ │ ├── asm │ │ │ ├── auxvec.h │ │ │ ├── bitsperlong.h │ │ │ ├── bpf_perf_event.h │ │ │ ├── byteorder.h │ │ │ ├── elf.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── hwcap.h │ │ │ ├── hwprobe.h │ │ │ ├── ioctl.h │ │ │ ├── ioctls.h │ │ │ ├── ipcbuf.h │ │ │ ├── kvm.h │ │ │ ├── mman.h │ │ │ ├── msgbuf.h │ │ │ ├── param.h │ │ │ ├── perf_regs.h │ │ │ ├── poll.h │ │ │ ├── posix_types.h │ │ │ ├── ptrace.h │ │ │ ├── resource.h │ │ │ ├── sembuf.h │ │ │ ├── setup.h │ │ │ ├── shmbuf.h │ │ │ ├── sigcontext.h │ │ │ ├── siginfo.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockios.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── swab.h │ │ │ ├── termbits.h │ │ │ ├── termios.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ └── unistd.h │ │ ├── drm │ │ │ ├── amdgpu_drm.h │ │ │ ├── armada_drm.h │ │ │ ├── drm.h │ │ │ ├── drm_fourcc.h │ │ │ ├── drm_mode.h │ │ │ ├── drm_sarea.h │ │ │ ├── etnaviv_drm.h │ │ │ ├── exynos_drm.h │ │ │ ├── habanalabs_accel.h │ │ │ ├── i915_drm.h │ │ │ ├── ivpu_accel.h │ │ │ ├── lima_drm.h │ │ │ ├── msm_drm.h │ │ │ ├── nouveau_drm.h │ │ │ ├── omap_drm.h │ │ │ ├── panfrost_drm.h │ │ │ ├── qaic_accel.h │ │ │ ├── qxl_drm.h │ │ │ ├── radeon_drm.h │ │ │ ├── tegra_drm.h │ │ │ ├── v3d_drm.h │ │ │ ├── vc4_drm.h │ │ │ ├── vgem_drm.h │ │ │ ├── virtgpu_drm.h │ │ │ └── vmwgfx_drm.h │ │ ├── linux │ │ │ ├── acct.h │ │ │ ├── acrn.h │ │ │ ├── adb.h │ │ │ ├── adfs_fs.h │ │ │ ├── affs_hardblocks.h │ │ │ ├── agpgart.h │ │ │ ├── aio_abi.h │ │ │ ├── am437x-vpfe.h │ │ │ ├── amt.h │ │ │ ├── android │ │ │ │ ├── binder.h │ │ │ │ └── binderfs.h │ │ │ ├── apm_bios.h │ │ │ ├── arcfb.h │ │ │ ├── arm_sdei.h │ │ │ ├── aspeed-lpc-ctrl.h │ │ │ ├── aspeed-p2a-ctrl.h │ │ │ ├── aspeed-video.h │ │ │ ├── atalk.h │ │ │ ├── atm.h │ │ │ ├── atm_eni.h │ │ │ ├── atm_he.h │ │ │ ├── atm_idt77105.h │ │ │ ├── atm_nicstar.h │ │ │ ├── atm_tcp.h │ │ │ ├── atm_zatm.h │ │ │ ├── atmapi.h │ │ │ ├── atmarp.h │ │ │ ├── atmbr2684.h │ │ │ ├── atmclip.h │ │ │ ├── atmdev.h │ │ │ ├── atmioc.h │ │ │ ├── atmlec.h │ │ │ ├── atmmpc.h │ │ │ ├── atmppp.h │ │ │ ├── atmsap.h │ │ │ ├── atmsvc.h │ │ │ ├── audit.h │ │ │ ├── auto_dev-ioctl.h │ │ │ ├── auto_fs.h │ │ │ ├── auto_fs4.h │ │ │ ├── auxvec.h │ │ │ ├── ax25.h │ │ │ ├── batadv_packet.h │ │ │ ├── batman_adv.h │ │ │ ├── baycom.h │ │ │ ├── bcm933xx_hcs.h │ │ │ ├── bfs_fs.h │ │ │ ├── binfmts.h │ │ │ ├── blkpg.h │ │ │ ├── blktrace_api.h │ │ │ ├── blkzoned.h │ │ │ ├── bpf.h │ │ │ ├── bpf_common.h │ │ │ ├── bpf_perf_event.h │ │ │ ├── bpfilter.h │ │ │ ├── bpqether.h │ │ │ ├── bsg.h │ │ │ ├── bt-bmc.h │ │ │ ├── btf.h │ │ │ ├── btrfs.h │ │ │ ├── btrfs_tree.h │ │ │ ├── byteorder │ │ │ │ ├── big_endian.h │ │ │ │ └── little_endian.h │ │ │ ├── cachefiles.h │ │ │ ├── caif │ │ │ │ ├── caif_socket.h │ │ │ │ └── if_caif.h │ │ │ ├── can.h │ │ │ ├── can │ │ │ │ ├── bcm.h │ │ │ │ ├── error.h │ │ │ │ ├── gw.h │ │ │ │ ├── isotp.h │ │ │ │ ├── j1939.h │ │ │ │ ├── netlink.h │ │ │ │ ├── raw.h │ │ │ │ └── vxcan.h │ │ │ ├── capability.h │ │ │ ├── capi.h │ │ │ ├── cciss_defs.h │ │ │ ├── cciss_ioctl.h │ │ │ ├── ccs.h │ │ │ ├── cdrom.h │ │ │ ├── cec-funcs.h │ │ │ ├── cec.h │ │ │ ├── cfm_bridge.h │ │ │ ├── cgroupstats.h │ │ │ ├── chio.h │ │ │ ├── cifs │ │ │ │ ├── cifs_mount.h │ │ │ │ └── cifs_netlink.h │ │ │ ├── close_range.h │ │ │ ├── cn_proc.h │ │ │ ├── coda.h │ │ │ ├── coff.h │ │ │ ├── comedi.h │ │ │ ├── connector.h │ │ │ ├── const.h │ │ │ ├── coresight-stm.h │ │ │ ├── counter.h │ │ │ ├── cramfs_fs.h │ │ │ ├── cryptouser.h │ │ │ ├── cuda.h │ │ │ ├── cxl_mem.h │ │ │ ├── cyclades.h │ │ │ ├── cycx_cfm.h │ │ │ ├── dcbnl.h │ │ │ ├── dccp.h │ │ │ ├── devlink.h │ │ │ ├── dlm.h │ │ │ ├── dlm_device.h │ │ │ ├── dlm_plock.h │ │ │ ├── dlmconstants.h │ │ │ ├── dm-ioctl.h │ │ │ ├── dm-log-userspace.h │ │ │ ├── dma-buf.h │ │ │ ├── dma-heap.h │ │ │ ├── dns_resolver.h │ │ │ ├── dqblk_xfs.h │ │ │ ├── dvb │ │ │ │ ├── audio.h │ │ │ │ ├── ca.h │ │ │ │ ├── dmx.h │ │ │ │ ├── frontend.h │ │ │ │ ├── net.h │ │ │ │ ├── osd.h │ │ │ │ ├── version.h │ │ │ │ └── video.h │ │ │ ├── dw100.h │ │ │ ├── edd.h │ │ │ ├── efs_fs_sb.h │ │ │ ├── elf-em.h │ │ │ ├── elf-fdpic.h │ │ │ ├── elf.h │ │ │ ├── errno.h │ │ │ ├── errqueue.h │ │ │ ├── erspan.h │ │ │ ├── ethtool.h │ │ │ ├── ethtool_netlink.h │ │ │ ├── eventfd.h │ │ │ ├── eventpoll.h │ │ │ ├── ext4.h │ │ │ ├── f2fs.h │ │ │ ├── fadvise.h │ │ │ ├── falloc.h │ │ │ ├── fanotify.h │ │ │ ├── fb.h │ │ │ ├── fcntl.h │ │ │ ├── fd.h │ │ │ ├── fdreg.h │ │ │ ├── fib_rules.h │ │ │ ├── fiemap.h │ │ │ ├── filter.h │ │ │ ├── firewire-cdev.h │ │ │ ├── firewire-constants.h │ │ │ ├── fou.h │ │ │ ├── fpga-dfl.h │ │ │ ├── fs.h │ │ │ ├── fscrypt.h │ │ │ ├── fsi.h │ │ │ ├── fsl_hypervisor.h │ │ │ ├── fsl_mc.h │ │ │ ├── fsmap.h │ │ │ ├── fsverity.h │ │ │ ├── fuse.h │ │ │ ├── futex.h │ │ │ ├── gameport.h │ │ │ ├── gen_stats.h │ │ │ ├── genetlink.h │ │ │ ├── genwqe │ │ │ │ └── genwqe_card.h │ │ │ ├── gfs2_ondisk.h │ │ │ ├── gpio.h │ │ │ ├── gsmmux.h │ │ │ ├── gtp.h │ │ │ ├── handshake.h │ │ │ ├── hash_info.h │ │ │ ├── hdlc.h │ │ │ ├── hdlc │ │ │ │ └── ioctl.h │ │ │ ├── hdlcdrv.h │ │ │ ├── hdreg.h │ │ │ ├── hid.h │ │ │ ├── hiddev.h │ │ │ ├── hidraw.h │ │ │ ├── hpet.h │ │ │ ├── hsi │ │ │ │ ├── cs-protocol.h │ │ │ │ └── hsi_char.h │ │ │ ├── hsr_netlink.h │ │ │ ├── hw_breakpoint.h │ │ │ ├── hyperv.h │ │ │ ├── i2c-dev.h │ │ │ ├── i2c.h │ │ │ ├── i2o-dev.h │ │ │ ├── i8k.h │ │ │ ├── icmp.h │ │ │ ├── icmpv6.h │ │ │ ├── idxd.h │ │ │ ├── if.h │ │ │ ├── if_addr.h │ │ │ ├── if_addrlabel.h │ │ │ ├── if_alg.h │ │ │ ├── if_arcnet.h │ │ │ ├── if_arp.h │ │ │ ├── if_bonding.h │ │ │ ├── if_bridge.h │ │ │ ├── if_cablemodem.h │ │ │ ├── if_eql.h │ │ │ ├── if_ether.h │ │ │ ├── if_fc.h │ │ │ ├── if_fddi.h │ │ │ ├── if_hippi.h │ │ │ ├── if_infiniband.h │ │ │ ├── if_link.h │ │ │ ├── if_ltalk.h │ │ │ ├── if_macsec.h │ │ │ ├── if_packet.h │ │ │ ├── if_phonet.h │ │ │ ├── if_plip.h │ │ │ ├── if_ppp.h │ │ │ ├── if_pppol2tp.h │ │ │ ├── if_pppox.h │ │ │ ├── if_slip.h │ │ │ ├── if_team.h │ │ │ ├── if_tun.h │ │ │ ├── if_tunnel.h │ │ │ ├── if_vlan.h │ │ │ ├── if_x25.h │ │ │ ├── if_xdp.h │ │ │ ├── ife.h │ │ │ ├── igmp.h │ │ │ ├── iio │ │ │ │ ├── buffer.h │ │ │ │ ├── events.h │ │ │ │ └── types.h │ │ │ ├── ila.h │ │ │ ├── in.h │ │ │ ├── in6.h │ │ │ ├── in_route.h │ │ │ ├── inet_diag.h │ │ │ ├── inotify.h │ │ │ ├── input-event-codes.h │ │ │ ├── input.h │ │ │ ├── io_uring.h │ │ │ ├── ioam6.h │ │ │ ├── ioam6_genl.h │ │ │ ├── ioam6_iptunnel.h │ │ │ ├── ioctl.h │ │ │ ├── iommu.h │ │ │ ├── iommufd.h │ │ │ ├── ioprio.h │ │ │ ├── ip.h │ │ │ ├── ip6_tunnel.h │ │ │ ├── ip_vs.h │ │ │ ├── ipc.h │ │ │ ├── ipmi.h │ │ │ ├── ipmi_bmc.h │ │ │ ├── ipmi_msgdefs.h │ │ │ ├── ipmi_ssif_bmc.h │ │ │ ├── ipsec.h │ │ │ ├── ipv6.h │ │ │ ├── ipv6_route.h │ │ │ ├── irqnr.h │ │ │ ├── isdn │ │ │ │ └── capicmd.h │ │ │ ├── iso_fs.h │ │ │ ├── isst_if.h │ │ │ ├── ivtv.h │ │ │ ├── ivtvfb.h │ │ │ ├── jffs2.h │ │ │ ├── joystick.h │ │ │ ├── kcm.h │ │ │ ├── kcmp.h │ │ │ ├── kcov.h │ │ │ ├── kd.h │ │ │ ├── kdev_t.h │ │ │ ├── kernel-page-flags.h │ │ │ ├── kernel.h │ │ │ ├── kernelcapi.h │ │ │ ├── kexec.h │ │ │ ├── keyboard.h │ │ │ ├── keyctl.h │ │ │ ├── kfd_ioctl.h │ │ │ ├── kfd_sysfs.h │ │ │ ├── kvm.h │ │ │ ├── l2tp.h │ │ │ ├── landlock.h │ │ │ ├── libc-compat.h │ │ │ ├── limits.h │ │ │ ├── lirc.h │ │ │ ├── llc.h │ │ │ ├── loadpin.h │ │ │ ├── loop.h │ │ │ ├── lp.h │ │ │ ├── lwtunnel.h │ │ │ ├── magic.h │ │ │ ├── major.h │ │ │ ├── map_to_14segment.h │ │ │ ├── map_to_7segment.h │ │ │ ├── matroxfb.h │ │ │ ├── max2175.h │ │ │ ├── mctp.h │ │ │ ├── mdio.h │ │ │ ├── media-bus-format.h │ │ │ ├── media.h │ │ │ ├── mei.h │ │ │ ├── mei_uuid.h │ │ │ ├── membarrier.h │ │ │ ├── memfd.h │ │ │ ├── mempolicy.h │ │ │ ├── mii.h │ │ │ ├── minix_fs.h │ │ │ ├── misc │ │ │ │ └── bcm_vk.h │ │ │ ├── mman.h │ │ │ ├── mmc │ │ │ │ └── ioctl.h │ │ │ ├── mmtimer.h │ │ │ ├── module.h │ │ │ ├── mount.h │ │ │ ├── mpls.h │ │ │ ├── mpls_iptunnel.h │ │ │ ├── mptcp.h │ │ │ ├── mqueue.h │ │ │ ├── mroute.h │ │ │ ├── mroute6.h │ │ │ ├── mrp_bridge.h │ │ │ ├── msdos_fs.h │ │ │ ├── msg.h │ │ │ ├── mtio.h │ │ │ ├── nbd-netlink.h │ │ │ ├── nbd.h │ │ │ ├── ncsi.h │ │ │ ├── ndctl.h │ │ │ ├── neighbour.h │ │ │ ├── net.h │ │ │ ├── net_dropmon.h │ │ │ ├── net_namespace.h │ │ │ ├── net_tstamp.h │ │ │ ├── netconf.h │ │ │ ├── netdev.h │ │ │ ├── netdevice.h │ │ │ ├── netfilter.h │ │ │ ├── netfilter │ │ │ │ ├── ipset │ │ │ │ │ ├── ip_set.h │ │ │ │ │ ├── ip_set_bitmap.h │ │ │ │ │ ├── ip_set_hash.h │ │ │ │ │ └── ip_set_list.h │ │ │ │ ├── nf_conntrack_common.h │ │ │ │ ├── nf_conntrack_ftp.h │ │ │ │ ├── nf_conntrack_sctp.h │ │ │ │ ├── nf_conntrack_tcp.h │ │ │ │ ├── nf_conntrack_tuple_common.h │ │ │ │ ├── nf_log.h │ │ │ │ ├── nf_nat.h │ │ │ │ ├── nf_synproxy.h │ │ │ │ ├── nf_tables.h │ │ │ │ ├── nf_tables_compat.h │ │ │ │ ├── nfnetlink.h │ │ │ │ ├── nfnetlink_acct.h │ │ │ │ ├── nfnetlink_compat.h │ │ │ │ ├── nfnetlink_conntrack.h │ │ │ │ ├── nfnetlink_cthelper.h │ │ │ │ ├── nfnetlink_cttimeout.h │ │ │ │ ├── nfnetlink_hook.h │ │ │ │ ├── nfnetlink_log.h │ │ │ │ ├── nfnetlink_osf.h │ │ │ │ ├── nfnetlink_queue.h │ │ │ │ ├── x_tables.h │ │ │ │ ├── xt_AUDIT.h │ │ │ │ ├── xt_CHECKSUM.h │ │ │ │ ├── xt_CLASSIFY.h │ │ │ │ ├── xt_CONNSECMARK.h │ │ │ │ ├── xt_CT.h │ │ │ │ ├── xt_HMARK.h │ │ │ │ ├── xt_IDLETIMER.h │ │ │ │ ├── xt_LED.h │ │ │ │ ├── xt_LOG.h │ │ │ │ ├── xt_NFLOG.h │ │ │ │ ├── xt_NFQUEUE.h │ │ │ │ ├── xt_SECMARK.h │ │ │ │ ├── xt_SYNPROXY.h │ │ │ │ ├── xt_TCPOPTSTRIP.h │ │ │ │ ├── xt_TEE.h │ │ │ │ ├── xt_TPROXY.h │ │ │ │ ├── xt_addrtype.h │ │ │ │ ├── xt_bpf.h │ │ │ │ ├── xt_cgroup.h │ │ │ │ ├── xt_cluster.h │ │ │ │ ├── xt_comment.h │ │ │ │ ├── xt_connbytes.h │ │ │ │ ├── xt_connlabel.h │ │ │ │ ├── xt_connlimit.h │ │ │ │ ├── xt_connmark.h │ │ │ │ ├── xt_conntrack.h │ │ │ │ ├── xt_cpu.h │ │ │ │ ├── xt_dccp.h │ │ │ │ ├── xt_devgroup.h │ │ │ │ ├── xt_dscp.h │ │ │ │ ├── xt_ecn.h │ │ │ │ ├── xt_esp.h │ │ │ │ ├── xt_hashlimit.h │ │ │ │ ├── xt_helper.h │ │ │ │ ├── xt_ipcomp.h │ │ │ │ ├── xt_iprange.h │ │ │ │ ├── xt_ipvs.h │ │ │ │ ├── xt_l2tp.h │ │ │ │ ├── xt_length.h │ │ │ │ ├── xt_limit.h │ │ │ │ ├── xt_mac.h │ │ │ │ ├── xt_mark.h │ │ │ │ ├── xt_multiport.h │ │ │ │ ├── xt_nfacct.h │ │ │ │ ├── xt_osf.h │ │ │ │ ├── xt_owner.h │ │ │ │ ├── xt_physdev.h │ │ │ │ ├── xt_pkttype.h │ │ │ │ ├── xt_policy.h │ │ │ │ ├── xt_quota.h │ │ │ │ ├── xt_rateest.h │ │ │ │ ├── xt_realm.h │ │ │ │ ├── xt_recent.h │ │ │ │ ├── xt_rpfilter.h │ │ │ │ ├── xt_sctp.h │ │ │ │ ├── xt_set.h │ │ │ │ ├── xt_socket.h │ │ │ │ ├── xt_state.h │ │ │ │ ├── xt_statistic.h │ │ │ │ ├── xt_string.h │ │ │ │ ├── xt_tcpmss.h │ │ │ │ ├── xt_tcpudp.h │ │ │ │ ├── xt_time.h │ │ │ │ └── xt_u32.h │ │ │ ├── netfilter_arp.h │ │ │ ├── netfilter_arp │ │ │ │ ├── arp_tables.h │ │ │ │ └── arpt_mangle.h │ │ │ ├── netfilter_bridge.h │ │ │ ├── netfilter_bridge │ │ │ │ ├── ebt_802_3.h │ │ │ │ ├── ebt_among.h │ │ │ │ ├── ebt_arp.h │ │ │ │ ├── ebt_arpreply.h │ │ │ │ ├── ebt_ip.h │ │ │ │ ├── ebt_ip6.h │ │ │ │ ├── ebt_limit.h │ │ │ │ ├── ebt_log.h │ │ │ │ ├── ebt_mark_m.h │ │ │ │ ├── ebt_mark_t.h │ │ │ │ ├── ebt_nat.h │ │ │ │ ├── ebt_nflog.h │ │ │ │ ├── ebt_pkttype.h │ │ │ │ ├── ebt_redirect.h │ │ │ │ ├── ebt_stp.h │ │ │ │ ├── ebt_vlan.h │ │ │ │ └── ebtables.h │ │ │ ├── netfilter_ipv4.h │ │ │ ├── netfilter_ipv4 │ │ │ │ ├── ip_tables.h │ │ │ │ ├── ipt_CLUSTERIP.h │ │ │ │ ├── ipt_LOG.h │ │ │ │ ├── ipt_REJECT.h │ │ │ │ ├── ipt_ah.h │ │ │ │ ├── ipt_ecn.h │ │ │ │ └── ipt_ttl.h │ │ │ ├── netfilter_ipv6.h │ │ │ ├── netfilter_ipv6 │ │ │ │ ├── ip6_tables.h │ │ │ │ ├── ip6t_LOG.h │ │ │ │ ├── ip6t_NPT.h │ │ │ │ ├── ip6t_REJECT.h │ │ │ │ ├── ip6t_ah.h │ │ │ │ ├── ip6t_frag.h │ │ │ │ ├── ip6t_hl.h │ │ │ │ ├── ip6t_ipv6header.h │ │ │ │ ├── ip6t_mh.h │ │ │ │ ├── ip6t_opts.h │ │ │ │ ├── ip6t_rt.h │ │ │ │ └── ip6t_srh.h │ │ │ ├── netlink.h │ │ │ ├── netlink_diag.h │ │ │ ├── netrom.h │ │ │ ├── nexthop.h │ │ │ ├── nfc.h │ │ │ ├── nfs.h │ │ │ ├── nfs2.h │ │ │ ├── nfs3.h │ │ │ ├── nfs4.h │ │ │ ├── nfs4_mount.h │ │ │ ├── nfs_fs.h │ │ │ ├── nfs_idmap.h │ │ │ ├── nfs_mount.h │ │ │ ├── nfsacl.h │ │ │ ├── nfsd │ │ │ │ ├── cld.h │ │ │ │ ├── debug.h │ │ │ │ ├── export.h │ │ │ │ └── stats.h │ │ │ ├── nilfs2_api.h │ │ │ ├── nilfs2_ondisk.h │ │ │ ├── nitro_enclaves.h │ │ │ ├── nl80211-vnd-intel.h │ │ │ ├── nl80211.h │ │ │ ├── nsfs.h │ │ │ ├── nubus.h │ │ │ ├── nvme_ioctl.h │ │ │ ├── nvram.h │ │ │ ├── omap3isp.h │ │ │ ├── omapfb.h │ │ │ ├── oom.h │ │ │ ├── openat2.h │ │ │ ├── openvswitch.h │ │ │ ├── packet_diag.h │ │ │ ├── param.h │ │ │ ├── parport.h │ │ │ ├── patchkey.h │ │ │ ├── pci.h │ │ │ ├── pci_regs.h │ │ │ ├── pcitest.h │ │ │ ├── perf_event.h │ │ │ ├── personality.h │ │ │ ├── pfkeyv2.h │ │ │ ├── pfrut.h │ │ │ ├── pg.h │ │ │ ├── phantom.h │ │ │ ├── phonet.h │ │ │ ├── pidfd.h │ │ │ ├── pkt_cls.h │ │ │ ├── pkt_sched.h │ │ │ ├── pktcdvd.h │ │ │ ├── pmu.h │ │ │ ├── poll.h │ │ │ ├── posix_acl.h │ │ │ ├── posix_acl_xattr.h │ │ │ ├── posix_types.h │ │ │ ├── ppdev.h │ │ │ ├── ppp-comp.h │ │ │ ├── ppp-ioctl.h │ │ │ ├── ppp_defs.h │ │ │ ├── pps.h │ │ │ ├── pr.h │ │ │ ├── prctl.h │ │ │ ├── psample.h │ │ │ ├── psci.h │ │ │ ├── psp-dbc.h │ │ │ ├── psp-sev.h │ │ │ ├── ptp_clock.h │ │ │ ├── ptrace.h │ │ │ ├── qemu_fw_cfg.h │ │ │ ├── qnx4_fs.h │ │ │ ├── qnxtypes.h │ │ │ ├── qrtr.h │ │ │ ├── quota.h │ │ │ ├── radeonfb.h │ │ │ ├── raid │ │ │ │ ├── md_p.h │ │ │ │ └── md_u.h │ │ │ ├── random.h │ │ │ ├── rds.h │ │ │ ├── reboot.h │ │ │ ├── reiserfs_fs.h │ │ │ ├── reiserfs_xattr.h │ │ │ ├── remoteproc_cdev.h │ │ │ ├── resource.h │ │ │ ├── rfkill.h │ │ │ ├── rio_cm_cdev.h │ │ │ ├── rio_mport_cdev.h │ │ │ ├── rkisp1-config.h │ │ │ ├── romfs_fs.h │ │ │ ├── rose.h │ │ │ ├── route.h │ │ │ ├── rpl.h │ │ │ ├── rpl_iptunnel.h │ │ │ ├── rpmsg.h │ │ │ ├── rpmsg_types.h │ │ │ ├── rseq.h │ │ │ ├── rtc.h │ │ │ ├── rtnetlink.h │ │ │ ├── rxrpc.h │ │ │ ├── scc.h │ │ │ ├── sched.h │ │ │ ├── sched │ │ │ │ └── types.h │ │ │ ├── scif_ioctl.h │ │ │ ├── screen_info.h │ │ │ ├── sctp.h │ │ │ ├── seccomp.h │ │ │ ├── securebits.h │ │ │ ├── sed-opal.h │ │ │ ├── seg6.h │ │ │ ├── seg6_genl.h │ │ │ ├── seg6_hmac.h │ │ │ ├── seg6_iptunnel.h │ │ │ ├── seg6_local.h │ │ │ ├── selinux_netlink.h │ │ │ ├── sem.h │ │ │ ├── serial.h │ │ │ ├── serial_core.h │ │ │ ├── serial_reg.h │ │ │ ├── serio.h │ │ │ ├── sev-guest.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── signalfd.h │ │ │ ├── smc.h │ │ │ ├── smc_diag.h │ │ │ ├── smiapp.h │ │ │ ├── snmp.h │ │ │ ├── sock_diag.h │ │ │ ├── socket.h │ │ │ ├── sockios.h │ │ │ ├── sonet.h │ │ │ ├── sonypi.h │ │ │ ├── sound.h │ │ │ ├── soundcard.h │ │ │ ├── spi │ │ │ │ ├── spi.h │ │ │ │ └── spidev.h │ │ │ ├── stat.h │ │ │ ├── stddef.h │ │ │ ├── stm.h │ │ │ ├── string.h │ │ │ ├── sunrpc │ │ │ │ └── debug.h │ │ │ ├── surface_aggregator │ │ │ │ ├── cdev.h │ │ │ │ └── dtx.h │ │ │ ├── suspend_ioctls.h │ │ │ ├── swab.h │ │ │ ├── switchtec_ioctl.h │ │ │ ├── sync_file.h │ │ │ ├── synclink.h │ │ │ ├── sysctl.h │ │ │ ├── sysinfo.h │ │ │ ├── target_core_user.h │ │ │ ├── taskstats.h │ │ │ ├── tc_act │ │ │ │ ├── tc_bpf.h │ │ │ │ ├── tc_connmark.h │ │ │ │ ├── tc_csum.h │ │ │ │ ├── tc_ct.h │ │ │ │ ├── tc_ctinfo.h │ │ │ │ ├── tc_defact.h │ │ │ │ ├── tc_gact.h │ │ │ │ ├── tc_gate.h │ │ │ │ ├── tc_ife.h │ │ │ │ ├── tc_ipt.h │ │ │ │ ├── tc_mirred.h │ │ │ │ ├── tc_mpls.h │ │ │ │ ├── tc_nat.h │ │ │ │ ├── tc_pedit.h │ │ │ │ ├── tc_sample.h │ │ │ │ ├── tc_skbedit.h │ │ │ │ ├── tc_skbmod.h │ │ │ │ ├── tc_tunnel_key.h │ │ │ │ └── tc_vlan.h │ │ │ ├── tc_ematch │ │ │ │ ├── tc_em_cmp.h │ │ │ │ ├── tc_em_ipt.h │ │ │ │ ├── tc_em_meta.h │ │ │ │ ├── tc_em_nbyte.h │ │ │ │ └── tc_em_text.h │ │ │ ├── tcp.h │ │ │ ├── tcp_metrics.h │ │ │ ├── tdx-guest.h │ │ │ ├── tee.h │ │ │ ├── termios.h │ │ │ ├── thermal.h │ │ │ ├── time.h │ │ │ ├── time_types.h │ │ │ ├── timerfd.h │ │ │ ├── times.h │ │ │ ├── timex.h │ │ │ ├── tiocl.h │ │ │ ├── tipc.h │ │ │ ├── tipc_config.h │ │ │ ├── tipc_netlink.h │ │ │ ├── tipc_sockets_diag.h │ │ │ ├── tls.h │ │ │ ├── toshiba.h │ │ │ ├── tps6594_pfsm.h │ │ │ ├── tty.h │ │ │ ├── tty_flags.h │ │ │ ├── types.h │ │ │ ├── ublk_cmd.h │ │ │ ├── udf_fs_i.h │ │ │ ├── udmabuf.h │ │ │ ├── udp.h │ │ │ ├── uhid.h │ │ │ ├── uinput.h │ │ │ ├── uio.h │ │ │ ├── uleds.h │ │ │ ├── ultrasound.h │ │ │ ├── um_timetravel.h │ │ │ ├── un.h │ │ │ ├── unistd.h │ │ │ ├── unix_diag.h │ │ │ ├── usb │ │ │ │ ├── audio.h │ │ │ │ ├── cdc-wdm.h │ │ │ │ ├── cdc.h │ │ │ │ ├── ch11.h │ │ │ │ ├── ch9.h │ │ │ │ ├── charger.h │ │ │ │ ├── functionfs.h │ │ │ │ ├── g_printer.h │ │ │ │ ├── g_uvc.h │ │ │ │ ├── gadgetfs.h │ │ │ │ ├── midi.h │ │ │ │ ├── raw_gadget.h │ │ │ │ ├── tmc.h │ │ │ │ └── video.h │ │ │ ├── usbdevice_fs.h │ │ │ ├── usbip.h │ │ │ ├── user_events.h │ │ │ ├── userfaultfd.h │ │ │ ├── userio.h │ │ │ ├── utime.h │ │ │ ├── utsname.h │ │ │ ├── uuid.h │ │ │ ├── uvcvideo.h │ │ │ ├── v4l2-common.h │ │ │ ├── v4l2-controls.h │ │ │ ├── v4l2-dv-timings.h │ │ │ ├── v4l2-mediabus.h │ │ │ ├── v4l2-subdev.h │ │ │ ├── vbox_err.h │ │ │ ├── vbox_vmmdev_types.h │ │ │ ├── vboxguest.h │ │ │ ├── vdpa.h │ │ │ ├── vduse.h │ │ │ ├── version.h │ │ │ ├── veth.h │ │ │ ├── vfio.h │ │ │ ├── vfio_ccw.h │ │ │ ├── vfio_zdev.h │ │ │ ├── vhost.h │ │ │ ├── vhost_types.h │ │ │ ├── videodev2.h │ │ │ ├── virtio_9p.h │ │ │ ├── virtio_balloon.h │ │ │ ├── virtio_blk.h │ │ │ ├── virtio_bt.h │ │ │ ├── virtio_config.h │ │ │ ├── virtio_console.h │ │ │ ├── virtio_crypto.h │ │ │ ├── virtio_fs.h │ │ │ ├── virtio_gpio.h │ │ │ ├── virtio_gpu.h │ │ │ ├── virtio_i2c.h │ │ │ ├── virtio_ids.h │ │ │ ├── virtio_input.h │ │ │ ├── virtio_iommu.h │ │ │ ├── virtio_mem.h │ │ │ ├── virtio_mmio.h │ │ │ ├── virtio_net.h │ │ │ ├── virtio_pci.h │ │ │ ├── virtio_pcidev.h │ │ │ ├── virtio_pmem.h │ │ │ ├── virtio_ring.h │ │ │ ├── virtio_rng.h │ │ │ ├── virtio_scmi.h │ │ │ ├── virtio_scsi.h │ │ │ ├── virtio_snd.h │ │ │ ├── virtio_types.h │ │ │ ├── virtio_vsock.h │ │ │ ├── vm_sockets.h │ │ │ ├── vm_sockets_diag.h │ │ │ ├── vmcore.h │ │ │ ├── vsockmon.h │ │ │ ├── vt.h │ │ │ ├── vtpm_proxy.h │ │ │ ├── wait.h │ │ │ ├── watch_queue.h │ │ │ ├── watchdog.h │ │ │ ├── wireguard.h │ │ │ ├── wireless.h │ │ │ ├── wmi.h │ │ │ ├── wwan.h │ │ │ ├── x25.h │ │ │ ├── xattr.h │ │ │ ├── xdp_diag.h │ │ │ ├── xfrm.h │ │ │ ├── xilinx-v4l2-controls.h │ │ │ ├── zorro.h │ │ │ └── zorro_ids.h │ │ ├── misc │ │ │ ├── cxl.h │ │ │ ├── fastrpc.h │ │ │ ├── ocxl.h │ │ │ ├── pvpanic.h │ │ │ ├── uacce │ │ │ │ ├── hisi_qm.h │ │ │ │ └── uacce.h │ │ │ └── xilinx_sdfec.h │ │ ├── mtd │ │ │ ├── inftl-user.h │ │ │ ├── mtd-abi.h │ │ │ ├── mtd-user.h │ │ │ ├── nftl-user.h │ │ │ └── ubi-user.h │ │ ├── rdma │ │ │ ├── bnxt_re-abi.h │ │ │ ├── cxgb4-abi.h │ │ │ ├── efa-abi.h │ │ │ ├── erdma-abi.h │ │ │ ├── hfi │ │ │ │ ├── hfi1_ioctl.h │ │ │ │ └── hfi1_user.h │ │ │ ├── hns-abi.h │ │ │ ├── ib_user_ioctl_cmds.h │ │ │ ├── ib_user_ioctl_verbs.h │ │ │ ├── ib_user_mad.h │ │ │ ├── ib_user_sa.h │ │ │ ├── ib_user_verbs.h │ │ │ ├── irdma-abi.h │ │ │ ├── mana-abi.h │ │ │ ├── mlx4-abi.h │ │ │ ├── mlx5-abi.h │ │ │ ├── mlx5_user_ioctl_cmds.h │ │ │ ├── mlx5_user_ioctl_verbs.h │ │ │ ├── mthca-abi.h │ │ │ ├── ocrdma-abi.h │ │ │ ├── qedr-abi.h │ │ │ ├── rdma_netlink.h │ │ │ ├── rdma_user_cm.h │ │ │ ├── rdma_user_ioctl.h │ │ │ ├── rdma_user_ioctl_cmds.h │ │ │ ├── rdma_user_rxe.h │ │ │ ├── rvt-abi.h │ │ │ ├── siw-abi.h │ │ │ └── vmw_pvrdma-abi.h │ │ ├── scsi │ │ │ ├── cxlflash_ioctl.h │ │ │ ├── fc │ │ │ │ ├── fc_els.h │ │ │ │ ├── fc_fs.h │ │ │ │ ├── fc_gs.h │ │ │ │ └── fc_ns.h │ │ │ ├── scsi_bsg_fc.h │ │ │ ├── scsi_bsg_mpi3mr.h │ │ │ ├── scsi_bsg_ufs.h │ │ │ ├── scsi_netlink.h │ │ │ └── scsi_netlink_fc.h │ │ ├── sound │ │ │ ├── asequencer.h │ │ │ ├── asoc.h │ │ │ ├── asound.h │ │ │ ├── asound_fm.h │ │ │ ├── compress_offload.h │ │ │ ├── compress_params.h │ │ │ ├── emu10k1.h │ │ │ ├── firewire.h │ │ │ ├── hdsp.h │ │ │ ├── hdspm.h │ │ │ ├── intel │ │ │ │ └── avs │ │ │ │ │ └── tokens.h │ │ │ ├── sb16_csp.h │ │ │ ├── sfnt_info.h │ │ │ ├── skl-tplg-interface.h │ │ │ ├── snd_ar_tokens.h │ │ │ ├── snd_sst_tokens.h │ │ │ ├── sof │ │ │ │ ├── abi.h │ │ │ │ ├── fw.h │ │ │ │ ├── header.h │ │ │ │ └── tokens.h │ │ │ ├── tlv.h │ │ │ └── usb_stream.h │ │ ├── video │ │ │ ├── edid.h │ │ │ ├── sisfb.h │ │ │ └── uvesafb.h │ │ └── xen │ │ │ ├── evtchn.h │ │ │ ├── gntalloc.h │ │ │ ├── gntdev.h │ │ │ └── privcmd.h │ ├── wasm32-wasi │ │ ├── __errno.h │ │ ├── __errno_values.h │ │ ├── __fd_set.h │ │ ├── __function___isatty.h │ │ ├── __functions_malloc.h │ │ ├── __functions_memcpy.h │ │ ├── __header_dirent.h │ │ ├── __header_fcntl.h │ │ ├── __header_inttypes.h │ │ ├── __header_netinet_in.h │ │ ├── __header_poll.h │ │ ├── __header_stdlib.h │ │ ├── __header_string.h │ │ ├── __header_sys_ioctl.h │ │ ├── __header_sys_resource.h │ │ ├── __header_sys_socket.h │ │ ├── __header_sys_stat.h │ │ ├── __header_time.h │ │ ├── __header_unistd.h │ │ ├── __macro_FD_SETSIZE.h │ │ ├── __macro_PAGESIZE.h │ │ ├── __mode_t.h │ │ ├── __seek.h │ │ ├── __struct_dirent.h │ │ ├── __struct_in6_addr.h │ │ ├── __struct_in_addr.h │ │ ├── __struct_iovec.h │ │ ├── __struct_msghdr.h │ │ ├── __struct_pollfd.h │ │ ├── __struct_rusage.h │ │ ├── __struct_sockaddr.h │ │ ├── __struct_sockaddr_in.h │ │ ├── __struct_sockaddr_in6.h │ │ ├── __struct_sockaddr_storage.h │ │ ├── __struct_sockaddr_un.h │ │ ├── __struct_stat.h │ │ ├── __struct_timespec.h │ │ ├── __struct_timeval.h │ │ ├── __struct_tm.h │ │ ├── __struct_tms.h │ │ ├── __typedef_DIR.h │ │ ├── __typedef_blkcnt_t.h │ │ ├── __typedef_blksize_t.h │ │ ├── __typedef_clock_t.h │ │ ├── __typedef_clockid_t.h │ │ ├── __typedef_dev_t.h │ │ ├── __typedef_fd_set.h │ │ ├── __typedef_gid_t.h │ │ ├── __typedef_in_addr_t.h │ │ ├── __typedef_in_port_t.h │ │ ├── __typedef_ino_t.h │ │ ├── __typedef_mode_t.h │ │ ├── __typedef_nfds_t.h │ │ ├── __typedef_nlink_t.h │ │ ├── __typedef_off_t.h │ │ ├── __typedef_sa_family_t.h │ │ ├── __typedef_sigset_t.h │ │ ├── __typedef_socklen_t.h │ │ ├── __typedef_ssize_t.h │ │ ├── __typedef_suseconds_t.h │ │ ├── __typedef_time_t.h │ │ ├── __typedef_uid_t.h │ │ ├── alloca.h │ │ ├── ar.h │ │ ├── arpa │ │ │ ├── ftp.h │ │ │ ├── inet.h │ │ │ ├── nameser.h │ │ │ ├── nameser_compat.h │ │ │ ├── telnet.h │ │ │ └── tftp.h │ │ ├── assert.h │ │ ├── bits │ │ │ ├── alltypes.h │ │ │ ├── dirent.h │ │ │ ├── fcntl.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── hwcap.h │ │ │ ├── io.h │ │ │ ├── ioctl.h │ │ │ ├── ioctl_fix.h │ │ │ ├── ipcstat.h │ │ │ ├── limits.h │ │ │ ├── mman.h │ │ │ ├── poll.h │ │ │ ├── posix.h │ │ │ ├── reg.h │ │ │ ├── resource.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ └── stdint.h │ │ ├── byteswap.h │ │ ├── complex.h │ │ ├── cpio.h │ │ ├── crypt.h │ │ ├── ctype.h │ │ ├── dirent.h │ │ ├── endian.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── features.h │ │ ├── fenv.h │ │ ├── float.h │ │ ├── fmtmsg.h │ │ ├── fnmatch.h │ │ ├── ftw.h │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── iconv.h │ │ ├── ifaddrs.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── langinfo.h │ │ ├── libgen.h │ │ ├── limits.h │ │ ├── locale.h │ │ ├── malloc.h │ │ ├── math.h │ │ ├── memory.h │ │ ├── monetary.h │ │ ├── mqueue.h │ │ ├── netinet │ │ │ ├── icmp6.h │ │ │ ├── igmp.h │ │ │ ├── in.h │ │ │ ├── in_systm.h │ │ │ ├── ip.h │ │ │ ├── ip6.h │ │ │ ├── ip_icmp.h │ │ │ ├── tcp.h │ │ │ └── udp.h │ │ ├── netpacket │ │ │ └── packet.h │ │ ├── nl_types.h │ │ ├── poll.h │ │ ├── regex.h │ │ ├── sched.h │ │ ├── search.h │ │ ├── semaphore.h │ │ ├── signal.h │ │ ├── stdalign.h │ │ ├── stdbool.h │ │ ├── stdc-predef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdio_ext.h │ │ ├── stdlib.h │ │ ├── stdnoreturn.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── stropts.h │ │ ├── sys │ │ │ ├── dir.h │ │ │ ├── errno.h │ │ │ ├── eventfd.h │ │ │ ├── fcntl.h │ │ │ ├── file.h │ │ │ ├── ioctl.h │ │ │ ├── mman.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── random.h │ │ │ ├── reg.h │ │ │ ├── resource.h │ │ │ ├── select.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stropts.h │ │ │ ├── syscall.h │ │ │ ├── sysinfo.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── times.h │ │ │ ├── timex.h │ │ │ ├── ttydefaults.h │ │ │ ├── types.h │ │ │ ├── uio.h │ │ │ ├── un.h │ │ │ └── utsname.h │ │ ├── syscall.h │ │ ├── sysexits.h │ │ ├── tar.h │ │ ├── tgmath.h │ │ ├── threads.h │ │ ├── time.h │ │ ├── uchar.h │ │ ├── unistd.h │ │ ├── utime.h │ │ ├── values.h │ │ ├── wasi │ │ │ ├── api.h │ │ │ ├── libc-environ.h │ │ │ ├── libc-find-relpath.h │ │ │ ├── libc-nocwd.h │ │ │ └── libc.h │ │ ├── wchar.h │ │ └── wctype.h │ ├── x86_64-linux │ │ ├── asm-generic │ │ │ ├── auxvec.h │ │ │ ├── bitsperlong.h │ │ │ ├── bpf_perf_event.h │ │ │ ├── errno-base.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── hugetlb_encode.h │ │ │ ├── int-l64.h │ │ │ ├── int-ll64.h │ │ │ ├── ioctl.h │ │ │ ├── ioctls.h │ │ │ ├── ipcbuf.h │ │ │ ├── kvm_para.h │ │ │ ├── mman-common.h │ │ │ ├── mman.h │ │ │ ├── msgbuf.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── posix_types.h │ │ │ ├── resource.h │ │ │ ├── sembuf.h │ │ │ ├── setup.h │ │ │ ├── shmbuf.h │ │ │ ├── siginfo.h │ │ │ ├── signal-defs.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockios.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── swab.h │ │ │ ├── termbits-common.h │ │ │ ├── termbits.h │ │ │ ├── termios.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ └── unistd.h │ │ ├── asm │ │ │ ├── a.out.h │ │ │ ├── amd_hsmp.h │ │ │ ├── auxvec.h │ │ │ ├── bitsperlong.h │ │ │ ├── boot.h │ │ │ ├── bootparam.h │ │ │ ├── bpf_perf_event.h │ │ │ ├── byteorder.h │ │ │ ├── debugreg.h │ │ │ ├── e820.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── hw_breakpoint.h │ │ │ ├── hwcap.h │ │ │ ├── hwcap2.h │ │ │ ├── ioctl.h │ │ │ ├── ioctls.h │ │ │ ├── ipcbuf.h │ │ │ ├── ist.h │ │ │ ├── kvm.h │ │ │ ├── kvm_para.h │ │ │ ├── kvm_perf.h │ │ │ ├── ldt.h │ │ │ ├── mce.h │ │ │ ├── mman.h │ │ │ ├── msgbuf.h │ │ │ ├── msr.h │ │ │ ├── mtrr.h │ │ │ ├── param.h │ │ │ ├── perf_regs.h │ │ │ ├── poll.h │ │ │ ├── posix_types.h │ │ │ ├── posix_types_32.h │ │ │ ├── posix_types_64.h │ │ │ ├── posix_types_x32.h │ │ │ ├── prctl.h │ │ │ ├── processor-flags.h │ │ │ ├── ptrace-abi.h │ │ │ ├── ptrace.h │ │ │ ├── resource.h │ │ │ ├── sembuf.h │ │ │ ├── setup.h │ │ │ ├── sgx.h │ │ │ ├── shmbuf.h │ │ │ ├── sigcontext.h │ │ │ ├── sigcontext32.h │ │ │ ├── siginfo.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockios.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── svm.h │ │ │ ├── swab.h │ │ │ ├── termbits.h │ │ │ ├── termios.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ ├── unistd.h │ │ │ ├── unistd_32.h │ │ │ ├── unistd_64.h │ │ │ ├── unistd_x32.h │ │ │ ├── vm86.h │ │ │ ├── vmx.h │ │ │ └── vsyscall.h │ │ ├── drm │ │ │ ├── amdgpu_drm.h │ │ │ ├── armada_drm.h │ │ │ ├── drm.h │ │ │ ├── drm_fourcc.h │ │ │ ├── drm_mode.h │ │ │ ├── drm_sarea.h │ │ │ ├── etnaviv_drm.h │ │ │ ├── exynos_drm.h │ │ │ ├── habanalabs_accel.h │ │ │ ├── i915_drm.h │ │ │ ├── ivpu_accel.h │ │ │ ├── lima_drm.h │ │ │ ├── msm_drm.h │ │ │ ├── nouveau_drm.h │ │ │ ├── omap_drm.h │ │ │ ├── panfrost_drm.h │ │ │ ├── qaic_accel.h │ │ │ ├── qxl_drm.h │ │ │ ├── radeon_drm.h │ │ │ ├── tegra_drm.h │ │ │ ├── v3d_drm.h │ │ │ ├── vc4_drm.h │ │ │ ├── vgem_drm.h │ │ │ ├── virtgpu_drm.h │ │ │ └── vmwgfx_drm.h │ │ ├── linux │ │ │ ├── a.out.h │ │ │ ├── acct.h │ │ │ ├── acrn.h │ │ │ ├── adb.h │ │ │ ├── adfs_fs.h │ │ │ ├── affs_hardblocks.h │ │ │ ├── agpgart.h │ │ │ ├── aio_abi.h │ │ │ ├── am437x-vpfe.h │ │ │ ├── amt.h │ │ │ ├── android │ │ │ │ ├── binder.h │ │ │ │ └── binderfs.h │ │ │ ├── apm_bios.h │ │ │ ├── arcfb.h │ │ │ ├── arm_sdei.h │ │ │ ├── aspeed-lpc-ctrl.h │ │ │ ├── aspeed-p2a-ctrl.h │ │ │ ├── aspeed-video.h │ │ │ ├── atalk.h │ │ │ ├── atm.h │ │ │ ├── atm_eni.h │ │ │ ├── atm_he.h │ │ │ ├── atm_idt77105.h │ │ │ ├── atm_nicstar.h │ │ │ ├── atm_tcp.h │ │ │ ├── atm_zatm.h │ │ │ ├── atmapi.h │ │ │ ├── atmarp.h │ │ │ ├── atmbr2684.h │ │ │ ├── atmclip.h │ │ │ ├── atmdev.h │ │ │ ├── atmioc.h │ │ │ ├── atmlec.h │ │ │ ├── atmmpc.h │ │ │ ├── atmppp.h │ │ │ ├── atmsap.h │ │ │ ├── atmsvc.h │ │ │ ├── audit.h │ │ │ ├── auto_dev-ioctl.h │ │ │ ├── auto_fs.h │ │ │ ├── auto_fs4.h │ │ │ ├── auxvec.h │ │ │ ├── ax25.h │ │ │ ├── batadv_packet.h │ │ │ ├── batman_adv.h │ │ │ ├── baycom.h │ │ │ ├── bcm933xx_hcs.h │ │ │ ├── bfs_fs.h │ │ │ ├── binfmts.h │ │ │ ├── blkpg.h │ │ │ ├── blktrace_api.h │ │ │ ├── blkzoned.h │ │ │ ├── bpf.h │ │ │ ├── bpf_common.h │ │ │ ├── bpf_perf_event.h │ │ │ ├── bpfilter.h │ │ │ ├── bpqether.h │ │ │ ├── bsg.h │ │ │ ├── bt-bmc.h │ │ │ ├── btf.h │ │ │ ├── btrfs.h │ │ │ ├── btrfs_tree.h │ │ │ ├── byteorder │ │ │ │ ├── big_endian.h │ │ │ │ └── little_endian.h │ │ │ ├── cachefiles.h │ │ │ ├── caif │ │ │ │ ├── caif_socket.h │ │ │ │ └── if_caif.h │ │ │ ├── can.h │ │ │ ├── can │ │ │ │ ├── bcm.h │ │ │ │ ├── error.h │ │ │ │ ├── gw.h │ │ │ │ ├── isotp.h │ │ │ │ ├── j1939.h │ │ │ │ ├── netlink.h │ │ │ │ ├── raw.h │ │ │ │ └── vxcan.h │ │ │ ├── capability.h │ │ │ ├── capi.h │ │ │ ├── cciss_defs.h │ │ │ ├── cciss_ioctl.h │ │ │ ├── ccs.h │ │ │ ├── cdrom.h │ │ │ ├── cec-funcs.h │ │ │ ├── cec.h │ │ │ ├── cfm_bridge.h │ │ │ ├── cgroupstats.h │ │ │ ├── chio.h │ │ │ ├── cifs │ │ │ │ ├── cifs_mount.h │ │ │ │ └── cifs_netlink.h │ │ │ ├── close_range.h │ │ │ ├── cn_proc.h │ │ │ ├── coda.h │ │ │ ├── coff.h │ │ │ ├── comedi.h │ │ │ ├── connector.h │ │ │ ├── const.h │ │ │ ├── coresight-stm.h │ │ │ ├── counter.h │ │ │ ├── cramfs_fs.h │ │ │ ├── cryptouser.h │ │ │ ├── cuda.h │ │ │ ├── cxl_mem.h │ │ │ ├── cyclades.h │ │ │ ├── cycx_cfm.h │ │ │ ├── dcbnl.h │ │ │ ├── dccp.h │ │ │ ├── devlink.h │ │ │ ├── dlm.h │ │ │ ├── dlm_device.h │ │ │ ├── dlm_plock.h │ │ │ ├── dlmconstants.h │ │ │ ├── dm-ioctl.h │ │ │ ├── dm-log-userspace.h │ │ │ ├── dma-buf.h │ │ │ ├── dma-heap.h │ │ │ ├── dns_resolver.h │ │ │ ├── dqblk_xfs.h │ │ │ ├── dvb │ │ │ │ ├── audio.h │ │ │ │ ├── ca.h │ │ │ │ ├── dmx.h │ │ │ │ ├── frontend.h │ │ │ │ ├── net.h │ │ │ │ ├── osd.h │ │ │ │ ├── version.h │ │ │ │ └── video.h │ │ │ ├── dw100.h │ │ │ ├── edd.h │ │ │ ├── efs_fs_sb.h │ │ │ ├── elf-em.h │ │ │ ├── elf-fdpic.h │ │ │ ├── elf.h │ │ │ ├── errno.h │ │ │ ├── errqueue.h │ │ │ ├── erspan.h │ │ │ ├── ethtool.h │ │ │ ├── ethtool_netlink.h │ │ │ ├── eventfd.h │ │ │ ├── eventpoll.h │ │ │ ├── ext4.h │ │ │ ├── f2fs.h │ │ │ ├── fadvise.h │ │ │ ├── falloc.h │ │ │ ├── fanotify.h │ │ │ ├── fb.h │ │ │ ├── fcntl.h │ │ │ ├── fd.h │ │ │ ├── fdreg.h │ │ │ ├── fib_rules.h │ │ │ ├── fiemap.h │ │ │ ├── filter.h │ │ │ ├── firewire-cdev.h │ │ │ ├── firewire-constants.h │ │ │ ├── fou.h │ │ │ ├── fpga-dfl.h │ │ │ ├── fs.h │ │ │ ├── fscrypt.h │ │ │ ├── fsi.h │ │ │ ├── fsl_hypervisor.h │ │ │ ├── fsl_mc.h │ │ │ ├── fsmap.h │ │ │ ├── fsverity.h │ │ │ ├── fuse.h │ │ │ ├── futex.h │ │ │ ├── gameport.h │ │ │ ├── gen_stats.h │ │ │ ├── genetlink.h │ │ │ ├── genwqe │ │ │ │ └── genwqe_card.h │ │ │ ├── gfs2_ondisk.h │ │ │ ├── gpio.h │ │ │ ├── gsmmux.h │ │ │ ├── gtp.h │ │ │ ├── handshake.h │ │ │ ├── hash_info.h │ │ │ ├── hdlc.h │ │ │ ├── hdlc │ │ │ │ └── ioctl.h │ │ │ ├── hdlcdrv.h │ │ │ ├── hdreg.h │ │ │ ├── hid.h │ │ │ ├── hiddev.h │ │ │ ├── hidraw.h │ │ │ ├── hpet.h │ │ │ ├── hsi │ │ │ │ ├── cs-protocol.h │ │ │ │ └── hsi_char.h │ │ │ ├── hsr_netlink.h │ │ │ ├── hw_breakpoint.h │ │ │ ├── hyperv.h │ │ │ ├── i2c-dev.h │ │ │ ├── i2c.h │ │ │ ├── i2o-dev.h │ │ │ ├── i8k.h │ │ │ ├── icmp.h │ │ │ ├── icmpv6.h │ │ │ ├── idxd.h │ │ │ ├── if.h │ │ │ ├── if_addr.h │ │ │ ├── if_addrlabel.h │ │ │ ├── if_alg.h │ │ │ ├── if_arcnet.h │ │ │ ├── if_arp.h │ │ │ ├── if_bonding.h │ │ │ ├── if_bridge.h │ │ │ ├── if_cablemodem.h │ │ │ ├── if_eql.h │ │ │ ├── if_ether.h │ │ │ ├── if_fc.h │ │ │ ├── if_fddi.h │ │ │ ├── if_hippi.h │ │ │ ├── if_infiniband.h │ │ │ ├── if_link.h │ │ │ ├── if_ltalk.h │ │ │ ├── if_macsec.h │ │ │ ├── if_packet.h │ │ │ ├── if_phonet.h │ │ │ ├── if_plip.h │ │ │ ├── if_ppp.h │ │ │ ├── if_pppol2tp.h │ │ │ ├── if_pppox.h │ │ │ ├── if_slip.h │ │ │ ├── if_team.h │ │ │ ├── if_tun.h │ │ │ ├── if_tunnel.h │ │ │ ├── if_vlan.h │ │ │ ├── if_x25.h │ │ │ ├── if_xdp.h │ │ │ ├── ife.h │ │ │ ├── igmp.h │ │ │ ├── iio │ │ │ │ ├── buffer.h │ │ │ │ ├── events.h │ │ │ │ └── types.h │ │ │ ├── ila.h │ │ │ ├── in.h │ │ │ ├── in6.h │ │ │ ├── in_route.h │ │ │ ├── inet_diag.h │ │ │ ├── inotify.h │ │ │ ├── input-event-codes.h │ │ │ ├── input.h │ │ │ ├── io_uring.h │ │ │ ├── ioam6.h │ │ │ ├── ioam6_genl.h │ │ │ ├── ioam6_iptunnel.h │ │ │ ├── ioctl.h │ │ │ ├── iommu.h │ │ │ ├── iommufd.h │ │ │ ├── ioprio.h │ │ │ ├── ip.h │ │ │ ├── ip6_tunnel.h │ │ │ ├── ip_vs.h │ │ │ ├── ipc.h │ │ │ ├── ipmi.h │ │ │ ├── ipmi_bmc.h │ │ │ ├── ipmi_msgdefs.h │ │ │ ├── ipmi_ssif_bmc.h │ │ │ ├── ipsec.h │ │ │ ├── ipv6.h │ │ │ ├── ipv6_route.h │ │ │ ├── irqnr.h │ │ │ ├── isdn │ │ │ │ └── capicmd.h │ │ │ ├── iso_fs.h │ │ │ ├── isst_if.h │ │ │ ├── ivtv.h │ │ │ ├── ivtvfb.h │ │ │ ├── jffs2.h │ │ │ ├── joystick.h │ │ │ ├── kcm.h │ │ │ ├── kcmp.h │ │ │ ├── kcov.h │ │ │ ├── kd.h │ │ │ ├── kdev_t.h │ │ │ ├── kernel-page-flags.h │ │ │ ├── kernel.h │ │ │ ├── kernelcapi.h │ │ │ ├── kexec.h │ │ │ ├── keyboard.h │ │ │ ├── keyctl.h │ │ │ ├── kfd_ioctl.h │ │ │ ├── kfd_sysfs.h │ │ │ ├── kvm.h │ │ │ ├── kvm_para.h │ │ │ ├── l2tp.h │ │ │ ├── landlock.h │ │ │ ├── libc-compat.h │ │ │ ├── limits.h │ │ │ ├── lirc.h │ │ │ ├── llc.h │ │ │ ├── loadpin.h │ │ │ ├── loop.h │ │ │ ├── lp.h │ │ │ ├── lwtunnel.h │ │ │ ├── magic.h │ │ │ ├── major.h │ │ │ ├── map_to_14segment.h │ │ │ ├── map_to_7segment.h │ │ │ ├── matroxfb.h │ │ │ ├── max2175.h │ │ │ ├── mctp.h │ │ │ ├── mdio.h │ │ │ ├── media-bus-format.h │ │ │ ├── media.h │ │ │ ├── mei.h │ │ │ ├── mei_uuid.h │ │ │ ├── membarrier.h │ │ │ ├── memfd.h │ │ │ ├── mempolicy.h │ │ │ ├── mii.h │ │ │ ├── minix_fs.h │ │ │ ├── misc │ │ │ │ └── bcm_vk.h │ │ │ ├── mman.h │ │ │ ├── mmc │ │ │ │ └── ioctl.h │ │ │ ├── mmtimer.h │ │ │ ├── module.h │ │ │ ├── mount.h │ │ │ ├── mpls.h │ │ │ ├── mpls_iptunnel.h │ │ │ ├── mptcp.h │ │ │ ├── mqueue.h │ │ │ ├── mroute.h │ │ │ ├── mroute6.h │ │ │ ├── mrp_bridge.h │ │ │ ├── msdos_fs.h │ │ │ ├── msg.h │ │ │ ├── mtio.h │ │ │ ├── nbd-netlink.h │ │ │ ├── nbd.h │ │ │ ├── ncsi.h │ │ │ ├── ndctl.h │ │ │ ├── neighbour.h │ │ │ ├── net.h │ │ │ ├── net_dropmon.h │ │ │ ├── net_namespace.h │ │ │ ├── net_tstamp.h │ │ │ ├── netconf.h │ │ │ ├── netdev.h │ │ │ ├── netdevice.h │ │ │ ├── netfilter.h │ │ │ ├── netfilter │ │ │ │ ├── ipset │ │ │ │ │ ├── ip_set.h │ │ │ │ │ ├── ip_set_bitmap.h │ │ │ │ │ ├── ip_set_hash.h │ │ │ │ │ └── ip_set_list.h │ │ │ │ ├── nf_conntrack_common.h │ │ │ │ ├── nf_conntrack_ftp.h │ │ │ │ ├── nf_conntrack_sctp.h │ │ │ │ ├── nf_conntrack_tcp.h │ │ │ │ ├── nf_conntrack_tuple_common.h │ │ │ │ ├── nf_log.h │ │ │ │ ├── nf_nat.h │ │ │ │ ├── nf_synproxy.h │ │ │ │ ├── nf_tables.h │ │ │ │ ├── nf_tables_compat.h │ │ │ │ ├── nfnetlink.h │ │ │ │ ├── nfnetlink_acct.h │ │ │ │ ├── nfnetlink_compat.h │ │ │ │ ├── nfnetlink_conntrack.h │ │ │ │ ├── nfnetlink_cthelper.h │ │ │ │ ├── nfnetlink_cttimeout.h │ │ │ │ ├── nfnetlink_hook.h │ │ │ │ ├── nfnetlink_log.h │ │ │ │ ├── nfnetlink_osf.h │ │ │ │ ├── nfnetlink_queue.h │ │ │ │ ├── x_tables.h │ │ │ │ ├── xt_AUDIT.h │ │ │ │ ├── xt_CHECKSUM.h │ │ │ │ ├── xt_CLASSIFY.h │ │ │ │ ├── xt_CONNSECMARK.h │ │ │ │ ├── xt_CT.h │ │ │ │ ├── xt_HMARK.h │ │ │ │ ├── xt_IDLETIMER.h │ │ │ │ ├── xt_LED.h │ │ │ │ ├── xt_LOG.h │ │ │ │ ├── xt_NFLOG.h │ │ │ │ ├── xt_NFQUEUE.h │ │ │ │ ├── xt_SECMARK.h │ │ │ │ ├── xt_SYNPROXY.h │ │ │ │ ├── xt_TCPOPTSTRIP.h │ │ │ │ ├── xt_TEE.h │ │ │ │ ├── xt_TPROXY.h │ │ │ │ ├── xt_addrtype.h │ │ │ │ ├── xt_bpf.h │ │ │ │ ├── xt_cgroup.h │ │ │ │ ├── xt_cluster.h │ │ │ │ ├── xt_comment.h │ │ │ │ ├── xt_connbytes.h │ │ │ │ ├── xt_connlabel.h │ │ │ │ ├── xt_connlimit.h │ │ │ │ ├── xt_connmark.h │ │ │ │ ├── xt_conntrack.h │ │ │ │ ├── xt_cpu.h │ │ │ │ ├── xt_dccp.h │ │ │ │ ├── xt_devgroup.h │ │ │ │ ├── xt_dscp.h │ │ │ │ ├── xt_ecn.h │ │ │ │ ├── xt_esp.h │ │ │ │ ├── xt_hashlimit.h │ │ │ │ ├── xt_helper.h │ │ │ │ ├── xt_ipcomp.h │ │ │ │ ├── xt_iprange.h │ │ │ │ ├── xt_ipvs.h │ │ │ │ ├── xt_l2tp.h │ │ │ │ ├── xt_length.h │ │ │ │ ├── xt_limit.h │ │ │ │ ├── xt_mac.h │ │ │ │ ├── xt_mark.h │ │ │ │ ├── xt_multiport.h │ │ │ │ ├── xt_nfacct.h │ │ │ │ ├── xt_osf.h │ │ │ │ ├── xt_owner.h │ │ │ │ ├── xt_physdev.h │ │ │ │ ├── xt_pkttype.h │ │ │ │ ├── xt_policy.h │ │ │ │ ├── xt_quota.h │ │ │ │ ├── xt_rateest.h │ │ │ │ ├── xt_realm.h │ │ │ │ ├── xt_recent.h │ │ │ │ ├── xt_rpfilter.h │ │ │ │ ├── xt_sctp.h │ │ │ │ ├── xt_set.h │ │ │ │ ├── xt_socket.h │ │ │ │ ├── xt_state.h │ │ │ │ ├── xt_statistic.h │ │ │ │ ├── xt_string.h │ │ │ │ ├── xt_tcpmss.h │ │ │ │ ├── xt_tcpudp.h │ │ │ │ ├── xt_time.h │ │ │ │ └── xt_u32.h │ │ │ ├── netfilter_arp.h │ │ │ ├── netfilter_arp │ │ │ │ ├── arp_tables.h │ │ │ │ └── arpt_mangle.h │ │ │ ├── netfilter_bridge.h │ │ │ ├── netfilter_bridge │ │ │ │ ├── ebt_802_3.h │ │ │ │ ├── ebt_among.h │ │ │ │ ├── ebt_arp.h │ │ │ │ ├── ebt_arpreply.h │ │ │ │ ├── ebt_ip.h │ │ │ │ ├── ebt_ip6.h │ │ │ │ ├── ebt_limit.h │ │ │ │ ├── ebt_log.h │ │ │ │ ├── ebt_mark_m.h │ │ │ │ ├── ebt_mark_t.h │ │ │ │ ├── ebt_nat.h │ │ │ │ ├── ebt_nflog.h │ │ │ │ ├── ebt_pkttype.h │ │ │ │ ├── ebt_redirect.h │ │ │ │ ├── ebt_stp.h │ │ │ │ ├── ebt_vlan.h │ │ │ │ └── ebtables.h │ │ │ ├── netfilter_ipv4.h │ │ │ ├── netfilter_ipv4 │ │ │ │ ├── ip_tables.h │ │ │ │ ├── ipt_CLUSTERIP.h │ │ │ │ ├── ipt_LOG.h │ │ │ │ ├── ipt_REJECT.h │ │ │ │ ├── ipt_ah.h │ │ │ │ ├── ipt_ecn.h │ │ │ │ └── ipt_ttl.h │ │ │ ├── netfilter_ipv6.h │ │ │ ├── netfilter_ipv6 │ │ │ │ ├── ip6_tables.h │ │ │ │ ├── ip6t_LOG.h │ │ │ │ ├── ip6t_NPT.h │ │ │ │ ├── ip6t_REJECT.h │ │ │ │ ├── ip6t_ah.h │ │ │ │ ├── ip6t_frag.h │ │ │ │ ├── ip6t_hl.h │ │ │ │ ├── ip6t_ipv6header.h │ │ │ │ ├── ip6t_mh.h │ │ │ │ ├── ip6t_opts.h │ │ │ │ ├── ip6t_rt.h │ │ │ │ └── ip6t_srh.h │ │ │ ├── netlink.h │ │ │ ├── netlink_diag.h │ │ │ ├── netrom.h │ │ │ ├── nexthop.h │ │ │ ├── nfc.h │ │ │ ├── nfs.h │ │ │ ├── nfs2.h │ │ │ ├── nfs3.h │ │ │ ├── nfs4.h │ │ │ ├── nfs4_mount.h │ │ │ ├── nfs_fs.h │ │ │ ├── nfs_idmap.h │ │ │ ├── nfs_mount.h │ │ │ ├── nfsacl.h │ │ │ ├── nfsd │ │ │ │ ├── cld.h │ │ │ │ ├── debug.h │ │ │ │ ├── export.h │ │ │ │ └── stats.h │ │ │ ├── nilfs2_api.h │ │ │ ├── nilfs2_ondisk.h │ │ │ ├── nitro_enclaves.h │ │ │ ├── nl80211-vnd-intel.h │ │ │ ├── nl80211.h │ │ │ ├── nsfs.h │ │ │ ├── nubus.h │ │ │ ├── nvme_ioctl.h │ │ │ ├── nvram.h │ │ │ ├── omap3isp.h │ │ │ ├── omapfb.h │ │ │ ├── oom.h │ │ │ ├── openat2.h │ │ │ ├── openvswitch.h │ │ │ ├── packet_diag.h │ │ │ ├── param.h │ │ │ ├── parport.h │ │ │ ├── patchkey.h │ │ │ ├── pci.h │ │ │ ├── pci_regs.h │ │ │ ├── pcitest.h │ │ │ ├── perf_event.h │ │ │ ├── personality.h │ │ │ ├── pfkeyv2.h │ │ │ ├── pfrut.h │ │ │ ├── pg.h │ │ │ ├── phantom.h │ │ │ ├── phonet.h │ │ │ ├── pidfd.h │ │ │ ├── pkt_cls.h │ │ │ ├── pkt_sched.h │ │ │ ├── pktcdvd.h │ │ │ ├── pmu.h │ │ │ ├── poll.h │ │ │ ├── posix_acl.h │ │ │ ├── posix_acl_xattr.h │ │ │ ├── posix_types.h │ │ │ ├── ppdev.h │ │ │ ├── ppp-comp.h │ │ │ ├── ppp-ioctl.h │ │ │ ├── ppp_defs.h │ │ │ ├── pps.h │ │ │ ├── pr.h │ │ │ ├── prctl.h │ │ │ ├── psample.h │ │ │ ├── psci.h │ │ │ ├── psp-dbc.h │ │ │ ├── psp-sev.h │ │ │ ├── ptp_clock.h │ │ │ ├── ptrace.h │ │ │ ├── qemu_fw_cfg.h │ │ │ ├── qnx4_fs.h │ │ │ ├── qnxtypes.h │ │ │ ├── qrtr.h │ │ │ ├── quota.h │ │ │ ├── radeonfb.h │ │ │ ├── raid │ │ │ │ ├── md_p.h │ │ │ │ └── md_u.h │ │ │ ├── random.h │ │ │ ├── rds.h │ │ │ ├── reboot.h │ │ │ ├── reiserfs_fs.h │ │ │ ├── reiserfs_xattr.h │ │ │ ├── remoteproc_cdev.h │ │ │ ├── resource.h │ │ │ ├── rfkill.h │ │ │ ├── rio_cm_cdev.h │ │ │ ├── rio_mport_cdev.h │ │ │ ├── rkisp1-config.h │ │ │ ├── romfs_fs.h │ │ │ ├── rose.h │ │ │ ├── route.h │ │ │ ├── rpl.h │ │ │ ├── rpl_iptunnel.h │ │ │ ├── rpmsg.h │ │ │ ├── rpmsg_types.h │ │ │ ├── rseq.h │ │ │ ├── rtc.h │ │ │ ├── rtnetlink.h │ │ │ ├── rxrpc.h │ │ │ ├── scc.h │ │ │ ├── sched.h │ │ │ ├── sched │ │ │ │ └── types.h │ │ │ ├── scif_ioctl.h │ │ │ ├── screen_info.h │ │ │ ├── sctp.h │ │ │ ├── seccomp.h │ │ │ ├── securebits.h │ │ │ ├── sed-opal.h │ │ │ ├── seg6.h │ │ │ ├── seg6_genl.h │ │ │ ├── seg6_hmac.h │ │ │ ├── seg6_iptunnel.h │ │ │ ├── seg6_local.h │ │ │ ├── selinux_netlink.h │ │ │ ├── sem.h │ │ │ ├── serial.h │ │ │ ├── serial_core.h │ │ │ ├── serial_reg.h │ │ │ ├── serio.h │ │ │ ├── sev-guest.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── signalfd.h │ │ │ ├── smc.h │ │ │ ├── smc_diag.h │ │ │ ├── smiapp.h │ │ │ ├── snmp.h │ │ │ ├── sock_diag.h │ │ │ ├── socket.h │ │ │ ├── sockios.h │ │ │ ├── sonet.h │ │ │ ├── sonypi.h │ │ │ ├── sound.h │ │ │ ├── soundcard.h │ │ │ ├── spi │ │ │ │ ├── spi.h │ │ │ │ └── spidev.h │ │ │ ├── stat.h │ │ │ ├── stddef.h │ │ │ ├── stm.h │ │ │ ├── string.h │ │ │ ├── sunrpc │ │ │ │ └── debug.h │ │ │ ├── surface_aggregator │ │ │ │ ├── cdev.h │ │ │ │ └── dtx.h │ │ │ ├── suspend_ioctls.h │ │ │ ├── swab.h │ │ │ ├── switchtec_ioctl.h │ │ │ ├── sync_file.h │ │ │ ├── synclink.h │ │ │ ├── sysctl.h │ │ │ ├── sysinfo.h │ │ │ ├── target_core_user.h │ │ │ ├── taskstats.h │ │ │ ├── tc_act │ │ │ │ ├── tc_bpf.h │ │ │ │ ├── tc_connmark.h │ │ │ │ ├── tc_csum.h │ │ │ │ ├── tc_ct.h │ │ │ │ ├── tc_ctinfo.h │ │ │ │ ├── tc_defact.h │ │ │ │ ├── tc_gact.h │ │ │ │ ├── tc_gate.h │ │ │ │ ├── tc_ife.h │ │ │ │ ├── tc_ipt.h │ │ │ │ ├── tc_mirred.h │ │ │ │ ├── tc_mpls.h │ │ │ │ ├── tc_nat.h │ │ │ │ ├── tc_pedit.h │ │ │ │ ├── tc_sample.h │ │ │ │ ├── tc_skbedit.h │ │ │ │ ├── tc_skbmod.h │ │ │ │ ├── tc_tunnel_key.h │ │ │ │ └── tc_vlan.h │ │ │ ├── tc_ematch │ │ │ │ ├── tc_em_cmp.h │ │ │ │ ├── tc_em_ipt.h │ │ │ │ ├── tc_em_meta.h │ │ │ │ ├── tc_em_nbyte.h │ │ │ │ └── tc_em_text.h │ │ │ ├── tcp.h │ │ │ ├── tcp_metrics.h │ │ │ ├── tdx-guest.h │ │ │ ├── tee.h │ │ │ ├── termios.h │ │ │ ├── thermal.h │ │ │ ├── time.h │ │ │ ├── time_types.h │ │ │ ├── timerfd.h │ │ │ ├── times.h │ │ │ ├── timex.h │ │ │ ├── tiocl.h │ │ │ ├── tipc.h │ │ │ ├── tipc_config.h │ │ │ ├── tipc_netlink.h │ │ │ ├── tipc_sockets_diag.h │ │ │ ├── tls.h │ │ │ ├── toshiba.h │ │ │ ├── tps6594_pfsm.h │ │ │ ├── tty.h │ │ │ ├── tty_flags.h │ │ │ ├── types.h │ │ │ ├── ublk_cmd.h │ │ │ ├── udf_fs_i.h │ │ │ ├── udmabuf.h │ │ │ ├── udp.h │ │ │ ├── uhid.h │ │ │ ├── uinput.h │ │ │ ├── uio.h │ │ │ ├── uleds.h │ │ │ ├── ultrasound.h │ │ │ ├── um_timetravel.h │ │ │ ├── un.h │ │ │ ├── unistd.h │ │ │ ├── unix_diag.h │ │ │ ├── usb │ │ │ │ ├── audio.h │ │ │ │ ├── cdc-wdm.h │ │ │ │ ├── cdc.h │ │ │ │ ├── ch11.h │ │ │ │ ├── ch9.h │ │ │ │ ├── charger.h │ │ │ │ ├── functionfs.h │ │ │ │ ├── g_printer.h │ │ │ │ ├── g_uvc.h │ │ │ │ ├── gadgetfs.h │ │ │ │ ├── midi.h │ │ │ │ ├── raw_gadget.h │ │ │ │ ├── tmc.h │ │ │ │ └── video.h │ │ │ ├── usbdevice_fs.h │ │ │ ├── usbip.h │ │ │ ├── user_events.h │ │ │ ├── userfaultfd.h │ │ │ ├── userio.h │ │ │ ├── utime.h │ │ │ ├── utsname.h │ │ │ ├── uuid.h │ │ │ ├── uvcvideo.h │ │ │ ├── v4l2-common.h │ │ │ ├── v4l2-controls.h │ │ │ ├── v4l2-dv-timings.h │ │ │ ├── v4l2-mediabus.h │ │ │ ├── v4l2-subdev.h │ │ │ ├── vbox_err.h │ │ │ ├── vbox_vmmdev_types.h │ │ │ ├── vboxguest.h │ │ │ ├── vdpa.h │ │ │ ├── vduse.h │ │ │ ├── version.h │ │ │ ├── veth.h │ │ │ ├── vfio.h │ │ │ ├── vfio_ccw.h │ │ │ ├── vfio_zdev.h │ │ │ ├── vhost.h │ │ │ ├── vhost_types.h │ │ │ ├── videodev2.h │ │ │ ├── virtio_9p.h │ │ │ ├── virtio_balloon.h │ │ │ ├── virtio_blk.h │ │ │ ├── virtio_bt.h │ │ │ ├── virtio_config.h │ │ │ ├── virtio_console.h │ │ │ ├── virtio_crypto.h │ │ │ ├── virtio_fs.h │ │ │ ├── virtio_gpio.h │ │ │ ├── virtio_gpu.h │ │ │ ├── virtio_i2c.h │ │ │ ├── virtio_ids.h │ │ │ ├── virtio_input.h │ │ │ ├── virtio_iommu.h │ │ │ ├── virtio_mem.h │ │ │ ├── virtio_mmio.h │ │ │ ├── virtio_net.h │ │ │ ├── virtio_pci.h │ │ │ ├── virtio_pcidev.h │ │ │ ├── virtio_pmem.h │ │ │ ├── virtio_ring.h │ │ │ ├── virtio_rng.h │ │ │ ├── virtio_scmi.h │ │ │ ├── virtio_scsi.h │ │ │ ├── virtio_snd.h │ │ │ ├── virtio_types.h │ │ │ ├── virtio_vsock.h │ │ │ ├── vm_sockets.h │ │ │ ├── vm_sockets_diag.h │ │ │ ├── vmcore.h │ │ │ ├── vsockmon.h │ │ │ ├── vt.h │ │ │ ├── vtpm_proxy.h │ │ │ ├── wait.h │ │ │ ├── watch_queue.h │ │ │ ├── watchdog.h │ │ │ ├── wireguard.h │ │ │ ├── wireless.h │ │ │ ├── wmi.h │ │ │ ├── wwan.h │ │ │ ├── x25.h │ │ │ ├── xattr.h │ │ │ ├── xdp_diag.h │ │ │ ├── xfrm.h │ │ │ ├── xilinx-v4l2-controls.h │ │ │ ├── zorro.h │ │ │ └── zorro_ids.h │ │ ├── misc │ │ │ ├── cxl.h │ │ │ ├── fastrpc.h │ │ │ ├── ocxl.h │ │ │ ├── pvpanic.h │ │ │ ├── uacce │ │ │ │ ├── hisi_qm.h │ │ │ │ └── uacce.h │ │ │ └── xilinx_sdfec.h │ │ ├── mtd │ │ │ ├── inftl-user.h │ │ │ ├── mtd-abi.h │ │ │ ├── mtd-user.h │ │ │ ├── nftl-user.h │ │ │ └── ubi-user.h │ │ ├── rdma │ │ │ ├── bnxt_re-abi.h │ │ │ ├── cxgb4-abi.h │ │ │ ├── efa-abi.h │ │ │ ├── erdma-abi.h │ │ │ ├── hfi │ │ │ │ ├── hfi1_ioctl.h │ │ │ │ └── hfi1_user.h │ │ │ ├── hns-abi.h │ │ │ ├── ib_user_ioctl_cmds.h │ │ │ ├── ib_user_ioctl_verbs.h │ │ │ ├── ib_user_mad.h │ │ │ ├── ib_user_sa.h │ │ │ ├── ib_user_verbs.h │ │ │ ├── irdma-abi.h │ │ │ ├── mana-abi.h │ │ │ ├── mlx4-abi.h │ │ │ ├── mlx5-abi.h │ │ │ ├── mlx5_user_ioctl_cmds.h │ │ │ ├── mlx5_user_ioctl_verbs.h │ │ │ ├── mthca-abi.h │ │ │ ├── ocrdma-abi.h │ │ │ ├── qedr-abi.h │ │ │ ├── rdma_netlink.h │ │ │ ├── rdma_user_cm.h │ │ │ ├── rdma_user_ioctl.h │ │ │ ├── rdma_user_ioctl_cmds.h │ │ │ ├── rdma_user_rxe.h │ │ │ ├── rvt-abi.h │ │ │ ├── siw-abi.h │ │ │ └── vmw_pvrdma-abi.h │ │ ├── scsi │ │ │ ├── cxlflash_ioctl.h │ │ │ ├── fc │ │ │ │ ├── fc_els.h │ │ │ │ ├── fc_fs.h │ │ │ │ ├── fc_gs.h │ │ │ │ └── fc_ns.h │ │ │ ├── scsi_bsg_fc.h │ │ │ ├── scsi_bsg_mpi3mr.h │ │ │ ├── scsi_bsg_ufs.h │ │ │ ├── scsi_netlink.h │ │ │ └── scsi_netlink_fc.h │ │ ├── sound │ │ │ ├── asequencer.h │ │ │ ├── asoc.h │ │ │ ├── asound.h │ │ │ ├── asound_fm.h │ │ │ ├── compress_offload.h │ │ │ ├── compress_params.h │ │ │ ├── emu10k1.h │ │ │ ├── firewire.h │ │ │ ├── hdsp.h │ │ │ ├── hdspm.h │ │ │ ├── intel │ │ │ │ └── avs │ │ │ │ │ └── tokens.h │ │ │ ├── sb16_csp.h │ │ │ ├── sfnt_info.h │ │ │ ├── skl-tplg-interface.h │ │ │ ├── snd_ar_tokens.h │ │ │ ├── snd_sst_tokens.h │ │ │ ├── sof │ │ │ │ ├── abi.h │ │ │ │ ├── fw.h │ │ │ │ ├── header.h │ │ │ │ └── tokens.h │ │ │ ├── tlv.h │ │ │ └── usb_stream.h │ │ ├── video │ │ │ ├── edid.h │ │ │ ├── sisfb.h │ │ │ └── uvesafb.h │ │ └── xen │ │ │ ├── evtchn.h │ │ │ ├── gntalloc.h │ │ │ ├── gntdev.h │ │ │ └── privcmd.h │ ├── x86_64-macos.10 │ │ ├── AssertMacros.h │ │ ├── Availability.h │ │ ├── AvailabilityInternal.h │ │ ├── AvailabilityMacros.h │ │ ├── Block.h │ │ ├── CommonCrypto │ │ │ ├── CommonCrypto.h │ │ │ ├── CommonCryptoError.h │ │ │ ├── CommonCryptor.h │ │ │ ├── CommonDigest.h │ │ │ ├── CommonHMAC.h │ │ │ ├── CommonKeyDerivation.h │ │ │ └── CommonSymmetricKeywrap.h │ │ ├── ConditionalMacros.h │ │ ├── CoreFoundation │ │ │ ├── CFAvailability.h │ │ │ └── CFBase.h │ │ ├── MacTypes.h │ │ ├── TargetConditionals.h │ │ ├── __wctype.h │ │ ├── _ctermid.h │ │ ├── _ctype.h │ │ ├── _locale.h │ │ ├── _regex.h │ │ ├── _stdio.h │ │ ├── _types.h │ │ ├── _types │ │ │ ├── _intmax_t.h │ │ │ ├── _nl_item.h │ │ │ ├── _uint16_t.h │ │ │ ├── _uint32_t.h │ │ │ ├── _uint64_t.h │ │ │ ├── _uint8_t.h │ │ │ ├── _uintmax_t.h │ │ │ ├── _wctrans_t.h │ │ │ └── _wctype_t.h │ │ ├── _wctype.h │ │ ├── _xlocale.h │ │ ├── aio.h │ │ ├── alloca.h │ │ ├── ar.h │ │ ├── architecture │ │ │ └── byte_order.h │ │ ├── arpa │ │ │ ├── ftp.h │ │ │ ├── inet.h │ │ │ ├── nameser.h │ │ │ ├── nameser_compat.h │ │ │ ├── telnet.h │ │ │ └── tftp.h │ │ ├── asl.h │ │ ├── assert.h │ │ ├── bsm │ │ │ └── audit.h │ │ ├── complex.h │ │ ├── copyfile.h │ │ ├── cpio.h │ │ ├── crt_externs.h │ │ ├── ctype.h │ │ ├── device │ │ │ └── device_types.h │ │ ├── dirent.h │ │ ├── dispatch │ │ │ ├── base.h │ │ │ ├── block.h │ │ │ ├── data.h │ │ │ ├── dispatch.h │ │ │ ├── group.h │ │ │ ├── io.h │ │ │ ├── object.h │ │ │ ├── once.h │ │ │ ├── queue.h │ │ │ ├── semaphore.h │ │ │ ├── source.h │ │ │ ├── time.h │ │ │ └── workloop.h │ │ ├── dlfcn.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── execinfo.h │ │ ├── fcntl.h │ │ ├── fenv.h │ │ ├── float.h │ │ ├── fmtmsg.h │ │ ├── fnmatch.h │ │ ├── fstab.h │ │ ├── fts.h │ │ ├── ftw.h │ │ ├── gethostuuid.h │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── grp.h │ │ ├── hfs │ │ │ ├── hfs_format.h │ │ │ └── hfs_unistr.h │ │ ├── i386 │ │ │ ├── _limits.h │ │ │ ├── _mcontext.h │ │ │ ├── _param.h │ │ │ ├── _types.h │ │ │ ├── eflags.h │ │ │ ├── endian.h │ │ │ ├── limits.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── iconv.h │ │ ├── ifaddrs.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── langinfo.h │ │ ├── launch.h │ │ ├── libgen.h │ │ ├── libkern │ │ │ ├── OSAtomic.h │ │ │ ├── OSAtomicDeprecated.h │ │ │ ├── OSAtomicQueue.h │ │ │ ├── OSByteOrder.h │ │ │ ├── OSCacheControl.h │ │ │ ├── OSSpinLockDeprecated.h │ │ │ ├── OSTypes.h │ │ │ ├── _OSByteOrder.h │ │ │ └── i386 │ │ │ │ ├── OSByteOrder.h │ │ │ │ └── _OSByteOrder.h │ │ ├── libproc.h │ │ ├── limits.h │ │ ├── locale.h │ │ ├── mach-o │ │ │ ├── arch.h │ │ │ ├── arm64 │ │ │ │ └── reloc.h │ │ │ ├── compact_unwind_encoding.h │ │ │ ├── dyld.h │ │ │ ├── fat.h │ │ │ ├── getsect.h │ │ │ ├── loader.h │ │ │ ├── nlist.h │ │ │ ├── ranlib.h │ │ │ ├── reloc.h │ │ │ ├── stab.h │ │ │ └── x86_64 │ │ │ │ └── reloc.h │ │ ├── mach │ │ │ ├── boolean.h │ │ │ ├── clock.h │ │ │ ├── clock_priv.h │ │ │ ├── clock_types.h │ │ │ ├── dyld_kernel.h │ │ │ ├── error.h │ │ │ ├── exception_types.h │ │ │ ├── host_info.h │ │ │ ├── host_notify.h │ │ │ ├── host_priv.h │ │ │ ├── host_security.h │ │ │ ├── host_special_ports.h │ │ │ ├── i386 │ │ │ │ ├── _structs.h │ │ │ │ ├── boolean.h │ │ │ │ ├── exception.h │ │ │ │ ├── fp_reg.h │ │ │ │ ├── kern_return.h │ │ │ │ ├── processor_info.h │ │ │ │ ├── rpc.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ ├── kern_return.h │ │ │ ├── kmod.h │ │ │ ├── lock_set.h │ │ │ ├── mach.h │ │ │ ├── mach_error.h │ │ │ ├── mach_host.h │ │ │ ├── mach_init.h │ │ │ ├── mach_interface.h │ │ │ ├── mach_port.h │ │ │ ├── mach_time.h │ │ │ ├── mach_traps.h │ │ │ ├── mach_types.h │ │ │ ├── mach_voucher_types.h │ │ │ ├── machine.h │ │ │ ├── machine │ │ │ │ ├── _structs.h │ │ │ │ ├── boolean.h │ │ │ │ ├── exception.h │ │ │ │ ├── kern_return.h │ │ │ │ ├── processor_info.h │ │ │ │ ├── rpc.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ ├── memory_object_types.h │ │ │ ├── message.h │ │ │ ├── mig.h │ │ │ ├── mig_errors.h │ │ │ ├── mig_strncpy_zerofill_support.h │ │ │ ├── ndr.h │ │ │ ├── notify.h │ │ │ ├── policy.h │ │ │ ├── port.h │ │ │ ├── processor.h │ │ │ ├── processor_info.h │ │ │ ├── processor_set.h │ │ │ ├── rpc.h │ │ │ ├── semaphore.h │ │ │ ├── std_types.h │ │ │ ├── sync_policy.h │ │ │ ├── task.h │ │ │ ├── task_info.h │ │ │ ├── task_inspect.h │ │ │ ├── task_policy.h │ │ │ ├── task_special_ports.h │ │ │ ├── thread_act.h │ │ │ ├── thread_info.h │ │ │ ├── thread_policy.h │ │ │ ├── thread_special_ports.h │ │ │ ├── thread_state.h │ │ │ ├── thread_status.h │ │ │ ├── thread_switch.h │ │ │ ├── time_value.h │ │ │ ├── vm_attributes.h │ │ │ ├── vm_behavior.h │ │ │ ├── vm_inherit.h │ │ │ ├── vm_map.h │ │ │ ├── vm_page_size.h │ │ │ ├── vm_param.h │ │ │ ├── vm_prot.h │ │ │ ├── vm_purgable.h │ │ │ ├── vm_region.h │ │ │ ├── vm_statistics.h │ │ │ ├── vm_sync.h │ │ │ └── vm_types.h │ │ ├── mach_debug │ │ │ ├── hash_info.h │ │ │ ├── ipc_info.h │ │ │ ├── lockgroup_info.h │ │ │ ├── mach_debug_types.h │ │ │ ├── page_info.h │ │ │ ├── vm_info.h │ │ │ └── zone_info.h │ │ ├── machine │ │ │ ├── _mcontext.h │ │ │ ├── _param.h │ │ │ ├── _types.h │ │ │ ├── endian.h │ │ │ ├── limits.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── malloc │ │ │ ├── _malloc.h │ │ │ └── malloc.h │ │ ├── math.h │ │ ├── memory.h │ │ ├── monetary.h │ │ ├── nameser.h │ │ ├── ndbm.h │ │ ├── net │ │ │ ├── ethernet.h │ │ │ ├── if.h │ │ │ ├── if_dl.h │ │ │ ├── if_var.h │ │ │ ├── net_kev.h │ │ │ └── route.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ ├── in.h │ │ │ └── tcp.h │ │ ├── netinet6 │ │ │ └── in6.h │ │ ├── nl_types.h │ │ ├── objc │ │ │ ├── NSObjCRuntime.h │ │ │ ├── NSObject.h │ │ │ ├── message.h │ │ │ ├── objc-api.h │ │ │ ├── objc-runtime.h │ │ │ ├── objc-sync.h │ │ │ ├── objc.h │ │ │ └── runtime.h │ │ ├── os │ │ │ ├── availability.h │ │ │ ├── base.h │ │ │ ├── lock.h │ │ │ ├── log.h │ │ │ ├── object.h │ │ │ ├── trace.h │ │ │ └── trace_base.h │ │ ├── poll.h │ │ ├── pthread.h │ │ ├── pthread │ │ │ ├── introspection.h │ │ │ ├── pthread.h │ │ │ ├── pthread_impl.h │ │ │ ├── qos.h │ │ │ └── sched.h │ │ ├── pthread_impl.h │ │ ├── pwd.h │ │ ├── regex.h │ │ ├── runetype.h │ │ ├── sched.h │ │ ├── search.h │ │ ├── secure │ │ │ ├── _common.h │ │ │ ├── _stdio.h │ │ │ ├── _string.h │ │ │ └── _strings.h │ │ ├── semaphore.h │ │ ├── setjmp.h │ │ ├── signal.h │ │ ├── simd │ │ │ ├── base.h │ │ │ ├── common.h │ │ │ ├── conversion.h │ │ │ ├── extern.h │ │ │ ├── geometry.h │ │ │ ├── logic.h │ │ │ ├── math.h │ │ │ ├── matrix.h │ │ │ ├── matrix_types.h │ │ │ ├── packed.h │ │ │ ├── quaternion.h │ │ │ ├── simd.h │ │ │ ├── types.h │ │ │ ├── vector.h │ │ │ ├── vector_make.h │ │ │ └── vector_types.h │ │ ├── spawn.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── sys │ │ │ ├── _endian.h │ │ │ ├── _posix_availability.h │ │ │ ├── _pthread │ │ │ │ ├── _pthread_attr_t.h │ │ │ │ ├── _pthread_cond_t.h │ │ │ │ ├── _pthread_condattr_t.h │ │ │ │ ├── _pthread_key_t.h │ │ │ │ ├── _pthread_mutex_t.h │ │ │ │ ├── _pthread_mutexattr_t.h │ │ │ │ ├── _pthread_once_t.h │ │ │ │ ├── _pthread_rwlock_t.h │ │ │ │ ├── _pthread_rwlockattr_t.h │ │ │ │ ├── _pthread_t.h │ │ │ │ └── _pthread_types.h │ │ │ ├── _select.h │ │ │ ├── _symbol_aliasing.h │ │ │ ├── _types.h │ │ │ ├── _types │ │ │ │ ├── _blkcnt_t.h │ │ │ │ ├── _blksize_t.h │ │ │ │ ├── _caddr_t.h │ │ │ │ ├── _clock_t.h │ │ │ │ ├── _ct_rune_t.h │ │ │ │ ├── _dev_t.h │ │ │ │ ├── _errno_t.h │ │ │ │ ├── _fd_clr.h │ │ │ │ ├── _fd_copy.h │ │ │ │ ├── _fd_def.h │ │ │ │ ├── _fd_isset.h │ │ │ │ ├── _fd_set.h │ │ │ │ ├── _fd_setsize.h │ │ │ │ ├── _fd_zero.h │ │ │ │ ├── _filesec_t.h │ │ │ │ ├── _fsblkcnt_t.h │ │ │ │ ├── _fsfilcnt_t.h │ │ │ │ ├── _fsid_t.h │ │ │ │ ├── _fsobj_id_t.h │ │ │ │ ├── _gid_t.h │ │ │ │ ├── _guid_t.h │ │ │ │ ├── _id_t.h │ │ │ │ ├── _in_addr_t.h │ │ │ │ ├── _in_port_t.h │ │ │ │ ├── _ino64_t.h │ │ │ │ ├── _ino_t.h │ │ │ │ ├── _int16_t.h │ │ │ │ ├── _int32_t.h │ │ │ │ ├── _int64_t.h │ │ │ │ ├── _int8_t.h │ │ │ │ ├── _intptr_t.h │ │ │ │ ├── _iovec_t.h │ │ │ │ ├── _key_t.h │ │ │ │ ├── _mach_port_t.h │ │ │ │ ├── _mbstate_t.h │ │ │ │ ├── _mode_t.h │ │ │ │ ├── _nlink_t.h │ │ │ │ ├── _null.h │ │ │ │ ├── _o_dsync.h │ │ │ │ ├── _o_sync.h │ │ │ │ ├── _off_t.h │ │ │ │ ├── _offsetof.h │ │ │ │ ├── _os_inline.h │ │ │ │ ├── _pid_t.h │ │ │ │ ├── _posix_vdisable.h │ │ │ │ ├── _ptrdiff_t.h │ │ │ │ ├── _rsize_t.h │ │ │ │ ├── _rune_t.h │ │ │ │ ├── _s_ifmt.h │ │ │ │ ├── _sa_family_t.h │ │ │ │ ├── _seek_set.h │ │ │ │ ├── _sigaltstack.h │ │ │ │ ├── _sigset_t.h │ │ │ │ ├── _size_t.h │ │ │ │ ├── _socklen_t.h │ │ │ │ ├── _ssize_t.h │ │ │ │ ├── _suseconds_t.h │ │ │ │ ├── _time_t.h │ │ │ │ ├── _timespec.h │ │ │ │ ├── _timeval.h │ │ │ │ ├── _timeval32.h │ │ │ │ ├── _timeval64.h │ │ │ │ ├── _u_char.h │ │ │ │ ├── _u_int.h │ │ │ │ ├── _u_int16_t.h │ │ │ │ ├── _u_int32_t.h │ │ │ │ ├── _u_int64_t.h │ │ │ │ ├── _u_int8_t.h │ │ │ │ ├── _u_short.h │ │ │ │ ├── _ucontext.h │ │ │ │ ├── _uid_t.h │ │ │ │ ├── _uintptr_t.h │ │ │ │ ├── _useconds_t.h │ │ │ │ ├── _uuid_t.h │ │ │ │ ├── _va_list.h │ │ │ │ ├── _wchar_t.h │ │ │ │ └── _wint_t.h │ │ │ ├── acl.h │ │ │ ├── aio.h │ │ │ ├── appleapiopts.h │ │ │ ├── attr.h │ │ │ ├── cdefs.h │ │ │ ├── clonefile.h │ │ │ ├── dirent.h │ │ │ ├── errno.h │ │ │ ├── event.h │ │ │ ├── fcntl.h │ │ │ ├── file.h │ │ │ ├── filio.h │ │ │ ├── ioccom.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── kauth.h │ │ │ ├── kern_control.h │ │ │ ├── lock.h │ │ │ ├── mman.h │ │ │ ├── mount.h │ │ │ ├── msg.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── proc.h │ │ │ ├── proc_info.h │ │ │ ├── qos.h │ │ │ ├── queue.h │ │ │ ├── random.h │ │ │ ├── resource.h │ │ │ ├── select.h │ │ │ ├── sem.h │ │ │ ├── semaphore.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockio.h │ │ │ ├── spawn.h │ │ │ ├── stat.h │ │ │ ├── statvfs.h │ │ │ ├── stdio.h │ │ │ ├── syscall.h │ │ │ ├── sysctl.h │ │ │ ├── syslimits.h │ │ │ ├── syslog.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── times.h │ │ │ ├── ttycom.h │ │ │ ├── ttydefaults.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ ├── ucred.h │ │ │ ├── uio.h │ │ │ ├── un.h │ │ │ ├── unistd.h │ │ │ ├── utsname.h │ │ │ ├── vm.h │ │ │ ├── vnode.h │ │ │ ├── wait.h │ │ │ └── xattr.h │ │ ├── sysexits.h │ │ ├── syslog.h │ │ ├── tar.h │ │ ├── termios.h │ │ ├── tgmath.h │ │ ├── time.h │ │ ├── ucontext.h │ │ ├── ulimit.h │ │ ├── unistd.h │ │ ├── util.h │ │ ├── utime.h │ │ ├── utmp.h │ │ ├── utmpx.h │ │ ├── uuid │ │ │ └── uuid.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ ├── wordexp.h │ │ ├── xlocale.h │ │ ├── xlocale │ │ │ ├── __wctype.h │ │ │ ├── _ctype.h │ │ │ ├── _inttypes.h │ │ │ ├── _langinfo.h │ │ │ ├── _monetary.h │ │ │ ├── _regex.h │ │ │ ├── _stdio.h │ │ │ ├── _stdlib.h │ │ │ ├── _string.h │ │ │ ├── _time.h │ │ │ ├── _wchar.h │ │ │ └── _wctype.h │ │ └── xpc │ │ │ ├── activity.h │ │ │ ├── availability.h │ │ │ ├── base.h │ │ │ ├── connection.h │ │ │ ├── debug.h │ │ │ ├── endpoint.h │ │ │ └── xpc.h │ ├── x86_64-macos.11 │ │ ├── AssertMacros.h │ │ ├── Availability.h │ │ ├── AvailabilityInternal.h │ │ ├── AvailabilityMacros.h │ │ ├── AvailabilityVersions.h │ │ ├── Block.h │ │ ├── CommonCrypto │ │ │ ├── CommonCrypto.h │ │ │ ├── CommonCryptoError.h │ │ │ ├── CommonCryptor.h │ │ │ ├── CommonDigest.h │ │ │ ├── CommonHMAC.h │ │ │ ├── CommonKeyDerivation.h │ │ │ └── CommonSymmetricKeywrap.h │ │ ├── ConditionalMacros.h │ │ ├── CoreFoundation │ │ │ ├── CFAvailability.h │ │ │ └── CFBase.h │ │ ├── MacTypes.h │ │ ├── TargetConditionals.h │ │ ├── __wctype.h │ │ ├── _ctermid.h │ │ ├── _ctype.h │ │ ├── _locale.h │ │ ├── _regex.h │ │ ├── _stdio.h │ │ ├── _types.h │ │ ├── _types │ │ │ ├── _intmax_t.h │ │ │ ├── _nl_item.h │ │ │ ├── _uint16_t.h │ │ │ ├── _uint32_t.h │ │ │ ├── _uint64_t.h │ │ │ ├── _uint8_t.h │ │ │ ├── _uintmax_t.h │ │ │ ├── _wctrans_t.h │ │ │ └── _wctype_t.h │ │ ├── _wctype.h │ │ ├── _xlocale.h │ │ ├── aio.h │ │ ├── alloca.h │ │ ├── ar.h │ │ ├── architecture │ │ │ └── byte_order.h │ │ ├── arpa │ │ │ ├── ftp.h │ │ │ ├── inet.h │ │ │ ├── nameser.h │ │ │ ├── nameser_compat.h │ │ │ ├── telnet.h │ │ │ └── tftp.h │ │ ├── asl.h │ │ ├── assert.h │ │ ├── bsm │ │ │ └── audit.h │ │ ├── complex.h │ │ ├── copyfile.h │ │ ├── cpio.h │ │ ├── crt_externs.h │ │ ├── ctype.h │ │ ├── device │ │ │ └── device_types.h │ │ ├── dirent.h │ │ ├── dispatch │ │ │ ├── base.h │ │ │ ├── block.h │ │ │ ├── data.h │ │ │ ├── dispatch.h │ │ │ ├── group.h │ │ │ ├── io.h │ │ │ ├── object.h │ │ │ ├── once.h │ │ │ ├── queue.h │ │ │ ├── semaphore.h │ │ │ ├── source.h │ │ │ ├── time.h │ │ │ └── workloop.h │ │ ├── dlfcn.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── execinfo.h │ │ ├── fcntl.h │ │ ├── fenv.h │ │ ├── float.h │ │ ├── fmtmsg.h │ │ ├── fnmatch.h │ │ ├── fstab.h │ │ ├── fts.h │ │ ├── ftw.h │ │ ├── gethostuuid.h │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── grp.h │ │ ├── hfs │ │ │ ├── hfs_format.h │ │ │ └── hfs_unistr.h │ │ ├── i386 │ │ │ ├── _limits.h │ │ │ ├── _mcontext.h │ │ │ ├── _param.h │ │ │ ├── _types.h │ │ │ ├── eflags.h │ │ │ ├── endian.h │ │ │ ├── limits.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── iconv.h │ │ ├── ifaddrs.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── langinfo.h │ │ ├── launch.h │ │ ├── libDER │ │ │ ├── DERItem.h │ │ │ └── libDER_config.h │ │ ├── libgen.h │ │ ├── libkern │ │ │ ├── OSAtomic.h │ │ │ ├── OSAtomicDeprecated.h │ │ │ ├── OSAtomicQueue.h │ │ │ ├── OSByteOrder.h │ │ │ ├── OSCacheControl.h │ │ │ ├── OSSpinLockDeprecated.h │ │ │ ├── OSTypes.h │ │ │ ├── _OSByteOrder.h │ │ │ └── i386 │ │ │ │ ├── OSByteOrder.h │ │ │ │ └── _OSByteOrder.h │ │ ├── libproc.h │ │ ├── limits.h │ │ ├── locale.h │ │ ├── mach-o │ │ │ ├── arch.h │ │ │ ├── arm64 │ │ │ │ └── reloc.h │ │ │ ├── compact_unwind_encoding.h │ │ │ ├── dyld.h │ │ │ ├── fat.h │ │ │ ├── getsect.h │ │ │ ├── loader.h │ │ │ ├── nlist.h │ │ │ ├── ranlib.h │ │ │ ├── reloc.h │ │ │ ├── stab.h │ │ │ └── x86_64 │ │ │ │ └── reloc.h │ │ ├── mach │ │ │ ├── boolean.h │ │ │ ├── clock.h │ │ │ ├── clock_priv.h │ │ │ ├── clock_types.h │ │ │ ├── dyld_kernel.h │ │ │ ├── error.h │ │ │ ├── exception_types.h │ │ │ ├── host_info.h │ │ │ ├── host_notify.h │ │ │ ├── host_priv.h │ │ │ ├── host_security.h │ │ │ ├── host_special_ports.h │ │ │ ├── i386 │ │ │ │ ├── _structs.h │ │ │ │ ├── boolean.h │ │ │ │ ├── exception.h │ │ │ │ ├── fp_reg.h │ │ │ │ ├── kern_return.h │ │ │ │ ├── processor_info.h │ │ │ │ ├── rpc.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ ├── kern_return.h │ │ │ ├── kmod.h │ │ │ ├── lock_set.h │ │ │ ├── mach.h │ │ │ ├── mach_error.h │ │ │ ├── mach_host.h │ │ │ ├── mach_init.h │ │ │ ├── mach_interface.h │ │ │ ├── mach_port.h │ │ │ ├── mach_time.h │ │ │ ├── mach_traps.h │ │ │ ├── mach_types.h │ │ │ ├── mach_voucher_types.h │ │ │ ├── machine.h │ │ │ ├── machine │ │ │ │ ├── _structs.h │ │ │ │ ├── boolean.h │ │ │ │ ├── exception.h │ │ │ │ ├── kern_return.h │ │ │ │ ├── processor_info.h │ │ │ │ ├── rpc.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ ├── memory_object_types.h │ │ │ ├── message.h │ │ │ ├── mig.h │ │ │ ├── mig_errors.h │ │ │ ├── mig_strncpy_zerofill_support.h │ │ │ ├── ndr.h │ │ │ ├── notify.h │ │ │ ├── policy.h │ │ │ ├── port.h │ │ │ ├── processor.h │ │ │ ├── processor_info.h │ │ │ ├── processor_set.h │ │ │ ├── rpc.h │ │ │ ├── semaphore.h │ │ │ ├── std_types.h │ │ │ ├── sync_policy.h │ │ │ ├── task.h │ │ │ ├── task_info.h │ │ │ ├── task_inspect.h │ │ │ ├── task_policy.h │ │ │ ├── task_special_ports.h │ │ │ ├── thread_act.h │ │ │ ├── thread_info.h │ │ │ ├── thread_policy.h │ │ │ ├── thread_special_ports.h │ │ │ ├── thread_state.h │ │ │ ├── thread_status.h │ │ │ ├── thread_switch.h │ │ │ ├── time_value.h │ │ │ ├── vm_attributes.h │ │ │ ├── vm_behavior.h │ │ │ ├── vm_inherit.h │ │ │ ├── vm_map.h │ │ │ ├── vm_page_size.h │ │ │ ├── vm_param.h │ │ │ ├── vm_prot.h │ │ │ ├── vm_purgable.h │ │ │ ├── vm_region.h │ │ │ ├── vm_statistics.h │ │ │ ├── vm_sync.h │ │ │ └── vm_types.h │ │ ├── mach_debug │ │ │ ├── hash_info.h │ │ │ ├── ipc_info.h │ │ │ ├── lockgroup_info.h │ │ │ ├── mach_debug_types.h │ │ │ ├── page_info.h │ │ │ ├── vm_info.h │ │ │ └── zone_info.h │ │ ├── machine │ │ │ ├── _mcontext.h │ │ │ ├── _param.h │ │ │ ├── _types.h │ │ │ ├── endian.h │ │ │ ├── limits.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── malloc │ │ │ ├── _malloc.h │ │ │ └── malloc.h │ │ ├── math.h │ │ ├── memory.h │ │ ├── monetary.h │ │ ├── nameser.h │ │ ├── ndbm.h │ │ ├── net │ │ │ ├── ethernet.h │ │ │ ├── if.h │ │ │ ├── if_dl.h │ │ │ ├── if_var.h │ │ │ ├── net_kev.h │ │ │ └── route.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ ├── in.h │ │ │ └── tcp.h │ │ ├── netinet6 │ │ │ └── in6.h │ │ ├── nl_types.h │ │ ├── objc │ │ │ ├── NSObjCRuntime.h │ │ │ ├── NSObject.h │ │ │ ├── message.h │ │ │ ├── objc-api.h │ │ │ ├── objc-runtime.h │ │ │ ├── objc-sync.h │ │ │ ├── objc.h │ │ │ └── runtime.h │ │ ├── os │ │ │ ├── availability.h │ │ │ ├── base.h │ │ │ ├── clock.h │ │ │ ├── lock.h │ │ │ ├── log.h │ │ │ ├── object.h │ │ │ ├── trace.h │ │ │ ├── trace_base.h │ │ │ ├── workgroup.h │ │ │ ├── workgroup_base.h │ │ │ ├── workgroup_interval.h │ │ │ ├── workgroup_object.h │ │ │ └── workgroup_parallel.h │ │ ├── poll.h │ │ ├── pthread.h │ │ ├── pthread │ │ │ ├── introspection.h │ │ │ ├── pthread.h │ │ │ ├── pthread_impl.h │ │ │ ├── qos.h │ │ │ └── sched.h │ │ ├── pwd.h │ │ ├── regex.h │ │ ├── runetype.h │ │ ├── sched.h │ │ ├── search.h │ │ ├── secure │ │ │ ├── _common.h │ │ │ ├── _stdio.h │ │ │ ├── _string.h │ │ │ └── _strings.h │ │ ├── semaphore.h │ │ ├── setjmp.h │ │ ├── signal.h │ │ ├── simd │ │ │ ├── base.h │ │ │ ├── common.h │ │ │ ├── conversion.h │ │ │ ├── extern.h │ │ │ ├── geometry.h │ │ │ ├── logic.h │ │ │ ├── math.h │ │ │ ├── matrix.h │ │ │ ├── matrix_types.h │ │ │ ├── packed.h │ │ │ ├── quaternion.h │ │ │ ├── simd.h │ │ │ ├── types.h │ │ │ ├── vector.h │ │ │ ├── vector_make.h │ │ │ └── vector_types.h │ │ ├── spawn.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── sys │ │ │ ├── _endian.h │ │ │ ├── _posix_availability.h │ │ │ ├── _pthread │ │ │ │ ├── _pthread_attr_t.h │ │ │ │ ├── _pthread_cond_t.h │ │ │ │ ├── _pthread_condattr_t.h │ │ │ │ ├── _pthread_key_t.h │ │ │ │ ├── _pthread_mutex_t.h │ │ │ │ ├── _pthread_mutexattr_t.h │ │ │ │ ├── _pthread_once_t.h │ │ │ │ ├── _pthread_rwlock_t.h │ │ │ │ ├── _pthread_rwlockattr_t.h │ │ │ │ ├── _pthread_t.h │ │ │ │ └── _pthread_types.h │ │ │ ├── _select.h │ │ │ ├── _symbol_aliasing.h │ │ │ ├── _types.h │ │ │ ├── _types │ │ │ │ ├── _blkcnt_t.h │ │ │ │ ├── _blksize_t.h │ │ │ │ ├── _caddr_t.h │ │ │ │ ├── _clock_t.h │ │ │ │ ├── _ct_rune_t.h │ │ │ │ ├── _dev_t.h │ │ │ │ ├── _errno_t.h │ │ │ │ ├── _fd_clr.h │ │ │ │ ├── _fd_copy.h │ │ │ │ ├── _fd_def.h │ │ │ │ ├── _fd_isset.h │ │ │ │ ├── _fd_set.h │ │ │ │ ├── _fd_setsize.h │ │ │ │ ├── _fd_zero.h │ │ │ │ ├── _filesec_t.h │ │ │ │ ├── _fsblkcnt_t.h │ │ │ │ ├── _fsfilcnt_t.h │ │ │ │ ├── _fsid_t.h │ │ │ │ ├── _fsobj_id_t.h │ │ │ │ ├── _gid_t.h │ │ │ │ ├── _guid_t.h │ │ │ │ ├── _id_t.h │ │ │ │ ├── _in_addr_t.h │ │ │ │ ├── _in_port_t.h │ │ │ │ ├── _ino64_t.h │ │ │ │ ├── _ino_t.h │ │ │ │ ├── _int16_t.h │ │ │ │ ├── _int32_t.h │ │ │ │ ├── _int64_t.h │ │ │ │ ├── _int8_t.h │ │ │ │ ├── _intptr_t.h │ │ │ │ ├── _iovec_t.h │ │ │ │ ├── _key_t.h │ │ │ │ ├── _mach_port_t.h │ │ │ │ ├── _mbstate_t.h │ │ │ │ ├── _mode_t.h │ │ │ │ ├── _nlink_t.h │ │ │ │ ├── _null.h │ │ │ │ ├── _o_dsync.h │ │ │ │ ├── _o_sync.h │ │ │ │ ├── _off_t.h │ │ │ │ ├── _offsetof.h │ │ │ │ ├── _os_inline.h │ │ │ │ ├── _pid_t.h │ │ │ │ ├── _posix_vdisable.h │ │ │ │ ├── _ptrdiff_t.h │ │ │ │ ├── _rsize_t.h │ │ │ │ ├── _rune_t.h │ │ │ │ ├── _s_ifmt.h │ │ │ │ ├── _sa_family_t.h │ │ │ │ ├── _seek_set.h │ │ │ │ ├── _sigaltstack.h │ │ │ │ ├── _sigset_t.h │ │ │ │ ├── _size_t.h │ │ │ │ ├── _socklen_t.h │ │ │ │ ├── _ssize_t.h │ │ │ │ ├── _suseconds_t.h │ │ │ │ ├── _time_t.h │ │ │ │ ├── _timespec.h │ │ │ │ ├── _timeval.h │ │ │ │ ├── _timeval32.h │ │ │ │ ├── _timeval64.h │ │ │ │ ├── _u_char.h │ │ │ │ ├── _u_int.h │ │ │ │ ├── _u_int16_t.h │ │ │ │ ├── _u_int32_t.h │ │ │ │ ├── _u_int64_t.h │ │ │ │ ├── _u_int8_t.h │ │ │ │ ├── _u_short.h │ │ │ │ ├── _ucontext.h │ │ │ │ ├── _uid_t.h │ │ │ │ ├── _uintptr_t.h │ │ │ │ ├── _useconds_t.h │ │ │ │ ├── _uuid_t.h │ │ │ │ ├── _va_list.h │ │ │ │ ├── _wchar_t.h │ │ │ │ └── _wint_t.h │ │ │ ├── acl.h │ │ │ ├── aio.h │ │ │ ├── appleapiopts.h │ │ │ ├── attr.h │ │ │ ├── cdefs.h │ │ │ ├── clonefile.h │ │ │ ├── dirent.h │ │ │ ├── errno.h │ │ │ ├── event.h │ │ │ ├── fcntl.h │ │ │ ├── file.h │ │ │ ├── filio.h │ │ │ ├── ioccom.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── kauth.h │ │ │ ├── kern_control.h │ │ │ ├── lock.h │ │ │ ├── mman.h │ │ │ ├── mount.h │ │ │ ├── msg.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── proc.h │ │ │ ├── proc_info.h │ │ │ ├── qos.h │ │ │ ├── queue.h │ │ │ ├── random.h │ │ │ ├── resource.h │ │ │ ├── select.h │ │ │ ├── sem.h │ │ │ ├── semaphore.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockio.h │ │ │ ├── spawn.h │ │ │ ├── stat.h │ │ │ ├── statvfs.h │ │ │ ├── stdio.h │ │ │ ├── syscall.h │ │ │ ├── sysctl.h │ │ │ ├── syslimits.h │ │ │ ├── syslog.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── times.h │ │ │ ├── ttycom.h │ │ │ ├── ttydefaults.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ ├── ucred.h │ │ │ ├── uio.h │ │ │ ├── un.h │ │ │ ├── unistd.h │ │ │ ├── utsname.h │ │ │ ├── vm.h │ │ │ ├── vnode.h │ │ │ ├── wait.h │ │ │ └── xattr.h │ │ ├── sysexits.h │ │ ├── syslog.h │ │ ├── tar.h │ │ ├── termios.h │ │ ├── tgmath.h │ │ ├── time.h │ │ ├── ucontext.h │ │ ├── ulimit.h │ │ ├── unistd.h │ │ ├── util.h │ │ ├── utime.h │ │ ├── utmp.h │ │ ├── utmpx.h │ │ ├── uuid │ │ │ └── uuid.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ ├── wordexp.h │ │ ├── xlocale.h │ │ ├── xlocale │ │ │ ├── __wctype.h │ │ │ ├── _ctype.h │ │ │ ├── _inttypes.h │ │ │ ├── _langinfo.h │ │ │ ├── _monetary.h │ │ │ ├── _regex.h │ │ │ ├── _stdio.h │ │ │ ├── _stdlib.h │ │ │ ├── _string.h │ │ │ ├── _time.h │ │ │ ├── _wchar.h │ │ │ └── _wctype.h │ │ └── xpc │ │ │ ├── activity.h │ │ │ ├── availability.h │ │ │ ├── base.h │ │ │ ├── connection.h │ │ │ ├── debug.h │ │ │ ├── endpoint.h │ │ │ └── xpc.h │ ├── x86_64-macos.12 │ │ ├── AssertMacros.h │ │ ├── Availability.h │ │ ├── AvailabilityInternal.h │ │ ├── AvailabilityMacros.h │ │ ├── AvailabilityVersions.h │ │ ├── Block.h │ │ ├── CommonCrypto │ │ │ ├── CommonCrypto.h │ │ │ ├── CommonCryptoError.h │ │ │ ├── CommonCryptor.h │ │ │ ├── CommonDigest.h │ │ │ ├── CommonHMAC.h │ │ │ ├── CommonKeyDerivation.h │ │ │ └── CommonSymmetricKeywrap.h │ │ ├── ConditionalMacros.h │ │ ├── CoreFoundation │ │ │ ├── CFAvailability.h │ │ │ └── CFBase.h │ │ ├── MacTypes.h │ │ ├── TargetConditionals.h │ │ ├── __wctype.h │ │ ├── _ctermid.h │ │ ├── _ctype.h │ │ ├── _locale.h │ │ ├── _regex.h │ │ ├── _stdio.h │ │ ├── _types.h │ │ ├── _types │ │ │ ├── _intmax_t.h │ │ │ ├── _nl_item.h │ │ │ ├── _uint16_t.h │ │ │ ├── _uint32_t.h │ │ │ ├── _uint64_t.h │ │ │ ├── _uint8_t.h │ │ │ ├── _uintmax_t.h │ │ │ ├── _wctrans_t.h │ │ │ └── _wctype_t.h │ │ ├── _wctype.h │ │ ├── _xlocale.h │ │ ├── aio.h │ │ ├── alloca.h │ │ ├── ar.h │ │ ├── architecture │ │ │ └── byte_order.h │ │ ├── arpa │ │ │ ├── ftp.h │ │ │ ├── inet.h │ │ │ ├── nameser.h │ │ │ ├── nameser_compat.h │ │ │ ├── telnet.h │ │ │ └── tftp.h │ │ ├── asl.h │ │ ├── assert.h │ │ ├── bsm │ │ │ └── audit.h │ │ ├── complex.h │ │ ├── copyfile.h │ │ ├── cpio.h │ │ ├── crt_externs.h │ │ ├── ctype.h │ │ ├── device │ │ │ └── device_types.h │ │ ├── dirent.h │ │ ├── dispatch │ │ │ ├── base.h │ │ │ ├── block.h │ │ │ ├── data.h │ │ │ ├── dispatch.h │ │ │ ├── group.h │ │ │ ├── io.h │ │ │ ├── object.h │ │ │ ├── once.h │ │ │ ├── queue.h │ │ │ ├── semaphore.h │ │ │ ├── source.h │ │ │ ├── time.h │ │ │ └── workloop.h │ │ ├── dlfcn.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── execinfo.h │ │ ├── fcntl.h │ │ ├── fenv.h │ │ ├── float.h │ │ ├── fmtmsg.h │ │ ├── fnmatch.h │ │ ├── fstab.h │ │ ├── fts.h │ │ ├── ftw.h │ │ ├── gethostuuid.h │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── grp.h │ │ ├── hfs │ │ │ ├── hfs_format.h │ │ │ └── hfs_unistr.h │ │ ├── i386 │ │ │ ├── _limits.h │ │ │ ├── _mcontext.h │ │ │ ├── _param.h │ │ │ ├── _types.h │ │ │ ├── eflags.h │ │ │ ├── endian.h │ │ │ ├── limits.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── iconv.h │ │ ├── ifaddrs.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── langinfo.h │ │ ├── launch.h │ │ ├── libDER │ │ │ ├── DERItem.h │ │ │ └── libDER_config.h │ │ ├── libgen.h │ │ ├── libkern │ │ │ ├── OSAtomic.h │ │ │ ├── OSAtomicDeprecated.h │ │ │ ├── OSAtomicQueue.h │ │ │ ├── OSByteOrder.h │ │ │ ├── OSCacheControl.h │ │ │ ├── OSSpinLockDeprecated.h │ │ │ ├── OSTypes.h │ │ │ ├── _OSByteOrder.h │ │ │ └── i386 │ │ │ │ ├── OSByteOrder.h │ │ │ │ └── _OSByteOrder.h │ │ ├── libproc.h │ │ ├── limits.h │ │ ├── locale.h │ │ ├── mach-o │ │ │ ├── arch.h │ │ │ ├── arm64 │ │ │ │ └── reloc.h │ │ │ ├── compact_unwind_encoding.h │ │ │ ├── dyld.h │ │ │ ├── fat.h │ │ │ ├── getsect.h │ │ │ ├── loader.h │ │ │ ├── nlist.h │ │ │ ├── ranlib.h │ │ │ ├── reloc.h │ │ │ ├── stab.h │ │ │ └── x86_64 │ │ │ │ └── reloc.h │ │ ├── mach │ │ │ ├── boolean.h │ │ │ ├── clock.h │ │ │ ├── clock_priv.h │ │ │ ├── clock_types.h │ │ │ ├── dyld_kernel.h │ │ │ ├── error.h │ │ │ ├── exception_types.h │ │ │ ├── host_info.h │ │ │ ├── host_notify.h │ │ │ ├── host_priv.h │ │ │ ├── host_security.h │ │ │ ├── host_special_ports.h │ │ │ ├── i386 │ │ │ │ ├── _structs.h │ │ │ │ ├── boolean.h │ │ │ │ ├── exception.h │ │ │ │ ├── fp_reg.h │ │ │ │ ├── kern_return.h │ │ │ │ ├── processor_info.h │ │ │ │ ├── rpc.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ ├── kern_return.h │ │ │ ├── kmod.h │ │ │ ├── lock_set.h │ │ │ ├── mach.h │ │ │ ├── mach_error.h │ │ │ ├── mach_host.h │ │ │ ├── mach_init.h │ │ │ ├── mach_interface.h │ │ │ ├── mach_port.h │ │ │ ├── mach_time.h │ │ │ ├── mach_traps.h │ │ │ ├── mach_types.h │ │ │ ├── mach_voucher_types.h │ │ │ ├── machine.h │ │ │ ├── machine │ │ │ │ ├── _structs.h │ │ │ │ ├── boolean.h │ │ │ │ ├── exception.h │ │ │ │ ├── kern_return.h │ │ │ │ ├── processor_info.h │ │ │ │ ├── rpc.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ ├── memory_object_types.h │ │ │ ├── message.h │ │ │ ├── mig.h │ │ │ ├── mig_errors.h │ │ │ ├── mig_strncpy_zerofill_support.h │ │ │ ├── ndr.h │ │ │ ├── notify.h │ │ │ ├── policy.h │ │ │ ├── port.h │ │ │ ├── processor.h │ │ │ ├── processor_info.h │ │ │ ├── processor_set.h │ │ │ ├── rpc.h │ │ │ ├── semaphore.h │ │ │ ├── std_types.h │ │ │ ├── sync_policy.h │ │ │ ├── task.h │ │ │ ├── task_info.h │ │ │ ├── task_inspect.h │ │ │ ├── task_policy.h │ │ │ ├── task_special_ports.h │ │ │ ├── thread_act.h │ │ │ ├── thread_info.h │ │ │ ├── thread_policy.h │ │ │ ├── thread_special_ports.h │ │ │ ├── thread_state.h │ │ │ ├── thread_status.h │ │ │ ├── thread_switch.h │ │ │ ├── time_value.h │ │ │ ├── vm_attributes.h │ │ │ ├── vm_behavior.h │ │ │ ├── vm_inherit.h │ │ │ ├── vm_map.h │ │ │ ├── vm_page_size.h │ │ │ ├── vm_param.h │ │ │ ├── vm_prot.h │ │ │ ├── vm_purgable.h │ │ │ ├── vm_region.h │ │ │ ├── vm_statistics.h │ │ │ ├── vm_sync.h │ │ │ └── vm_types.h │ │ ├── mach_debug │ │ │ ├── hash_info.h │ │ │ ├── ipc_info.h │ │ │ ├── lockgroup_info.h │ │ │ ├── mach_debug_types.h │ │ │ ├── page_info.h │ │ │ ├── vm_info.h │ │ │ └── zone_info.h │ │ ├── machine │ │ │ ├── _mcontext.h │ │ │ ├── _param.h │ │ │ ├── _types.h │ │ │ ├── endian.h │ │ │ ├── limits.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── malloc │ │ │ ├── _malloc.h │ │ │ └── malloc.h │ │ ├── math.h │ │ ├── memory.h │ │ ├── monetary.h │ │ ├── nameser.h │ │ ├── ndbm.h │ │ ├── net │ │ │ ├── ethernet.h │ │ │ ├── if.h │ │ │ ├── if_dl.h │ │ │ ├── if_var.h │ │ │ ├── net_kev.h │ │ │ └── route.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ ├── in.h │ │ │ └── tcp.h │ │ ├── netinet6 │ │ │ └── in6.h │ │ ├── nl_types.h │ │ ├── objc │ │ │ ├── NSObjCRuntime.h │ │ │ ├── NSObject.h │ │ │ ├── message.h │ │ │ ├── objc-api.h │ │ │ ├── objc-runtime.h │ │ │ ├── objc-sync.h │ │ │ ├── objc.h │ │ │ └── runtime.h │ │ ├── os │ │ │ ├── availability.h │ │ │ ├── base.h │ │ │ ├── clock.h │ │ │ ├── lock.h │ │ │ ├── log.h │ │ │ ├── object.h │ │ │ ├── trace.h │ │ │ ├── trace_base.h │ │ │ ├── workgroup.h │ │ │ ├── workgroup_base.h │ │ │ ├── workgroup_interval.h │ │ │ ├── workgroup_object.h │ │ │ └── workgroup_parallel.h │ │ ├── poll.h │ │ ├── pthread.h │ │ ├── pthread │ │ │ ├── introspection.h │ │ │ ├── pthread.h │ │ │ ├── pthread_impl.h │ │ │ ├── qos.h │ │ │ └── sched.h │ │ ├── pwd.h │ │ ├── regex.h │ │ ├── runetype.h │ │ ├── sched.h │ │ ├── search.h │ │ ├── secure │ │ │ ├── _common.h │ │ │ ├── _stdio.h │ │ │ ├── _string.h │ │ │ └── _strings.h │ │ ├── semaphore.h │ │ ├── setjmp.h │ │ ├── signal.h │ │ ├── simd │ │ │ ├── base.h │ │ │ ├── common.h │ │ │ ├── conversion.h │ │ │ ├── extern.h │ │ │ ├── geometry.h │ │ │ ├── logic.h │ │ │ ├── math.h │ │ │ ├── matrix.h │ │ │ ├── matrix_types.h │ │ │ ├── packed.h │ │ │ ├── quaternion.h │ │ │ ├── simd.h │ │ │ ├── types.h │ │ │ ├── vector.h │ │ │ ├── vector_make.h │ │ │ └── vector_types.h │ │ ├── spawn.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── sys │ │ │ ├── _endian.h │ │ │ ├── _posix_availability.h │ │ │ ├── _pthread │ │ │ │ ├── _pthread_attr_t.h │ │ │ │ ├── _pthread_cond_t.h │ │ │ │ ├── _pthread_condattr_t.h │ │ │ │ ├── _pthread_key_t.h │ │ │ │ ├── _pthread_mutex_t.h │ │ │ │ ├── _pthread_mutexattr_t.h │ │ │ │ ├── _pthread_once_t.h │ │ │ │ ├── _pthread_rwlock_t.h │ │ │ │ ├── _pthread_rwlockattr_t.h │ │ │ │ ├── _pthread_t.h │ │ │ │ └── _pthread_types.h │ │ │ ├── _select.h │ │ │ ├── _symbol_aliasing.h │ │ │ ├── _types.h │ │ │ ├── _types │ │ │ │ ├── _blkcnt_t.h │ │ │ │ ├── _blksize_t.h │ │ │ │ ├── _caddr_t.h │ │ │ │ ├── _clock_t.h │ │ │ │ ├── _ct_rune_t.h │ │ │ │ ├── _dev_t.h │ │ │ │ ├── _errno_t.h │ │ │ │ ├── _fd_clr.h │ │ │ │ ├── _fd_copy.h │ │ │ │ ├── _fd_def.h │ │ │ │ ├── _fd_isset.h │ │ │ │ ├── _fd_set.h │ │ │ │ ├── _fd_setsize.h │ │ │ │ ├── _fd_zero.h │ │ │ │ ├── _filesec_t.h │ │ │ │ ├── _fsblkcnt_t.h │ │ │ │ ├── _fsfilcnt_t.h │ │ │ │ ├── _fsid_t.h │ │ │ │ ├── _fsobj_id_t.h │ │ │ │ ├── _gid_t.h │ │ │ │ ├── _guid_t.h │ │ │ │ ├── _id_t.h │ │ │ │ ├── _in_addr_t.h │ │ │ │ ├── _in_port_t.h │ │ │ │ ├── _ino64_t.h │ │ │ │ ├── _ino_t.h │ │ │ │ ├── _int16_t.h │ │ │ │ ├── _int32_t.h │ │ │ │ ├── _int64_t.h │ │ │ │ ├── _int8_t.h │ │ │ │ ├── _intptr_t.h │ │ │ │ ├── _iovec_t.h │ │ │ │ ├── _key_t.h │ │ │ │ ├── _mach_port_t.h │ │ │ │ ├── _mbstate_t.h │ │ │ │ ├── _mode_t.h │ │ │ │ ├── _nlink_t.h │ │ │ │ ├── _null.h │ │ │ │ ├── _o_dsync.h │ │ │ │ ├── _o_sync.h │ │ │ │ ├── _off_t.h │ │ │ │ ├── _offsetof.h │ │ │ │ ├── _os_inline.h │ │ │ │ ├── _pid_t.h │ │ │ │ ├── _posix_vdisable.h │ │ │ │ ├── _ptrdiff_t.h │ │ │ │ ├── _rsize_t.h │ │ │ │ ├── _rune_t.h │ │ │ │ ├── _s_ifmt.h │ │ │ │ ├── _sa_family_t.h │ │ │ │ ├── _seek_set.h │ │ │ │ ├── _sigaltstack.h │ │ │ │ ├── _sigset_t.h │ │ │ │ ├── _size_t.h │ │ │ │ ├── _socklen_t.h │ │ │ │ ├── _ssize_t.h │ │ │ │ ├── _suseconds_t.h │ │ │ │ ├── _time_t.h │ │ │ │ ├── _timespec.h │ │ │ │ ├── _timeval.h │ │ │ │ ├── _timeval32.h │ │ │ │ ├── _timeval64.h │ │ │ │ ├── _u_char.h │ │ │ │ ├── _u_int.h │ │ │ │ ├── _u_int16_t.h │ │ │ │ ├── _u_int32_t.h │ │ │ │ ├── _u_int64_t.h │ │ │ │ ├── _u_int8_t.h │ │ │ │ ├── _u_short.h │ │ │ │ ├── _ucontext.h │ │ │ │ ├── _uid_t.h │ │ │ │ ├── _uintptr_t.h │ │ │ │ ├── _useconds_t.h │ │ │ │ ├── _uuid_t.h │ │ │ │ ├── _va_list.h │ │ │ │ ├── _wchar_t.h │ │ │ │ └── _wint_t.h │ │ │ ├── acl.h │ │ │ ├── aio.h │ │ │ ├── appleapiopts.h │ │ │ ├── attr.h │ │ │ ├── cdefs.h │ │ │ ├── clonefile.h │ │ │ ├── dirent.h │ │ │ ├── errno.h │ │ │ ├── event.h │ │ │ ├── fcntl.h │ │ │ ├── file.h │ │ │ ├── filio.h │ │ │ ├── ioccom.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── kauth.h │ │ │ ├── kern_control.h │ │ │ ├── lock.h │ │ │ ├── mman.h │ │ │ ├── mount.h │ │ │ ├── msg.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── proc.h │ │ │ ├── proc_info.h │ │ │ ├── qos.h │ │ │ ├── queue.h │ │ │ ├── random.h │ │ │ ├── resource.h │ │ │ ├── select.h │ │ │ ├── sem.h │ │ │ ├── semaphore.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockio.h │ │ │ ├── spawn.h │ │ │ ├── stat.h │ │ │ ├── statvfs.h │ │ │ ├── stdio.h │ │ │ ├── syscall.h │ │ │ ├── sysctl.h │ │ │ ├── syslimits.h │ │ │ ├── syslog.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── times.h │ │ │ ├── ttycom.h │ │ │ ├── ttydefaults.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ ├── ucred.h │ │ │ ├── uio.h │ │ │ ├── un.h │ │ │ ├── unistd.h │ │ │ ├── utsname.h │ │ │ ├── vm.h │ │ │ ├── vnode.h │ │ │ ├── wait.h │ │ │ └── xattr.h │ │ ├── sysexits.h │ │ ├── syslog.h │ │ ├── tar.h │ │ ├── termios.h │ │ ├── tgmath.h │ │ ├── time.h │ │ ├── ucontext.h │ │ ├── ulimit.h │ │ ├── unistd.h │ │ ├── util.h │ │ ├── utime.h │ │ ├── utmp.h │ │ ├── utmpx.h │ │ ├── uuid │ │ │ └── uuid.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ ├── wordexp.h │ │ ├── xlocale.h │ │ ├── xlocale │ │ │ ├── __wctype.h │ │ │ ├── _ctype.h │ │ │ ├── _inttypes.h │ │ │ ├── _langinfo.h │ │ │ ├── _monetary.h │ │ │ ├── _regex.h │ │ │ ├── _stdio.h │ │ │ ├── _stdlib.h │ │ │ ├── _string.h │ │ │ ├── _time.h │ │ │ ├── _wchar.h │ │ │ └── _wctype.h │ │ └── xpc │ │ │ ├── activity.h │ │ │ ├── availability.h │ │ │ ├── base.h │ │ │ ├── connection.h │ │ │ ├── debug.h │ │ │ ├── endpoint.h │ │ │ └── xpc.h │ ├── x86_64-macos.13 │ │ ├── AssertMacros.h │ │ ├── Availability.h │ │ ├── AvailabilityInternal.h │ │ ├── AvailabilityMacros.h │ │ ├── AvailabilityVersions.h │ │ ├── Block.h │ │ ├── CommonCrypto │ │ │ ├── CommonCrypto.h │ │ │ ├── CommonCryptoError.h │ │ │ ├── CommonCryptor.h │ │ │ ├── CommonDigest.h │ │ │ ├── CommonHMAC.h │ │ │ ├── CommonKeyDerivation.h │ │ │ └── CommonSymmetricKeywrap.h │ │ ├── ConditionalMacros.h │ │ ├── CoreFoundation │ │ │ ├── CFAvailability.h │ │ │ └── CFBase.h │ │ ├── MacTypes.h │ │ ├── TargetConditionals.h │ │ ├── __wctype.h │ │ ├── _ctermid.h │ │ ├── _ctype.h │ │ ├── _locale.h │ │ ├── _regex.h │ │ ├── _stdio.h │ │ ├── _types.h │ │ ├── _types │ │ │ ├── _intmax_t.h │ │ │ ├── _nl_item.h │ │ │ ├── _uint16_t.h │ │ │ ├── _uint32_t.h │ │ │ ├── _uint64_t.h │ │ │ ├── _uint8_t.h │ │ │ ├── _uintmax_t.h │ │ │ ├── _wctrans_t.h │ │ │ └── _wctype_t.h │ │ ├── _wctype.h │ │ ├── _xlocale.h │ │ ├── aio.h │ │ ├── alloca.h │ │ ├── ar.h │ │ ├── architecture │ │ │ └── byte_order.h │ │ ├── arpa │ │ │ ├── ftp.h │ │ │ ├── inet.h │ │ │ ├── nameser.h │ │ │ ├── nameser_compat.h │ │ │ ├── telnet.h │ │ │ └── tftp.h │ │ ├── asl.h │ │ ├── assert.h │ │ ├── bsm │ │ │ └── audit.h │ │ ├── complex.h │ │ ├── copyfile.h │ │ ├── cpio.h │ │ ├── crt_externs.h │ │ ├── ctype.h │ │ ├── device │ │ │ └── device_types.h │ │ ├── dirent.h │ │ ├── dispatch │ │ │ ├── base.h │ │ │ ├── block.h │ │ │ ├── data.h │ │ │ ├── dispatch.h │ │ │ ├── group.h │ │ │ ├── io.h │ │ │ ├── object.h │ │ │ ├── once.h │ │ │ ├── queue.h │ │ │ ├── semaphore.h │ │ │ ├── source.h │ │ │ ├── time.h │ │ │ └── workloop.h │ │ ├── dlfcn.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── execinfo.h │ │ ├── fcntl.h │ │ ├── fenv.h │ │ ├── float.h │ │ ├── fmtmsg.h │ │ ├── fnmatch.h │ │ ├── fstab.h │ │ ├── fts.h │ │ ├── ftw.h │ │ ├── gethostuuid.h │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── grp.h │ │ ├── hfs │ │ │ ├── hfs_format.h │ │ │ └── hfs_unistr.h │ │ ├── i386 │ │ │ ├── _limits.h │ │ │ ├── _mcontext.h │ │ │ ├── _param.h │ │ │ ├── _types.h │ │ │ ├── eflags.h │ │ │ ├── endian.h │ │ │ ├── limits.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── iconv.h │ │ ├── ifaddrs.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── langinfo.h │ │ ├── launch.h │ │ ├── libDER │ │ │ ├── DERItem.h │ │ │ └── libDER_config.h │ │ ├── libgen.h │ │ ├── libkern │ │ │ ├── OSAtomic.h │ │ │ ├── OSAtomicDeprecated.h │ │ │ ├── OSAtomicQueue.h │ │ │ ├── OSByteOrder.h │ │ │ ├── OSCacheControl.h │ │ │ ├── OSSpinLockDeprecated.h │ │ │ ├── OSTypes.h │ │ │ ├── _OSByteOrder.h │ │ │ └── i386 │ │ │ │ ├── OSByteOrder.h │ │ │ │ └── _OSByteOrder.h │ │ ├── libproc.h │ │ ├── limits.h │ │ ├── locale.h │ │ ├── mach-o │ │ │ ├── arch.h │ │ │ ├── arm64 │ │ │ │ └── reloc.h │ │ │ ├── compact_unwind_encoding.h │ │ │ ├── dyld.h │ │ │ ├── fat.h │ │ │ ├── getsect.h │ │ │ ├── loader.h │ │ │ ├── nlist.h │ │ │ ├── ranlib.h │ │ │ ├── reloc.h │ │ │ ├── stab.h │ │ │ └── x86_64 │ │ │ │ └── reloc.h │ │ ├── mach │ │ │ ├── boolean.h │ │ │ ├── clock.h │ │ │ ├── clock_priv.h │ │ │ ├── clock_types.h │ │ │ ├── dyld_kernel.h │ │ │ ├── error.h │ │ │ ├── exception_types.h │ │ │ ├── host_info.h │ │ │ ├── host_notify.h │ │ │ ├── host_priv.h │ │ │ ├── host_security.h │ │ │ ├── host_special_ports.h │ │ │ ├── i386 │ │ │ │ ├── _structs.h │ │ │ │ ├── boolean.h │ │ │ │ ├── exception.h │ │ │ │ ├── fp_reg.h │ │ │ │ ├── kern_return.h │ │ │ │ ├── processor_info.h │ │ │ │ ├── rpc.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ ├── kern_return.h │ │ │ ├── kmod.h │ │ │ ├── mach.h │ │ │ ├── mach_error.h │ │ │ ├── mach_host.h │ │ │ ├── mach_init.h │ │ │ ├── mach_interface.h │ │ │ ├── mach_port.h │ │ │ ├── mach_time.h │ │ │ ├── mach_traps.h │ │ │ ├── mach_types.h │ │ │ ├── mach_voucher_types.h │ │ │ ├── machine.h │ │ │ ├── machine │ │ │ │ ├── _structs.h │ │ │ │ ├── boolean.h │ │ │ │ ├── exception.h │ │ │ │ ├── kern_return.h │ │ │ │ ├── processor_info.h │ │ │ │ ├── rpc.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ ├── memory_object_types.h │ │ │ ├── message.h │ │ │ ├── mig.h │ │ │ ├── mig_errors.h │ │ │ ├── mig_strncpy_zerofill_support.h │ │ │ ├── ndr.h │ │ │ ├── notify.h │ │ │ ├── policy.h │ │ │ ├── port.h │ │ │ ├── processor.h │ │ │ ├── processor_info.h │ │ │ ├── processor_set.h │ │ │ ├── rpc.h │ │ │ ├── semaphore.h │ │ │ ├── std_types.h │ │ │ ├── sync_policy.h │ │ │ ├── task.h │ │ │ ├── task_info.h │ │ │ ├── task_inspect.h │ │ │ ├── task_policy.h │ │ │ ├── task_special_ports.h │ │ │ ├── thread_act.h │ │ │ ├── thread_info.h │ │ │ ├── thread_policy.h │ │ │ ├── thread_special_ports.h │ │ │ ├── thread_state.h │ │ │ ├── thread_status.h │ │ │ ├── thread_switch.h │ │ │ ├── time_value.h │ │ │ ├── vm_attributes.h │ │ │ ├── vm_behavior.h │ │ │ ├── vm_inherit.h │ │ │ ├── vm_map.h │ │ │ ├── vm_page_size.h │ │ │ ├── vm_param.h │ │ │ ├── vm_prot.h │ │ │ ├── vm_purgable.h │ │ │ ├── vm_region.h │ │ │ ├── vm_statistics.h │ │ │ ├── vm_sync.h │ │ │ └── vm_types.h │ │ ├── mach_debug │ │ │ ├── hash_info.h │ │ │ ├── ipc_info.h │ │ │ ├── lockgroup_info.h │ │ │ ├── mach_debug_types.h │ │ │ ├── page_info.h │ │ │ ├── vm_info.h │ │ │ └── zone_info.h │ │ ├── machine │ │ │ ├── _mcontext.h │ │ │ ├── _param.h │ │ │ ├── _types.h │ │ │ ├── endian.h │ │ │ ├── limits.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── malloc │ │ │ ├── _malloc.h │ │ │ └── malloc.h │ │ ├── math.h │ │ ├── memory.h │ │ ├── monetary.h │ │ ├── nameser.h │ │ ├── ndbm.h │ │ ├── net │ │ │ ├── ethernet.h │ │ │ ├── if.h │ │ │ ├── if_dl.h │ │ │ ├── if_var.h │ │ │ ├── net_kev.h │ │ │ └── route.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ ├── in.h │ │ │ └── tcp.h │ │ ├── netinet6 │ │ │ └── in6.h │ │ ├── nl_types.h │ │ ├── objc │ │ │ ├── NSObjCRuntime.h │ │ │ ├── NSObject.h │ │ │ ├── message.h │ │ │ ├── objc-api.h │ │ │ ├── objc-runtime.h │ │ │ ├── objc-sync.h │ │ │ ├── objc.h │ │ │ └── runtime.h │ │ ├── os │ │ │ ├── availability.h │ │ │ ├── base.h │ │ │ ├── clock.h │ │ │ ├── lock.h │ │ │ ├── log.h │ │ │ ├── object.h │ │ │ ├── trace.h │ │ │ ├── trace_base.h │ │ │ ├── workgroup.h │ │ │ ├── workgroup_base.h │ │ │ ├── workgroup_interval.h │ │ │ ├── workgroup_object.h │ │ │ └── workgroup_parallel.h │ │ ├── poll.h │ │ ├── pthread.h │ │ ├── pthread │ │ │ ├── introspection.h │ │ │ ├── pthread.h │ │ │ ├── pthread_impl.h │ │ │ ├── qos.h │ │ │ └── sched.h │ │ ├── pwd.h │ │ ├── regex.h │ │ ├── runetype.h │ │ ├── sched.h │ │ ├── search.h │ │ ├── secure │ │ │ ├── _common.h │ │ │ ├── _stdio.h │ │ │ ├── _string.h │ │ │ └── _strings.h │ │ ├── semaphore.h │ │ ├── setjmp.h │ │ ├── signal.h │ │ ├── simd │ │ │ ├── base.h │ │ │ ├── common.h │ │ │ ├── conversion.h │ │ │ ├── extern.h │ │ │ ├── geometry.h │ │ │ ├── logic.h │ │ │ ├── math.h │ │ │ ├── matrix.h │ │ │ ├── matrix_types.h │ │ │ ├── packed.h │ │ │ ├── quaternion.h │ │ │ ├── simd.h │ │ │ ├── types.h │ │ │ ├── vector.h │ │ │ ├── vector_make.h │ │ │ └── vector_types.h │ │ ├── spawn.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── sys │ │ │ ├── _endian.h │ │ │ ├── _posix_availability.h │ │ │ ├── _pthread │ │ │ │ ├── _pthread_attr_t.h │ │ │ │ ├── _pthread_cond_t.h │ │ │ │ ├── _pthread_condattr_t.h │ │ │ │ ├── _pthread_key_t.h │ │ │ │ ├── _pthread_mutex_t.h │ │ │ │ ├── _pthread_mutexattr_t.h │ │ │ │ ├── _pthread_once_t.h │ │ │ │ ├── _pthread_rwlock_t.h │ │ │ │ ├── _pthread_rwlockattr_t.h │ │ │ │ ├── _pthread_t.h │ │ │ │ └── _pthread_types.h │ │ │ ├── _select.h │ │ │ ├── _symbol_aliasing.h │ │ │ ├── _types.h │ │ │ ├── _types │ │ │ │ ├── _blkcnt_t.h │ │ │ │ ├── _blksize_t.h │ │ │ │ ├── _caddr_t.h │ │ │ │ ├── _clock_t.h │ │ │ │ ├── _ct_rune_t.h │ │ │ │ ├── _dev_t.h │ │ │ │ ├── _errno_t.h │ │ │ │ ├── _fd_clr.h │ │ │ │ ├── _fd_copy.h │ │ │ │ ├── _fd_def.h │ │ │ │ ├── _fd_isset.h │ │ │ │ ├── _fd_set.h │ │ │ │ ├── _fd_setsize.h │ │ │ │ ├── _fd_zero.h │ │ │ │ ├── _filesec_t.h │ │ │ │ ├── _fsblkcnt_t.h │ │ │ │ ├── _fsfilcnt_t.h │ │ │ │ ├── _fsid_t.h │ │ │ │ ├── _fsobj_id_t.h │ │ │ │ ├── _gid_t.h │ │ │ │ ├── _graftdmg_un.h │ │ │ │ ├── _guid_t.h │ │ │ │ ├── _id_t.h │ │ │ │ ├── _in_addr_t.h │ │ │ │ ├── _in_port_t.h │ │ │ │ ├── _ino64_t.h │ │ │ │ ├── _ino_t.h │ │ │ │ ├── _int16_t.h │ │ │ │ ├── _int32_t.h │ │ │ │ ├── _int64_t.h │ │ │ │ ├── _int8_t.h │ │ │ │ ├── _intptr_t.h │ │ │ │ ├── _iovec_t.h │ │ │ │ ├── _key_t.h │ │ │ │ ├── _mach_port_t.h │ │ │ │ ├── _mbstate_t.h │ │ │ │ ├── _mode_t.h │ │ │ │ ├── _nlink_t.h │ │ │ │ ├── _null.h │ │ │ │ ├── _o_dsync.h │ │ │ │ ├── _o_sync.h │ │ │ │ ├── _off_t.h │ │ │ │ ├── _offsetof.h │ │ │ │ ├── _os_inline.h │ │ │ │ ├── _pid_t.h │ │ │ │ ├── _posix_vdisable.h │ │ │ │ ├── _ptrdiff_t.h │ │ │ │ ├── _rsize_t.h │ │ │ │ ├── _rune_t.h │ │ │ │ ├── _s_ifmt.h │ │ │ │ ├── _sa_family_t.h │ │ │ │ ├── _seek_set.h │ │ │ │ ├── _sigaltstack.h │ │ │ │ ├── _sigset_t.h │ │ │ │ ├── _size_t.h │ │ │ │ ├── _socklen_t.h │ │ │ │ ├── _ssize_t.h │ │ │ │ ├── _suseconds_t.h │ │ │ │ ├── _time_t.h │ │ │ │ ├── _timespec.h │ │ │ │ ├── _timeval.h │ │ │ │ ├── _timeval32.h │ │ │ │ ├── _timeval64.h │ │ │ │ ├── _u_char.h │ │ │ │ ├── _u_int.h │ │ │ │ ├── _u_int16_t.h │ │ │ │ ├── _u_int32_t.h │ │ │ │ ├── _u_int64_t.h │ │ │ │ ├── _u_int8_t.h │ │ │ │ ├── _u_short.h │ │ │ │ ├── _ucontext.h │ │ │ │ ├── _uid_t.h │ │ │ │ ├── _uintptr_t.h │ │ │ │ ├── _useconds_t.h │ │ │ │ ├── _uuid_t.h │ │ │ │ ├── _va_list.h │ │ │ │ ├── _wchar_t.h │ │ │ │ └── _wint_t.h │ │ │ ├── acl.h │ │ │ ├── aio.h │ │ │ ├── appleapiopts.h │ │ │ ├── attr.h │ │ │ ├── cdefs.h │ │ │ ├── clonefile.h │ │ │ ├── constrained_ctypes.h │ │ │ ├── dirent.h │ │ │ ├── errno.h │ │ │ ├── event.h │ │ │ ├── fcntl.h │ │ │ ├── file.h │ │ │ ├── filio.h │ │ │ ├── ioccom.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── kauth.h │ │ │ ├── kern_control.h │ │ │ ├── lock.h │ │ │ ├── mman.h │ │ │ ├── mount.h │ │ │ ├── msg.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── proc.h │ │ │ ├── proc_info.h │ │ │ ├── qos.h │ │ │ ├── queue.h │ │ │ ├── random.h │ │ │ ├── resource.h │ │ │ ├── select.h │ │ │ ├── sem.h │ │ │ ├── semaphore.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── sockio.h │ │ │ ├── spawn.h │ │ │ ├── stat.h │ │ │ ├── statvfs.h │ │ │ ├── stdio.h │ │ │ ├── syscall.h │ │ │ ├── sysctl.h │ │ │ ├── syslimits.h │ │ │ ├── syslog.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── times.h │ │ │ ├── ttycom.h │ │ │ ├── ttydefaults.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ ├── ucred.h │ │ │ ├── uio.h │ │ │ ├── un.h │ │ │ ├── unistd.h │ │ │ ├── utsname.h │ │ │ ├── vm.h │ │ │ ├── vnode.h │ │ │ ├── wait.h │ │ │ └── xattr.h │ │ ├── sysexits.h │ │ ├── syslog.h │ │ ├── tar.h │ │ ├── termios.h │ │ ├── tgmath.h │ │ ├── time.h │ │ ├── ucontext.h │ │ ├── ulimit.h │ │ ├── unistd.h │ │ ├── util.h │ │ ├── utime.h │ │ ├── utmp.h │ │ ├── utmpx.h │ │ ├── uuid │ │ │ └── uuid.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ ├── wordexp.h │ │ ├── xlocale.h │ │ ├── xlocale │ │ │ ├── __wctype.h │ │ │ ├── _ctype.h │ │ │ ├── _inttypes.h │ │ │ ├── _langinfo.h │ │ │ ├── _monetary.h │ │ │ ├── _regex.h │ │ │ ├── _stdio.h │ │ │ ├── _stdlib.h │ │ │ ├── _string.h │ │ │ ├── _time.h │ │ │ ├── _wchar.h │ │ │ └── _wctype.h │ │ └── xpc │ │ │ ├── activity.h │ │ │ ├── availability.h │ │ │ ├── base.h │ │ │ ├── connection.h │ │ │ ├── debug.h │ │ │ ├── endpoint.h │ │ │ ├── rich_error.h │ │ │ ├── session.h │ │ │ └── xpc.h │ └── x86_64-macos.14 │ │ ├── AssertMacros.h │ │ ├── Availability.h │ │ ├── AvailabilityInternal.h │ │ ├── AvailabilityInternalLegacy.h │ │ ├── AvailabilityMacros.h │ │ ├── AvailabilityVersions.h │ │ ├── Block.h │ │ ├── CommonCrypto │ │ ├── CommonCrypto.h │ │ ├── CommonCryptoError.h │ │ ├── CommonCryptor.h │ │ ├── CommonDigest.h │ │ ├── CommonHMAC.h │ │ ├── CommonKeyDerivation.h │ │ └── CommonSymmetricKeywrap.h │ │ ├── ConditionalMacros.h │ │ ├── CoreFoundation │ │ ├── CFAvailability.h │ │ └── CFBase.h │ │ ├── MacTypes.h │ │ ├── TargetConditionals.h │ │ ├── __wctype.h │ │ ├── _ctermid.h │ │ ├── _ctype.h │ │ ├── _locale.h │ │ ├── _regex.h │ │ ├── _stdio.h │ │ ├── _types.h │ │ ├── _types │ │ ├── _intmax_t.h │ │ ├── _nl_item.h │ │ ├── _uint16_t.h │ │ ├── _uint32_t.h │ │ ├── _uint64_t.h │ │ ├── _uint8_t.h │ │ ├── _uintmax_t.h │ │ ├── _wctrans_t.h │ │ └── _wctype_t.h │ │ ├── _wctype.h │ │ ├── _xlocale.h │ │ ├── aio.h │ │ ├── alloca.h │ │ ├── ar.h │ │ ├── architecture │ │ └── byte_order.h │ │ ├── arpa │ │ ├── ftp.h │ │ ├── inet.h │ │ ├── nameser.h │ │ ├── nameser_compat.h │ │ ├── telnet.h │ │ └── tftp.h │ │ ├── asl.h │ │ ├── assert.h │ │ ├── bsm │ │ └── audit.h │ │ ├── complex.h │ │ ├── copyfile.h │ │ ├── cpio.h │ │ ├── crt_externs.h │ │ ├── ctype.h │ │ ├── device │ │ └── device_types.h │ │ ├── dirent.h │ │ ├── dispatch │ │ ├── base.h │ │ ├── block.h │ │ ├── data.h │ │ ├── dispatch.h │ │ ├── dispatch_swift_shims.h │ │ ├── group.h │ │ ├── io.h │ │ ├── object.h │ │ ├── once.h │ │ ├── queue.h │ │ ├── semaphore.h │ │ ├── source.h │ │ ├── time.h │ │ └── workloop.h │ │ ├── dlfcn.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── execinfo.h │ │ ├── fcntl.h │ │ ├── fenv.h │ │ ├── float.h │ │ ├── fmtmsg.h │ │ ├── fnmatch.h │ │ ├── fstab.h │ │ ├── fts.h │ │ ├── ftw.h │ │ ├── gethostuuid.h │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── grp.h │ │ ├── hfs │ │ ├── hfs_format.h │ │ └── hfs_unistr.h │ │ ├── i386 │ │ ├── _limits.h │ │ ├── _mcontext.h │ │ ├── _param.h │ │ ├── _types.h │ │ ├── eflags.h │ │ ├── endian.h │ │ ├── limits.h │ │ ├── param.h │ │ ├── signal.h │ │ └── types.h │ │ ├── iconv.h │ │ ├── ifaddrs.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── langinfo.h │ │ ├── launch.h │ │ ├── libgen.h │ │ ├── libkern │ │ ├── OSAtomic.h │ │ ├── OSAtomicDeprecated.h │ │ ├── OSAtomicQueue.h │ │ ├── OSByteOrder.h │ │ ├── OSCacheControl.h │ │ ├── OSSpinLockDeprecated.h │ │ ├── OSTypes.h │ │ ├── _OSByteOrder.h │ │ └── i386 │ │ │ ├── OSByteOrder.h │ │ │ └── _OSByteOrder.h │ │ ├── libproc.h │ │ ├── limits.h │ │ ├── locale.h │ │ ├── mach-o │ │ ├── arch.h │ │ ├── arm64 │ │ │ └── reloc.h │ │ ├── compact_unwind_encoding.h │ │ ├── dyld.h │ │ ├── fat.h │ │ ├── getsect.h │ │ ├── loader.h │ │ ├── nlist.h │ │ ├── ranlib.h │ │ ├── reloc.h │ │ ├── stab.h │ │ └── x86_64 │ │ │ └── reloc.h │ │ ├── mach │ │ ├── boolean.h │ │ ├── clock.h │ │ ├── clock_priv.h │ │ ├── clock_types.h │ │ ├── dyld_kernel.h │ │ ├── error.h │ │ ├── exception_types.h │ │ ├── host_info.h │ │ ├── host_notify.h │ │ ├── host_priv.h │ │ ├── host_security.h │ │ ├── host_special_ports.h │ │ ├── i386 │ │ │ ├── _structs.h │ │ │ ├── boolean.h │ │ │ ├── exception.h │ │ │ ├── fp_reg.h │ │ │ ├── kern_return.h │ │ │ ├── processor_info.h │ │ │ ├── rpc.h │ │ │ ├── thread_state.h │ │ │ ├── thread_status.h │ │ │ ├── vm_param.h │ │ │ └── vm_types.h │ │ ├── kern_return.h │ │ ├── kmod.h │ │ ├── mach.h │ │ ├── mach_error.h │ │ ├── mach_host.h │ │ ├── mach_init.h │ │ ├── mach_interface.h │ │ ├── mach_port.h │ │ ├── mach_time.h │ │ ├── mach_traps.h │ │ ├── mach_types.h │ │ ├── mach_voucher_types.h │ │ ├── machine.h │ │ ├── machine │ │ │ ├── _structs.h │ │ │ ├── boolean.h │ │ │ ├── exception.h │ │ │ ├── kern_return.h │ │ │ ├── processor_info.h │ │ │ ├── rpc.h │ │ │ ├── thread_state.h │ │ │ ├── thread_status.h │ │ │ ├── vm_param.h │ │ │ └── vm_types.h │ │ ├── memory_object_types.h │ │ ├── message.h │ │ ├── mig.h │ │ ├── mig_errors.h │ │ ├── mig_strncpy_zerofill_support.h │ │ ├── ndr.h │ │ ├── notify.h │ │ ├── policy.h │ │ ├── port.h │ │ ├── processor.h │ │ ├── processor_info.h │ │ ├── processor_set.h │ │ ├── rpc.h │ │ ├── semaphore.h │ │ ├── std_types.h │ │ ├── sync_policy.h │ │ ├── task.h │ │ ├── task_info.h │ │ ├── task_inspect.h │ │ ├── task_policy.h │ │ ├── task_special_ports.h │ │ ├── thread_act.h │ │ ├── thread_info.h │ │ ├── thread_policy.h │ │ ├── thread_special_ports.h │ │ ├── thread_state.h │ │ ├── thread_status.h │ │ ├── thread_switch.h │ │ ├── time_value.h │ │ ├── vm_attributes.h │ │ ├── vm_behavior.h │ │ ├── vm_inherit.h │ │ ├── vm_map.h │ │ ├── vm_page_size.h │ │ ├── vm_param.h │ │ ├── vm_prot.h │ │ ├── vm_purgable.h │ │ ├── vm_region.h │ │ ├── vm_statistics.h │ │ ├── vm_sync.h │ │ └── vm_types.h │ │ ├── mach_debug │ │ ├── hash_info.h │ │ ├── ipc_info.h │ │ ├── lockgroup_info.h │ │ ├── mach_debug_types.h │ │ ├── page_info.h │ │ ├── vm_info.h │ │ └── zone_info.h │ │ ├── machine │ │ ├── _mcontext.h │ │ ├── _param.h │ │ ├── _types.h │ │ ├── endian.h │ │ ├── limits.h │ │ ├── param.h │ │ ├── signal.h │ │ └── types.h │ │ ├── malloc │ │ ├── _malloc.h │ │ ├── _malloc_type.h │ │ ├── _platform.h │ │ ├── _ptrcheck.h │ │ └── malloc.h │ │ ├── math.h │ │ ├── memory.h │ │ ├── monetary.h │ │ ├── nameser.h │ │ ├── ndbm.h │ │ ├── net │ │ ├── ethernet.h │ │ ├── if.h │ │ ├── if_dl.h │ │ ├── if_var.h │ │ ├── net_kev.h │ │ └── route.h │ │ ├── netdb.h │ │ ├── netinet │ │ ├── in.h │ │ └── tcp.h │ │ ├── netinet6 │ │ └── in6.h │ │ ├── nl_types.h │ │ ├── objc │ │ ├── NSObjCRuntime.h │ │ ├── NSObject.h │ │ ├── message.h │ │ ├── objc-api.h │ │ ├── objc-runtime.h │ │ ├── objc-sync.h │ │ ├── objc.h │ │ └── runtime.h │ │ ├── os │ │ ├── availability.h │ │ ├── base.h │ │ ├── clock.h │ │ ├── lock.h │ │ ├── log.h │ │ ├── object.h │ │ ├── trace.h │ │ ├── trace_base.h │ │ ├── workgroup.h │ │ ├── workgroup_base.h │ │ ├── workgroup_interval.h │ │ ├── workgroup_object.h │ │ └── workgroup_parallel.h │ │ ├── poll.h │ │ ├── pthread.h │ │ ├── pthread │ │ ├── introspection.h │ │ ├── pthread.h │ │ ├── pthread_impl.h │ │ ├── qos.h │ │ └── sched.h │ │ ├── pwd.h │ │ ├── regex.h │ │ ├── runetype.h │ │ ├── sched.h │ │ ├── search.h │ │ ├── secure │ │ ├── _common.h │ │ ├── _stdio.h │ │ ├── _string.h │ │ └── _strings.h │ │ ├── semaphore.h │ │ ├── setjmp.h │ │ ├── signal.h │ │ ├── simd │ │ ├── base.h │ │ ├── common.h │ │ ├── conversion.h │ │ ├── extern.h │ │ ├── geometry.h │ │ ├── logic.h │ │ ├── math.h │ │ ├── matrix.h │ │ ├── matrix_types.h │ │ ├── packed.h │ │ ├── quaternion.h │ │ ├── simd.h │ │ ├── types.h │ │ ├── vector.h │ │ ├── vector_make.h │ │ └── vector_types.h │ │ ├── spawn.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── sys │ │ ├── _endian.h │ │ ├── _posix_availability.h │ │ ├── _pthread │ │ │ ├── _pthread_attr_t.h │ │ │ ├── _pthread_cond_t.h │ │ │ ├── _pthread_condattr_t.h │ │ │ ├── _pthread_key_t.h │ │ │ ├── _pthread_mutex_t.h │ │ │ ├── _pthread_mutexattr_t.h │ │ │ ├── _pthread_once_t.h │ │ │ ├── _pthread_rwlock_t.h │ │ │ ├── _pthread_rwlockattr_t.h │ │ │ ├── _pthread_t.h │ │ │ └── _pthread_types.h │ │ ├── _select.h │ │ ├── _symbol_aliasing.h │ │ ├── _types.h │ │ ├── _types │ │ │ ├── _blkcnt_t.h │ │ │ ├── _blksize_t.h │ │ │ ├── _caddr_t.h │ │ │ ├── _clock_t.h │ │ │ ├── _ct_rune_t.h │ │ │ ├── _dev_t.h │ │ │ ├── _errno_t.h │ │ │ ├── _fd_clr.h │ │ │ ├── _fd_copy.h │ │ │ ├── _fd_def.h │ │ │ ├── _fd_isset.h │ │ │ ├── _fd_set.h │ │ │ ├── _fd_setsize.h │ │ │ ├── _fd_zero.h │ │ │ ├── _filesec_t.h │ │ │ ├── _fsblkcnt_t.h │ │ │ ├── _fsfilcnt_t.h │ │ │ ├── _fsid_t.h │ │ │ ├── _fsobj_id_t.h │ │ │ ├── _gid_t.h │ │ │ ├── _graftdmg_un.h │ │ │ ├── _guid_t.h │ │ │ ├── _id_t.h │ │ │ ├── _in_addr_t.h │ │ │ ├── _in_port_t.h │ │ │ ├── _ino64_t.h │ │ │ ├── _ino_t.h │ │ │ ├── _int16_t.h │ │ │ ├── _int32_t.h │ │ │ ├── _int64_t.h │ │ │ ├── _int8_t.h │ │ │ ├── _intptr_t.h │ │ │ ├── _iovec_t.h │ │ │ ├── _key_t.h │ │ │ ├── _mach_port_t.h │ │ │ ├── _mbstate_t.h │ │ │ ├── _mode_t.h │ │ │ ├── _mount_t.h │ │ │ ├── _nlink_t.h │ │ │ ├── _null.h │ │ │ ├── _o_dsync.h │ │ │ ├── _o_sync.h │ │ │ ├── _off_t.h │ │ │ ├── _offsetof.h │ │ │ ├── _os_inline.h │ │ │ ├── _pid_t.h │ │ │ ├── _posix_vdisable.h │ │ │ ├── _ptrdiff_t.h │ │ │ ├── _rsize_t.h │ │ │ ├── _rune_t.h │ │ │ ├── _s_ifmt.h │ │ │ ├── _sa_family_t.h │ │ │ ├── _seek_set.h │ │ │ ├── _sigaltstack.h │ │ │ ├── _sigset_t.h │ │ │ ├── _size_t.h │ │ │ ├── _socklen_t.h │ │ │ ├── _ssize_t.h │ │ │ ├── _suseconds_t.h │ │ │ ├── _time_t.h │ │ │ ├── _timespec.h │ │ │ ├── _timeval.h │ │ │ ├── _timeval32.h │ │ │ ├── _timeval64.h │ │ │ ├── _u_char.h │ │ │ ├── _u_int.h │ │ │ ├── _u_int16_t.h │ │ │ ├── _u_int32_t.h │ │ │ ├── _u_int64_t.h │ │ │ ├── _u_int8_t.h │ │ │ ├── _u_short.h │ │ │ ├── _ucontext.h │ │ │ ├── _uid_t.h │ │ │ ├── _uintptr_t.h │ │ │ ├── _useconds_t.h │ │ │ ├── _uuid_t.h │ │ │ ├── _va_list.h │ │ │ ├── _vnode_t.h │ │ │ ├── _wchar_t.h │ │ │ └── _wint_t.h │ │ ├── acl.h │ │ ├── aio.h │ │ ├── appleapiopts.h │ │ ├── attr.h │ │ ├── cdefs.h │ │ ├── clonefile.h │ │ ├── constrained_ctypes.h │ │ ├── dirent.h │ │ ├── errno.h │ │ ├── event.h │ │ ├── fcntl.h │ │ ├── file.h │ │ ├── filio.h │ │ ├── ioccom.h │ │ ├── ioctl.h │ │ ├── ipc.h │ │ ├── kauth.h │ │ ├── kern_control.h │ │ ├── lock.h │ │ ├── mman.h │ │ ├── mount.h │ │ ├── msg.h │ │ ├── param.h │ │ ├── poll.h │ │ ├── proc.h │ │ ├── proc_info.h │ │ ├── qos.h │ │ ├── queue.h │ │ ├── random.h │ │ ├── resource.h │ │ ├── select.h │ │ ├── sem.h │ │ ├── semaphore.h │ │ ├── shm.h │ │ ├── signal.h │ │ ├── socket.h │ │ ├── sockio.h │ │ ├── spawn.h │ │ ├── stat.h │ │ ├── statvfs.h │ │ ├── stdio.h │ │ ├── syscall.h │ │ ├── sysctl.h │ │ ├── syslimits.h │ │ ├── syslog.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── timeb.h │ │ ├── times.h │ │ ├── ttycom.h │ │ ├── ttydefaults.h │ │ ├── types.h │ │ ├── ucontext.h │ │ ├── ucred.h │ │ ├── uio.h │ │ ├── un.h │ │ ├── unistd.h │ │ ├── utsname.h │ │ ├── vm.h │ │ ├── vnode.h │ │ ├── wait.h │ │ └── xattr.h │ │ ├── sysexits.h │ │ ├── syslog.h │ │ ├── tar.h │ │ ├── termios.h │ │ ├── tgmath.h │ │ ├── time.h │ │ ├── ucontext.h │ │ ├── ulimit.h │ │ ├── unistd.h │ │ ├── util.h │ │ ├── utime.h │ │ ├── utmp.h │ │ ├── utmpx.h │ │ ├── uuid │ │ └── uuid.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ ├── wordexp.h │ │ ├── xlocale.h │ │ ├── xlocale │ │ ├── __wctype.h │ │ ├── _ctype.h │ │ ├── _inttypes.h │ │ ├── _langinfo.h │ │ ├── _monetary.h │ │ ├── _regex.h │ │ ├── _stdio.h │ │ ├── _stdlib.h │ │ ├── _string.h │ │ ├── _time.h │ │ ├── _wchar.h │ │ └── _wctype.h │ │ └── xpc │ │ ├── activity.h │ │ ├── availability.h │ │ ├── base.h │ │ ├── connection.h │ │ ├── debug.h │ │ ├── endpoint.h │ │ ├── listener.h │ │ ├── rich_error.h │ │ ├── session.h │ │ └── xpc.h └── wasi │ ├── LICENSE │ ├── LICENSE-APACHE │ ├── LICENSE-APACHE-LLVM │ ├── LICENSE-MIT │ ├── clocks │ ├── clock.c │ ├── getrusage.c │ └── times.c │ ├── cloudlibc │ ├── LICENSE │ └── src │ │ ├── common │ │ ├── clock.h │ │ ├── limits.h │ │ └── time.h │ │ ├── include │ │ └── _ │ │ │ └── cdefs.h │ │ └── libc │ │ ├── dirent │ │ ├── closedir.c │ │ ├── dirent_impl.h │ │ ├── dirfd.c │ │ ├── fdclosedir.c │ │ ├── fdopendir.c │ │ ├── opendirat.c │ │ ├── readdir.c │ │ ├── rewinddir.c │ │ ├── scandirat.c │ │ ├── seekdir.c │ │ └── telldir.c │ │ ├── errno │ │ └── errno.c │ │ ├── fcntl │ │ ├── fcntl.c │ │ ├── openat.c │ │ ├── posix_fadvise.c │ │ └── posix_fallocate.c │ │ ├── poll │ │ └── poll.c │ │ ├── sched │ │ └── sched_yield.c │ │ ├── stdio │ │ └── renameat.c │ │ ├── stdlib │ │ └── _Exit.c │ │ ├── sys │ │ ├── ioctl │ │ │ └── ioctl.c │ │ ├── select │ │ │ ├── pselect.c │ │ │ └── select.c │ │ ├── socket │ │ │ ├── getsockopt.c │ │ │ ├── recv.c │ │ │ ├── send.c │ │ │ ├── shutdown.c │ │ │ └── socket_impl.h │ │ ├── stat │ │ │ ├── fstat.c │ │ │ ├── fstatat.c │ │ │ ├── futimens.c │ │ │ ├── mkdirat.c │ │ │ ├── stat_impl.h │ │ │ └── utimensat.c │ │ ├── time │ │ │ └── gettimeofday.c │ │ └── uio │ │ │ ├── preadv.c │ │ │ ├── pwritev.c │ │ │ ├── readv.c │ │ │ └── writev.c │ │ ├── time │ │ ├── CLOCK_MONOTONIC.c │ │ ├── CLOCK_REALTIME.c │ │ ├── clock_getres.c │ │ ├── clock_gettime.c │ │ ├── clock_nanosleep.c │ │ ├── nanosleep.c │ │ └── time.c │ │ └── unistd │ │ ├── close.c │ │ ├── faccessat.c │ │ ├── fdatasync.c │ │ ├── fsync.c │ │ ├── ftruncate.c │ │ ├── linkat.c │ │ ├── lseek.c │ │ ├── pread.c │ │ ├── pwrite.c │ │ ├── read.c │ │ ├── readlinkat.c │ │ ├── sleep.c │ │ ├── symlinkat.c │ │ ├── unlinkat.c │ │ ├── usleep.c │ │ └── write.c │ ├── crt │ ├── crt1-command.c │ ├── crt1-reactor.c │ └── crt1.c │ ├── emmalloc │ └── emmalloc.c │ ├── getpid │ └── getpid.c │ ├── headers-bottom │ ├── _ │ │ ├── limits.h │ │ ├── struct │ │ │ ├── timespec.h │ │ │ └── timeval.h │ │ └── types.h │ ├── assert.h │ ├── common │ │ └── crt.h │ ├── errno.h │ ├── fcntl.h │ ├── sched.h │ ├── stdarg.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── sys │ │ └── mman.h │ └── threads.h │ ├── headers-top │ ├── printscan.h │ └── wasi │ │ └── libc-environ-compat.h │ ├── mman │ └── mman.c │ ├── musl │ ├── COPYRIGHT │ ├── arch │ │ ├── generic │ │ │ ├── bits │ │ │ │ ├── dirent.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ioctl_fix.h │ │ │ │ ├── ipc.h │ │ │ │ ├── ipcstat.h │ │ │ │ ├── kd.h │ │ │ │ ├── limits.h │ │ │ │ ├── link.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── poll.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── shm.h │ │ │ │ ├── socket.h │ │ │ │ ├── soundcard.h │ │ │ │ ├── statfs.h │ │ │ │ ├── termios.h │ │ │ │ └── vt.h │ │ │ └── fp_arch.h │ │ └── wasm32 │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ ├── dirent.h │ │ │ ├── fcntl.h │ │ │ ├── float.h │ │ │ ├── ioctl.h │ │ │ ├── limits.h │ │ │ ├── posix.h │ │ │ ├── reg.h │ │ │ ├── signal.h │ │ │ ├── stat.h │ │ │ └── stdint.h │ │ │ ├── fp_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ ├── include │ └── src │ │ ├── complex │ │ ├── __cexp.c │ │ ├── __cexpf.c │ │ ├── cabs.c │ │ ├── cabsf.c │ │ ├── cabsl.c │ │ ├── cacos.c │ │ ├── cacosf.c │ │ ├── cacosh.c │ │ ├── cacoshf.c │ │ ├── cacoshl.c │ │ ├── cacosl.c │ │ ├── carg.c │ │ ├── cargf.c │ │ ├── cargl.c │ │ ├── casin.c │ │ ├── casinf.c │ │ ├── casinh.c │ │ ├── casinhf.c │ │ ├── casinhl.c │ │ ├── casinl.c │ │ ├── catan.c │ │ ├── catanf.c │ │ ├── catanh.c │ │ ├── catanhf.c │ │ ├── catanhl.c │ │ ├── catanl.c │ │ ├── ccos.c │ │ ├── ccosf.c │ │ ├── ccosh.c │ │ ├── ccoshf.c │ │ ├── ccoshl.c │ │ ├── ccosl.c │ │ ├── cexp.c │ │ ├── cexpf.c │ │ ├── cexpl.c │ │ ├── clog.c │ │ ├── clogf.c │ │ ├── clogl.c │ │ ├── conj.c │ │ ├── conjf.c │ │ ├── conjl.c │ │ ├── cpow.c │ │ ├── cpowf.c │ │ ├── cpowl.c │ │ ├── cproj.c │ │ ├── cprojf.c │ │ ├── cprojl.c │ │ ├── csin.c │ │ ├── csinf.c │ │ ├── csinh.c │ │ ├── csinhf.c │ │ ├── csinhl.c │ │ ├── csinl.c │ │ ├── csqrt.c │ │ ├── csqrtf.c │ │ ├── csqrtl.c │ │ ├── ctan.c │ │ ├── ctanf.c │ │ ├── ctanh.c │ │ ├── ctanhf.c │ │ ├── ctanhl.c │ │ └── ctanl.c │ │ ├── conf │ │ ├── confstr.c │ │ ├── fpathconf.c │ │ ├── legacy.c │ │ ├── pathconf.c │ │ └── sysconf.c │ │ ├── crypt │ │ ├── crypt.c │ │ ├── crypt_blowfish.c │ │ ├── crypt_des.c │ │ ├── crypt_des.h │ │ ├── crypt_md5.c │ │ ├── crypt_r.c │ │ ├── crypt_sha256.c │ │ ├── crypt_sha512.c │ │ └── encrypt.c │ │ ├── ctype │ │ ├── __ctype_b_loc.c │ │ ├── __ctype_get_mb_cur_max.c │ │ ├── __ctype_tolower_loc.c │ │ ├── __ctype_toupper_loc.c │ │ ├── alpha.h │ │ ├── casemap.h │ │ ├── isalnum.c │ │ ├── isalpha.c │ │ ├── isascii.c │ │ ├── isblank.c │ │ ├── iscntrl.c │ │ ├── isdigit.c │ │ ├── isgraph.c │ │ ├── islower.c │ │ ├── isprint.c │ │ ├── ispunct.c │ │ ├── isspace.c │ │ ├── isupper.c │ │ ├── iswalnum.c │ │ ├── iswalpha.c │ │ ├── iswblank.c │ │ ├── iswcntrl.c │ │ ├── iswctype.c │ │ ├── iswdigit.c │ │ ├── iswgraph.c │ │ ├── iswlower.c │ │ ├── iswprint.c │ │ ├── iswpunct.c │ │ ├── iswspace.c │ │ ├── iswupper.c │ │ ├── iswxdigit.c │ │ ├── isxdigit.c │ │ ├── nonspacing.h │ │ ├── punct.h │ │ ├── toascii.c │ │ ├── tolower.c │ │ ├── toupper.c │ │ ├── towctrans.c │ │ ├── wcswidth.c │ │ ├── wctrans.c │ │ ├── wcwidth.c │ │ └── wide.h │ │ ├── dirent │ │ ├── __dirent.h │ │ ├── alphasort.c │ │ └── versionsort.c │ │ ├── env │ │ ├── __stack_chk_fail.c │ │ ├── clearenv.c │ │ ├── getenv.c │ │ ├── putenv.c │ │ ├── setenv.c │ │ └── unsetenv.c │ │ ├── errno │ │ ├── __strerror.h │ │ └── strerror.c │ │ ├── exit │ │ ├── assert.c │ │ ├── at_quick_exit.c │ │ ├── atexit.c │ │ ├── exit.c │ │ └── quick_exit.c │ │ ├── fcntl │ │ └── creat.c │ │ ├── fenv │ │ ├── fegetexceptflag.c │ │ ├── feholdexcept.c │ │ ├── fenv.c │ │ ├── fesetexceptflag.c │ │ ├── fesetround.c │ │ └── feupdateenv.c │ │ ├── include │ │ ├── arpa │ │ │ └── inet.h │ │ ├── crypt.h │ │ ├── errno.h │ │ ├── features.h │ │ ├── langinfo.h │ │ ├── pthread.h │ │ ├── resolv.h │ │ ├── signal.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── sys │ │ │ ├── auxv.h │ │ │ ├── membarrier.h │ │ │ ├── mman.h │ │ │ ├── sysinfo.h │ │ │ └── time.h │ │ ├── time.h │ │ ├── unistd.h │ │ └── wchar.h │ │ ├── internal │ │ ├── aio_impl.h │ │ ├── atomic.h │ │ ├── complex_impl.h │ │ ├── defsysinfo.c │ │ ├── dynlink.h │ │ ├── fdpic_crt.h │ │ ├── floatscan.c │ │ ├── floatscan.h │ │ ├── fork_impl.h │ │ ├── futex.h │ │ ├── intscan.c │ │ ├── intscan.h │ │ ├── ksigaction.h │ │ ├── libc.c │ │ ├── libc.h │ │ ├── libm.h │ │ ├── locale_impl.h │ │ ├── lock.h │ │ ├── pthread_impl.h │ │ ├── shgetc.c │ │ ├── shgetc.h │ │ ├── stdio_impl.h │ │ └── syscall.h │ │ ├── ipc │ │ └── ipc.h │ │ ├── legacy │ │ └── getpagesize.c │ │ ├── locale │ │ ├── __lctrans.c │ │ ├── __mo_lookup.c │ │ ├── big5.h │ │ ├── c_locale.c │ │ ├── catclose.c │ │ ├── catgets.c │ │ ├── catopen.c │ │ ├── codepages.h │ │ ├── duplocale.c │ │ ├── freelocale.c │ │ ├── gb18030.h │ │ ├── hkscs.h │ │ ├── iconv.c │ │ ├── iconv_close.c │ │ ├── jis0208.h │ │ ├── ksc.h │ │ ├── langinfo.c │ │ ├── legacychars.h │ │ ├── locale_map.c │ │ ├── localeconv.c │ │ ├── newlocale.c │ │ ├── pleval.c │ │ ├── pleval.h │ │ ├── revjis.h │ │ ├── setlocale.c │ │ ├── strcoll.c │ │ ├── strfmon.c │ │ ├── strtod_l.c │ │ ├── strxfrm.c │ │ ├── uselocale.c │ │ ├── wcscoll.c │ │ └── wcsxfrm.c │ │ ├── malloc │ │ ├── mallocng │ │ │ ├── glue.h │ │ │ └── meta.h │ │ └── oldmalloc │ │ │ └── malloc_impl.h │ │ ├── math │ │ ├── __cos.c │ │ ├── __cosdf.c │ │ ├── __cosl.c │ │ ├── __expo2.c │ │ ├── __expo2f.c │ │ ├── __invtrigl.c │ │ ├── __invtrigl.h │ │ ├── __math_divzero.c │ │ ├── __math_divzerof.c │ │ ├── __math_invalid.c │ │ ├── __math_invalidf.c │ │ ├── __math_invalidl.c │ │ ├── __math_oflow.c │ │ ├── __math_oflowf.c │ │ ├── __math_uflow.c │ │ ├── __math_uflowf.c │ │ ├── __math_xflow.c │ │ ├── __math_xflowf.c │ │ ├── __polevll.c │ │ ├── __rem_pio2.c │ │ ├── __rem_pio2_large.c │ │ ├── __rem_pio2f.c │ │ ├── __rem_pio2l.c │ │ ├── __sin.c │ │ ├── __sindf.c │ │ ├── __sinl.c │ │ ├── __tan.c │ │ ├── __tandf.c │ │ ├── __tanl.c │ │ ├── acos.c │ │ ├── acosf.c │ │ ├── acosh.c │ │ ├── acoshf.c │ │ ├── acoshl.c │ │ ├── acosl.c │ │ ├── asin.c │ │ ├── asinf.c │ │ ├── asinh.c │ │ ├── asinhf.c │ │ ├── asinhl.c │ │ ├── asinl.c │ │ ├── atan.c │ │ ├── atan2.c │ │ ├── atan2f.c │ │ ├── atan2l.c │ │ ├── atanf.c │ │ ├── atanh.c │ │ ├── atanhf.c │ │ ├── atanhl.c │ │ ├── atanl.c │ │ ├── cbrt.c │ │ ├── cbrtf.c │ │ ├── cbrtl.c │ │ ├── ceill.c │ │ ├── copysignl.c │ │ ├── cos.c │ │ ├── cosf.c │ │ ├── cosh.c │ │ ├── coshf.c │ │ ├── coshl.c │ │ ├── cosl.c │ │ ├── erf.c │ │ ├── erff.c │ │ ├── erfl.c │ │ ├── exp.c │ │ ├── exp10.c │ │ ├── exp10f.c │ │ ├── exp10l.c │ │ ├── exp2.c │ │ ├── exp2f.c │ │ ├── exp2f_data.c │ │ ├── exp2f_data.h │ │ ├── exp2l.c │ │ ├── exp_data.c │ │ ├── exp_data.h │ │ ├── expf.c │ │ ├── expl.c │ │ ├── expm1.c │ │ ├── expm1f.c │ │ ├── expm1l.c │ │ ├── fabsl.c │ │ ├── fdim.c │ │ ├── fdimf.c │ │ ├── fdiml.c │ │ ├── finite.c │ │ ├── finitef.c │ │ ├── floorl.c │ │ ├── fma.c │ │ ├── fmaf.c │ │ ├── fmal.c │ │ ├── fmaxl.c │ │ ├── fminl.c │ │ ├── fmod.c │ │ ├── fmodf.c │ │ ├── fmodl.c │ │ ├── frexp.c │ │ ├── frexpf.c │ │ ├── frexpl.c │ │ ├── hypot.c │ │ ├── hypotf.c │ │ ├── hypotl.c │ │ ├── ilogb.c │ │ ├── ilogbf.c │ │ ├── ilogbl.c │ │ ├── j0.c │ │ ├── j0f.c │ │ ├── j1.c │ │ ├── j1f.c │ │ ├── jn.c │ │ ├── jnf.c │ │ ├── ldexp.c │ │ ├── ldexpf.c │ │ ├── ldexpl.c │ │ ├── lgamma.c │ │ ├── lgamma_r.c │ │ ├── lgammaf.c │ │ ├── lgammaf_r.c │ │ ├── lgammal.c │ │ ├── llrint.c │ │ ├── llrintf.c │ │ ├── llrintl.c │ │ ├── llround.c │ │ ├── llroundf.c │ │ ├── llroundl.c │ │ ├── log.c │ │ ├── log10.c │ │ ├── log10f.c │ │ ├── log10l.c │ │ ├── log1p.c │ │ ├── log1pf.c │ │ ├── log1pl.c │ │ ├── log2.c │ │ ├── log2_data.c │ │ ├── log2_data.h │ │ ├── log2f.c │ │ ├── log2f_data.c │ │ ├── log2f_data.h │ │ ├── log2l.c │ │ ├── log_data.c │ │ ├── log_data.h │ │ ├── logb.c │ │ ├── logbf.c │ │ ├── logbl.c │ │ ├── logf.c │ │ ├── logf_data.c │ │ ├── logf_data.h │ │ ├── logl.c │ │ ├── lrint.c │ │ ├── lrintf.c │ │ ├── lrintl.c │ │ ├── lround.c │ │ ├── lroundf.c │ │ ├── lroundl.c │ │ ├── modf.c │ │ ├── modff.c │ │ ├── modfl.c │ │ ├── nan.c │ │ ├── nanf.c │ │ ├── nanl.c │ │ ├── nearbyintl.c │ │ ├── nextafter.c │ │ ├── nextafterf.c │ │ ├── nextafterl.c │ │ ├── nexttoward.c │ │ ├── nexttowardf.c │ │ ├── nexttowardl.c │ │ ├── pow.c │ │ ├── pow_data.c │ │ ├── pow_data.h │ │ ├── powf.c │ │ ├── powf_data.c │ │ ├── powf_data.h │ │ ├── powl.c │ │ ├── remainder.c │ │ ├── remainderf.c │ │ ├── remainderl.c │ │ ├── remquo.c │ │ ├── remquof.c │ │ ├── remquol.c │ │ ├── rintl.c │ │ ├── round.c │ │ ├── roundf.c │ │ ├── roundl.c │ │ ├── scalb.c │ │ ├── scalbf.c │ │ ├── scalbln.c │ │ ├── scalblnf.c │ │ ├── scalblnl.c │ │ ├── scalbn.c │ │ ├── scalbnf.c │ │ ├── scalbnl.c │ │ ├── signgam.c │ │ ├── significand.c │ │ ├── significandf.c │ │ ├── sin.c │ │ ├── sincos.c │ │ ├── sincosf.c │ │ ├── sincosl.c │ │ ├── sinf.c │ │ ├── sinh.c │ │ ├── sinhf.c │ │ ├── sinhl.c │ │ ├── sinl.c │ │ ├── sqrt_data.c │ │ ├── sqrt_data.h │ │ ├── sqrtl.c │ │ ├── tan.c │ │ ├── tanf.c │ │ ├── tanh.c │ │ ├── tanhf.c │ │ ├── tanhl.c │ │ ├── tanl.c │ │ ├── tgamma.c │ │ ├── tgammaf.c │ │ ├── tgammal.c │ │ └── truncl.c │ │ ├── misc │ │ ├── a64l.c │ │ ├── basename.c │ │ ├── dirname.c │ │ ├── ffs.c │ │ ├── ffsl.c │ │ ├── ffsll.c │ │ ├── fmtmsg.c │ │ ├── getdomainname.c │ │ ├── gethostid.c │ │ ├── getopt.c │ │ ├── getopt_long.c │ │ ├── getsubopt.c │ │ ├── nftw.c │ │ └── uname.c │ │ ├── multibyte │ │ ├── btowc.c │ │ ├── c16rtomb.c │ │ ├── c32rtomb.c │ │ ├── internal.c │ │ ├── internal.h │ │ ├── mblen.c │ │ ├── mbrlen.c │ │ ├── mbrtoc16.c │ │ ├── mbrtoc32.c │ │ ├── mbrtowc.c │ │ ├── mbsinit.c │ │ ├── mbsnrtowcs.c │ │ ├── mbsrtowcs.c │ │ ├── mbstowcs.c │ │ ├── mbtowc.c │ │ ├── wcrtomb.c │ │ ├── wcsnrtombs.c │ │ ├── wcsrtombs.c │ │ ├── wcstombs.c │ │ ├── wctob.c │ │ └── wctomb.c │ │ ├── network │ │ ├── htonl.c │ │ ├── htons.c │ │ ├── in6addr_any.c │ │ ├── in6addr_loopback.c │ │ ├── inet_aton.c │ │ ├── inet_ntop.c │ │ ├── inet_pton.c │ │ ├── lookup.h │ │ ├── netlink.h │ │ ├── ntohl.c │ │ └── ntohs.c │ │ ├── passwd │ │ ├── nscd.h │ │ └── pwf.h │ │ ├── prng │ │ ├── __rand48_step.c │ │ ├── __seed48.c │ │ ├── drand48.c │ │ ├── lcong48.c │ │ ├── lrand48.c │ │ ├── mrand48.c │ │ ├── rand.c │ │ ├── rand48.h │ │ ├── rand_r.c │ │ ├── random.c │ │ ├── seed48.c │ │ └── srand48.c │ │ ├── process │ │ └── fdop.h │ │ ├── regex │ │ ├── fnmatch.c │ │ ├── glob.c │ │ ├── regcomp.c │ │ ├── regerror.c │ │ ├── regexec.c │ │ ├── tre-mem.c │ │ └── tre.h │ │ ├── search │ │ ├── hsearch.c │ │ ├── insque.c │ │ ├── lsearch.c │ │ ├── tdelete.c │ │ ├── tdestroy.c │ │ ├── tfind.c │ │ ├── tsearch.c │ │ ├── tsearch.h │ │ └── twalk.c │ │ ├── signal │ │ └── psignal.c │ │ ├── stat │ │ └── futimesat.c │ │ ├── stdio │ │ ├── __fclose_ca.c │ │ ├── __fdopen.c │ │ ├── __fmodeflags.c │ │ ├── __fopen_rb_ca.c │ │ ├── __overflow.c │ │ ├── __stdio_close.c │ │ ├── __stdio_exit.c │ │ ├── __stdio_read.c │ │ ├── __stdio_seek.c │ │ ├── __stdio_write.c │ │ ├── __stdout_write.c │ │ ├── __toread.c │ │ ├── __towrite.c │ │ ├── __uflow.c │ │ ├── asprintf.c │ │ ├── clearerr.c │ │ ├── dprintf.c │ │ ├── ext.c │ │ ├── ext2.c │ │ ├── fclose.c │ │ ├── feof.c │ │ ├── ferror.c │ │ ├── fflush.c │ │ ├── fgetc.c │ │ ├── fgetln.c │ │ ├── fgetpos.c │ │ ├── fgets.c │ │ ├── fgetwc.c │ │ ├── fgetws.c │ │ ├── fileno.c │ │ ├── fmemopen.c │ │ ├── fopen.c │ │ ├── fopencookie.c │ │ ├── fprintf.c │ │ ├── fputc.c │ │ ├── fputs.c │ │ ├── fputwc.c │ │ ├── fputws.c │ │ ├── fread.c │ │ ├── freopen.c │ │ ├── fscanf.c │ │ ├── fseek.c │ │ ├── fsetpos.c │ │ ├── ftell.c │ │ ├── fwide.c │ │ ├── fwprintf.c │ │ ├── fwrite.c │ │ ├── fwscanf.c │ │ ├── getc.c │ │ ├── getc.h │ │ ├── getc_unlocked.c │ │ ├── getchar.c │ │ ├── getchar_unlocked.c │ │ ├── getdelim.c │ │ ├── getline.c │ │ ├── getw.c │ │ ├── getwc.c │ │ ├── getwchar.c │ │ ├── ofl.c │ │ ├── ofl_add.c │ │ ├── open_memstream.c │ │ ├── open_wmemstream.c │ │ ├── perror.c │ │ ├── printf.c │ │ ├── putc.c │ │ ├── putc.h │ │ ├── putc_unlocked.c │ │ ├── putchar.c │ │ ├── putchar_unlocked.c │ │ ├── puts.c │ │ ├── putw.c │ │ ├── putwc.c │ │ ├── putwchar.c │ │ ├── rewind.c │ │ ├── scanf.c │ │ ├── setbuf.c │ │ ├── setbuffer.c │ │ ├── setlinebuf.c │ │ ├── setvbuf.c │ │ ├── snprintf.c │ │ ├── sprintf.c │ │ ├── sscanf.c │ │ ├── stderr.c │ │ ├── stdin.c │ │ ├── stdout.c │ │ ├── swprintf.c │ │ ├── swscanf.c │ │ ├── ungetc.c │ │ ├── ungetwc.c │ │ ├── vasprintf.c │ │ ├── vdprintf.c │ │ ├── vfprintf.c │ │ ├── vfscanf.c │ │ ├── vfwprintf.c │ │ ├── vfwscanf.c │ │ ├── vprintf.c │ │ ├── vscanf.c │ │ ├── vsnprintf.c │ │ ├── vsprintf.c │ │ ├── vsscanf.c │ │ ├── vswprintf.c │ │ ├── vswscanf.c │ │ ├── vwprintf.c │ │ ├── vwscanf.c │ │ ├── wprintf.c │ │ └── wscanf.c │ │ ├── stdlib │ │ ├── abs.c │ │ ├── atof.c │ │ ├── atoi.c │ │ ├── atol.c │ │ ├── atoll.c │ │ ├── bsearch.c │ │ ├── div.c │ │ ├── ecvt.c │ │ ├── fcvt.c │ │ ├── gcvt.c │ │ ├── imaxabs.c │ │ ├── imaxdiv.c │ │ ├── labs.c │ │ ├── ldiv.c │ │ ├── llabs.c │ │ ├── lldiv.c │ │ ├── qsort.c │ │ ├── qsort_nr.c │ │ ├── strtod.c │ │ ├── strtol.c │ │ ├── wcstod.c │ │ └── wcstol.c │ │ ├── string │ │ ├── bcmp.c │ │ ├── bcopy.c │ │ ├── bzero.c │ │ ├── explicit_bzero.c │ │ ├── index.c │ │ ├── memccpy.c │ │ ├── memchr.c │ │ ├── memcmp.c │ │ ├── memcpy.c │ │ ├── memmem.c │ │ ├── memmove.c │ │ ├── mempcpy.c │ │ ├── memrchr.c │ │ ├── memset.c │ │ ├── rindex.c │ │ ├── stpcpy.c │ │ ├── stpncpy.c │ │ ├── strcasecmp.c │ │ ├── strcasestr.c │ │ ├── strcat.c │ │ ├── strchr.c │ │ ├── strchrnul.c │ │ ├── strcmp.c │ │ ├── strcpy.c │ │ ├── strcspn.c │ │ ├── strdup.c │ │ ├── strerror_r.c │ │ ├── strlcat.c │ │ ├── strlcpy.c │ │ ├── strlen.c │ │ ├── strncasecmp.c │ │ ├── strncat.c │ │ ├── strncmp.c │ │ ├── strncpy.c │ │ ├── strndup.c │ │ ├── strnlen.c │ │ ├── strpbrk.c │ │ ├── strrchr.c │ │ ├── strsep.c │ │ ├── strsignal.c │ │ ├── strspn.c │ │ ├── strstr.c │ │ ├── strtok.c │ │ ├── strtok_r.c │ │ ├── strverscmp.c │ │ ├── swab.c │ │ ├── wcpcpy.c │ │ ├── wcpncpy.c │ │ ├── wcscasecmp.c │ │ ├── wcscasecmp_l.c │ │ ├── wcscat.c │ │ ├── wcschr.c │ │ ├── wcscmp.c │ │ ├── wcscpy.c │ │ ├── wcscspn.c │ │ ├── wcsdup.c │ │ ├── wcslen.c │ │ ├── wcsncasecmp.c │ │ ├── wcsncasecmp_l.c │ │ ├── wcsncat.c │ │ ├── wcsncmp.c │ │ ├── wcsncpy.c │ │ ├── wcsnlen.c │ │ ├── wcspbrk.c │ │ ├── wcsrchr.c │ │ ├── wcsspn.c │ │ ├── wcsstr.c │ │ ├── wcstok.c │ │ ├── wcswcs.c │ │ ├── wmemchr.c │ │ ├── wmemcmp.c │ │ ├── wmemcpy.c │ │ ├── wmemmove.c │ │ └── wmemset.c │ │ ├── thread │ │ └── thrd_sleep.c │ │ ├── time │ │ ├── __month_to_secs.c │ │ ├── __secs_to_tm.c │ │ ├── __tm_to_secs.c │ │ ├── __tz.c │ │ ├── __year_to_secs.c │ │ ├── asctime.c │ │ ├── asctime_r.c │ │ ├── ctime.c │ │ ├── ctime_r.c │ │ ├── difftime.c │ │ ├── ftime.c │ │ ├── getdate.c │ │ ├── gmtime.c │ │ ├── gmtime_r.c │ │ ├── localtime.c │ │ ├── localtime_r.c │ │ ├── mktime.c │ │ ├── strftime.c │ │ ├── strptime.c │ │ ├── time_impl.h │ │ ├── timegm.c │ │ ├── timespec_get.c │ │ └── wcsftime.c │ │ └── unistd │ │ └── posix_close.c │ ├── signal │ └── signal.c │ └── sources │ ├── __errno_location.c │ ├── __main_void.c │ ├── __wasilibc_dt.c │ ├── __wasilibc_environ.c │ ├── __wasilibc_fd_renumber.c │ ├── __wasilibc_initialize_environ.c │ ├── __wasilibc_real.c │ ├── __wasilibc_rmdirat.c │ ├── __wasilibc_tell.c │ ├── __wasilibc_unlinkat.c │ ├── abort.c │ ├── accept.c │ ├── arc4random.c │ ├── at_fdcwd.c │ ├── chdir.c │ ├── complex-builtins.c │ ├── environ.c │ ├── errno.c │ ├── getcwd.c │ ├── getentropy.c │ ├── isatty.c │ ├── math │ ├── fmin-fmax.c │ └── math-builtins.c │ ├── posix.c │ ├── preopens.c │ ├── reallocarray.c │ ├── sbrk.c │ └── truncate.c ├── playbit.conf ├── src ├── abuf.c ├── abuf.h ├── array.c ├── array.h ├── ast.c ├── ast.h ├── ast_field.c ├── ast_field.h ├── ast_repr.c ├── astencode.c ├── astencode.h ├── bgtask.c ├── bgtask.h ├── bits.c ├── bits.h ├── buf.c ├── buf.h ├── cbuild.c ├── cbuild.h ├── cc.c ├── cgen.c ├── chan.c ├── chan.h ├── chan_test.c ├── check_typedeps.c ├── cliopt.inc.h ├── colib.h ├── compiler.c ├── compiler.h ├── comptime.c ├── debugutil.c ├── debugutil.h ├── diag.c ├── diag.h ├── dirwalk.c ├── dirwalk.h ├── dlog.c ├── err.c ├── experiments.h ├── filetype.c ├── fmt.c ├── fs.c ├── fs_copyfile.c ├── fs_lock.c ├── future.c ├── future.h ├── hash.c ├── hash.h ├── hashtable.c ├── hashtable.h ├── import.c ├── iniparse.c ├── iniparse.h ├── intscan.c ├── ir.c ├── ir.h ├── irfmt.c ├── leb128.c ├── leb128.h ├── llvm │ ├── clang.cc │ ├── clang_cc1_main.cc │ ├── clang_cc1as_main.cc │ ├── lld.cc │ ├── llvm-ar.cc │ ├── llvm-includes.hh │ ├── llvm-nm-opts.inc │ ├── llvm-nm.cc │ ├── llvm.c │ ├── llvm.cc │ ├── llvm.h │ └── llvmimpl.h ├── loc.c ├── loc.h ├── main.c ├── main_build.c ├── main_build_sysroot.c ├── main_selftest.c ├── mangle.c ├── map.c ├── map.h ├── mem.c ├── memalloc_bump2.c ├── ops.c ├── ops.h ├── origin.c ├── panic.c ├── parser.c ├── path.c ├── path.h ├── pkg.c ├── pkgbuild.c ├── pkgbuild.h ├── promise.c ├── qsort.c ├── s-expr.c ├── s-expr.h ├── s-expr_test.c ├── scanner.c ├── scope.c ├── sha256.c ├── sha256.h ├── slice.c ├── slice_test.c ├── srcfile.c ├── srcfile.h ├── str.c ├── str.h ├── string.c ├── strlist.c ├── strlist.h ├── subproc.c ├── subproc.h ├── swap.c ├── sym.c ├── sym.h ├── sys_homedir.c ├── sys_ncpu.c ├── sys_vm.c ├── syslib_libcxx.h ├── syslib_libcxxabi.h ├── syslib_librt.h ├── syslib_libunwind.h ├── syslib_musl.h ├── syslib_wasi.h ├── target.c ├── target.h ├── targets.h ├── thread.c ├── thread.h ├── thread_sema.c ├── threadpool.c ├── threadpool.h ├── time.c ├── tmpbuf.c ├── tmpbuf.h ├── tokens.h ├── typecheck.c ├── typefun.c ├── typeid.c ├── unicode.c ├── unicode.h ├── unittest.c ├── universe.c ├── userconfig.c ├── userconfig.h └── visibility.c ├── test ├── README.md ├── data │ ├── add_ints.c │ ├── hello.c │ └── hello.cc ├── libtest.sh ├── syntax │ ├── comments.co │ ├── drop-custom.co │ ├── integer-literal-overflow.co │ ├── integer-literals.co │ ├── mut-this-on-arrayref-type-fun.co │ ├── mut-this-on-immutable-type-fun.co │ ├── recursive-struct-opt-ref.co │ ├── recursive-struct-opt.co │ ├── recursive-struct-ref-opt.co │ ├── recursive-struct-ref.co │ ├── recursive-struct.co │ ├── top-level-name-clash.co │ └── top-level-var.co ├── test-build-sysroot-race.sh ├── test.sh └── tests │ ├── 000-c-oneshot.sh │ ├── c-alib-then-link.sh │ ├── c-alib-then-linkl.sh │ ├── c-freestanding-hello-linux.sh │ ├── c-freestanding.sh │ ├── c-obj-then-link.sh │ ├── c-target-aarch64-linux.sh │ ├── c-target-aarch64-macos.11.sh │ ├── c-target-aarch64-macos.12.sh │ ├── c-target-aarch64-macos.13.sh │ ├── c-target-aarch64-none.sh │ ├── c-target-arm-linux.sh │ ├── c-target-arm-none.sh │ ├── c-target-coverage.sh │ ├── c-target-i386-linux.sh │ ├── c-target-i386-none.sh │ ├── c-target-riscv64-linux.sh │ ├── c-target-riscv64-none.sh │ ├── c-target-wasm32-none.sh │ ├── c-target-wasm32-wasi.sh │ ├── c-target-wasm64-none.sh │ ├── c-target-x86_64-linux.sh │ ├── c-target-x86_64-macos.10.sh │ ├── c-target-x86_64-macos.11.sh │ ├── c-target-x86_64-macos.12.sh │ ├── c-target-x86_64-macos.13.sh │ ├── c-target-x86_64-none.sh │ ├── c-wasi.sh │ ├── custom-sysroot.sh │ ├── cxx-oneshot.sh │ ├── cxx-tool-name.sh │ ├── cxx-wasi-fexceptions.sh │ ├── cxx-wasi-fno-exceptions.sh │ └── cxx-wasi.sh └── version.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/README.md -------------------------------------------------------------------------------- /etc/bitset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/bitset.c -------------------------------------------------------------------------------- /etc/build-pbzx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/build-pbzx.sh -------------------------------------------------------------------------------- /etc/dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/dist.sh -------------------------------------------------------------------------------- /etc/gen-sysinc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/gen-sysinc.sh -------------------------------------------------------------------------------- /etc/gen-syslib_musl.h.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/gen-syslib_musl.h.sh -------------------------------------------------------------------------------- /etc/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/lib.sh -------------------------------------------------------------------------------- /etc/libxar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/.gitignore -------------------------------------------------------------------------------- /etc/libxar/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/ChangeLog -------------------------------------------------------------------------------- /etc/libxar/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/INSTALL -------------------------------------------------------------------------------- /etc/libxar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/LICENSE -------------------------------------------------------------------------------- /etc/libxar/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/Makefile.in -------------------------------------------------------------------------------- /etc/libxar/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/NEWS -------------------------------------------------------------------------------- /etc/libxar/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/autogen.sh -------------------------------------------------------------------------------- /etc/libxar/cfghdrs.stamp.in: -------------------------------------------------------------------------------- 1 | stamp 2 | -------------------------------------------------------------------------------- /etc/libxar/cfgoutputs.stamp.in: -------------------------------------------------------------------------------- 1 | stamp 2 | -------------------------------------------------------------------------------- /etc/libxar/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/config.guess -------------------------------------------------------------------------------- /etc/libxar/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/config.sub -------------------------------------------------------------------------------- /etc/libxar/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/configure -------------------------------------------------------------------------------- /etc/libxar/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/configure.ac -------------------------------------------------------------------------------- /etc/libxar/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/install-sh -------------------------------------------------------------------------------- /etc/libxar/lib/archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/archive.c -------------------------------------------------------------------------------- /etc/libxar/lib/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/archive.h -------------------------------------------------------------------------------- /etc/libxar/lib/arcmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/arcmod.c -------------------------------------------------------------------------------- /etc/libxar/lib/arcmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/arcmod.h -------------------------------------------------------------------------------- /etc/libxar/lib/asprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/asprintf.h -------------------------------------------------------------------------------- /etc/libxar/lib/b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/b64.c -------------------------------------------------------------------------------- /etc/libxar/lib/b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/b64.h -------------------------------------------------------------------------------- /etc/libxar/lib/bzxar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/bzxar.c -------------------------------------------------------------------------------- /etc/libxar/lib/bzxar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/bzxar.h -------------------------------------------------------------------------------- /etc/libxar/lib/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/data.c -------------------------------------------------------------------------------- /etc/libxar/lib/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/data.h -------------------------------------------------------------------------------- /etc/libxar/lib/ea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/ea.c -------------------------------------------------------------------------------- /etc/libxar/lib/ea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/ea.h -------------------------------------------------------------------------------- /etc/libxar/lib/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/err.c -------------------------------------------------------------------------------- /etc/libxar/lib/ext2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/ext2.c -------------------------------------------------------------------------------- /etc/libxar/lib/ext2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/ext2.h -------------------------------------------------------------------------------- /etc/libxar/lib/fbsdattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/fbsdattr.c -------------------------------------------------------------------------------- /etc/libxar/lib/fbsdattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/fbsdattr.h -------------------------------------------------------------------------------- /etc/libxar/lib/filetree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/filetree.c -------------------------------------------------------------------------------- /etc/libxar/lib/filetree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/filetree.h -------------------------------------------------------------------------------- /etc/libxar/lib/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/hash.c -------------------------------------------------------------------------------- /etc/libxar/lib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/hash.h -------------------------------------------------------------------------------- /etc/libxar/lib/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/io.c -------------------------------------------------------------------------------- /etc/libxar/lib/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/io.h -------------------------------------------------------------------------------- /etc/libxar/lib/lzmaxar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/lzmaxar.c -------------------------------------------------------------------------------- /etc/libxar/lib/lzmaxar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/lzmaxar.h -------------------------------------------------------------------------------- /etc/libxar/lib/macho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/macho.c -------------------------------------------------------------------------------- /etc/libxar/lib/macho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/macho.h -------------------------------------------------------------------------------- /etc/libxar/lib/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/script.c -------------------------------------------------------------------------------- /etc/libxar/lib/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/script.h -------------------------------------------------------------------------------- /etc/libxar/lib/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/stat.c -------------------------------------------------------------------------------- /etc/libxar/lib/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/stat.h -------------------------------------------------------------------------------- /etc/libxar/lib/strmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/strmode.h -------------------------------------------------------------------------------- /etc/libxar/lib/subdoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/subdoc.c -------------------------------------------------------------------------------- /etc/libxar/lib/subdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/subdoc.h -------------------------------------------------------------------------------- /etc/libxar/lib/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/util.c -------------------------------------------------------------------------------- /etc/libxar/lib/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/util.h -------------------------------------------------------------------------------- /etc/libxar/lib/zxar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/zxar.c -------------------------------------------------------------------------------- /etc/libxar/lib/zxar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/lib/zxar.h -------------------------------------------------------------------------------- /etc/libxar/src/xar.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/src/xar.1 -------------------------------------------------------------------------------- /etc/libxar/src/xar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/src/xar.c -------------------------------------------------------------------------------- /etc/libxar/test/attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/test/attr -------------------------------------------------------------------------------- /etc/libxar/test/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/test/buffer.c -------------------------------------------------------------------------------- /etc/libxar/test/checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/test/checksums -------------------------------------------------------------------------------- /etc/libxar/test/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/test/data -------------------------------------------------------------------------------- /etc/libxar/test/data.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/test/data.xsl -------------------------------------------------------------------------------- /etc/libxar/test/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/test/functions -------------------------------------------------------------------------------- /etc/libxar/test/hardlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/test/hardlink -------------------------------------------------------------------------------- /etc/libxar/test/heap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/test/heap -------------------------------------------------------------------------------- /etc/libxar/test/heap1.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/test/heap1.xsl -------------------------------------------------------------------------------- /etc/libxar/version: -------------------------------------------------------------------------------- 1 | 1.6.1 2 | -------------------------------------------------------------------------------- /etc/libxar/xar.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/xar.spec.in -------------------------------------------------------------------------------- /etc/libxar/xar_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/libxar/xar_README.txt -------------------------------------------------------------------------------- /etc/macos-headers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/macos-headers.c -------------------------------------------------------------------------------- /etc/pbzx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/pbzx.c -------------------------------------------------------------------------------- /etc/playbit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/playbit.conf -------------------------------------------------------------------------------- /etc/stdlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/stdlib.md -------------------------------------------------------------------------------- /etc/sublime-text/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/sublime-text/Makefile -------------------------------------------------------------------------------- /etc/update-clangres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/update-clangres.sh -------------------------------------------------------------------------------- /etc/update-libcxx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/update-libcxx.sh -------------------------------------------------------------------------------- /etc/update-librt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/update-librt.sh -------------------------------------------------------------------------------- /etc/update-musl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/update-musl.sh -------------------------------------------------------------------------------- /etc/update-wasi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/update-wasi.sh -------------------------------------------------------------------------------- /etc/update-wasmer-js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/etc/update-wasmer-js.sh -------------------------------------------------------------------------------- /examples/block-result.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/block-result.co -------------------------------------------------------------------------------- /examples/builtins.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/builtins.co -------------------------------------------------------------------------------- /examples/charlit.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/charlit.co -------------------------------------------------------------------------------- /examples/comptime.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/comptime.co -------------------------------------------------------------------------------- /examples/float_limits.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/float_limits.co -------------------------------------------------------------------------------- /examples/foo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/foo.c -------------------------------------------------------------------------------- /examples/foo.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/foo.co -------------------------------------------------------------------------------- /examples/foo/foo.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/foo/foo.co -------------------------------------------------------------------------------- /examples/for-loop.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/for-loop.co -------------------------------------------------------------------------------- /examples/generic.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/generic.co -------------------------------------------------------------------------------- /examples/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/hello.c -------------------------------------------------------------------------------- /examples/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/hello.cc -------------------------------------------------------------------------------- /examples/hello.co: -------------------------------------------------------------------------------- 1 | pub fun main() 2 | print("hello world") 3 | -------------------------------------------------------------------------------- /examples/hello/hello.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/hello/hello.co -------------------------------------------------------------------------------- /examples/hello/main.co: -------------------------------------------------------------------------------- 1 | fun main() { 2 | package_local() 3 | } 4 | -------------------------------------------------------------------------------- /examples/if-else.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/if-else.co -------------------------------------------------------------------------------- /examples/import1.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/import1.co -------------------------------------------------------------------------------- /examples/import2/internal.co: -------------------------------------------------------------------------------- 1 | fun internal() {} 2 | -------------------------------------------------------------------------------- /examples/indentation.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/indentation.co -------------------------------------------------------------------------------- /examples/intlit.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/intlit.co -------------------------------------------------------------------------------- /examples/ir.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/ir.co -------------------------------------------------------------------------------- /examples/libc-hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/libc-hello.c -------------------------------------------------------------------------------- /examples/minimal-main.co: -------------------------------------------------------------------------------- 1 | fun main() { 2 | } 3 | -------------------------------------------------------------------------------- /examples/negative_num.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/negative_num.co -------------------------------------------------------------------------------- /examples/optional.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/optional.co -------------------------------------------------------------------------------- /examples/ownership.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/ownership.co -------------------------------------------------------------------------------- /examples/ref-semantics.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/ref-semantics.co -------------------------------------------------------------------------------- /examples/refs.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/refs.co -------------------------------------------------------------------------------- /examples/subscript.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/subscript.co -------------------------------------------------------------------------------- /examples/variables.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/examples/variables.co -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/co/coprelude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/co/coprelude.h -------------------------------------------------------------------------------- /lib/darwin/any-macos.10/libc.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.10/libdbm.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.10/libdl.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.10/libinfo.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.10/libm.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.10/libmx.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.10/libpoll.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.10/libproc.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.10/libpthread.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.10/librpcsvc.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.11/libc.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.11/libdbm.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.11/libdl.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.11/libinfo.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.11/libm.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.11/libmx.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.11/libpoll.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.11/libproc.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.11/libpthread.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.11/librpcsvc.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.12/libc.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.12/libdbm.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.12/libdl.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.12/libinfo.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.12/libm.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.12/libmx.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.12/libpoll.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.12/libproc.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.12/libpthread.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.12/librpcsvc.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.13/libc.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.13/libdbm.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.13/libdl.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.13/libinfo.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.13/libm.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.13/libmx.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.13/libpoll.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.13/libproc.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.13/libpthread.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.13/librpcsvc.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.14/libc.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.14/libdbm.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.14/libdl.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.14/libinfo.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.14/libm.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.14/libmx.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.14/libpoll.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.14/libproc.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.14/libpthread.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/darwin/any-macos.14/librpcsvc.tbd: -------------------------------------------------------------------------------- 1 | libSystem.tbd -------------------------------------------------------------------------------- /lib/libcxx/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/LICENSE.TXT -------------------------------------------------------------------------------- /lib/libcxx/include/__bits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/__bits -------------------------------------------------------------------------------- /lib/libcxx/include/__errc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/__errc -------------------------------------------------------------------------------- /lib/libcxx/include/__tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/__tree -------------------------------------------------------------------------------- /lib/libcxx/include/any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/any -------------------------------------------------------------------------------- /lib/libcxx/include/array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/array -------------------------------------------------------------------------------- /lib/libcxx/include/atomic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/atomic -------------------------------------------------------------------------------- /lib/libcxx/include/bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/bit -------------------------------------------------------------------------------- /lib/libcxx/include/bitset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/bitset -------------------------------------------------------------------------------- /lib/libcxx/include/cctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/cctype -------------------------------------------------------------------------------- /lib/libcxx/include/cerrno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/cerrno -------------------------------------------------------------------------------- /lib/libcxx/include/cfenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/cfenv -------------------------------------------------------------------------------- /lib/libcxx/include/cfloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/cfloat -------------------------------------------------------------------------------- /lib/libcxx/include/chrono: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/chrono -------------------------------------------------------------------------------- /lib/libcxx/include/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/cmath -------------------------------------------------------------------------------- /lib/libcxx/include/cstdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/cstdio -------------------------------------------------------------------------------- /lib/libcxx/include/ctime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/ctime -------------------------------------------------------------------------------- /lib/libcxx/include/cuchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/cuchar -------------------------------------------------------------------------------- /lib/libcxx/include/cwchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/cwchar -------------------------------------------------------------------------------- /lib/libcxx/include/deque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/deque -------------------------------------------------------------------------------- /lib/libcxx/include/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/fenv.h -------------------------------------------------------------------------------- /lib/libcxx/include/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/format -------------------------------------------------------------------------------- /lib/libcxx/include/future: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/future -------------------------------------------------------------------------------- /lib/libcxx/include/ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/ios -------------------------------------------------------------------------------- /lib/libcxx/include/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/iosfwd -------------------------------------------------------------------------------- /lib/libcxx/include/latch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/latch -------------------------------------------------------------------------------- /lib/libcxx/include/limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/limits -------------------------------------------------------------------------------- /lib/libcxx/include/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/list -------------------------------------------------------------------------------- /lib/libcxx/include/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/locale -------------------------------------------------------------------------------- /lib/libcxx/include/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/map -------------------------------------------------------------------------------- /lib/libcxx/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/math.h -------------------------------------------------------------------------------- /lib/libcxx/include/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/memory -------------------------------------------------------------------------------- /lib/libcxx/include/mutex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/mutex -------------------------------------------------------------------------------- /lib/libcxx/include/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/new -------------------------------------------------------------------------------- /lib/libcxx/include/queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/queue -------------------------------------------------------------------------------- /lib/libcxx/include/random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/random -------------------------------------------------------------------------------- /lib/libcxx/include/ranges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/ranges -------------------------------------------------------------------------------- /lib/libcxx/include/ratio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/ratio -------------------------------------------------------------------------------- /lib/libcxx/include/regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/regex -------------------------------------------------------------------------------- /lib/libcxx/include/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/set -------------------------------------------------------------------------------- /lib/libcxx/include/span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/span -------------------------------------------------------------------------------- /lib/libcxx/include/stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/stack -------------------------------------------------------------------------------- /lib/libcxx/include/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/string -------------------------------------------------------------------------------- /lib/libcxx/include/thread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/thread -------------------------------------------------------------------------------- /lib/libcxx/include/tuple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/tuple -------------------------------------------------------------------------------- /lib/libcxx/include/vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/include/vector -------------------------------------------------------------------------------- /lib/libcxx/src/any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/any.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/atomic.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/bind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/bind.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/chrono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/chrono.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/debug.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/format.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/future.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/hash.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/ios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/ios.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/locale.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/memory.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/mutex.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/new.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/random.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/regex.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/string.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/thread.cpp -------------------------------------------------------------------------------- /lib/libcxx/src/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxx/src/vector.cpp -------------------------------------------------------------------------------- /lib/libcxxabi/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libcxxabi/LICENSE.TXT -------------------------------------------------------------------------------- /lib/librt/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/LICENSE.TXT -------------------------------------------------------------------------------- /lib/librt/aarch64/lse.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/aarch64/lse.S -------------------------------------------------------------------------------- /lib/librt/absvdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/absvdi2.c -------------------------------------------------------------------------------- /lib/librt/absvsi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/absvsi2.c -------------------------------------------------------------------------------- /lib/librt/absvti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/absvti2.c -------------------------------------------------------------------------------- /lib/librt/adddf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/adddf3.c -------------------------------------------------------------------------------- /lib/librt/addsf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/addsf3.c -------------------------------------------------------------------------------- /lib/librt/addtf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/addtf3.c -------------------------------------------------------------------------------- /lib/librt/addvdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/addvdi3.c -------------------------------------------------------------------------------- /lib/librt/addvsi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/addvsi3.c -------------------------------------------------------------------------------- /lib/librt/addvti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/addvti3.c -------------------------------------------------------------------------------- /lib/librt/arm/bswapdi2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/arm/bswapdi2.S -------------------------------------------------------------------------------- /lib/librt/arm/bswapsi2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/arm/bswapsi2.S -------------------------------------------------------------------------------- /lib/librt/arm/clzdi2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/arm/clzdi2.S -------------------------------------------------------------------------------- /lib/librt/arm/clzsi2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/arm/clzsi2.S -------------------------------------------------------------------------------- /lib/librt/arm/divmodsi4.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/arm/divmodsi4.S -------------------------------------------------------------------------------- /lib/librt/arm/divsi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/arm/divsi3.S -------------------------------------------------------------------------------- /lib/librt/arm/fp_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/arm/fp_mode.c -------------------------------------------------------------------------------- /lib/librt/arm/modsi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/arm/modsi3.S -------------------------------------------------------------------------------- /lib/librt/arm/sync-ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/arm/sync-ops.h -------------------------------------------------------------------------------- /lib/librt/arm/udivsi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/arm/udivsi3.S -------------------------------------------------------------------------------- /lib/librt/arm/umodsi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/arm/umodsi3.S -------------------------------------------------------------------------------- /lib/librt/ashldi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/ashldi3.c -------------------------------------------------------------------------------- /lib/librt/ashlti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/ashlti3.c -------------------------------------------------------------------------------- /lib/librt/ashrdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/ashrdi3.c -------------------------------------------------------------------------------- /lib/librt/ashrti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/ashrti3.c -------------------------------------------------------------------------------- /lib/librt/assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/assembly.h -------------------------------------------------------------------------------- /lib/librt/bswapdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/bswapdi2.c -------------------------------------------------------------------------------- /lib/librt/bswapsi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/bswapsi2.c -------------------------------------------------------------------------------- /lib/librt/clear_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/clear_cache.c -------------------------------------------------------------------------------- /lib/librt/clzdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/clzdi2.c -------------------------------------------------------------------------------- /lib/librt/clzsi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/clzsi2.c -------------------------------------------------------------------------------- /lib/librt/clzti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/clzti2.c -------------------------------------------------------------------------------- /lib/librt/cmpdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/cmpdi2.c -------------------------------------------------------------------------------- /lib/librt/cmpti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/cmpti2.c -------------------------------------------------------------------------------- /lib/librt/comparedf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/comparedf2.c -------------------------------------------------------------------------------- /lib/librt/comparesf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/comparesf2.c -------------------------------------------------------------------------------- /lib/librt/comparetf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/comparetf2.c -------------------------------------------------------------------------------- /lib/librt/ctzdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/ctzdi2.c -------------------------------------------------------------------------------- /lib/librt/ctzsi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/ctzsi2.c -------------------------------------------------------------------------------- /lib/librt/ctzti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/ctzti2.c -------------------------------------------------------------------------------- /lib/librt/divdc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/divdc3.c -------------------------------------------------------------------------------- /lib/librt/divdf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/divdf3.c -------------------------------------------------------------------------------- /lib/librt/divdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/divdi3.c -------------------------------------------------------------------------------- /lib/librt/divmoddi4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/divmoddi4.c -------------------------------------------------------------------------------- /lib/librt/divmodsi4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/divmodsi4.c -------------------------------------------------------------------------------- /lib/librt/divmodti4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/divmodti4.c -------------------------------------------------------------------------------- /lib/librt/divsc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/divsc3.c -------------------------------------------------------------------------------- /lib/librt/divsf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/divsf3.c -------------------------------------------------------------------------------- /lib/librt/divsi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/divsi3.c -------------------------------------------------------------------------------- /lib/librt/divtc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/divtc3.c -------------------------------------------------------------------------------- /lib/librt/divtf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/divtf3.c -------------------------------------------------------------------------------- /lib/librt/divti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/divti3.c -------------------------------------------------------------------------------- /lib/librt/extenddftf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/extenddftf2.c -------------------------------------------------------------------------------- /lib/librt/extendhfsf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/extendhfsf2.c -------------------------------------------------------------------------------- /lib/librt/extendhftf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/extendhftf2.c -------------------------------------------------------------------------------- /lib/librt/extendsfdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/extendsfdf2.c -------------------------------------------------------------------------------- /lib/librt/extendsftf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/extendsftf2.c -------------------------------------------------------------------------------- /lib/librt/ffsdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/ffsdi2.c -------------------------------------------------------------------------------- /lib/librt/ffssi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/ffssi2.c -------------------------------------------------------------------------------- /lib/librt/ffsti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/ffsti2.c -------------------------------------------------------------------------------- /lib/librt/fixdfdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixdfdi.c -------------------------------------------------------------------------------- /lib/librt/fixdfsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixdfsi.c -------------------------------------------------------------------------------- /lib/librt/fixdfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixdfti.c -------------------------------------------------------------------------------- /lib/librt/fixsfdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixsfdi.c -------------------------------------------------------------------------------- /lib/librt/fixsfsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixsfsi.c -------------------------------------------------------------------------------- /lib/librt/fixsfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixsfti.c -------------------------------------------------------------------------------- /lib/librt/fixtfdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixtfdi.c -------------------------------------------------------------------------------- /lib/librt/fixtfsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixtfsi.c -------------------------------------------------------------------------------- /lib/librt/fixtfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixtfti.c -------------------------------------------------------------------------------- /lib/librt/fixunsdfdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixunsdfdi.c -------------------------------------------------------------------------------- /lib/librt/fixunsdfsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixunsdfsi.c -------------------------------------------------------------------------------- /lib/librt/fixunsdfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixunsdfti.c -------------------------------------------------------------------------------- /lib/librt/fixunssfdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixunssfdi.c -------------------------------------------------------------------------------- /lib/librt/fixunssfsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixunssfsi.c -------------------------------------------------------------------------------- /lib/librt/fixunssfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixunssfti.c -------------------------------------------------------------------------------- /lib/librt/fixunstfdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixunstfdi.c -------------------------------------------------------------------------------- /lib/librt/fixunstfsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixunstfsi.c -------------------------------------------------------------------------------- /lib/librt/fixunstfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fixunstfti.c -------------------------------------------------------------------------------- /lib/librt/floatdidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floatdidf.c -------------------------------------------------------------------------------- /lib/librt/floatdisf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floatdisf.c -------------------------------------------------------------------------------- /lib/librt/floatditf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floatditf.c -------------------------------------------------------------------------------- /lib/librt/floatsidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floatsidf.c -------------------------------------------------------------------------------- /lib/librt/floatsisf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floatsisf.c -------------------------------------------------------------------------------- /lib/librt/floatsitf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floatsitf.c -------------------------------------------------------------------------------- /lib/librt/floattidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floattidf.c -------------------------------------------------------------------------------- /lib/librt/floattisf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floattisf.c -------------------------------------------------------------------------------- /lib/librt/floattitf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floattitf.c -------------------------------------------------------------------------------- /lib/librt/floatundidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floatundidf.c -------------------------------------------------------------------------------- /lib/librt/floatundisf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floatundisf.c -------------------------------------------------------------------------------- /lib/librt/floatunditf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floatunditf.c -------------------------------------------------------------------------------- /lib/librt/floatunsidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floatunsidf.c -------------------------------------------------------------------------------- /lib/librt/floatunsisf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floatunsisf.c -------------------------------------------------------------------------------- /lib/librt/floatunsitf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floatunsitf.c -------------------------------------------------------------------------------- /lib/librt/floatuntidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floatuntidf.c -------------------------------------------------------------------------------- /lib/librt/floatuntisf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floatuntisf.c -------------------------------------------------------------------------------- /lib/librt/floatuntitf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/floatuntitf.c -------------------------------------------------------------------------------- /lib/librt/fp_add_impl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fp_add_impl.inc -------------------------------------------------------------------------------- /lib/librt/fp_div_impl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fp_div_impl.inc -------------------------------------------------------------------------------- /lib/librt/fp_extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fp_extend.h -------------------------------------------------------------------------------- /lib/librt/fp_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fp_lib.h -------------------------------------------------------------------------------- /lib/librt/fp_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fp_mode.c -------------------------------------------------------------------------------- /lib/librt/fp_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fp_mode.h -------------------------------------------------------------------------------- /lib/librt/fp_mul_impl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fp_mul_impl.inc -------------------------------------------------------------------------------- /lib/librt/fp_trunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/fp_trunc.h -------------------------------------------------------------------------------- /lib/librt/i386/ashldi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/i386/ashldi3.S -------------------------------------------------------------------------------- /lib/librt/i386/ashrdi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/i386/ashrdi3.S -------------------------------------------------------------------------------- /lib/librt/i386/divdi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/i386/divdi3.S -------------------------------------------------------------------------------- /lib/librt/i386/divxc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/i386/divxc3.c -------------------------------------------------------------------------------- /lib/librt/i386/fixxfdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/i386/fixxfdi.c -------------------------------------------------------------------------------- /lib/librt/i386/fixxfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/i386/fixxfti.c -------------------------------------------------------------------------------- /lib/librt/i386/lshrdi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/i386/lshrdi3.S -------------------------------------------------------------------------------- /lib/librt/i386/moddi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/i386/moddi3.S -------------------------------------------------------------------------------- /lib/librt/i386/muldi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/i386/muldi3.S -------------------------------------------------------------------------------- /lib/librt/i386/mulxc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/i386/mulxc3.c -------------------------------------------------------------------------------- /lib/librt/i386/powixf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/i386/powixf2.c -------------------------------------------------------------------------------- /lib/librt/i386/udivdi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/i386/udivdi3.S -------------------------------------------------------------------------------- /lib/librt/i386/umoddi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/i386/umoddi3.S -------------------------------------------------------------------------------- /lib/librt/int_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/int_lib.h -------------------------------------------------------------------------------- /lib/librt/int_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/int_math.h -------------------------------------------------------------------------------- /lib/librt/int_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/int_types.h -------------------------------------------------------------------------------- /lib/librt/int_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/int_util.c -------------------------------------------------------------------------------- /lib/librt/int_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/int_util.h -------------------------------------------------------------------------------- /lib/librt/lshrdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/lshrdi3.c -------------------------------------------------------------------------------- /lib/librt/lshrti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/lshrti3.c -------------------------------------------------------------------------------- /lib/librt/moddi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/moddi3.c -------------------------------------------------------------------------------- /lib/librt/modsi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/modsi3.c -------------------------------------------------------------------------------- /lib/librt/modti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/modti3.c -------------------------------------------------------------------------------- /lib/librt/muldc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/muldc3.c -------------------------------------------------------------------------------- /lib/librt/muldf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/muldf3.c -------------------------------------------------------------------------------- /lib/librt/muldi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/muldi3.c -------------------------------------------------------------------------------- /lib/librt/mulodi4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/mulodi4.c -------------------------------------------------------------------------------- /lib/librt/mulosi4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/mulosi4.c -------------------------------------------------------------------------------- /lib/librt/muloti4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/muloti4.c -------------------------------------------------------------------------------- /lib/librt/mulsc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/mulsc3.c -------------------------------------------------------------------------------- /lib/librt/mulsf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/mulsf3.c -------------------------------------------------------------------------------- /lib/librt/multc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/multc3.c -------------------------------------------------------------------------------- /lib/librt/multf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/multf3.c -------------------------------------------------------------------------------- /lib/librt/multi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/multi3.c -------------------------------------------------------------------------------- /lib/librt/mulvdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/mulvdi3.c -------------------------------------------------------------------------------- /lib/librt/mulvsi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/mulvsi3.c -------------------------------------------------------------------------------- /lib/librt/mulvti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/mulvti3.c -------------------------------------------------------------------------------- /lib/librt/negdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/negdf2.c -------------------------------------------------------------------------------- /lib/librt/negdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/negdi2.c -------------------------------------------------------------------------------- /lib/librt/negsf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/negsf2.c -------------------------------------------------------------------------------- /lib/librt/negti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/negti2.c -------------------------------------------------------------------------------- /lib/librt/negvdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/negvdi2.c -------------------------------------------------------------------------------- /lib/librt/negvsi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/negvsi2.c -------------------------------------------------------------------------------- /lib/librt/negvti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/negvti2.c -------------------------------------------------------------------------------- /lib/librt/paritydi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/paritydi2.c -------------------------------------------------------------------------------- /lib/librt/paritysi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/paritysi2.c -------------------------------------------------------------------------------- /lib/librt/parityti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/parityti2.c -------------------------------------------------------------------------------- /lib/librt/popcountdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/popcountdi2.c -------------------------------------------------------------------------------- /lib/librt/popcountsi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/popcountsi2.c -------------------------------------------------------------------------------- /lib/librt/popcountti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/popcountti2.c -------------------------------------------------------------------------------- /lib/librt/powidf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/powidf2.c -------------------------------------------------------------------------------- /lib/librt/powisf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/powisf2.c -------------------------------------------------------------------------------- /lib/librt/powitf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/powitf2.c -------------------------------------------------------------------------------- /lib/librt/riscv/restore.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/riscv/restore.S -------------------------------------------------------------------------------- /lib/librt/riscv/save.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/riscv/save.S -------------------------------------------------------------------------------- /lib/librt/subdf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/subdf3.c -------------------------------------------------------------------------------- /lib/librt/subsf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/subsf3.c -------------------------------------------------------------------------------- /lib/librt/subtf3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/subtf3.c -------------------------------------------------------------------------------- /lib/librt/subvdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/subvdi3.c -------------------------------------------------------------------------------- /lib/librt/subvsi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/subvsi3.c -------------------------------------------------------------------------------- /lib/librt/subvti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/subvti3.c -------------------------------------------------------------------------------- /lib/librt/truncdfhf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/truncdfhf2.c -------------------------------------------------------------------------------- /lib/librt/truncdfsf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/truncdfsf2.c -------------------------------------------------------------------------------- /lib/librt/truncsfhf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/truncsfhf2.c -------------------------------------------------------------------------------- /lib/librt/trunctfdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/trunctfdf2.c -------------------------------------------------------------------------------- /lib/librt/trunctfhf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/trunctfhf2.c -------------------------------------------------------------------------------- /lib/librt/trunctfsf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/trunctfsf2.c -------------------------------------------------------------------------------- /lib/librt/ucmpdi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/ucmpdi2.c -------------------------------------------------------------------------------- /lib/librt/ucmpti2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/ucmpti2.c -------------------------------------------------------------------------------- /lib/librt/udivdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/udivdi3.c -------------------------------------------------------------------------------- /lib/librt/udivmoddi4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/udivmoddi4.c -------------------------------------------------------------------------------- /lib/librt/udivmodsi4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/udivmodsi4.c -------------------------------------------------------------------------------- /lib/librt/udivmodti4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/udivmodti4.c -------------------------------------------------------------------------------- /lib/librt/udivsi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/udivsi3.c -------------------------------------------------------------------------------- /lib/librt/udivti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/udivti3.c -------------------------------------------------------------------------------- /lib/librt/umoddi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/umoddi3.c -------------------------------------------------------------------------------- /lib/librt/umodsi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/umodsi3.c -------------------------------------------------------------------------------- /lib/librt/umodti3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/umodti3.c -------------------------------------------------------------------------------- /lib/librt/x86/cpu_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/x86/cpu_model.c -------------------------------------------------------------------------------- /lib/librt/x86/fp_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/x86/fp_mode.c -------------------------------------------------------------------------------- /lib/librt/x86_64/divxc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/x86_64/divxc3.c -------------------------------------------------------------------------------- /lib/librt/x86_64/mulxc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/librt/x86_64/mulxc3.c -------------------------------------------------------------------------------- /lib/libunwind/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/libunwind/LICENSE.TXT -------------------------------------------------------------------------------- /lib/musl/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/COPYRIGHT -------------------------------------------------------------------------------- /lib/musl/arch/arm/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/arch/arm/kstat.h -------------------------------------------------------------------------------- /lib/musl/arch/arm/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/arch/arm/reloc.h -------------------------------------------------------------------------------- /lib/musl/arch/generic/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/arch/generic/bits/limits.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/arch/generic/bits/mman.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/arch/generic/bits/ptrace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/arch/generic/fp_arch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/crt/Scrt1.c: -------------------------------------------------------------------------------- 1 | #include "crt1.c" 2 | -------------------------------------------------------------------------------- /lib/musl/crt/arm/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/crt/arm/crti.s -------------------------------------------------------------------------------- /lib/musl/crt/arm/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/crt/arm/crtn.s -------------------------------------------------------------------------------- /lib/musl/crt/crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/crt/crt1.c -------------------------------------------------------------------------------- /lib/musl/crt/crti.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/crt/crtn.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/crt/i386/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/crt/i386/crti.s -------------------------------------------------------------------------------- /lib/musl/crt/i386/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/crt/i386/crtn.s -------------------------------------------------------------------------------- /lib/musl/crt/rcrt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/crt/rcrt1.c -------------------------------------------------------------------------------- /lib/musl/include-arch/aarch64/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/aarch64/bits/ioctl_fix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/aarch64/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 2 2 | -------------------------------------------------------------------------------- /lib/musl/include-arch/aarch64/bits/limits.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/aarch64/bits/ptrace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/aarch64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[22]; 2 | -------------------------------------------------------------------------------- /lib/musl/include-arch/arm/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/arm/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /lib/musl/include-arch/arm/bits/limits.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/arm/bits/mman.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/i386/bits/hwcap.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/i386/bits/ioctl_fix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/i386/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /lib/musl/include-arch/i386/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /lib/musl/include-arch/i386/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[6]; 2 | -------------------------------------------------------------------------------- /lib/musl/include-arch/riscv64/bits/hwcap.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/riscv64/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/riscv64/bits/ioctl_fix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/riscv64/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 2 2 | -------------------------------------------------------------------------------- /lib/musl/include-arch/riscv64/bits/limits.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/riscv64/bits/mman.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/riscv64/bits/ptrace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/riscv64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[26]; 2 | -------------------------------------------------------------------------------- /lib/musl/include-arch/x86_64/bits/hwcap.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/x86_64/bits/ioctl_fix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include-arch/x86_64/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 2 2 | -------------------------------------------------------------------------------- /lib/musl/include-arch/x86_64/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /lib/musl/include-arch/x86_64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[8]; 2 | -------------------------------------------------------------------------------- /lib/musl/include/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/aio.h -------------------------------------------------------------------------------- /lib/musl/include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/alloca.h -------------------------------------------------------------------------------- /lib/musl/include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/ar.h -------------------------------------------------------------------------------- /lib/musl/include/arpa/nameser_compat.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /lib/musl/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/assert.h -------------------------------------------------------------------------------- /lib/musl/include/bits/kd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/musl/include/bits/link.h: -------------------------------------------------------------------------------- 1 | typedef uint32_t Elf_Symndx; 2 | -------------------------------------------------------------------------------- /lib/musl/include/bits/poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include/bits/socket.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/include/bits/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/musl/include/bits/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/musl/include/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/cpio.h -------------------------------------------------------------------------------- /lib/musl/include/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/crypt.h -------------------------------------------------------------------------------- /lib/musl/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/ctype.h -------------------------------------------------------------------------------- /lib/musl/include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/dirent.h -------------------------------------------------------------------------------- /lib/musl/include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/dlfcn.h -------------------------------------------------------------------------------- /lib/musl/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/elf.h -------------------------------------------------------------------------------- /lib/musl/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/endian.h -------------------------------------------------------------------------------- /lib/musl/include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/err.h -------------------------------------------------------------------------------- /lib/musl/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/errno.h -------------------------------------------------------------------------------- /lib/musl/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/fcntl.h -------------------------------------------------------------------------------- /lib/musl/include/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/fenv.h -------------------------------------------------------------------------------- /lib/musl/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/float.h -------------------------------------------------------------------------------- /lib/musl/include/fmtmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/fmtmsg.h -------------------------------------------------------------------------------- /lib/musl/include/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/ftw.h -------------------------------------------------------------------------------- /lib/musl/include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/getopt.h -------------------------------------------------------------------------------- /lib/musl/include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/glob.h -------------------------------------------------------------------------------- /lib/musl/include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/grp.h -------------------------------------------------------------------------------- /lib/musl/include/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/iconv.h -------------------------------------------------------------------------------- /lib/musl/include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/iso646.h -------------------------------------------------------------------------------- /lib/musl/include/lastlog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/musl/include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/libgen.h -------------------------------------------------------------------------------- /lib/musl/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/limits.h -------------------------------------------------------------------------------- /lib/musl/include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/link.h -------------------------------------------------------------------------------- /lib/musl/include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/locale.h -------------------------------------------------------------------------------- /lib/musl/include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/malloc.h -------------------------------------------------------------------------------- /lib/musl/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/math.h -------------------------------------------------------------------------------- /lib/musl/include/memory.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/musl/include/mntent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/mntent.h -------------------------------------------------------------------------------- /lib/musl/include/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/mqueue.h -------------------------------------------------------------------------------- /lib/musl/include/net/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/net/if.h -------------------------------------------------------------------------------- /lib/musl/include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/netdb.h -------------------------------------------------------------------------------- /lib/musl/include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/paths.h -------------------------------------------------------------------------------- /lib/musl/include/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/poll.h -------------------------------------------------------------------------------- /lib/musl/include/pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/pty.h -------------------------------------------------------------------------------- /lib/musl/include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/pwd.h -------------------------------------------------------------------------------- /lib/musl/include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/regex.h -------------------------------------------------------------------------------- /lib/musl/include/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/resolv.h -------------------------------------------------------------------------------- /lib/musl/include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/sched.h -------------------------------------------------------------------------------- /lib/musl/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/search.h -------------------------------------------------------------------------------- /lib/musl/include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/setjmp.h -------------------------------------------------------------------------------- /lib/musl/include/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/shadow.h -------------------------------------------------------------------------------- /lib/musl/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/signal.h -------------------------------------------------------------------------------- /lib/musl/include/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/spawn.h -------------------------------------------------------------------------------- /lib/musl/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/stdarg.h -------------------------------------------------------------------------------- /lib/musl/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/stddef.h -------------------------------------------------------------------------------- /lib/musl/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/stdint.h -------------------------------------------------------------------------------- /lib/musl/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/stdio.h -------------------------------------------------------------------------------- /lib/musl/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/stdlib.h -------------------------------------------------------------------------------- /lib/musl/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/string.h -------------------------------------------------------------------------------- /lib/musl/include/sys/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/sys/io.h -------------------------------------------------------------------------------- /lib/musl/include/sys/kd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/musl/include/sys/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/musl/include/sys/stropts.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/musl/include/sys/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/musl/include/sys/ucontext.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/musl/include/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/sys/un.h -------------------------------------------------------------------------------- /lib/musl/include/sys/vfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/musl/include/sys/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/musl/include/syscall.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/musl/include/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/syslog.h -------------------------------------------------------------------------------- /lib/musl/include/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/tar.h -------------------------------------------------------------------------------- /lib/musl/include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/tgmath.h -------------------------------------------------------------------------------- /lib/musl/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/time.h -------------------------------------------------------------------------------- /lib/musl/include/uchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/uchar.h -------------------------------------------------------------------------------- /lib/musl/include/ulimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/ulimit.h -------------------------------------------------------------------------------- /lib/musl/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/unistd.h -------------------------------------------------------------------------------- /lib/musl/include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/utime.h -------------------------------------------------------------------------------- /lib/musl/include/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/utmp.h -------------------------------------------------------------------------------- /lib/musl/include/utmpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/utmpx.h -------------------------------------------------------------------------------- /lib/musl/include/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/values.h -------------------------------------------------------------------------------- /lib/musl/include/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/wait.h -------------------------------------------------------------------------------- /lib/musl/include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/wchar.h -------------------------------------------------------------------------------- /lib/musl/include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/include/wctype.h -------------------------------------------------------------------------------- /lib/musl/ldso/dlstart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/ldso/dlstart.c -------------------------------------------------------------------------------- /lib/musl/ldso/dynlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/ldso/dynlink.c -------------------------------------------------------------------------------- /lib/musl/src/aio/aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/aio/aio.c -------------------------------------------------------------------------------- /lib/musl/src/ctype/wide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/ctype/wide.h -------------------------------------------------------------------------------- /lib/musl/src/env/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/env/getenv.c -------------------------------------------------------------------------------- /lib/musl/src/env/putenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/env/putenv.c -------------------------------------------------------------------------------- /lib/musl/src/env/setenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/env/setenv.c -------------------------------------------------------------------------------- /lib/musl/src/exit/_Exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/exit/_Exit.c -------------------------------------------------------------------------------- /lib/musl/src/exit/abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/exit/abort.c -------------------------------------------------------------------------------- /lib/musl/src/exit/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/exit/exit.c -------------------------------------------------------------------------------- /lib/musl/src/fcntl/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/fcntl/open.c -------------------------------------------------------------------------------- /lib/musl/src/fenv/arm/fenv.c: -------------------------------------------------------------------------------- 1 | #if !__ARM_PCS_VFP 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /lib/musl/src/fenv/fenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/fenv/fenv.c -------------------------------------------------------------------------------- /lib/musl/src/fenv/riscv64/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifndef __riscv_flen 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /lib/musl/src/internal/defsysinfo.c: -------------------------------------------------------------------------------- 1 | #include "libc.h" 2 | 3 | size_t __sysinfo; 4 | -------------------------------------------------------------------------------- /lib/musl/src/internal/version.h: -------------------------------------------------------------------------------- 1 | #define VERSION "1.2.3" 2 | -------------------------------------------------------------------------------- /lib/musl/src/ipc/ftok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/ipc/ftok.c -------------------------------------------------------------------------------- /lib/musl/src/ipc/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/ipc/ipc.h -------------------------------------------------------------------------------- /lib/musl/src/ipc/msgctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/ipc/msgctl.c -------------------------------------------------------------------------------- /lib/musl/src/ipc/msgget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/ipc/msgget.c -------------------------------------------------------------------------------- /lib/musl/src/ipc/msgrcv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/ipc/msgrcv.c -------------------------------------------------------------------------------- /lib/musl/src/ipc/msgsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/ipc/msgsnd.c -------------------------------------------------------------------------------- /lib/musl/src/ipc/semctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/ipc/semctl.c -------------------------------------------------------------------------------- /lib/musl/src/ipc/semget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/ipc/semget.c -------------------------------------------------------------------------------- /lib/musl/src/ipc/semop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/ipc/semop.c -------------------------------------------------------------------------------- /lib/musl/src/ipc/shmat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/ipc/shmat.c -------------------------------------------------------------------------------- /lib/musl/src/ipc/shmctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/ipc/shmctl.c -------------------------------------------------------------------------------- /lib/musl/src/ipc/shmdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/ipc/shmdt.c -------------------------------------------------------------------------------- /lib/musl/src/ipc/shmget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/ipc/shmget.c -------------------------------------------------------------------------------- /lib/musl/src/ldso/dlsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/ldso/dlsym.c -------------------------------------------------------------------------------- /lib/musl/src/legacy/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/legacy/err.c -------------------------------------------------------------------------------- /lib/musl/src/legacy/ftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/legacy/ftw.c -------------------------------------------------------------------------------- /lib/musl/src/linux/brk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/linux/brk.c -------------------------------------------------------------------------------- /lib/musl/src/linux/cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/linux/cap.c -------------------------------------------------------------------------------- /lib/musl/src/linux/iopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/linux/iopl.c -------------------------------------------------------------------------------- /lib/musl/src/linux/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/linux/sbrk.c -------------------------------------------------------------------------------- /lib/musl/src/linux/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/linux/swap.c -------------------------------------------------------------------------------- /lib/musl/src/linux/tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/linux/tee.c -------------------------------------------------------------------------------- /lib/musl/src/locale/ksc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/locale/ksc.h -------------------------------------------------------------------------------- /lib/musl/src/math/__cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/__cos.c -------------------------------------------------------------------------------- /lib/musl/src/math/__sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/__sin.c -------------------------------------------------------------------------------- /lib/musl/src/math/__tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/__tan.c -------------------------------------------------------------------------------- /lib/musl/src/math/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/acos.c -------------------------------------------------------------------------------- /lib/musl/src/math/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/acosf.c -------------------------------------------------------------------------------- /lib/musl/src/math/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/acosh.c -------------------------------------------------------------------------------- /lib/musl/src/math/acosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/acosl.c -------------------------------------------------------------------------------- /lib/musl/src/math/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/asin.c -------------------------------------------------------------------------------- /lib/musl/src/math/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/asinf.c -------------------------------------------------------------------------------- /lib/musl/src/math/asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/asinh.c -------------------------------------------------------------------------------- /lib/musl/src/math/asinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/asinl.c -------------------------------------------------------------------------------- /lib/musl/src/math/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/atan.c -------------------------------------------------------------------------------- /lib/musl/src/math/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/atan2.c -------------------------------------------------------------------------------- /lib/musl/src/math/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/atanf.c -------------------------------------------------------------------------------- /lib/musl/src/math/atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/atanh.c -------------------------------------------------------------------------------- /lib/musl/src/math/atanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/atanl.c -------------------------------------------------------------------------------- /lib/musl/src/math/cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/cbrt.c -------------------------------------------------------------------------------- /lib/musl/src/math/cbrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/cbrtf.c -------------------------------------------------------------------------------- /lib/musl/src/math/cbrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/cbrtl.c -------------------------------------------------------------------------------- /lib/musl/src/math/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/ceil.c -------------------------------------------------------------------------------- /lib/musl/src/math/ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/ceilf.c -------------------------------------------------------------------------------- /lib/musl/src/math/ceill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/ceill.c -------------------------------------------------------------------------------- /lib/musl/src/math/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/cos.c -------------------------------------------------------------------------------- /lib/musl/src/math/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/cosf.c -------------------------------------------------------------------------------- /lib/musl/src/math/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/cosh.c -------------------------------------------------------------------------------- /lib/musl/src/math/coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/coshf.c -------------------------------------------------------------------------------- /lib/musl/src/math/coshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/coshl.c -------------------------------------------------------------------------------- /lib/musl/src/math/cosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/cosl.c -------------------------------------------------------------------------------- /lib/musl/src/math/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/erf.c -------------------------------------------------------------------------------- /lib/musl/src/math/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/exp.c -------------------------------------------------------------------------------- /lib/musl/src/math/fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/fma.c -------------------------------------------------------------------------------- /lib/musl/src/math/i386/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/ceil.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/ceilf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/ceill.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/exp2l.s: -------------------------------------------------------------------------------- 1 | # see exp_ld.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp_ld.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/floorf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/floorl.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/ldexp.s: -------------------------------------------------------------------------------- 1 | # see scalbn.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/ldexpf.s: -------------------------------------------------------------------------------- 1 | # see scalbnf.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/ldexpl.s: -------------------------------------------------------------------------------- 1 | # see scalbnl.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/remquof.s: -------------------------------------------------------------------------------- 1 | # see remquo.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/remquol.s: -------------------------------------------------------------------------------- 1 | # see remquo.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/scalbln.s: -------------------------------------------------------------------------------- 1 | # see scalbn.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/scalblnf.s: -------------------------------------------------------------------------------- 1 | # see scalbnf.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/scalblnl.s: -------------------------------------------------------------------------------- 1 | # see scalbnl.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/trunc.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/truncf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/i386/truncl.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/j0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/j0.c -------------------------------------------------------------------------------- /lib/musl/src/math/j0f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/j0f.c -------------------------------------------------------------------------------- /lib/musl/src/math/j1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/j1.c -------------------------------------------------------------------------------- /lib/musl/src/math/j1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/j1f.c -------------------------------------------------------------------------------- /lib/musl/src/math/jn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/jn.c -------------------------------------------------------------------------------- /lib/musl/src/math/jnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/jnf.c -------------------------------------------------------------------------------- /lib/musl/src/math/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/log.c -------------------------------------------------------------------------------- /lib/musl/src/math/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/pow.c -------------------------------------------------------------------------------- /lib/musl/src/math/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/sin.c -------------------------------------------------------------------------------- /lib/musl/src/math/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/math/tan.c -------------------------------------------------------------------------------- /lib/musl/src/math/x86_64/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/src/math/x86_64/ceill.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/x86_64/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp2l.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/math/x86_64/truncl.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /lib/musl/src/misc/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/misc/ffs.c -------------------------------------------------------------------------------- /lib/musl/src/misc/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/musl/src/misc/pty.c -------------------------------------------------------------------------------- /lib/musl/src/setjmp/longjmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/src/setjmp/setjmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/src/signal/sigsetjmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/src/thread/syscall_cp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/musl/src/thread/tls.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/ioctls.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/ipcbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/msgbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/resource.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/sembuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/setup.h: -------------------------------------------------------------------------------- 1 | /* */ 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/shmbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/siginfo.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/socket.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/sockios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/stat.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/swab.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/termbits.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/termios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/asm/types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/linux/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/linux/if_ppp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/linux/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/aarch64-linux/linux/uuid.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/bitsperlong.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/bpf_perf_event.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/ipcbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/kvm_para.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/msgbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/param.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/resource.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/sembuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/shmbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/siginfo.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/socket.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/sockios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/termbits.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/asm/termios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/linux/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/linux/if_ppp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/linux/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/arm-linux/linux/uuid.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/asm/bpf_perf_event.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/asm/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/asm/ioctls.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/asm/ipcbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/asm/param.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/asm/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/asm/resource.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/asm/socket.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/asm/sockios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/asm/termbits.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/asm/termios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/asm/types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/linux/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/linux/if_ppp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/linux/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/i386-linux/linux/uuid.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/ioctls.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/ipcbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/mman.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/msgbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/param.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/posix_types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/resource.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/sembuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/shmbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/siginfo.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/signal.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/socket.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/sockios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/stat.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/statfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/swab.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/termbits.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/termios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/asm/types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/linux/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/linux/if_ppp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/linux/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/riscv64-linux/linux/uuid.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/wasm32-wasi/arpa/nameser_compat.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /lib/sysinc-src/wasm32-wasi/bits/dirent.h: -------------------------------------------------------------------------------- 1 | #include <__struct_dirent.h> 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/wasm32-wasi/bits/hwcap.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/sysinc-src/wasm32-wasi/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/sysinc-src/wasm32-wasi/bits/ioctl_fix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/sysinc-src/wasm32-wasi/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 2 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/wasm32-wasi/bits/limits.h: -------------------------------------------------------------------------------- 1 | #include <__macro_PAGESIZE.h> 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/wasm32-wasi/bits/mman.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/sysinc-src/wasm32-wasi/bits/poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/sysinc-src/wasm32-wasi/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/sysinc-src/wasm32-wasi/bits/socket.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/sysinc-src/wasm32-wasi/bits/stat.h: -------------------------------------------------------------------------------- 1 | #include <__struct_stat.h> 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/wasm32-wasi/memory.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/wasm32-wasi/sys/stropts.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/wasm32-wasi/syscall.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/asm/bpf_perf_event.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/asm/ioctls.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/asm/ipcbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/asm/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/asm/resource.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/asm/setup.h: -------------------------------------------------------------------------------- 1 | /* */ 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/asm/socket.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/asm/sockios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/asm/termbits.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/asm/termios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/asm/types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/linux/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/linux/if_ppp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/linux/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/sysinc-src/x86_64-linux/linux/uuid.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/wasi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/wasi/LICENSE -------------------------------------------------------------------------------- /lib/wasi/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/wasi/LICENSE-APACHE -------------------------------------------------------------------------------- /lib/wasi/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/wasi/LICENSE-MIT -------------------------------------------------------------------------------- /lib/wasi/clocks/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/wasi/clocks/clock.c -------------------------------------------------------------------------------- /lib/wasi/clocks/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/wasi/clocks/times.c -------------------------------------------------------------------------------- /lib/wasi/crt/crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/wasi/crt/crt1.c -------------------------------------------------------------------------------- /lib/wasi/headers-bottom/_/limits.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/wasi/headers-bottom/_/struct/timespec.h: -------------------------------------------------------------------------------- 1 | #include <__struct_timespec.h> 2 | -------------------------------------------------------------------------------- /lib/wasi/headers-bottom/_/struct/timeval.h: -------------------------------------------------------------------------------- 1 | #include <__struct_timeval.h> 2 | -------------------------------------------------------------------------------- /lib/wasi/headers-bottom/common/crt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/wasi/headers-bottom/sched.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/wasi/mman/mman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/wasi/mman/mman.c -------------------------------------------------------------------------------- /lib/wasi/musl/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/wasi/musl/COPYRIGHT -------------------------------------------------------------------------------- /lib/wasi/musl/arch/generic/bits/hwcap.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/generic/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/generic/bits/ioctl_fix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/generic/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 2 2 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/generic/bits/kd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/generic/bits/limits.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/generic/bits/link.h: -------------------------------------------------------------------------------- 1 | typedef uint32_t Elf_Symndx; 2 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/generic/bits/mman.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/generic/bits/poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/generic/bits/ptrace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/generic/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/generic/bits/socket.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/generic/bits/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/generic/bits/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/generic/fp_arch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/wasm32/bits/dirent.h: -------------------------------------------------------------------------------- 1 | #include <__struct_dirent.h> 2 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/wasm32/bits/fcntl.h: -------------------------------------------------------------------------------- 1 | /* Use the WASI libc fcntl implementation bits. */ 2 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/wasm32/bits/ioctl.h: -------------------------------------------------------------------------------- 1 | /* Use the WASI libc ioctl implementation bits. */ 2 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/wasm32/bits/limits.h: -------------------------------------------------------------------------------- 1 | #include <__macro_PAGESIZE.h> 2 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/wasm32/bits/stat.h: -------------------------------------------------------------------------------- 1 | #include <__struct_stat.h> 2 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/wasm32/reloc.h: -------------------------------------------------------------------------------- 1 | #define LDSO_ARCH "wasm32" 2 | -------------------------------------------------------------------------------- /lib/wasi/musl/arch/wasm32/syscall_arch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/wasi/musl/include: -------------------------------------------------------------------------------- 1 | ../../sysinc/wasm32-wasi -------------------------------------------------------------------------------- /lib/wasi/musl/src/internal/defsysinfo.c: -------------------------------------------------------------------------------- 1 | #include "libc.h" 2 | 3 | size_t __sysinfo; 4 | -------------------------------------------------------------------------------- /lib/wasi/sources/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/lib/wasi/sources/sbrk.c -------------------------------------------------------------------------------- /playbit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/playbit.conf -------------------------------------------------------------------------------- /src/abuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/abuf.c -------------------------------------------------------------------------------- /src/abuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/abuf.h -------------------------------------------------------------------------------- /src/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/array.c -------------------------------------------------------------------------------- /src/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/array.h -------------------------------------------------------------------------------- /src/ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/ast.c -------------------------------------------------------------------------------- /src/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/ast.h -------------------------------------------------------------------------------- /src/ast_field.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/ast_field.c -------------------------------------------------------------------------------- /src/ast_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/ast_field.h -------------------------------------------------------------------------------- /src/ast_repr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/ast_repr.c -------------------------------------------------------------------------------- /src/astencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/astencode.c -------------------------------------------------------------------------------- /src/astencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/astencode.h -------------------------------------------------------------------------------- /src/bgtask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/bgtask.c -------------------------------------------------------------------------------- /src/bgtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/bgtask.h -------------------------------------------------------------------------------- /src/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/bits.c -------------------------------------------------------------------------------- /src/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/bits.h -------------------------------------------------------------------------------- /src/buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/buf.c -------------------------------------------------------------------------------- /src/buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/buf.h -------------------------------------------------------------------------------- /src/cbuild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/cbuild.c -------------------------------------------------------------------------------- /src/cbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/cbuild.h -------------------------------------------------------------------------------- /src/cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/cc.c -------------------------------------------------------------------------------- /src/cgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/cgen.c -------------------------------------------------------------------------------- /src/chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/chan.c -------------------------------------------------------------------------------- /src/chan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/chan.h -------------------------------------------------------------------------------- /src/chan_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/chan_test.c -------------------------------------------------------------------------------- /src/check_typedeps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/check_typedeps.c -------------------------------------------------------------------------------- /src/cliopt.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/cliopt.inc.h -------------------------------------------------------------------------------- /src/colib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/colib.h -------------------------------------------------------------------------------- /src/compiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/compiler.c -------------------------------------------------------------------------------- /src/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/compiler.h -------------------------------------------------------------------------------- /src/comptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/comptime.c -------------------------------------------------------------------------------- /src/debugutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/debugutil.c -------------------------------------------------------------------------------- /src/debugutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/debugutil.h -------------------------------------------------------------------------------- /src/diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/diag.c -------------------------------------------------------------------------------- /src/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/diag.h -------------------------------------------------------------------------------- /src/dirwalk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/dirwalk.c -------------------------------------------------------------------------------- /src/dirwalk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/dirwalk.h -------------------------------------------------------------------------------- /src/dlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/dlog.c -------------------------------------------------------------------------------- /src/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/err.c -------------------------------------------------------------------------------- /src/experiments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/experiments.h -------------------------------------------------------------------------------- /src/filetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/filetype.c -------------------------------------------------------------------------------- /src/fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/fmt.c -------------------------------------------------------------------------------- /src/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/fs.c -------------------------------------------------------------------------------- /src/fs_copyfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/fs_copyfile.c -------------------------------------------------------------------------------- /src/fs_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/fs_lock.c -------------------------------------------------------------------------------- /src/future.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/future.c -------------------------------------------------------------------------------- /src/future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/future.h -------------------------------------------------------------------------------- /src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/hash.c -------------------------------------------------------------------------------- /src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/hash.h -------------------------------------------------------------------------------- /src/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/hashtable.c -------------------------------------------------------------------------------- /src/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/hashtable.h -------------------------------------------------------------------------------- /src/import.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/import.c -------------------------------------------------------------------------------- /src/iniparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/iniparse.c -------------------------------------------------------------------------------- /src/iniparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/iniparse.h -------------------------------------------------------------------------------- /src/intscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/intscan.c -------------------------------------------------------------------------------- /src/ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/ir.c -------------------------------------------------------------------------------- /src/ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/ir.h -------------------------------------------------------------------------------- /src/irfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/irfmt.c -------------------------------------------------------------------------------- /src/leb128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/leb128.c -------------------------------------------------------------------------------- /src/leb128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/leb128.h -------------------------------------------------------------------------------- /src/llvm/clang.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/llvm/clang.cc -------------------------------------------------------------------------------- /src/llvm/lld.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/llvm/lld.cc -------------------------------------------------------------------------------- /src/llvm/llvm-ar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/llvm/llvm-ar.cc -------------------------------------------------------------------------------- /src/llvm/llvm-nm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/llvm/llvm-nm.cc -------------------------------------------------------------------------------- /src/llvm/llvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/llvm/llvm.c -------------------------------------------------------------------------------- /src/llvm/llvm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/llvm/llvm.cc -------------------------------------------------------------------------------- /src/llvm/llvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/llvm/llvm.h -------------------------------------------------------------------------------- /src/llvm/llvmimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/llvm/llvmimpl.h -------------------------------------------------------------------------------- /src/loc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/loc.c -------------------------------------------------------------------------------- /src/loc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/loc.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/main_build.c -------------------------------------------------------------------------------- /src/main_selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/main_selftest.c -------------------------------------------------------------------------------- /src/mangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/mangle.c -------------------------------------------------------------------------------- /src/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/map.c -------------------------------------------------------------------------------- /src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/map.h -------------------------------------------------------------------------------- /src/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/mem.c -------------------------------------------------------------------------------- /src/memalloc_bump2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/memalloc_bump2.c -------------------------------------------------------------------------------- /src/ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/ops.c -------------------------------------------------------------------------------- /src/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/ops.h -------------------------------------------------------------------------------- /src/origin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/origin.c -------------------------------------------------------------------------------- /src/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/panic.c -------------------------------------------------------------------------------- /src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/parser.c -------------------------------------------------------------------------------- /src/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/path.c -------------------------------------------------------------------------------- /src/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/path.h -------------------------------------------------------------------------------- /src/pkg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/pkg.c -------------------------------------------------------------------------------- /src/pkgbuild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/pkgbuild.c -------------------------------------------------------------------------------- /src/pkgbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/pkgbuild.h -------------------------------------------------------------------------------- /src/promise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/promise.c -------------------------------------------------------------------------------- /src/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/qsort.c -------------------------------------------------------------------------------- /src/s-expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/s-expr.c -------------------------------------------------------------------------------- /src/s-expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/s-expr.h -------------------------------------------------------------------------------- /src/s-expr_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/s-expr_test.c -------------------------------------------------------------------------------- /src/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/scanner.c -------------------------------------------------------------------------------- /src/scope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/scope.c -------------------------------------------------------------------------------- /src/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/sha256.c -------------------------------------------------------------------------------- /src/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/sha256.h -------------------------------------------------------------------------------- /src/slice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/slice.c -------------------------------------------------------------------------------- /src/slice_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/slice_test.c -------------------------------------------------------------------------------- /src/srcfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/srcfile.c -------------------------------------------------------------------------------- /src/srcfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/srcfile.h -------------------------------------------------------------------------------- /src/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/str.c -------------------------------------------------------------------------------- /src/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/str.h -------------------------------------------------------------------------------- /src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/string.c -------------------------------------------------------------------------------- /src/strlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/strlist.c -------------------------------------------------------------------------------- /src/strlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/strlist.h -------------------------------------------------------------------------------- /src/subproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/subproc.c -------------------------------------------------------------------------------- /src/subproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/subproc.h -------------------------------------------------------------------------------- /src/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/swap.c -------------------------------------------------------------------------------- /src/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/sym.c -------------------------------------------------------------------------------- /src/sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/sym.h -------------------------------------------------------------------------------- /src/sys_homedir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/sys_homedir.c -------------------------------------------------------------------------------- /src/sys_ncpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/sys_ncpu.c -------------------------------------------------------------------------------- /src/sys_vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/sys_vm.c -------------------------------------------------------------------------------- /src/syslib_libcxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/syslib_libcxx.h -------------------------------------------------------------------------------- /src/syslib_libcxxabi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/syslib_libcxxabi.h -------------------------------------------------------------------------------- /src/syslib_librt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/syslib_librt.h -------------------------------------------------------------------------------- /src/syslib_libunwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/syslib_libunwind.h -------------------------------------------------------------------------------- /src/syslib_musl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/syslib_musl.h -------------------------------------------------------------------------------- /src/syslib_wasi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/syslib_wasi.h -------------------------------------------------------------------------------- /src/target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/target.c -------------------------------------------------------------------------------- /src/target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/target.h -------------------------------------------------------------------------------- /src/targets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/targets.h -------------------------------------------------------------------------------- /src/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/thread.c -------------------------------------------------------------------------------- /src/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/thread.h -------------------------------------------------------------------------------- /src/thread_sema.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/thread_sema.c -------------------------------------------------------------------------------- /src/threadpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/threadpool.c -------------------------------------------------------------------------------- /src/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/threadpool.h -------------------------------------------------------------------------------- /src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/time.c -------------------------------------------------------------------------------- /src/tmpbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/tmpbuf.c -------------------------------------------------------------------------------- /src/tmpbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/tmpbuf.h -------------------------------------------------------------------------------- /src/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/tokens.h -------------------------------------------------------------------------------- /src/typecheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/typecheck.c -------------------------------------------------------------------------------- /src/typefun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/typefun.c -------------------------------------------------------------------------------- /src/typeid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/typeid.c -------------------------------------------------------------------------------- /src/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/unicode.c -------------------------------------------------------------------------------- /src/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/unicode.h -------------------------------------------------------------------------------- /src/unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/unittest.c -------------------------------------------------------------------------------- /src/universe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/universe.c -------------------------------------------------------------------------------- /src/userconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/userconfig.c -------------------------------------------------------------------------------- /src/userconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/userconfig.h -------------------------------------------------------------------------------- /src/visibility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/src/visibility.c -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/test/README.md -------------------------------------------------------------------------------- /test/data/add_ints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/test/data/add_ints.c -------------------------------------------------------------------------------- /test/data/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/test/data/hello.c -------------------------------------------------------------------------------- /test/data/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/test/data/hello.cc -------------------------------------------------------------------------------- /test/libtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/test/libtest.sh -------------------------------------------------------------------------------- /test/syntax/comments.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/test/syntax/comments.co -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/test/test.sh -------------------------------------------------------------------------------- /test/tests/c-target-aarch64-macos.11.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-linux.sh -------------------------------------------------------------------------------- /test/tests/c-target-aarch64-macos.12.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-linux.sh -------------------------------------------------------------------------------- /test/tests/c-target-aarch64-macos.13.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-linux.sh -------------------------------------------------------------------------------- /test/tests/c-target-arm-linux.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-linux.sh -------------------------------------------------------------------------------- /test/tests/c-target-arm-none.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-none.sh -------------------------------------------------------------------------------- /test/tests/c-target-i386-linux.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-linux.sh -------------------------------------------------------------------------------- /test/tests/c-target-i386-none.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-none.sh -------------------------------------------------------------------------------- /test/tests/c-target-riscv64-linux.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-linux.sh -------------------------------------------------------------------------------- /test/tests/c-target-riscv64-none.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-none.sh -------------------------------------------------------------------------------- /test/tests/c-target-wasm32-none.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-none.sh -------------------------------------------------------------------------------- /test/tests/c-target-wasm32-wasi.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-linux.sh -------------------------------------------------------------------------------- /test/tests/c-target-wasm64-none.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-none.sh -------------------------------------------------------------------------------- /test/tests/c-target-x86_64-linux.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-linux.sh -------------------------------------------------------------------------------- /test/tests/c-target-x86_64-macos.10.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-linux.sh -------------------------------------------------------------------------------- /test/tests/c-target-x86_64-macos.11.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-linux.sh -------------------------------------------------------------------------------- /test/tests/c-target-x86_64-macos.12.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-linux.sh -------------------------------------------------------------------------------- /test/tests/c-target-x86_64-macos.13.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-linux.sh -------------------------------------------------------------------------------- /test/tests/c-target-x86_64-none.sh: -------------------------------------------------------------------------------- 1 | c-target-aarch64-none.sh -------------------------------------------------------------------------------- /test/tests/c-wasi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/test/tests/c-wasi.sh -------------------------------------------------------------------------------- /test/tests/cxx-wasi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsms/compis/HEAD/test/tests/cxx-wasi.sh -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.1.7 2 | --------------------------------------------------------------------------------