]> git.proxmox.com Git - wasi-libc.git/commit - expected/wasm32-wasi-pthread/defined-symbols.txt
WASI libc prototype implementation.
authorDan Gohman <sunfish@mozilla.com>
Wed, 27 Mar 2019 15:00:00 +0000 (08:00 -0700)
committerDan Gohman <sunfish@mozilla.com>
Wed, 27 Mar 2019 14:59:55 +0000 (07:59 -0700)
commit320054e84f8f2440def3b1c8700cedb8fd697bf8
tree47c51ec4cee3214a1c4e971ecfdf8096ae26bc18
parent0e9850424054d48f6c82e5df70d4738f5760471f
WASI libc prototype implementation.

This incoporates pieces from musl-libc, cloudlibc, cloudabi, libpreopen,
and dlmalloc, as well as a significant amount of new code.
2692 files changed:
LICENSE
Makefile
README.md
basics/include/__errno.h [new file with mode: 0644]
basics/include/__functions_malloc.h [new file with mode: 0644]
basics/include/__functions_memcpy.h [new file with mode: 0644]
basics/include/__macro_PAGESIZE.h [new file with mode: 0644]
basics/include/__struct_stat.h
basics/include/__struct_timespec.h
basics/include/__typedef_blkcnt_t.h
basics/include/__typedef_blksize_t.h
basics/include/__typedef_clock_t.h
basics/include/__typedef_dev_t.h
basics/include/__typedef_gid_t.h
basics/include/__typedef_ino_t.h
basics/include/__typedef_mode_t.h
basics/include/__typedef_nlink_t.h
basics/include/__typedef_off_t.h
basics/include/__typedef_ssize_t.h
basics/include/__typedef_suseconds_t.h
basics/include/__typedef_time_t.h
basics/include/__typedef_uid_t.h
basics/include/errno.h
basics/include/stdlib.h
basics/include/string.h
basics/include/sys/stat.h
basics/include/sys/types.h
basics/include/time.h
basics/include/wchar.h
basics/libc/crt1.c [new file with mode: 0644]
basics/libc/crt1.s [deleted file]
dlmalloc/include/unistd.h
dlmalloc/src/dlmalloc.c [new file with mode: 0644]
dlmalloc/src/malloc.c
dlmalloc/src/wrapper.c [deleted file]
expected/wasm32-wasi/defined-symbols.txt [new file with mode: 0644]
expected/wasm32-wasi/include-all.c [new file with mode: 0644]
expected/wasm32-wasi/predefined-macros.txt [new file with mode: 0644]
expected/wasm32-wasi/undefined-symbols.txt [new file with mode: 0644]
libc-bottom-half/README [new file with mode: 0644]
libc-bottom-half/cloudlibc/LICENSE [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/common/clock.h [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/common/errno.h [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/common/limits.h [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/common/overflow.h [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/common/parser_strtoint.h [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/common/time.h [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/common/tls.h [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/include/_/cdefs.h [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/include/stdlib.h [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/include/sys/capsicum.h [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/arpa/inet/inet_aton.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/arpa/inet/inet_ntop.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/arpa/inet/inet_pton.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/dirent/closedir.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/dirent/dirent_impl.h [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/dirent/dirfd.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/dirent/fdclosedir.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/dirent/fdopendir.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/dirent/opendirat.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/dirent/readdir.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/dirent/rewinddir.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/dirent/scandirat.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/dirent/seekdir.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/dirent/telldir.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/errno/errno.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/fcntl/fcntl.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/fcntl/openat.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/fcntl/posix_fadvise.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/fcntl/posix_fallocate.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/poll/poll.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sched/sched_yield.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/stdio/renameat.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/stdlib/_Exit.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/stdlib/qsort.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/ioctl/ioctl.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/resource/getrusage.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/select/FD_CLR.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/select/FD_COPY.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/select/FD_ISSET.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/select/FD_SET.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/select/FD_ZERO.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/select/pselect.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/select/select.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/socket/getsockopt.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/socket/recv.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/socket/send.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/socket/shutdown.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/socket/socket_impl.h [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/stat/fstat.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/stat/fstatat.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/stat/futimens.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/stat/mkdirat.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/stat/stat_impl.h [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/stat/utimensat.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/time/gettimeofday.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/times/times.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/uio/preadv.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/uio/pwritev.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/uio/readv.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/sys/uio/writev.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/time/CLOCK_MONOTONIC.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/time/CLOCK_PROCESS_CPUTIME_ID.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/time/CLOCK_REALTIME.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/time/CLOCK_THREAD_CPUTIME_ID.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/time/clock.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/time/clock_getres.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/time/clock_gettime.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/time/clock_nanosleep.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/time/nanosleep.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/time/time.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/__wasilibc_rmdirat.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/__wasilibc_rmfileat.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/close.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/faccessat.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/fdatasync.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/fsync.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/ftruncate.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/linkat.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/lseek.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/pread.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/pwrite.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/read.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/readlinkat.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/sleep.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/symlinkat.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/unlinkat.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/usleep.c [new file with mode: 0644]
libc-bottom-half/cloudlibc/src/libc/unistd/write.c [new file with mode: 0644]
libc-bottom-half/crt/crt1.c [new file with mode: 0644]
libc-bottom-half/headers/LICENSE [new file with mode: 0644]
libc-bottom-half/headers/private/_/limits.h [new file with mode: 0644]
libc-bottom-half/headers/private/_/struct/timespec.h [new file with mode: 0644]
libc-bottom-half/headers/private/_/struct/timeval.h [new file with mode: 0644]
libc-bottom-half/headers/private/_/types.h [new file with mode: 0644]
libc-bottom-half/headers/private/assert.h [new file with mode: 0644]
libc-bottom-half/headers/private/common/crt.h [new file with mode: 0644]
libc-bottom-half/headers/private/errno.h [new file with mode: 0644]
libc-bottom-half/headers/private/fcntl.h [new file with mode: 0644]
libc-bottom-half/headers/private/sched.h [new file with mode: 0644]
libc-bottom-half/headers/private/stdarg.h [new file with mode: 0644]
libc-bottom-half/headers/private/stdint.h [new file with mode: 0644]
libc-bottom-half/headers/private/stdio.h [new file with mode: 0644]
libc-bottom-half/headers/private/stdlib.h [new file with mode: 0644]
libc-bottom-half/headers/private/string.h [new file with mode: 0644]
libc-bottom-half/headers/private/sys/mman.h [new file with mode: 0644]
libc-bottom-half/headers/private/threads.h [new file with mode: 0644]
libc-bottom-half/headers/public/__errno_values.h [new file with mode: 0644]
libc-bottom-half/headers/public/__fd_set.h [new file with mode: 0644]
libc-bottom-half/headers/public/__function___isatty.h [new file with mode: 0644]
libc-bottom-half/headers/public/__header_bits_signal.h [new file with mode: 0644]
libc-bottom-half/headers/public/__header_dirent.h [new file with mode: 0644]
libc-bottom-half/headers/public/__header_fcntl.h [new file with mode: 0644]
libc-bottom-half/headers/public/__header_netinet_in.h [new file with mode: 0644]
libc-bottom-half/headers/public/__header_poll.h [new file with mode: 0644]
libc-bottom-half/headers/public/__header_stdlib.h [new file with mode: 0644]
libc-bottom-half/headers/public/__header_string.h [new file with mode: 0644]
libc-bottom-half/headers/public/__header_sys_ioctl.h [new file with mode: 0644]
libc-bottom-half/headers/public/__header_sys_resource.h [new file with mode: 0644]
libc-bottom-half/headers/public/__header_sys_socket.h [new file with mode: 0644]
libc-bottom-half/headers/public/__header_sys_stat.h [new file with mode: 0644]
libc-bottom-half/headers/public/__header_time.h [new file with mode: 0644]
libc-bottom-half/headers/public/__header_unistd.h [new file with mode: 0644]
libc-bottom-half/headers/public/__macro_FD_SETSIZE.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_dirent.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_in6_addr.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_in_addr.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_iovec.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_msghdr.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_pollfd.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_rusage.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_sockaddr.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_sockaddr_in.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_sockaddr_in6.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_sockaddr_storage.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_sockaddr_un.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_timeval.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_tm.h [new file with mode: 0644]
libc-bottom-half/headers/public/__struct_tms.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_DIR.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_clockid_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_fd_set.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_in_addr_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_in_port_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_nfds_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_sa_family_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_sigset_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/__typedef_socklen_t.h [new file with mode: 0644]
libc-bottom-half/headers/public/dirent.h [new file with mode: 0644]
libc-bottom-half/headers/public/errno.h [new file with mode: 0644]
libc-bottom-half/headers/public/fcntl.h [new file with mode: 0644]
libc-bottom-half/headers/public/netinet/in.h [new file with mode: 0644]
libc-bottom-half/headers/public/poll.h [new file with mode: 0644]
libc-bottom-half/headers/public/stdlib.h [new file with mode: 0644]
libc-bottom-half/headers/public/string.h [new file with mode: 0644]
libc-bottom-half/headers/public/sys/ioctl.h [new file with mode: 0644]
libc-bottom-half/headers/public/sys/resource.h [new file with mode: 0644]
libc-bottom-half/headers/public/sys/select.h [new file with mode: 0644]
libc-bottom-half/headers/public/sys/socket.h [new file with mode: 0644]
libc-bottom-half/headers/public/sys/stat.h [new file with mode: 0644]
libc-bottom-half/headers/public/sys/time.h [new file with mode: 0644]
libc-bottom-half/headers/public/sys/times.h [new file with mode: 0644]
libc-bottom-half/headers/public/sys/types.h [new file with mode: 0644]
libc-bottom-half/headers/public/sys/uio.h [new file with mode: 0644]
libc-bottom-half/headers/public/sys/un.h [new file with mode: 0644]
libc-bottom-half/headers/public/time.h [new file with mode: 0644]
libc-bottom-half/headers/public/unistd.h [new file with mode: 0644]
libc-bottom-half/headers/public/wasi/core.h [new file with mode: 0644]
libc-bottom-half/headers/public/wasi/libc.h [new file with mode: 0644]
libc-bottom-half/libpreopen/include/libpreopen.h [new file with mode: 0644]
libc-bottom-half/libpreopen/lib/internal.h [new file with mode: 0644]
libc-bottom-half/libpreopen/lib/libpreopen.c [new file with mode: 0644]
libc-bottom-half/libpreopen/lib/po_err.c [new file with mode: 0644]
libc-bottom-half/libpreopen/lib/po_libc_wrappers.c [new file with mode: 0644]
libc-bottom-half/libpreopen/lib/po_map.c [new file with mode: 0644]
libc-bottom-half/mman/LICENSE [new file with mode: 0644]
libc-bottom-half/mman/mman.c [new file with mode: 0644]
libc-bottom-half/sources/LICENSE [new file with mode: 0644]
libc-bottom-half/sources/__wasilibc_fd_renumber.c [new file with mode: 0644]
libc-bottom-half/sources/abort.c [new file with mode: 0644]
libc-bottom-half/sources/errno.c [new file with mode: 0644]
libc-bottom-half/sources/getentropy.c [new file with mode: 0644]
libc-bottom-half/sources/isatty.c [new file with mode: 0644]
libc-bottom-half/sources/pause.c [new file with mode: 0644]
libc-bottom-half/sources/sbrk.c [new file with mode: 0644]
libc-bottom-half/sources/socket.c [new file with mode: 0644]
libc-bottom-half/sources/string.c [new file with mode: 0644]
libc-top-half/README.md [new file with mode: 0644]
libc-top-half/headers/LICENSE [new file with mode: 0644]
libc-top-half/headers/private/printscan.h [new file with mode: 0644]
libc-top-half/musl/COPYRIGHT [new file with mode: 0644]
libc-top-half/musl/INSTALL [new file with mode: 0644]
libc-top-half/musl/Makefile [new file with mode: 0644]
libc-top-half/musl/README [new file with mode: 0644]
libc-top-half/musl/VERSION [new file with mode: 0644]
libc-top-half/musl/WHATSNEW [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/atomic_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/endian.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/fcntl.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/fenv.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/float.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/hwcap.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/ipc.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/limits.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/msg.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/posix.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/reg.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/sem.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/setjmp.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/shm.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/signal.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/socket.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/stat.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/stdint.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/syscall.h.in [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/bits/user.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/crt_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/pthread_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/reloc.h [new file with mode: 0644]
libc-top-half/musl/arch/aarch64/syscall_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/atomic_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/endian.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/fcntl.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/fenv.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/float.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/hwcap.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/ioctl_fix.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/limits.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/posix.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/ptrace.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/reg.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/setjmp.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/signal.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/stat.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/stdint.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/syscall.h.in [new file with mode: 0644]
libc-top-half/musl/arch/arm/bits/user.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/crt_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/pthread_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/reloc.h [new file with mode: 0644]
libc-top-half/musl/arch/arm/syscall_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/errno.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/fcntl.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/fenv.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/hwcap.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/io.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/ioctl.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/ioctl_fix.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/ipc.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/kd.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/link.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/mman.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/msg.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/poll.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/ptrace.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/resource.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/sem.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/shm.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/socket.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/soundcard.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/statfs.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/termios.h [new file with mode: 0644]
libc-top-half/musl/arch/generic/bits/vt.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/atomic_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/bits/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/arch/i386/bits/endian.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/bits/fenv.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/bits/float.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/bits/io.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/bits/limits.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/bits/mman.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/bits/posix.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/bits/ptrace.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/bits/reg.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/bits/setjmp.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/bits/signal.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/bits/stat.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/bits/stdint.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/bits/syscall.h.in [new file with mode: 0644]
libc-top-half/musl/arch/i386/bits/user.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/crt_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/pthread_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/reloc.h [new file with mode: 0644]
libc-top-half/musl/arch/i386/syscall_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/atomic_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/bits/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/arch/m68k/bits/endian.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/bits/fcntl.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/bits/fenv.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/bits/float.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/bits/limits.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/bits/posix.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/bits/ptrace.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/bits/reg.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/bits/setjmp.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/bits/signal.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/bits/stat.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/bits/stdint.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/bits/syscall.h.in [new file with mode: 0644]
libc-top-half/musl/arch/m68k/bits/user.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/crt_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/pthread_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/reloc.h [new file with mode: 0644]
libc-top-half/musl/arch/m68k/syscall_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/atomic_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/bits/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/bits/endian.h [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/bits/float.h [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/bits/limits.h [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/bits/posix.h [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/bits/reg.h [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/bits/setjmp.h [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/bits/signal.h [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/bits/stat.h [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/bits/stdint.h [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/bits/syscall.h.in [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/bits/user.h [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/crt_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/pthread_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/reloc.h [new file with mode: 0644]
libc-top-half/musl/arch/microblaze/syscall_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/atomic_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/endian.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/errno.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/fcntl.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/fenv.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/float.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/hwcap.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/ioctl.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/limits.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/mman.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/msg.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/poll.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/posix.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/ptrace.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/reg.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/resource.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/sem.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/setjmp.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/shm.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/signal.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/socket.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/stat.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/statfs.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/stdint.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/syscall.h.in [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/termios.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/bits/user.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/crt_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/ksigaction.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/pthread_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/reloc.h [new file with mode: 0644]
libc-top-half/musl/arch/mips/syscall_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/atomic_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/endian.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/errno.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/fcntl.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/fenv.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/float.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/hwcap.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/ioctl.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/ipc.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/limits.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/mman.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/msg.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/poll.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/posix.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/ptrace.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/reg.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/resource.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/sem.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/setjmp.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/shm.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/signal.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/socket.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/stat.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/statfs.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/stdint.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/syscall.h.in [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/termios.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/bits/user.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/crt_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/ksigaction.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/pthread_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/reloc.h [new file with mode: 0644]
libc-top-half/musl/arch/mips64/syscall_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/atomic_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/endian.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/errno.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/fcntl.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/fenv.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/float.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/hwcap.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/ioctl.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/limits.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/mman.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/msg.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/poll.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/posix.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/ptrace.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/reg.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/resource.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/sem.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/setjmp.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/shm.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/signal.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/socket.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/stat.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/statfs.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/stdint.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/syscall.h.in [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/termios.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/bits/user.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/crt_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/ksigaction.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/pthread_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/reloc.h [new file with mode: 0644]
libc-top-half/musl/arch/mipsn32/syscall_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/atomic_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/bits/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/arch/or1k/bits/endian.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/bits/float.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/bits/ipc.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/bits/limits.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/bits/msg.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/bits/posix.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/bits/reg.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/bits/setjmp.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/bits/signal.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/bits/stat.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/bits/stdint.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/bits/syscall.h.in [new file with mode: 0644]
libc-top-half/musl/arch/or1k/bits/user.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/crt_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/pthread_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/reloc.h [new file with mode: 0644]
libc-top-half/musl/arch/or1k/syscall_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/atomic_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/endian.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/errno.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/fcntl.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/fenv.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/float.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/hwcap.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/ioctl.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/ipc.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/limits.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/mman.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/msg.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/posix.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/ptrace.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/reg.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/sem.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/setjmp.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/shm.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/signal.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/socket.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/stat.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/stdint.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/syscall.h.in [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/termios.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/bits/user.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/crt_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/pthread_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/reloc.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc/syscall_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/atomic_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/endian.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/errno.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/fcntl.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/fenv.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/float.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/hwcap.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/ioctl.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/ipc.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/limits.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/mman.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/msg.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/posix.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/ptrace.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/reg.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/sem.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/setjmp.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/shm.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/signal.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/socket.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/stat.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/stdint.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/syscall.h.in [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/termios.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/bits/user.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/crt_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/pthread_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/reloc.h [new file with mode: 0644]
libc-top-half/musl/arch/powerpc64/syscall_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/atomic_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/endian.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/fcntl.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/fenv.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/float.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/hwcap.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/ioctl_fix.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/ipc.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/limits.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/link.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/msg.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/posix.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/ptrace.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/reg.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/sem.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/setjmp.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/shm.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/signal.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/socket.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/stat.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/statfs.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/stdint.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/syscall.h.in [new file with mode: 0644]
libc-top-half/musl/arch/s390x/bits/user.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/crt_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/pthread_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/reloc.h [new file with mode: 0644]
libc-top-half/musl/arch/s390x/syscall_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/atomic_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/bits/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/arch/sh/bits/endian.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/bits/fenv.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/bits/float.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/bits/hwcap.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/bits/ioctl.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/bits/limits.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/bits/posix.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/bits/ptrace.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/bits/setjmp.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/bits/shm.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/bits/signal.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/bits/stat.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/bits/stdint.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/bits/syscall.h.in [new file with mode: 0644]
libc-top-half/musl/arch/sh/bits/user.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/crt_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/ksigaction.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/pthread_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/reloc.h [new file with mode: 0644]
libc-top-half/musl/arch/sh/syscall_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/wasm32/atomic_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/wasm32/bits/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/arch/wasm32/bits/endian.h [new file with mode: 0644]
libc-top-half/musl/arch/wasm32/bits/fcntl.h [new file with mode: 0644]
libc-top-half/musl/arch/wasm32/bits/float.h [new file with mode: 0644]
libc-top-half/musl/arch/wasm32/bits/ioctl.h [new file with mode: 0644]
libc-top-half/musl/arch/wasm32/bits/limits.h [new file with mode: 0644]
libc-top-half/musl/arch/wasm32/bits/posix.h [new file with mode: 0644]
libc-top-half/musl/arch/wasm32/bits/reg.h [new file with mode: 0644]
libc-top-half/musl/arch/wasm32/bits/signal.h [new file with mode: 0644]
libc-top-half/musl/arch/wasm32/bits/socket.h [new file with mode: 0644]
libc-top-half/musl/arch/wasm32/bits/stat.h [new file with mode: 0644]
libc-top-half/musl/arch/wasm32/bits/stdint.h [new file with mode: 0644]
libc-top-half/musl/arch/wasm32/pthread_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/wasm32/reloc.h [new file with mode: 0644]
libc-top-half/musl/arch/wasm32/syscall_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/atomic_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/endian.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/fcntl.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/fenv.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/float.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/io.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/ipc.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/limits.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/mman.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/msg.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/posix.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/ptrace.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/reg.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/setjmp.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/shm.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/signal.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/socket.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/stat.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/statfs.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/stdint.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/syscall.h.in [new file with mode: 0644]
libc-top-half/musl/arch/x32/bits/user.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/crt_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/ksigaction.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/pthread_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/reloc.h [new file with mode: 0644]
libc-top-half/musl/arch/x32/syscall_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/atomic_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/endian.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/fcntl.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/fenv.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/float.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/io.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/ipc.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/limits.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/mman.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/msg.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/posix.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/ptrace.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/reg.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/setjmp.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/shm.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/signal.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/socket.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/stat.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/stdint.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/syscall.h.in [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/bits/user.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/crt_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/ksigaction.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/pthread_arch.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/reloc.h [new file with mode: 0644]
libc-top-half/musl/arch/x86_64/syscall_arch.h [new file with mode: 0644]
libc-top-half/musl/configure [new file with mode: 0755]
libc-top-half/musl/crt/Scrt1.c [new file with mode: 0644]
libc-top-half/musl/crt/aarch64/crti.s [new file with mode: 0644]
libc-top-half/musl/crt/aarch64/crtn.s [new file with mode: 0644]
libc-top-half/musl/crt/arm/crti.s [new file with mode: 0644]
libc-top-half/musl/crt/arm/crtn.s [new file with mode: 0644]
libc-top-half/musl/crt/crt1.c [new file with mode: 0644]
libc-top-half/musl/crt/crti.c [new file with mode: 0644]
libc-top-half/musl/crt/crtn.c [new file with mode: 0644]
libc-top-half/musl/crt/i386/crti.s [new file with mode: 0644]
libc-top-half/musl/crt/i386/crtn.s [new file with mode: 0644]
libc-top-half/musl/crt/microblaze/crti.s [new file with mode: 0644]
libc-top-half/musl/crt/microblaze/crtn.s [new file with mode: 0644]
libc-top-half/musl/crt/mips/crti.s [new file with mode: 0644]
libc-top-half/musl/crt/mips/crtn.s [new file with mode: 0644]
libc-top-half/musl/crt/mips64/crti.s [new file with mode: 0644]
libc-top-half/musl/crt/mips64/crtn.s [new file with mode: 0644]
libc-top-half/musl/crt/mipsn32/crti.s [new file with mode: 0644]
libc-top-half/musl/crt/mipsn32/crtn.s [new file with mode: 0644]
libc-top-half/musl/crt/or1k/crti.s [new file with mode: 0644]
libc-top-half/musl/crt/or1k/crtn.s [new file with mode: 0644]
libc-top-half/musl/crt/powerpc/crti.s [new file with mode: 0644]
libc-top-half/musl/crt/powerpc/crtn.s [new file with mode: 0644]
libc-top-half/musl/crt/powerpc64/crti.s [new file with mode: 0644]
libc-top-half/musl/crt/powerpc64/crtn.s [new file with mode: 0644]
libc-top-half/musl/crt/rcrt1.c [new file with mode: 0644]
libc-top-half/musl/crt/s390x/crti.s [new file with mode: 0644]
libc-top-half/musl/crt/s390x/crtn.s [new file with mode: 0644]
libc-top-half/musl/crt/sh/crti.s [new file with mode: 0644]
libc-top-half/musl/crt/sh/crtn.s [new file with mode: 0644]
libc-top-half/musl/crt/x32/crti.s [new file with mode: 0644]
libc-top-half/musl/crt/x32/crtn.s [new file with mode: 0644]
libc-top-half/musl/crt/x86_64/crti.s [new file with mode: 0644]
libc-top-half/musl/crt/x86_64/crtn.s [new file with mode: 0644]
libc-top-half/musl/dist/config.mak [new file with mode: 0644]
libc-top-half/musl/dynamic.list [new file with mode: 0644]
libc-top-half/musl/include/aio.h [new file with mode: 0644]
libc-top-half/musl/include/alloca.h [new file with mode: 0644]
libc-top-half/musl/include/alltypes.h.in [new file with mode: 0644]
libc-top-half/musl/include/ar.h [new file with mode: 0644]
libc-top-half/musl/include/arpa/ftp.h [new file with mode: 0644]
libc-top-half/musl/include/arpa/inet.h [new file with mode: 0644]
libc-top-half/musl/include/arpa/nameser.h [new file with mode: 0644]
libc-top-half/musl/include/arpa/nameser_compat.h [new file with mode: 0644]
libc-top-half/musl/include/arpa/telnet.h [new file with mode: 0644]
libc-top-half/musl/include/arpa/tftp.h [new file with mode: 0644]
libc-top-half/musl/include/assert.h [new file with mode: 0644]
libc-top-half/musl/include/byteswap.h [new file with mode: 0644]
libc-top-half/musl/include/complex.h [new file with mode: 0644]
libc-top-half/musl/include/cpio.h [new file with mode: 0644]
libc-top-half/musl/include/crypt.h [new file with mode: 0644]
libc-top-half/musl/include/ctype.h [new file with mode: 0644]
libc-top-half/musl/include/dirent.h [new file with mode: 0644]
libc-top-half/musl/include/dlfcn.h [new file with mode: 0644]
libc-top-half/musl/include/elf.h [new file with mode: 0644]
libc-top-half/musl/include/endian.h [new file with mode: 0644]
libc-top-half/musl/include/err.h [new file with mode: 0644]
libc-top-half/musl/include/errno.h [new file with mode: 0644]
libc-top-half/musl/include/fcntl.h [new file with mode: 0644]
libc-top-half/musl/include/features.h [new file with mode: 0644]
libc-top-half/musl/include/fenv.h [new file with mode: 0644]
libc-top-half/musl/include/float.h [new file with mode: 0644]
libc-top-half/musl/include/fmtmsg.h [new file with mode: 0644]
libc-top-half/musl/include/fnmatch.h [new file with mode: 0644]
libc-top-half/musl/include/ftw.h [new file with mode: 0644]
libc-top-half/musl/include/getopt.h [new file with mode: 0644]
libc-top-half/musl/include/glob.h [new file with mode: 0644]
libc-top-half/musl/include/grp.h [new file with mode: 0644]
libc-top-half/musl/include/iconv.h [new file with mode: 0644]
libc-top-half/musl/include/ifaddrs.h [new file with mode: 0644]
libc-top-half/musl/include/inttypes.h [new file with mode: 0644]
libc-top-half/musl/include/iso646.h [new file with mode: 0644]
libc-top-half/musl/include/langinfo.h [new file with mode: 0644]
libc-top-half/musl/include/lastlog.h [new file with mode: 0644]
libc-top-half/musl/include/libgen.h [new file with mode: 0644]
libc-top-half/musl/include/libintl.h [new file with mode: 0644]
libc-top-half/musl/include/limits.h [new file with mode: 0644]
libc-top-half/musl/include/link.h [new file with mode: 0644]
libc-top-half/musl/include/locale.h [new file with mode: 0644]
libc-top-half/musl/include/malloc.h [new file with mode: 0644]
libc-top-half/musl/include/math.h [new file with mode: 0644]
libc-top-half/musl/include/memory.h [new file with mode: 0644]
libc-top-half/musl/include/mntent.h [new file with mode: 0644]
libc-top-half/musl/include/monetary.h [new file with mode: 0644]
libc-top-half/musl/include/mqueue.h [new file with mode: 0644]
libc-top-half/musl/include/net/ethernet.h [new file with mode: 0644]
libc-top-half/musl/include/net/if.h [new file with mode: 0644]
libc-top-half/musl/include/net/if_arp.h [new file with mode: 0644]
libc-top-half/musl/include/net/route.h [new file with mode: 0644]
libc-top-half/musl/include/netdb.h [new file with mode: 0644]
libc-top-half/musl/include/netinet/ether.h [new file with mode: 0644]
libc-top-half/musl/include/netinet/icmp6.h [new file with mode: 0644]
libc-top-half/musl/include/netinet/if_ether.h [new file with mode: 0644]
libc-top-half/musl/include/netinet/igmp.h [new file with mode: 0644]
libc-top-half/musl/include/netinet/in.h [new file with mode: 0644]
libc-top-half/musl/include/netinet/in_systm.h [new file with mode: 0644]
libc-top-half/musl/include/netinet/ip.h [new file with mode: 0644]
libc-top-half/musl/include/netinet/ip6.h [new file with mode: 0644]
libc-top-half/musl/include/netinet/ip_icmp.h [new file with mode: 0644]
libc-top-half/musl/include/netinet/tcp.h [new file with mode: 0644]
libc-top-half/musl/include/netinet/udp.h [new file with mode: 0644]
libc-top-half/musl/include/netpacket/packet.h [new file with mode: 0644]
libc-top-half/musl/include/nl_types.h [new file with mode: 0644]
libc-top-half/musl/include/paths.h [new file with mode: 0644]
libc-top-half/musl/include/poll.h [new file with mode: 0644]
libc-top-half/musl/include/pthread.h [new file with mode: 0644]
libc-top-half/musl/include/pty.h [new file with mode: 0644]
libc-top-half/musl/include/pwd.h [new file with mode: 0644]
libc-top-half/musl/include/regex.h [new file with mode: 0644]
libc-top-half/musl/include/resolv.h [new file with mode: 0644]
libc-top-half/musl/include/sched.h [new file with mode: 0644]
libc-top-half/musl/include/scsi/scsi.h [new file with mode: 0644]
libc-top-half/musl/include/scsi/scsi_ioctl.h [new file with mode: 0644]
libc-top-half/musl/include/scsi/sg.h [new file with mode: 0644]
libc-top-half/musl/include/search.h [new file with mode: 0644]
libc-top-half/musl/include/semaphore.h [new file with mode: 0644]
libc-top-half/musl/include/setjmp.h [new file with mode: 0644]
libc-top-half/musl/include/shadow.h [new file with mode: 0644]
libc-top-half/musl/include/signal.h [new file with mode: 0644]
libc-top-half/musl/include/spawn.h [new file with mode: 0644]
libc-top-half/musl/include/stdalign.h [new file with mode: 0644]
libc-top-half/musl/include/stdarg.h [new file with mode: 0644]
libc-top-half/musl/include/stdbool.h [new file with mode: 0644]
libc-top-half/musl/include/stdc-predef.h [new file with mode: 0644]
libc-top-half/musl/include/stddef.h [new file with mode: 0644]
libc-top-half/musl/include/stdint.h [new file with mode: 0644]
libc-top-half/musl/include/stdio.h [new file with mode: 0644]
libc-top-half/musl/include/stdio_ext.h [new file with mode: 0644]
libc-top-half/musl/include/stdlib.h [new file with mode: 0644]
libc-top-half/musl/include/stdnoreturn.h [new file with mode: 0644]
libc-top-half/musl/include/string.h [new file with mode: 0644]
libc-top-half/musl/include/strings.h [new file with mode: 0644]
libc-top-half/musl/include/stropts.h [new file with mode: 0644]
libc-top-half/musl/include/sys/acct.h [new file with mode: 0644]
libc-top-half/musl/include/sys/auxv.h [new file with mode: 0644]
libc-top-half/musl/include/sys/cachectl.h [new file with mode: 0644]
libc-top-half/musl/include/sys/dir.h [new file with mode: 0644]
libc-top-half/musl/include/sys/epoll.h [new file with mode: 0644]
libc-top-half/musl/include/sys/errno.h [new file with mode: 0644]
libc-top-half/musl/include/sys/eventfd.h [new file with mode: 0644]
libc-top-half/musl/include/sys/fanotify.h [new file with mode: 0644]
libc-top-half/musl/include/sys/fcntl.h [new file with mode: 0644]
libc-top-half/musl/include/sys/file.h [new file with mode: 0644]
libc-top-half/musl/include/sys/fsuid.h [new file with mode: 0644]
libc-top-half/musl/include/sys/inotify.h [new file with mode: 0644]
libc-top-half/musl/include/sys/io.h [new file with mode: 0644]
libc-top-half/musl/include/sys/ioctl.h [new file with mode: 0644]
libc-top-half/musl/include/sys/ipc.h [new file with mode: 0644]
libc-top-half/musl/include/sys/kd.h [new file with mode: 0644]
libc-top-half/musl/include/sys/klog.h [new file with mode: 0644]
libc-top-half/musl/include/sys/mman.h [new file with mode: 0644]
libc-top-half/musl/include/sys/mount.h [new file with mode: 0644]
libc-top-half/musl/include/sys/msg.h [new file with mode: 0644]
libc-top-half/musl/include/sys/mtio.h [new file with mode: 0644]
libc-top-half/musl/include/sys/param.h [new file with mode: 0644]
libc-top-half/musl/include/sys/personality.h [new file with mode: 0644]
libc-top-half/musl/include/sys/poll.h [new file with mode: 0644]
libc-top-half/musl/include/sys/prctl.h [new file with mode: 0644]
libc-top-half/musl/include/sys/procfs.h [new file with mode: 0644]
libc-top-half/musl/include/sys/ptrace.h [new file with mode: 0644]
libc-top-half/musl/include/sys/quota.h [new file with mode: 0644]
libc-top-half/musl/include/sys/random.h [new file with mode: 0644]
libc-top-half/musl/include/sys/reboot.h [new file with mode: 0644]
libc-top-half/musl/include/sys/reg.h [new file with mode: 0644]
libc-top-half/musl/include/sys/resource.h [new file with mode: 0644]
libc-top-half/musl/include/sys/select.h [new file with mode: 0644]
libc-top-half/musl/include/sys/sem.h [new file with mode: 0644]
libc-top-half/musl/include/sys/sendfile.h [new file with mode: 0644]
libc-top-half/musl/include/sys/shm.h [new file with mode: 0644]
libc-top-half/musl/include/sys/signal.h [new file with mode: 0644]
libc-top-half/musl/include/sys/signalfd.h [new file with mode: 0644]
libc-top-half/musl/include/sys/socket.h [new file with mode: 0644]
libc-top-half/musl/include/sys/soundcard.h [new file with mode: 0644]
libc-top-half/musl/include/sys/stat.h [new file with mode: 0644]
libc-top-half/musl/include/sys/statfs.h [new file with mode: 0644]
libc-top-half/musl/include/sys/statvfs.h [new file with mode: 0644]
libc-top-half/musl/include/sys/stropts.h [new file with mode: 0644]
libc-top-half/musl/include/sys/swap.h [new file with mode: 0644]
libc-top-half/musl/include/sys/syscall.h [new file with mode: 0644]
libc-top-half/musl/include/sys/sysinfo.h [new file with mode: 0644]
libc-top-half/musl/include/sys/syslog.h [new file with mode: 0644]
libc-top-half/musl/include/sys/sysmacros.h [new file with mode: 0644]
libc-top-half/musl/include/sys/termios.h [new file with mode: 0644]
libc-top-half/musl/include/sys/time.h [new file with mode: 0644]
libc-top-half/musl/include/sys/timeb.h [new file with mode: 0644]
libc-top-half/musl/include/sys/timerfd.h [new file with mode: 0644]
libc-top-half/musl/include/sys/times.h [new file with mode: 0644]
libc-top-half/musl/include/sys/timex.h [new file with mode: 0644]
libc-top-half/musl/include/sys/ttydefaults.h [new file with mode: 0644]
libc-top-half/musl/include/sys/types.h [new file with mode: 0644]
libc-top-half/musl/include/sys/ucontext.h [new file with mode: 0644]
libc-top-half/musl/include/sys/uio.h [new file with mode: 0644]
libc-top-half/musl/include/sys/un.h [new file with mode: 0644]
libc-top-half/musl/include/sys/user.h [new file with mode: 0644]
libc-top-half/musl/include/sys/utsname.h [new file with mode: 0644]
libc-top-half/musl/include/sys/vfs.h [new file with mode: 0644]
libc-top-half/musl/include/sys/vt.h [new file with mode: 0644]
libc-top-half/musl/include/sys/wait.h [new file with mode: 0644]
libc-top-half/musl/include/sys/xattr.h [new file with mode: 0644]
libc-top-half/musl/include/syscall.h [new file with mode: 0644]
libc-top-half/musl/include/sysexits.h [new file with mode: 0644]
libc-top-half/musl/include/syslog.h [new file with mode: 0644]
libc-top-half/musl/include/tar.h [new file with mode: 0644]
libc-top-half/musl/include/termios.h [new file with mode: 0644]
libc-top-half/musl/include/tgmath.h [new file with mode: 0644]
libc-top-half/musl/include/threads.h [new file with mode: 0644]
libc-top-half/musl/include/time.h [new file with mode: 0644]
libc-top-half/musl/include/uchar.h [new file with mode: 0644]
libc-top-half/musl/include/ucontext.h [new file with mode: 0644]
libc-top-half/musl/include/ulimit.h [new file with mode: 0644]
libc-top-half/musl/include/unistd.h [new file with mode: 0644]
libc-top-half/musl/include/utime.h [new file with mode: 0644]
libc-top-half/musl/include/utmp.h [new file with mode: 0644]
libc-top-half/musl/include/utmpx.h [new file with mode: 0644]
libc-top-half/musl/include/values.h [new file with mode: 0644]
libc-top-half/musl/include/wait.h [new file with mode: 0644]
libc-top-half/musl/include/wchar.h [new file with mode: 0644]
libc-top-half/musl/include/wctype.h [new file with mode: 0644]
libc-top-half/musl/include/wordexp.h [new file with mode: 0644]
libc-top-half/musl/ldso/dlstart.c [new file with mode: 0644]
libc-top-half/musl/ldso/dynlink.c [new file with mode: 0644]
libc-top-half/musl/src/aio/aio.c [new file with mode: 0644]
libc-top-half/musl/src/aio/aio_suspend.c [new file with mode: 0644]
libc-top-half/musl/src/aio/lio_listio.c [new file with mode: 0644]
libc-top-half/musl/src/complex/__cexp.c [new file with mode: 0644]
libc-top-half/musl/src/complex/__cexpf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cabs.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cabsf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cabsl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cacos.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cacosf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cacosh.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cacoshf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cacoshl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cacosl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/carg.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cargf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cargl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/casin.c [new file with mode: 0644]
libc-top-half/musl/src/complex/casinf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/casinh.c [new file with mode: 0644]
libc-top-half/musl/src/complex/casinhf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/casinhl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/casinl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/catan.c [new file with mode: 0644]
libc-top-half/musl/src/complex/catanf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/catanh.c [new file with mode: 0644]
libc-top-half/musl/src/complex/catanhf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/catanhl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/catanl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/ccos.c [new file with mode: 0644]
libc-top-half/musl/src/complex/ccosf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/ccosh.c [new file with mode: 0644]
libc-top-half/musl/src/complex/ccoshf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/ccoshl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/ccosl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cexp.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cexpf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cexpl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cimag.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cimagf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cimagl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/clog.c [new file with mode: 0644]
libc-top-half/musl/src/complex/clogf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/clogl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/conj.c [new file with mode: 0644]
libc-top-half/musl/src/complex/conjf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/conjl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cpow.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cpowf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cpowl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cproj.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cprojf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/cprojl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/creal.c [new file with mode: 0644]
libc-top-half/musl/src/complex/crealf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/creall.c [new file with mode: 0644]
libc-top-half/musl/src/complex/csin.c [new file with mode: 0644]
libc-top-half/musl/src/complex/csinf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/csinh.c [new file with mode: 0644]
libc-top-half/musl/src/complex/csinhf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/csinhl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/csinl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/csqrt.c [new file with mode: 0644]
libc-top-half/musl/src/complex/csqrtf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/csqrtl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/ctan.c [new file with mode: 0644]
libc-top-half/musl/src/complex/ctanf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/ctanh.c [new file with mode: 0644]
libc-top-half/musl/src/complex/ctanhf.c [new file with mode: 0644]
libc-top-half/musl/src/complex/ctanhl.c [new file with mode: 0644]
libc-top-half/musl/src/complex/ctanl.c [new file with mode: 0644]
libc-top-half/musl/src/conf/confstr.c [new file with mode: 0644]
libc-top-half/musl/src/conf/fpathconf.c [new file with mode: 0644]
libc-top-half/musl/src/conf/legacy.c [new file with mode: 0644]
libc-top-half/musl/src/conf/pathconf.c [new file with mode: 0644]
libc-top-half/musl/src/conf/sysconf.c [new file with mode: 0644]
libc-top-half/musl/src/crypt/crypt.c [new file with mode: 0644]
libc-top-half/musl/src/crypt/crypt_blowfish.c [new file with mode: 0644]
libc-top-half/musl/src/crypt/crypt_des.c [new file with mode: 0644]
libc-top-half/musl/src/crypt/crypt_des.h [new file with mode: 0644]
libc-top-half/musl/src/crypt/crypt_md5.c [new file with mode: 0644]
libc-top-half/musl/src/crypt/crypt_r.c [new file with mode: 0644]
libc-top-half/musl/src/crypt/crypt_sha256.c [new file with mode: 0644]
libc-top-half/musl/src/crypt/crypt_sha512.c [new file with mode: 0644]
libc-top-half/musl/src/crypt/encrypt.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/__ctype_b_loc.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/__ctype_get_mb_cur_max.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/__ctype_tolower_loc.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/__ctype_toupper_loc.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/alpha.h [new file with mode: 0644]
libc-top-half/musl/src/ctype/isalnum.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/isalpha.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/isascii.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/isblank.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/iscntrl.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/isdigit.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/isgraph.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/islower.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/isprint.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/ispunct.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/isspace.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/isupper.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/iswalnum.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/iswalpha.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/iswblank.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/iswcntrl.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/iswctype.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/iswdigit.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/iswgraph.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/iswlower.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/iswprint.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/iswpunct.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/iswspace.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/iswupper.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/iswxdigit.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/isxdigit.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/nonspacing.h [new file with mode: 0644]
libc-top-half/musl/src/ctype/punct.h [new file with mode: 0644]
libc-top-half/musl/src/ctype/toascii.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/tolower.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/toupper.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/towctrans.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/wcswidth.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/wctrans.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/wcwidth.c [new file with mode: 0644]
libc-top-half/musl/src/ctype/wide.h [new file with mode: 0644]
libc-top-half/musl/src/dirent/__dirent.h [new file with mode: 0644]
libc-top-half/musl/src/dirent/alphasort.c [new file with mode: 0644]
libc-top-half/musl/src/dirent/closedir.c [new file with mode: 0644]
libc-top-half/musl/src/dirent/dirfd.c [new file with mode: 0644]
libc-top-half/musl/src/dirent/fdopendir.c [new file with mode: 0644]
libc-top-half/musl/src/dirent/opendir.c [new file with mode: 0644]
libc-top-half/musl/src/dirent/readdir.c [new file with mode: 0644]
libc-top-half/musl/src/dirent/readdir_r.c [new file with mode: 0644]
libc-top-half/musl/src/dirent/rewinddir.c [new file with mode: 0644]
libc-top-half/musl/src/dirent/scandir.c [new file with mode: 0644]
libc-top-half/musl/src/dirent/seekdir.c [new file with mode: 0644]
libc-top-half/musl/src/dirent/telldir.c [new file with mode: 0644]
libc-top-half/musl/src/dirent/versionsort.c [new file with mode: 0644]
libc-top-half/musl/src/env/__environ.c [new file with mode: 0644]
libc-top-half/musl/src/env/__init_tls.c [new file with mode: 0644]
libc-top-half/musl/src/env/__libc_start_main.c [new file with mode: 0644]
libc-top-half/musl/src/env/__reset_tls.c [new file with mode: 0644]
libc-top-half/musl/src/env/__stack_chk_fail.c [new file with mode: 0644]
libc-top-half/musl/src/env/clearenv.c [new file with mode: 0644]
libc-top-half/musl/src/env/getenv.c [new file with mode: 0644]
libc-top-half/musl/src/env/putenv.c [new file with mode: 0644]
libc-top-half/musl/src/env/setenv.c [new file with mode: 0644]
libc-top-half/musl/src/env/unsetenv.c [new file with mode: 0644]
libc-top-half/musl/src/errno/__errno_location.c [new file with mode: 0644]
libc-top-half/musl/src/errno/__strerror.h [new file with mode: 0644]
libc-top-half/musl/src/errno/strerror.c [new file with mode: 0644]
libc-top-half/musl/src/exit/_Exit.c [new file with mode: 0644]
libc-top-half/musl/src/exit/abort.c [new file with mode: 0644]
libc-top-half/musl/src/exit/arm/__aeabi_atexit.c [new file with mode: 0644]
libc-top-half/musl/src/exit/assert.c [new file with mode: 0644]
libc-top-half/musl/src/exit/at_quick_exit.c [new file with mode: 0644]
libc-top-half/musl/src/exit/atexit.c [new file with mode: 0644]
libc-top-half/musl/src/exit/exit.c [new file with mode: 0644]
libc-top-half/musl/src/exit/quick_exit.c [new file with mode: 0644]
libc-top-half/musl/src/fcntl/creat.c [new file with mode: 0644]
libc-top-half/musl/src/fcntl/fcntl.c [new file with mode: 0644]
libc-top-half/musl/src/fcntl/open.c [new file with mode: 0644]
libc-top-half/musl/src/fcntl/openat.c [new file with mode: 0644]
libc-top-half/musl/src/fcntl/posix_fadvise.c [new file with mode: 0644]
libc-top-half/musl/src/fcntl/posix_fallocate.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/__flt_rounds.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/aarch64/fenv.s [new file with mode: 0644]
libc-top-half/musl/src/fenv/arm/fenv-hf.S [new file with mode: 0644]
libc-top-half/musl/src/fenv/arm/fenv.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/fegetexceptflag.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/feholdexcept.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/fenv.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/fesetexceptflag.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/fesetround.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/feupdateenv.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/i386/fenv.s [new file with mode: 0644]
libc-top-half/musl/src/fenv/m68k/fenv.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/mips/fenv-sf.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/mips/fenv.S [new file with mode: 0644]
libc-top-half/musl/src/fenv/mips64/fenv-sf.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/mips64/fenv.S [new file with mode: 0644]
libc-top-half/musl/src/fenv/mipsn32/fenv-sf.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/mipsn32/fenv.S [new file with mode: 0644]
libc-top-half/musl/src/fenv/powerpc/fenv-sf.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/powerpc/fenv.S [new file with mode: 0644]
libc-top-half/musl/src/fenv/powerpc64/fenv.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/s390x/fenv.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/sh/fenv-nofpu.c [new file with mode: 0644]
libc-top-half/musl/src/fenv/sh/fenv.S [new file with mode: 0644]
libc-top-half/musl/src/fenv/x32/fenv.s [new file with mode: 0644]
libc-top-half/musl/src/fenv/x86_64/fenv.s [new file with mode: 0644]
libc-top-half/musl/src/include/arpa/inet.h [new file with mode: 0644]
libc-top-half/musl/src/include/crypt.h [new file with mode: 0644]
libc-top-half/musl/src/include/errno.h [new file with mode: 0644]
libc-top-half/musl/src/include/features.h [new file with mode: 0644]
libc-top-half/musl/src/include/langinfo.h [new file with mode: 0644]
libc-top-half/musl/src/include/pthread.h [new file with mode: 0644]
libc-top-half/musl/src/include/resolv.h [new file with mode: 0644]
libc-top-half/musl/src/include/signal.h [new file with mode: 0644]
libc-top-half/musl/src/include/stdio.h [new file with mode: 0644]
libc-top-half/musl/src/include/stdlib.h [new file with mode: 0644]
libc-top-half/musl/src/include/string.h [new file with mode: 0644]
libc-top-half/musl/src/include/sys/auxv.h [new file with mode: 0644]
libc-top-half/musl/src/include/sys/mman.h [new file with mode: 0644]
libc-top-half/musl/src/include/sys/sysinfo.h [new file with mode: 0644]
libc-top-half/musl/src/include/sys/time.h [new file with mode: 0644]
libc-top-half/musl/src/include/time.h [new file with mode: 0644]
libc-top-half/musl/src/include/unistd.h [new file with mode: 0644]
libc-top-half/musl/src/internal/aarch64/syscall.s [new file with mode: 0644]
libc-top-half/musl/src/internal/arm/syscall.s [new file with mode: 0644]
libc-top-half/musl/src/internal/atomic.h [new file with mode: 0644]
libc-top-half/musl/src/internal/dynlink.h [new file with mode: 0644]
libc-top-half/musl/src/internal/fdpic_crt.h [new file with mode: 0644]
libc-top-half/musl/src/internal/floatscan.c [new file with mode: 0644]
libc-top-half/musl/src/internal/floatscan.h [new file with mode: 0644]
libc-top-half/musl/src/internal/futex.h [new file with mode: 0644]
libc-top-half/musl/src/internal/i386/syscall.s [new file with mode: 0644]
libc-top-half/musl/src/internal/intscan.c [new file with mode: 0644]
libc-top-half/musl/src/internal/intscan.h [new file with mode: 0644]
libc-top-half/musl/src/internal/ksigaction.h [new file with mode: 0644]
libc-top-half/musl/src/internal/libc.c [new file with mode: 0644]
libc-top-half/musl/src/internal/libc.h [new file with mode: 0644]
libc-top-half/musl/src/internal/libm.h [new file with mode: 0644]
libc-top-half/musl/src/internal/locale_impl.h [new file with mode: 0644]
libc-top-half/musl/src/internal/lock.h [new file with mode: 0644]
libc-top-half/musl/src/internal/m68k/syscall.s [new file with mode: 0644]
libc-top-half/musl/src/internal/malloc_impl.h [new file with mode: 0644]
libc-top-half/musl/src/internal/microblaze/syscall.s [new file with mode: 0644]
libc-top-half/musl/src/internal/mips/syscall.s [new file with mode: 0644]
libc-top-half/musl/src/internal/mips64/syscall.s [new file with mode: 0644]
libc-top-half/musl/src/internal/mipsn32/syscall.s [new file with mode: 0644]
libc-top-half/musl/src/internal/or1k/syscall.s [new file with mode: 0644]
libc-top-half/musl/src/internal/powerpc/syscall.s [new file with mode: 0644]
libc-top-half/musl/src/internal/powerpc64/syscall.s [new file with mode: 0644]
libc-top-half/musl/src/internal/procfdname.c [new file with mode: 0644]
libc-top-half/musl/src/internal/pthread_impl.h [new file with mode: 0644]
libc-top-half/musl/src/internal/s390x/syscall.s [new file with mode: 0644]
libc-top-half/musl/src/internal/sh/__shcall.c [new file with mode: 0644]
libc-top-half/musl/src/internal/sh/syscall.s [new file with mode: 0644]
libc-top-half/musl/src/internal/shgetc.c [new file with mode: 0644]
libc-top-half/musl/src/internal/shgetc.h [new file with mode: 0644]
libc-top-half/musl/src/internal/stdio_impl.h [new file with mode: 0644]
libc-top-half/musl/src/internal/syscall.c [new file with mode: 0644]
libc-top-half/musl/src/internal/syscall.h [new file with mode: 0644]
libc-top-half/musl/src/internal/syscall_ret.c [new file with mode: 0644]
libc-top-half/musl/src/internal/vdso.c [new file with mode: 0644]
libc-top-half/musl/src/internal/version.c [new file with mode: 0644]
libc-top-half/musl/src/internal/x32/syscall.s [new file with mode: 0644]
libc-top-half/musl/src/internal/x86_64/syscall.s [new file with mode: 0644]
libc-top-half/musl/src/ipc/ftok.c [new file with mode: 0644]
libc-top-half/musl/src/ipc/ipc.h [new file with mode: 0644]
libc-top-half/musl/src/ipc/msgctl.c [new file with mode: 0644]
libc-top-half/musl/src/ipc/msgget.c [new file with mode: 0644]
libc-top-half/musl/src/ipc/msgrcv.c [new file with mode: 0644]
libc-top-half/musl/src/ipc/msgsnd.c [new file with mode: 0644]
libc-top-half/musl/src/ipc/semctl.c [new file with mode: 0644]
libc-top-half/musl/src/ipc/semget.c [new file with mode: 0644]
libc-top-half/musl/src/ipc/semop.c [new file with mode: 0644]
libc-top-half/musl/src/ipc/semtimedop.c [new file with mode: 0644]
libc-top-half/musl/src/ipc/shmat.c [new file with mode: 0644]
libc-top-half/musl/src/ipc/shmctl.c [new file with mode: 0644]
libc-top-half/musl/src/ipc/shmdt.c [new file with mode: 0644]
libc-top-half/musl/src/ipc/shmget.c [new file with mode: 0644]
libc-top-half/musl/src/ldso/__dlsym.c [new file with mode: 0644]
libc-top-half/musl/src/ldso/aarch64/dlsym.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/aarch64/tlsdesc.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/arm/dlsym.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/arm/find_exidx.c [new file with mode: 0644]
libc-top-half/musl/src/ldso/arm/tlsdesc.S [new file with mode: 0644]
libc-top-half/musl/src/ldso/dl_iterate_phdr.c [new file with mode: 0644]
libc-top-half/musl/src/ldso/dladdr.c [new file with mode: 0644]
libc-top-half/musl/src/ldso/dlclose.c [new file with mode: 0644]
libc-top-half/musl/src/ldso/dlerror.c [new file with mode: 0644]
libc-top-half/musl/src/ldso/dlinfo.c [new file with mode: 0644]
libc-top-half/musl/src/ldso/dlopen.c [new file with mode: 0644]
libc-top-half/musl/src/ldso/dlsym.c [new file with mode: 0644]
libc-top-half/musl/src/ldso/i386/dlsym.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/i386/tlsdesc.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/m68k/dlsym.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/microblaze/dlsym.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/mips/dlsym.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/mips64/dlsym.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/mipsn32/dlsym.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/or1k/dlsym.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/powerpc/dlsym.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/powerpc64/dlsym.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/s390x/dlsym.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/sh/dlsym.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/tlsdesc.c [new file with mode: 0644]
libc-top-half/musl/src/ldso/x32/dlsym.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/x86_64/dlsym.s [new file with mode: 0644]
libc-top-half/musl/src/ldso/x86_64/tlsdesc.s [new file with mode: 0644]
libc-top-half/musl/src/legacy/cuserid.c [new file with mode: 0644]
libc-top-half/musl/src/legacy/daemon.c [new file with mode: 0644]
libc-top-half/musl/src/legacy/err.c [new file with mode: 0644]
libc-top-half/musl/src/legacy/euidaccess.c [new file with mode: 0644]
libc-top-half/musl/src/legacy/ftw.c [new file with mode: 0644]
libc-top-half/musl/src/legacy/futimes.c [new file with mode: 0644]
libc-top-half/musl/src/legacy/getdtablesize.c [new file with mode: 0644]
libc-top-half/musl/src/legacy/getloadavg.c [new file with mode: 0644]
libc-top-half/musl/src/legacy/getpagesize.c [new file with mode: 0644]
libc-top-half/musl/src/legacy/getpass.c [new file with mode: 0644]
libc-top-half/musl/src/legacy/getusershell.c [new file with mode: 0644]
libc-top-half/musl/src/legacy/isastream.c [new file with mode: 0644]
libc-top-half/musl/src/legacy/lutimes.c [new file with mode: 0644]
libc-top-half/musl/src/legacy/ulimit.c [new file with mode: 0644]
libc-top-half/musl/src/legacy/utmpx.c [new file with mode: 0644]
libc-top-half/musl/src/legacy/valloc.c [new file with mode: 0644]
libc-top-half/musl/src/linux/adjtime.c [new file with mode: 0644]
libc-top-half/musl/src/linux/adjtimex.c [new file with mode: 0644]
libc-top-half/musl/src/linux/arch_prctl.c [new file with mode: 0644]
libc-top-half/musl/src/linux/brk.c [new file with mode: 0644]
libc-top-half/musl/src/linux/cache.c [new file with mode: 0644]
libc-top-half/musl/src/linux/cap.c [new file with mode: 0644]
libc-top-half/musl/src/linux/chroot.c [new file with mode: 0644]
libc-top-half/musl/src/linux/clock_adjtime.c [new file with mode: 0644]
libc-top-half/musl/src/linux/clone.c [new file with mode: 0644]
libc-top-half/musl/src/linux/epoll.c [new file with mode: 0644]
libc-top-half/musl/src/linux/eventfd.c [new file with mode: 0644]
libc-top-half/musl/src/linux/fallocate.c [new file with mode: 0644]
libc-top-half/musl/src/linux/fanotify.c [new file with mode: 0644]
libc-top-half/musl/src/linux/flock.c [new file with mode: 0644]
libc-top-half/musl/src/linux/getdents.c [new file with mode: 0644]
libc-top-half/musl/src/linux/getrandom.c [new file with mode: 0644]
libc-top-half/musl/src/linux/inotify.c [new file with mode: 0644]
libc-top-half/musl/src/linux/ioperm.c [new file with mode: 0644]
libc-top-half/musl/src/linux/iopl.c [new file with mode: 0644]
libc-top-half/musl/src/linux/klogctl.c [new file with mode: 0644]
libc-top-half/musl/src/linux/memfd_create.c [new file with mode: 0644]
libc-top-half/musl/src/linux/mlock2.c [new file with mode: 0644]
libc-top-half/musl/src/linux/module.c [new file with mode: 0644]
libc-top-half/musl/src/linux/mount.c [new file with mode: 0644]
libc-top-half/musl/src/linux/name_to_handle_at.c [new file with mode: 0644]
libc-top-half/musl/src/linux/open_by_handle_at.c [new file with mode: 0644]
libc-top-half/musl/src/linux/personality.c [new file with mode: 0644]
libc-top-half/musl/src/linux/pivot_root.c [new file with mode: 0644]
libc-top-half/musl/src/linux/ppoll.c [new file with mode: 0644]
libc-top-half/musl/src/linux/prctl.c [new file with mode: 0644]
libc-top-half/musl/src/linux/prlimit.c [new file with mode: 0644]
libc-top-half/musl/src/linux/process_vm.c [new file with mode: 0644]
libc-top-half/musl/src/linux/ptrace.c [new file with mode: 0644]
libc-top-half/musl/src/linux/quotactl.c [new file with mode: 0644]
libc-top-half/musl/src/linux/readahead.c [new file with mode: 0644]
libc-top-half/musl/src/linux/reboot.c [new file with mode: 0644]
libc-top-half/musl/src/linux/remap_file_pages.c [new file with mode: 0644]
libc-top-half/musl/src/linux/sbrk.c [new file with mode: 0644]
libc-top-half/musl/src/linux/sendfile.c [new file with mode: 0644]
libc-top-half/musl/src/linux/setfsgid.c [new file with mode: 0644]
libc-top-half/musl/src/linux/setfsuid.c [new file with mode: 0644]
libc-top-half/musl/src/linux/setgroups.c [new file with mode: 0644]
libc-top-half/musl/src/linux/sethostname.c [new file with mode: 0644]
libc-top-half/musl/src/linux/setns.c [new file with mode: 0644]
libc-top-half/musl/src/linux/settimeofday.c [new file with mode: 0644]
libc-top-half/musl/src/linux/signalfd.c [new file with mode: 0644]
libc-top-half/musl/src/linux/splice.c [new file with mode: 0644]
libc-top-half/musl/src/linux/stime.c [new file with mode: 0644]
libc-top-half/musl/src/linux/swap.c [new file with mode: 0644]
libc-top-half/musl/src/linux/sync_file_range.c [new file with mode: 0644]
libc-top-half/musl/src/linux/syncfs.c [new file with mode: 0644]
libc-top-half/musl/src/linux/sysinfo.c [new file with mode: 0644]
libc-top-half/musl/src/linux/tee.c [new file with mode: 0644]
libc-top-half/musl/src/linux/timerfd.c [new file with mode: 0644]
libc-top-half/musl/src/linux/unshare.c [new file with mode: 0644]
libc-top-half/musl/src/linux/utimes.c [new file with mode: 0644]
libc-top-half/musl/src/linux/vhangup.c [new file with mode: 0644]
libc-top-half/musl/src/linux/vmsplice.c [new file with mode: 0644]
libc-top-half/musl/src/linux/wait3.c [new file with mode: 0644]
libc-top-half/musl/src/linux/wait4.c [new file with mode: 0644]
libc-top-half/musl/src/linux/x32/sysinfo.c [new file with mode: 0644]
libc-top-half/musl/src/linux/xattr.c [new file with mode: 0644]
libc-top-half/musl/src/locale/__lctrans.c [new file with mode: 0644]
libc-top-half/musl/src/locale/__mo_lookup.c [new file with mode: 0644]
libc-top-half/musl/src/locale/big5.h [new file with mode: 0644]
libc-top-half/musl/src/locale/bind_textdomain_codeset.c [new file with mode: 0644]
libc-top-half/musl/src/locale/c_locale.c [new file with mode: 0644]
libc-top-half/musl/src/locale/catclose.c [new file with mode: 0644]
libc-top-half/musl/src/locale/catgets.c [new file with mode: 0644]
libc-top-half/musl/src/locale/catopen.c [new file with mode: 0644]
libc-top-half/musl/src/locale/codepages.h [new file with mode: 0644]
libc-top-half/musl/src/locale/dcngettext.c [new file with mode: 0644]
libc-top-half/musl/src/locale/duplocale.c [new file with mode: 0644]
libc-top-half/musl/src/locale/freelocale.c [new file with mode: 0644]
libc-top-half/musl/src/locale/gb18030.h [new file with mode: 0644]
libc-top-half/musl/src/locale/hkscs.h [new file with mode: 0644]
libc-top-half/musl/src/locale/iconv.c [new file with mode: 0644]
libc-top-half/musl/src/locale/iconv_close.c [new file with mode: 0644]
libc-top-half/musl/src/locale/jis0208.h [new file with mode: 0644]
libc-top-half/musl/src/locale/ksc.h [new file with mode: 0644]
libc-top-half/musl/src/locale/langinfo.c [new file with mode: 0644]
libc-top-half/musl/src/locale/legacychars.h [new file with mode: 0644]
libc-top-half/musl/src/locale/locale_map.c [new file with mode: 0644]
libc-top-half/musl/src/locale/localeconv.c [new file with mode: 0644]
libc-top-half/musl/src/locale/newlocale.c [new file with mode: 0644]
libc-top-half/musl/src/locale/pleval.c [new file with mode: 0644]
libc-top-half/musl/src/locale/pleval.h [new file with mode: 0644]
libc-top-half/musl/src/locale/revjis.h [new file with mode: 0644]
libc-top-half/musl/src/locale/setlocale.c [new file with mode: 0644]
libc-top-half/musl/src/locale/strcoll.c [new file with mode: 0644]
libc-top-half/musl/src/locale/strfmon.c [new file with mode: 0644]
libc-top-half/musl/src/locale/strxfrm.c [new file with mode: 0644]
libc-top-half/musl/src/locale/textdomain.c [new file with mode: 0644]
libc-top-half/musl/src/locale/uselocale.c [new file with mode: 0644]
libc-top-half/musl/src/locale/wcscoll.c [new file with mode: 0644]
libc-top-half/musl/src/locale/wcsxfrm.c [new file with mode: 0644]
libc-top-half/musl/src/malloc/DESIGN [new file with mode: 0644]
libc-top-half/musl/src/malloc/aligned_alloc.c [new file with mode: 0644]
libc-top-half/musl/src/malloc/expand_heap.c [new file with mode: 0644]
libc-top-half/musl/src/malloc/lite_malloc.c [new file with mode: 0644]
libc-top-half/musl/src/malloc/malloc.c [new file with mode: 0644]
libc-top-half/musl/src/malloc/malloc_usable_size.c [new file with mode: 0644]
libc-top-half/musl/src/malloc/memalign.c [new file with mode: 0644]
libc-top-half/musl/src/malloc/posix_memalign.c [new file with mode: 0644]
libc-top-half/musl/src/math/__cos.c [new file with mode: 0644]
libc-top-half/musl/src/math/__cosdf.c [new file with mode: 0644]
libc-top-half/musl/src/math/__cosl.c [new file with mode: 0644]
libc-top-half/musl/src/math/__expo2.c [new file with mode: 0644]
libc-top-half/musl/src/math/__expo2f.c [new file with mode: 0644]
libc-top-half/musl/src/math/__fpclassify.c [new file with mode: 0644]
libc-top-half/musl/src/math/__fpclassifyf.c [new file with mode: 0644]
libc-top-half/musl/src/math/__fpclassifyl.c [new file with mode: 0644]
libc-top-half/musl/src/math/__invtrigl.c [new file with mode: 0644]
libc-top-half/musl/src/math/__invtrigl.h [new file with mode: 0644]
libc-top-half/musl/src/math/__polevll.c [new file with mode: 0644]
libc-top-half/musl/src/math/__rem_pio2.c [new file with mode: 0644]
libc-top-half/musl/src/math/__rem_pio2_large.c [new file with mode: 0644]
libc-top-half/musl/src/math/__rem_pio2f.c [new file with mode: 0644]
libc-top-half/musl/src/math/__rem_pio2l.c [new file with mode: 0644]
libc-top-half/musl/src/math/__signbit.c [new file with mode: 0644]
libc-top-half/musl/src/math/__signbitf.c [new file with mode: 0644]
libc-top-half/musl/src/math/__signbitl.c [new file with mode: 0644]
libc-top-half/musl/src/math/__sin.c [new file with mode: 0644]
libc-top-half/musl/src/math/__sindf.c [new file with mode: 0644]
libc-top-half/musl/src/math/__sinl.c [new file with mode: 0644]
libc-top-half/musl/src/math/__tan.c [new file with mode: 0644]
libc-top-half/musl/src/math/__tandf.c [new file with mode: 0644]
libc-top-half/musl/src/math/__tanl.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/ceil.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/ceilf.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/fabs.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/fabsf.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/floor.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/floorf.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/fma.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/fmaf.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/fmax.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/fmaxf.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/fmin.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/fminf.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/llrint.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/llrintf.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/llround.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/llroundf.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/lrint.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/lrintf.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/lround.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/lroundf.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/nearbyint.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/nearbyintf.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/rint.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/rintf.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/round.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/roundf.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/sqrt.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/sqrtf.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/trunc.c [new file with mode: 0644]
libc-top-half/musl/src/math/aarch64/truncf.c [new file with mode: 0644]
libc-top-half/musl/src/math/acos.c [new file with mode: 0644]
libc-top-half/musl/src/math/acosf.c [new file with mode: 0644]
libc-top-half/musl/src/math/acosh.c [new file with mode: 0644]
libc-top-half/musl/src/math/acoshf.c [new file with mode: 0644]
libc-top-half/musl/src/math/acoshl.c [new file with mode: 0644]
libc-top-half/musl/src/math/acosl.c [new file with mode: 0644]
libc-top-half/musl/src/math/arm/fabs.c [new file with mode: 0644]
libc-top-half/musl/src/math/arm/fabsf.c [new file with mode: 0644]
libc-top-half/musl/src/math/arm/fma.c [new file with mode: 0644]
libc-top-half/musl/src/math/arm/fmaf.c [new file with mode: 0644]
libc-top-half/musl/src/math/arm/sqrt.c [new file with mode: 0644]
libc-top-half/musl/src/math/arm/sqrtf.c [new file with mode: 0644]
libc-top-half/musl/src/math/asin.c [new file with mode: 0644]
libc-top-half/musl/src/math/asinf.c [new file with mode: 0644]
libc-top-half/musl/src/math/asinh.c [new file with mode: 0644]
libc-top-half/musl/src/math/asinhf.c [new file with mode: 0644]
libc-top-half/musl/src/math/asinhl.c [new file with mode: 0644]
libc-top-half/musl/src/math/asinl.c [new file with mode: 0644]
libc-top-half/musl/src/math/atan.c [new file with mode: 0644]
libc-top-half/musl/src/math/atan2.c [new file with mode: 0644]
libc-top-half/musl/src/math/atan2f.c [new file with mode: 0644]
libc-top-half/musl/src/math/atan2l.c [new file with mode: 0644]
libc-top-half/musl/src/math/atanf.c [new file with mode: 0644]
libc-top-half/musl/src/math/atanh.c [new file with mode: 0644]
libc-top-half/musl/src/math/atanhf.c [new file with mode: 0644]
libc-top-half/musl/src/math/atanhl.c [new file with mode: 0644]
libc-top-half/musl/src/math/atanl.c [new file with mode: 0644]
libc-top-half/musl/src/math/cbrt.c [new file with mode: 0644]
libc-top-half/musl/src/math/cbrtf.c [new file with mode: 0644]
libc-top-half/musl/src/math/cbrtl.c [new file with mode: 0644]
libc-top-half/musl/src/math/ceil.c [new file with mode: 0644]
libc-top-half/musl/src/math/ceilf.c [new file with mode: 0644]
libc-top-half/musl/src/math/ceill.c [new file with mode: 0644]
libc-top-half/musl/src/math/copysign.c [new file with mode: 0644]
libc-top-half/musl/src/math/copysignf.c [new file with mode: 0644]
libc-top-half/musl/src/math/copysignl.c [new file with mode: 0644]
libc-top-half/musl/src/math/cos.c [new file with mode: 0644]
libc-top-half/musl/src/math/cosf.c [new file with mode: 0644]
libc-top-half/musl/src/math/cosh.c [new file with mode: 0644]
libc-top-half/musl/src/math/coshf.c [new file with mode: 0644]
libc-top-half/musl/src/math/coshl.c [new file with mode: 0644]
libc-top-half/musl/src/math/cosl.c [new file with mode: 0644]
libc-top-half/musl/src/math/erf.c [new file with mode: 0644]
libc-top-half/musl/src/math/erff.c [new file with mode: 0644]
libc-top-half/musl/src/math/erfl.c [new file with mode: 0644]
libc-top-half/musl/src/math/exp.c [new file with mode: 0644]
libc-top-half/musl/src/math/exp10.c [new file with mode: 0644]
libc-top-half/musl/src/math/exp10f.c [new file with mode: 0644]
libc-top-half/musl/src/math/exp10l.c [new file with mode: 0644]
libc-top-half/musl/src/math/exp2.c [new file with mode: 0644]
libc-top-half/musl/src/math/exp2f.c [new file with mode: 0644]
libc-top-half/musl/src/math/exp2l.c [new file with mode: 0644]
libc-top-half/musl/src/math/expf.c [new file with mode: 0644]
libc-top-half/musl/src/math/expl.c [new file with mode: 0644]
libc-top-half/musl/src/math/expm1.c [new file with mode: 0644]
libc-top-half/musl/src/math/expm1f.c [new file with mode: 0644]
libc-top-half/musl/src/math/expm1l.c [new file with mode: 0644]
libc-top-half/musl/src/math/fabs.c [new file with mode: 0644]
libc-top-half/musl/src/math/fabsf.c [new file with mode: 0644]
libc-top-half/musl/src/math/fabsl.c [new file with mode: 0644]
libc-top-half/musl/src/math/fdim.c [new file with mode: 0644]
libc-top-half/musl/src/math/fdimf.c [new file with mode: 0644]
libc-top-half/musl/src/math/fdiml.c [new file with mode: 0644]
libc-top-half/musl/src/math/finite.c [new file with mode: 0644]
libc-top-half/musl/src/math/finitef.c [new file with mode: 0644]
libc-top-half/musl/src/math/floor.c [new file with mode: 0644]
libc-top-half/musl/src/math/floorf.c [new file with mode: 0644]
libc-top-half/musl/src/math/floorl.c [new file with mode: 0644]
libc-top-half/musl/src/math/fma.c [new file with mode: 0644]
libc-top-half/musl/src/math/fmaf.c [new file with mode: 0644]
libc-top-half/musl/src/math/fmal.c [new file with mode: 0644]
libc-top-half/musl/src/math/fmax.c [new file with mode: 0644]
libc-top-half/musl/src/math/fmaxf.c [new file with mode: 0644]
libc-top-half/musl/src/math/fmaxl.c [new file with mode: 0644]
libc-top-half/musl/src/math/fmin.c [new file with mode: 0644]
libc-top-half/musl/src/math/fminf.c [new file with mode: 0644]
libc-top-half/musl/src/math/fminl.c [new file with mode: 0644]
libc-top-half/musl/src/math/fmod.c [new file with mode: 0644]
libc-top-half/musl/src/math/fmodf.c [new file with mode: 0644]
libc-top-half/musl/src/math/fmodl.c [new file with mode: 0644]
libc-top-half/musl/src/math/frexp.c [new file with mode: 0644]
libc-top-half/musl/src/math/frexpf.c [new file with mode: 0644]
libc-top-half/musl/src/math/frexpl.c [new file with mode: 0644]
libc-top-half/musl/src/math/hypot.c [new file with mode: 0644]
libc-top-half/musl/src/math/hypotf.c [new file with mode: 0644]
libc-top-half/musl/src/math/hypotl.c [new file with mode: 0644]
libc-top-half/musl/src/math/i386/__invtrigl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/acos.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/acosf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/acosl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/asin.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/asinf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/asinl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/atan.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/atan2.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/atan2f.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/atan2l.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/atanf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/atanl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/ceil.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/ceilf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/ceill.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/exp.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/exp2.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/exp2f.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/exp2l.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/expf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/expl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/expm1.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/expm1f.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/expm1l.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/fabs.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/fabsf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/fabsl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/floor.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/floorf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/floorl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/fmod.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/fmodf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/fmodl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/hypot.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/hypotf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/ldexp.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/ldexpf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/ldexpl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/llrint.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/llrintf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/llrintl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/log.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/log10.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/log10f.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/log10l.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/log1p.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/log1pf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/log1pl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/log2.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/log2f.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/log2l.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/logf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/logl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/lrint.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/lrintf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/lrintl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/remainder.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/remainderf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/remainderl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/remquo.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/remquof.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/remquol.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/rint.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/rintf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/rintl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/scalbln.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/scalblnf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/scalblnl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/scalbn.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/scalbnf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/scalbnl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/sqrt.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/sqrtf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/sqrtl.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/trunc.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/truncf.s [new file with mode: 0644]
libc-top-half/musl/src/math/i386/truncl.s [new file with mode: 0644]
libc-top-half/musl/src/math/ilogb.c [new file with mode: 0644]
libc-top-half/musl/src/math/ilogbf.c [new file with mode: 0644]
libc-top-half/musl/src/math/ilogbl.c [new file with mode: 0644]
libc-top-half/musl/src/math/j0.c [new file with mode: 0644]
libc-top-half/musl/src/math/j0f.c [new file with mode: 0644]
libc-top-half/musl/src/math/j1.c [new file with mode: 0644]
libc-top-half/musl/src/math/j1f.c [new file with mode: 0644]
libc-top-half/musl/src/math/jn.c [new file with mode: 0644]
libc-top-half/musl/src/math/jnf.c [new file with mode: 0644]
libc-top-half/musl/src/math/ldexp.c [new file with mode: 0644]
libc-top-half/musl/src/math/ldexpf.c [new file with mode: 0644]
libc-top-half/musl/src/math/ldexpl.c [new file with mode: 0644]
libc-top-half/musl/src/math/lgamma.c [new file with mode: 0644]
libc-top-half/musl/src/math/lgamma_r.c [new file with mode: 0644]
libc-top-half/musl/src/math/lgammaf.c [new file with mode: 0644]
libc-top-half/musl/src/math/lgammaf_r.c [new file with mode: 0644]
libc-top-half/musl/src/math/lgammal.c [new file with mode: 0644]
libc-top-half/musl/src/math/llrint.c [new file with mode: 0644]
libc-top-half/musl/src/math/llrintf.c [new file with mode: 0644]
libc-top-half/musl/src/math/llrintl.c [new file with mode: 0644]
libc-top-half/musl/src/math/llround.c [new file with mode: 0644]
libc-top-half/musl/src/math/llroundf.c [new file with mode: 0644]
libc-top-half/musl/src/math/llroundl.c [new file with mode: 0644]
libc-top-half/musl/src/math/log.c [new file with mode: 0644]
libc-top-half/musl/src/math/log10.c [new file with mode: 0644]
libc-top-half/musl/src/math/log10f.c [new file with mode: 0644]
libc-top-half/musl/src/math/log10l.c [new file with mode: 0644]
libc-top-half/musl/src/math/log1p.c [new file with mode: 0644]
libc-top-half/musl/src/math/log1pf.c [new file with mode: 0644]
libc-top-half/musl/src/math/log1pl.c [new file with mode: 0644]
libc-top-half/musl/src/math/log2.c [new file with mode: 0644]
libc-top-half/musl/src/math/log2f.c [new file with mode: 0644]
libc-top-half/musl/src/math/log2l.c [new file with mode: 0644]
libc-top-half/musl/src/math/logb.c [new file with mode: 0644]
libc-top-half/musl/src/math/logbf.c [new file with mode: 0644]
libc-top-half/musl/src/math/logbl.c [new file with mode: 0644]
libc-top-half/musl/src/math/logf.c [new file with mode: 0644]
libc-top-half/musl/src/math/logl.c [new file with mode: 0644]
libc-top-half/musl/src/math/lrint.c [new file with mode: 0644]
libc-top-half/musl/src/math/lrintf.c [new file with mode: 0644]
libc-top-half/musl/src/math/lrintl.c [new file with mode: 0644]
libc-top-half/musl/src/math/lround.c [new file with mode: 0644]
libc-top-half/musl/src/math/lroundf.c [new file with mode: 0644]
libc-top-half/musl/src/math/lroundl.c [new file with mode: 0644]
libc-top-half/musl/src/math/modf.c [new file with mode: 0644]
libc-top-half/musl/src/math/modff.c [new file with mode: 0644]
libc-top-half/musl/src/math/modfl.c [new file with mode: 0644]
libc-top-half/musl/src/math/nan.c [new file with mode: 0644]
libc-top-half/musl/src/math/nanf.c [new file with mode: 0644]
libc-top-half/musl/src/math/nanl.c [new file with mode: 0644]
libc-top-half/musl/src/math/nearbyint.c [new file with mode: 0644]
libc-top-half/musl/src/math/nearbyintf.c [new file with mode: 0644]
libc-top-half/musl/src/math/nearbyintl.c [new file with mode: 0644]
libc-top-half/musl/src/math/nextafter.c [new file with mode: 0644]
libc-top-half/musl/src/math/nextafterf.c [new file with mode: 0644]
libc-top-half/musl/src/math/nextafterl.c [new file with mode: 0644]
libc-top-half/musl/src/math/nexttoward.c [new file with mode: 0644]
libc-top-half/musl/src/math/nexttowardf.c [new file with mode: 0644]
libc-top-half/musl/src/math/nexttowardl.c [new file with mode: 0644]
libc-top-half/musl/src/math/pow.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc/fabs.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc/fabsf.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc/fma.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc/fmaf.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc/sqrt.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc/sqrtf.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/ceil.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/ceilf.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/fabs.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/fabsf.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/floor.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/floorf.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/fma.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/fmaf.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/fmax.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/fmaxf.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/fmin.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/fminf.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/lrint.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/lrintf.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/lround.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/lroundf.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/round.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/roundf.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/sqrt.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/sqrtf.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/trunc.c [new file with mode: 0644]
libc-top-half/musl/src/math/powerpc64/truncf.c [new file with mode: 0644]
libc-top-half/musl/src/math/powf.c [new file with mode: 0644]
libc-top-half/musl/src/math/powl.c [new file with mode: 0644]
libc-top-half/musl/src/math/remainder.c [new file with mode: 0644]
libc-top-half/musl/src/math/remainderf.c [new file with mode: 0644]
libc-top-half/musl/src/math/remainderl.c [new file with mode: 0644]
libc-top-half/musl/src/math/remquo.c [new file with mode: 0644]
libc-top-half/musl/src/math/remquof.c [new file with mode: 0644]
libc-top-half/musl/src/math/remquol.c [new file with mode: 0644]
libc-top-half/musl/src/math/rint.c [new file with mode: 0644]
libc-top-half/musl/src/math/rintf.c [new file with mode: 0644]
libc-top-half/musl/src/math/rintl.c [new file with mode: 0644]
libc-top-half/musl/src/math/round.c [new file with mode: 0644]
libc-top-half/musl/src/math/roundf.c [new file with mode: 0644]
libc-top-half/musl/src/math/roundl.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/ceil.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/ceilf.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/ceill.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/fabs.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/fabsf.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/fabsl.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/floor.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/floorf.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/floorl.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/fma.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/fmaf.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/nearbyint.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/nearbyintf.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/nearbyintl.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/rint.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/rintf.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/rintl.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/round.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/roundf.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/roundl.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/sqrt.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/sqrtf.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/sqrtl.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/trunc.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/truncf.c [new file with mode: 0644]
libc-top-half/musl/src/math/s390x/truncl.c [new file with mode: 0644]
libc-top-half/musl/src/math/scalb.c [new file with mode: 0644]
libc-top-half/musl/src/math/scalbf.c [new file with mode: 0644]
libc-top-half/musl/src/math/scalbln.c [new file with mode: 0644]
libc-top-half/musl/src/math/scalblnf.c [new file with mode: 0644]
libc-top-half/musl/src/math/scalblnl.c [new file with mode: 0644]
libc-top-half/musl/src/math/scalbn.c [new file with mode: 0644]
libc-top-half/musl/src/math/scalbnf.c [new file with mode: 0644]
libc-top-half/musl/src/math/scalbnl.c [new file with mode: 0644]
libc-top-half/musl/src/math/signgam.c [new file with mode: 0644]
libc-top-half/musl/src/math/significand.c [new file with mode: 0644]
libc-top-half/musl/src/math/significandf.c [new file with mode: 0644]
libc-top-half/musl/src/math/sin.c [new file with mode: 0644]
libc-top-half/musl/src/math/sincos.c [new file with mode: 0644]
libc-top-half/musl/src/math/sincosf.c [new file with mode: 0644]
libc-top-half/musl/src/math/sincosl.c [new file with mode: 0644]
libc-top-half/musl/src/math/sinf.c [new file with mode: 0644]
libc-top-half/musl/src/math/sinh.c [new file with mode: 0644]
libc-top-half/musl/src/math/sinhf.c [new file with mode: 0644]
libc-top-half/musl/src/math/sinhl.c [new file with mode: 0644]
libc-top-half/musl/src/math/sinl.c [new file with mode: 0644]
libc-top-half/musl/src/math/sqrt.c [new file with mode: 0644]
libc-top-half/musl/src/math/sqrtf.c [new file with mode: 0644]
libc-top-half/musl/src/math/sqrtl.c [new file with mode: 0644]
libc-top-half/musl/src/math/tan.c [new file with mode: 0644]
libc-top-half/musl/src/math/tanf.c [new file with mode: 0644]
libc-top-half/musl/src/math/tanh.c [new file with mode: 0644]
libc-top-half/musl/src/math/tanhf.c [new file with mode: 0644]
libc-top-half/musl/src/math/tanhl.c [new file with mode: 0644]
libc-top-half/musl/src/math/tanl.c [new file with mode: 0644]
libc-top-half/musl/src/math/tgamma.c [new file with mode: 0644]
libc-top-half/musl/src/math/tgammaf.c [new file with mode: 0644]
libc-top-half/musl/src/math/tgammal.c [new file with mode: 0644]
libc-top-half/musl/src/math/trunc.c [new file with mode: 0644]
libc-top-half/musl/src/math/truncf.c [new file with mode: 0644]
libc-top-half/musl/src/math/truncl.c [new file with mode: 0644]
libc-top-half/musl/src/math/x32/__invtrigl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/acosl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/asinl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/atan2l.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/atanl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/ceill.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/exp2l.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/expl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/expm1l.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/fabs.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/fabsf.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/fabsl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/floorl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/fma.c [new file with mode: 0644]
libc-top-half/musl/src/math/x32/fmaf.c [new file with mode: 0644]
libc-top-half/musl/src/math/x32/fmodl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/llrint.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/llrintf.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/llrintl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/log10l.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/log1pl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/log2l.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/logl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/lrint.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/lrintf.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/lrintl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/remainderl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/rintl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/sqrt.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/sqrtf.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/sqrtl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x32/truncl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/__invtrigl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/acosl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/asinl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/atan2l.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/atanl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/ceill.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/exp2l.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/expl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/expm1l.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/fabs.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/fabsf.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/fabsl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/floorl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/fma.c [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/fmaf.c [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/fmodl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/llrint.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/llrintf.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/llrintl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/log10l.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/log1pl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/log2l.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/logl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/lrint.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/lrintf.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/lrintl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/remainderl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/rintl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/sqrt.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/sqrtf.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/sqrtl.s [new file with mode: 0644]
libc-top-half/musl/src/math/x86_64/truncl.s [new file with mode: 0644]
libc-top-half/musl/src/misc/a64l.c [new file with mode: 0644]
libc-top-half/musl/src/misc/basename.c [new file with mode: 0644]
libc-top-half/musl/src/misc/dirname.c [new file with mode: 0644]
libc-top-half/musl/src/misc/ffs.c [new file with mode: 0644]
libc-top-half/musl/src/misc/ffsl.c [new file with mode: 0644]
libc-top-half/musl/src/misc/ffsll.c [new file with mode: 0644]
libc-top-half/musl/src/misc/fmtmsg.c [new file with mode: 0644]
libc-top-half/musl/src/misc/forkpty.c [new file with mode: 0644]
libc-top-half/musl/src/misc/get_current_dir_name.c [new file with mode: 0644]
libc-top-half/musl/src/misc/getauxval.c [new file with mode: 0644]
libc-top-half/musl/src/misc/getdomainname.c [new file with mode: 0644]
libc-top-half/musl/src/misc/getentropy.c [new file with mode: 0644]
libc-top-half/musl/src/misc/gethostid.c [new file with mode: 0644]
libc-top-half/musl/src/misc/getopt.c [new file with mode: 0644]
libc-top-half/musl/src/misc/getopt_long.c [new file with mode: 0644]
libc-top-half/musl/src/misc/getpriority.c [new file with mode: 0644]
libc-top-half/musl/src/misc/getresgid.c [new file with mode: 0644]
libc-top-half/musl/src/misc/getresuid.c [new file with mode: 0644]
libc-top-half/musl/src/misc/getrlimit.c [new file with mode: 0644]
libc-top-half/musl/src/misc/getrusage.c [new file with mode: 0644]
libc-top-half/musl/src/misc/getsubopt.c [new file with mode: 0644]
libc-top-half/musl/src/misc/initgroups.c [new file with mode: 0644]
libc-top-half/musl/src/misc/ioctl.c [new file with mode: 0644]
libc-top-half/musl/src/misc/issetugid.c [new file with mode: 0644]
libc-top-half/musl/src/misc/lockf.c [new file with mode: 0644]
libc-top-half/musl/src/misc/login_tty.c [new file with mode: 0644]
libc-top-half/musl/src/misc/mntent.c [new file with mode: 0644]
libc-top-half/musl/src/misc/nftw.c [new file with mode: 0644]
libc-top-half/musl/src/misc/openpty.c [new file with mode: 0644]
libc-top-half/musl/src/misc/ptsname.c [new file with mode: 0644]
libc-top-half/musl/src/misc/pty.c [new file with mode: 0644]
libc-top-half/musl/src/misc/realpath.c [new file with mode: 0644]
libc-top-half/musl/src/misc/setdomainname.c [new file with mode: 0644]
libc-top-half/musl/src/misc/setpriority.c [new file with mode: 0644]
libc-top-half/musl/src/misc/setrlimit.c [new file with mode: 0644]
libc-top-half/musl/src/misc/syscall.c [new file with mode: 0644]
libc-top-half/musl/src/misc/syslog.c [new file with mode: 0644]
libc-top-half/musl/src/misc/uname.c [new file with mode: 0644]
libc-top-half/musl/src/misc/wordexp.c [new file with mode: 0644]
libc-top-half/musl/src/mman/madvise.c [new file with mode: 0644]
libc-top-half/musl/src/mman/mincore.c [new file with mode: 0644]
libc-top-half/musl/src/mman/mlock.c [new file with mode: 0644]
libc-top-half/musl/src/mman/mlockall.c [new file with mode: 0644]
libc-top-half/musl/src/mman/mmap.c [new file with mode: 0644]
libc-top-half/musl/src/mman/mprotect.c [new file with mode: 0644]
libc-top-half/musl/src/mman/mremap.c [new file with mode: 0644]
libc-top-half/musl/src/mman/msync.c [new file with mode: 0644]
libc-top-half/musl/src/mman/munlock.c [new file with mode: 0644]
libc-top-half/musl/src/mman/munlockall.c [new file with mode: 0644]
libc-top-half/musl/src/mman/munmap.c [new file with mode: 0644]
libc-top-half/musl/src/mman/posix_madvise.c [new file with mode: 0644]
libc-top-half/musl/src/mman/shm_open.c [new file with mode: 0644]
libc-top-half/musl/src/mq/mq_close.c [new file with mode: 0644]
libc-top-half/musl/src/mq/mq_getattr.c [new file with mode: 0644]
libc-top-half/musl/src/mq/mq_notify.c [new file with mode: 0644]
libc-top-half/musl/src/mq/mq_open.c [new file with mode: 0644]
libc-top-half/musl/src/mq/mq_receive.c [new file with mode: 0644]
libc-top-half/musl/src/mq/mq_send.c [new file with mode: 0644]
libc-top-half/musl/src/mq/mq_setattr.c [new file with mode: 0644]
libc-top-half/musl/src/mq/mq_timedreceive.c [new file with mode: 0644]
libc-top-half/musl/src/mq/mq_timedsend.c [new file with mode: 0644]
libc-top-half/musl/src/mq/mq_unlink.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/btowc.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/c16rtomb.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/c32rtomb.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/internal.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/internal.h [new file with mode: 0644]
libc-top-half/musl/src/multibyte/mblen.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/mbrlen.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/mbrtoc16.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/mbrtoc32.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/mbrtowc.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/mbsinit.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/mbsnrtowcs.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/mbsrtowcs.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/mbstowcs.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/mbtowc.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/wcrtomb.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/wcsnrtombs.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/wcsrtombs.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/wcstombs.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/wctob.c [new file with mode: 0644]
libc-top-half/musl/src/multibyte/wctomb.c [new file with mode: 0644]
libc-top-half/musl/src/network/accept.c [new file with mode: 0644]
libc-top-half/musl/src/network/accept4.c [new file with mode: 0644]
libc-top-half/musl/src/network/bind.c [new file with mode: 0644]
libc-top-half/musl/src/network/connect.c [new file with mode: 0644]
libc-top-half/musl/src/network/dn_comp.c [new file with mode: 0644]
libc-top-half/musl/src/network/dn_expand.c [new file with mode: 0644]
libc-top-half/musl/src/network/dn_skipname.c [new file with mode: 0644]
libc-top-half/musl/src/network/dns_parse.c [new file with mode: 0644]
libc-top-half/musl/src/network/ent.c [new file with mode: 0644]
libc-top-half/musl/src/network/ether.c [new file with mode: 0644]
libc-top-half/musl/src/network/freeaddrinfo.c [new file with mode: 0644]
libc-top-half/musl/src/network/gai_strerror.c [new file with mode: 0644]
libc-top-half/musl/src/network/getaddrinfo.c [new file with mode: 0644]
libc-top-half/musl/src/network/gethostbyaddr.c [new file with mode: 0644]
libc-top-half/musl/src/network/gethostbyaddr_r.c [new file with mode: 0644]
libc-top-half/musl/src/network/gethostbyname.c [new file with mode: 0644]
libc-top-half/musl/src/network/gethostbyname2.c [new file with mode: 0644]
libc-top-half/musl/src/network/gethostbyname2_r.c [new file with mode: 0644]
libc-top-half/musl/src/network/gethostbyname_r.c [new file with mode: 0644]
libc-top-half/musl/src/network/getifaddrs.c [new file with mode: 0644]
libc-top-half/musl/src/network/getnameinfo.c [new file with mode: 0644]
libc-top-half/musl/src/network/getpeername.c [new file with mode: 0644]
libc-top-half/musl/src/network/getservbyname.c [new file with mode: 0644]
libc-top-half/musl/src/network/getservbyname_r.c [new file with mode: 0644]
libc-top-half/musl/src/network/getservbyport.c [new file with mode: 0644]
libc-top-half/musl/src/network/getservbyport_r.c [new file with mode: 0644]
libc-top-half/musl/src/network/getsockname.c [new file with mode: 0644]
libc-top-half/musl/src/network/getsockopt.c [new file with mode: 0644]
libc-top-half/musl/src/network/h_errno.c [new file with mode: 0644]
libc-top-half/musl/src/network/herror.c [new file with mode: 0644]
libc-top-half/musl/src/network/hstrerror.c [new file with mode: 0644]
libc-top-half/musl/src/network/htonl.c [new file with mode: 0644]
libc-top-half/musl/src/network/htons.c [new file with mode: 0644]
libc-top-half/musl/src/network/if_freenameindex.c [new file with mode: 0644]
libc-top-half/musl/src/network/if_indextoname.c [new file with mode: 0644]
libc-top-half/musl/src/network/if_nameindex.c [new file with mode: 0644]
libc-top-half/musl/src/network/if_nametoindex.c [new file with mode: 0644]
libc-top-half/musl/src/network/in6addr_any.c [new file with mode: 0644]
libc-top-half/musl/src/network/in6addr_loopback.c [new file with mode: 0644]
libc-top-half/musl/src/network/inet_addr.c [new file with mode: 0644]
libc-top-half/musl/src/network/inet_aton.c [new file with mode: 0644]
libc-top-half/musl/src/network/inet_legacy.c [new file with mode: 0644]
libc-top-half/musl/src/network/inet_ntoa.c [new file with mode: 0644]
libc-top-half/musl/src/network/inet_ntop.c [new file with mode: 0644]
libc-top-half/musl/src/network/inet_pton.c [new file with mode: 0644]
libc-top-half/musl/src/network/listen.c [new file with mode: 0644]
libc-top-half/musl/src/network/lookup.h [new file with mode: 0644]
libc-top-half/musl/src/network/lookup_ipliteral.c [new file with mode: 0644]
libc-top-half/musl/src/network/lookup_name.c [new file with mode: 0644]
libc-top-half/musl/src/network/lookup_serv.c [new file with mode: 0644]
libc-top-half/musl/src/network/netlink.c [new file with mode: 0644]
libc-top-half/musl/src/network/netlink.h [new file with mode: 0644]
libc-top-half/musl/src/network/netname.c [new file with mode: 0644]
libc-top-half/musl/src/network/ns_parse.c [new file with mode: 0644]
libc-top-half/musl/src/network/ntohl.c [new file with mode: 0644]
libc-top-half/musl/src/network/ntohs.c [new file with mode: 0644]
libc-top-half/musl/src/network/proto.c [new file with mode: 0644]
libc-top-half/musl/src/network/recv.c [new file with mode: 0644]
libc-top-half/musl/src/network/recvfrom.c [new file with mode: 0644]
libc-top-half/musl/src/network/recvmmsg.c [new file with mode: 0644]
libc-top-half/musl/src/network/recvmsg.c [new file with mode: 0644]
libc-top-half/musl/src/network/res_init.c [new file with mode: 0644]
libc-top-half/musl/src/network/res_mkquery.c [new file with mode: 0644]
libc-top-half/musl/src/network/res_msend.c [new file with mode: 0644]
libc-top-half/musl/src/network/res_query.c [new file with mode: 0644]
libc-top-half/musl/src/network/res_querydomain.c [new file with mode: 0644]
libc-top-half/musl/src/network/res_send.c [new file with mode: 0644]
libc-top-half/musl/src/network/res_state.c [new file with mode: 0644]
libc-top-half/musl/src/network/resolvconf.c [new file with mode: 0644]
libc-top-half/musl/src/network/send.c [new file with mode: 0644]
libc-top-half/musl/src/network/sendmmsg.c [new file with mode: 0644]
libc-top-half/musl/src/network/sendmsg.c [new file with mode: 0644]
libc-top-half/musl/src/network/sendto.c [new file with mode: 0644]
libc-top-half/musl/src/network/serv.c [new file with mode: 0644]
libc-top-half/musl/src/network/setsockopt.c [new file with mode: 0644]
libc-top-half/musl/src/network/shutdown.c [new file with mode: 0644]
libc-top-half/musl/src/network/sockatmark.c [new file with mode: 0644]
libc-top-half/musl/src/network/socket.c [new file with mode: 0644]
libc-top-half/musl/src/network/socketpair.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/fgetgrent.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/fgetpwent.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/fgetspent.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/getgr_a.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/getgr_r.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/getgrent.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/getgrent_a.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/getgrouplist.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/getpw_a.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/getpw_r.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/getpwent.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/getpwent_a.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/getspent.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/getspnam.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/getspnam_r.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/lckpwdf.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/nscd.h [new file with mode: 0644]
libc-top-half/musl/src/passwd/nscd_query.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/putgrent.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/putpwent.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/putspent.c [new file with mode: 0644]
libc-top-half/musl/src/passwd/pwf.h [new file with mode: 0644]
libc-top-half/musl/src/prng/__rand48_step.c [new file with mode: 0644]
libc-top-half/musl/src/prng/__seed48.c [new file with mode: 0644]
libc-top-half/musl/src/prng/drand48.c [new file with mode: 0644]
libc-top-half/musl/src/prng/lcong48.c [new file with mode: 0644]
libc-top-half/musl/src/prng/lrand48.c [new file with mode: 0644]
libc-top-half/musl/src/prng/mrand48.c [new file with mode: 0644]
libc-top-half/musl/src/prng/rand.c [new file with mode: 0644]
libc-top-half/musl/src/prng/rand48.h [new file with mode: 0644]
libc-top-half/musl/src/prng/rand_r.c [new file with mode: 0644]
libc-top-half/musl/src/prng/random.c [new file with mode: 0644]
libc-top-half/musl/src/prng/seed48.c [new file with mode: 0644]
libc-top-half/musl/src/prng/srand48.c [new file with mode: 0644]
libc-top-half/musl/src/process/arm/vfork.s [new file with mode: 0644]
libc-top-half/musl/src/process/execl.c [new file with mode: 0644]
libc-top-half/musl/src/process/execle.c [new file with mode: 0644]
libc-top-half/musl/src/process/execlp.c [new file with mode: 0644]
libc-top-half/musl/src/process/execv.c [new file with mode: 0644]
libc-top-half/musl/src/process/execve.c [new file with mode: 0644]
libc-top-half/musl/src/process/execvp.c [new file with mode: 0644]
libc-top-half/musl/src/process/fdop.h [new file with mode: 0644]
libc-top-half/musl/src/process/fexecve.c [new file with mode: 0644]
libc-top-half/musl/src/process/fork.c [new file with mode: 0644]
libc-top-half/musl/src/process/i386/vfork.s [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawn.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawn_file_actions_addclose.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawn_file_actions_adddup2.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawn_file_actions_addopen.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawn_file_actions_destroy.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawn_file_actions_init.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawnattr_destroy.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawnattr_getflags.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawnattr_getpgroup.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawnattr_getsigdefault.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawnattr_getsigmask.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawnattr_init.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawnattr_sched.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawnattr_setflags.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawnattr_setpgroup.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawnattr_setsigdefault.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawnattr_setsigmask.c [new file with mode: 0644]
libc-top-half/musl/src/process/posix_spawnp.c [new file with mode: 0644]
libc-top-half/musl/src/process/s390x/vfork.s [new file with mode: 0644]
libc-top-half/musl/src/process/sh/vfork.s [new file with mode: 0644]
libc-top-half/musl/src/process/system.c [new file with mode: 0644]
libc-top-half/musl/src/process/vfork.c [new file with mode: 0644]
libc-top-half/musl/src/process/wait.c [new file with mode: 0644]
libc-top-half/musl/src/process/waitid.c [new file with mode: 0644]
libc-top-half/musl/src/process/waitpid.c [new file with mode: 0644]
libc-top-half/musl/src/process/x32/vfork.s [new file with mode: 0644]
libc-top-half/musl/src/process/x86_64/vfork.s [new file with mode: 0644]
libc-top-half/musl/src/regex/fnmatch.c [new file with mode: 0644]
libc-top-half/musl/src/regex/glob.c [new file with mode: 0644]
libc-top-half/musl/src/regex/regcomp.c [new file with mode: 0644]
libc-top-half/musl/src/regex/regerror.c [new file with mode: 0644]
libc-top-half/musl/src/regex/regexec.c [new file with mode: 0644]
libc-top-half/musl/src/regex/tre-mem.c [new file with mode: 0644]
libc-top-half/musl/src/regex/tre.h [new file with mode: 0644]
libc-top-half/musl/src/sched/affinity.c [new file with mode: 0644]
libc-top-half/musl/src/sched/sched_cpucount.c [new file with mode: 0644]
libc-top-half/musl/src/sched/sched_get_priority_max.c [new file with mode: 0644]
libc-top-half/musl/src/sched/sched_getcpu.c [new file with mode: 0644]
libc-top-half/musl/src/sched/sched_getparam.c [new file with mode: 0644]
libc-top-half/musl/src/sched/sched_getscheduler.c [new file with mode: 0644]
libc-top-half/musl/src/sched/sched_rr_get_interval.c [new file with mode: 0644]
libc-top-half/musl/src/sched/sched_setparam.c [new file with mode: 0644]
libc-top-half/musl/src/sched/sched_setscheduler.c [new file with mode: 0644]
libc-top-half/musl/src/sched/sched_yield.c [new file with mode: 0644]
libc-top-half/musl/src/search/hsearch.c [new file with mode: 0644]
libc-top-half/musl/src/search/insque.c [new file with mode: 0644]
libc-top-half/musl/src/search/lsearch.c [new file with mode: 0644]
libc-top-half/musl/src/search/tdelete.c [new file with mode: 0644]
libc-top-half/musl/src/search/tdestroy.c [new file with mode: 0644]
libc-top-half/musl/src/search/tfind.c [new file with mode: 0644]
libc-top-half/musl/src/search/tsearch.c [new file with mode: 0644]
libc-top-half/musl/src/search/tsearch.h [new file with mode: 0644]
libc-top-half/musl/src/search/twalk.c [new file with mode: 0644]
libc-top-half/musl/src/select/poll.c [new file with mode: 0644]
libc-top-half/musl/src/select/pselect.c [new file with mode: 0644]
libc-top-half/musl/src/select/select.c [new file with mode: 0644]
libc-top-half/musl/src/setjmp/aarch64/longjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/aarch64/setjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/arm/longjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/arm/setjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/i386/longjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/i386/setjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/longjmp.c [new file with mode: 0644]
libc-top-half/musl/src/setjmp/m68k/longjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/m68k/setjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/microblaze/longjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/microblaze/setjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/mips/longjmp.S [new file with mode: 0644]
libc-top-half/musl/src/setjmp/mips/setjmp.S [new file with mode: 0644]
libc-top-half/musl/src/setjmp/mips64/longjmp.S [new file with mode: 0644]
libc-top-half/musl/src/setjmp/mips64/setjmp.S [new file with mode: 0644]
libc-top-half/musl/src/setjmp/mipsn32/longjmp.S [new file with mode: 0644]
libc-top-half/musl/src/setjmp/mipsn32/setjmp.S [new file with mode: 0644]
libc-top-half/musl/src/setjmp/or1k/longjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/or1k/setjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/powerpc/longjmp.S [new file with mode: 0644]
libc-top-half/musl/src/setjmp/powerpc/setjmp.S [new file with mode: 0644]
libc-top-half/musl/src/setjmp/powerpc64/longjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/powerpc64/setjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/s390x/longjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/s390x/setjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/setjmp.c [new file with mode: 0644]
libc-top-half/musl/src/setjmp/sh/longjmp.S [new file with mode: 0644]
libc-top-half/musl/src/setjmp/sh/setjmp.S [new file with mode: 0644]
libc-top-half/musl/src/setjmp/x32/longjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/x32/setjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/x86_64/longjmp.s [new file with mode: 0644]
libc-top-half/musl/src/setjmp/x86_64/setjmp.s [new file with mode: 0644]
libc-top-half/musl/src/signal/aarch64/restore.s [new file with mode: 0644]
libc-top-half/musl/src/signal/aarch64/sigsetjmp.s [new file with mode: 0644]
libc-top-half/musl/src/signal/arm/restore.s [new file with mode: 0644]
libc-top-half/musl/src/signal/arm/sigsetjmp.s [new file with mode: 0644]
libc-top-half/musl/src/signal/block.c [new file with mode: 0644]
libc-top-half/musl/src/signal/getitimer.c [new file with mode: 0644]
libc-top-half/musl/src/signal/i386/restore.s [new file with mode: 0644]
libc-top-half/musl/src/signal/i386/sigsetjmp.s [new file with mode: 0644]
libc-top-half/musl/src/signal/kill.c [new file with mode: 0644]
libc-top-half/musl/src/signal/killpg.c [new file with mode: 0644]
libc-top-half/musl/src/signal/m68k/sigsetjmp.s [new file with mode: 0644]
libc-top-half/musl/src/signal/microblaze/restore.s [new file with mode: 0644]
libc-top-half/musl/src/signal/microblaze/sigsetjmp.s [new file with mode: 0644]
libc-top-half/musl/src/signal/mips/restore.s [new file with mode: 0644]
libc-top-half/musl/src/signal/mips/sigsetjmp.s [new file with mode: 0644]
libc-top-half/musl/src/signal/mips64/restore.s [new file with mode: 0644]
libc-top-half/musl/src/signal/mips64/sigsetjmp.s [new file with mode: 0644]
libc-top-half/musl/src/signal/mipsn32/restore.s [new file with mode: 0644]
libc-top-half/musl/src/signal/mipsn32/sigsetjmp.s [new file with mode: 0644]
libc-top-half/musl/src/signal/or1k/sigsetjmp.s [new file with mode: 0644]
libc-top-half/musl/src/signal/powerpc/restore.s [new file with mode: 0644]
libc-top-half/musl/src/signal/powerpc/sigsetjmp.s [new file with mode: 0644]
libc-top-half/musl/src/signal/powerpc64/restore.s [new file with mode: 0644]
libc-top-half/musl/src/signal/powerpc64/sigsetjmp.s [new file with mode: 0644]
libc-top-half/musl/src/signal/psiginfo.c [new file with mode: 0644]
libc-top-half/musl/src/signal/psignal.c [new file with mode: 0644]
libc-top-half/musl/src/signal/raise.c [new file with mode: 0644]
libc-top-half/musl/src/signal/restore.c [new file with mode: 0644]
libc-top-half/musl/src/signal/s390x/restore.s [new file with mode: 0644]
libc-top-half/musl/src/signal/s390x/sigsetjmp.s [new file with mode: 0644]
libc-top-half/musl/src/signal/setitimer.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sh/restore.s [new file with mode: 0644]
libc-top-half/musl/src/signal/sh/sigsetjmp.s [new file with mode: 0644]
libc-top-half/musl/src/signal/sigaction.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigaddset.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigaltstack.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigandset.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigdelset.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigemptyset.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigfillset.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sighold.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigignore.c [new file with mode: 0644]
libc-top-half/musl/src/signal/siginterrupt.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigisemptyset.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigismember.c [new file with mode: 0644]
libc-top-half/musl/src/signal/siglongjmp.c [new file with mode: 0644]
libc-top-half/musl/src/signal/signal.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigorset.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigpause.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigpending.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigprocmask.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigqueue.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigrelse.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigrtmax.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigrtmin.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigset.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigsetjmp.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigsetjmp_tail.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigsuspend.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigtimedwait.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigwait.c [new file with mode: 0644]
libc-top-half/musl/src/signal/sigwaitinfo.c [new file with mode: 0644]
libc-top-half/musl/src/signal/x32/restore.s [new file with mode: 0644]
libc-top-half/musl/src/signal/x32/sigsetjmp.s [new file with mode: 0644]
libc-top-half/musl/src/signal/x86_64/restore.s [new file with mode: 0644]
libc-top-half/musl/src/signal/x86_64/sigsetjmp.s [new file with mode: 0644]
libc-top-half/musl/src/stat/__xstat.c [new file with mode: 0644]
libc-top-half/musl/src/stat/chmod.c [new file with mode: 0644]
libc-top-half/musl/src/stat/fchmod.c [new file with mode: 0644]
libc-top-half/musl/src/stat/fchmodat.c [new file with mode: 0644]
libc-top-half/musl/src/stat/fstat.c [new file with mode: 0644]
libc-top-half/musl/src/stat/fstatat.c [new file with mode: 0644]
libc-top-half/musl/src/stat/futimens.c [new file with mode: 0644]
libc-top-half/musl/src/stat/futimesat.c [new file with mode: 0644]
libc-top-half/musl/src/stat/lchmod.c [new file with mode: 0644]
libc-top-half/musl/src/stat/lstat.c [new file with mode: 0644]
libc-top-half/musl/src/stat/mkdir.c [new file with mode: 0644]
libc-top-half/musl/src/stat/mkdirat.c [new file with mode: 0644]
libc-top-half/musl/src/stat/mkfifo.c [new file with mode: 0644]
libc-top-half/musl/src/stat/mkfifoat.c [new file with mode: 0644]
libc-top-half/musl/src/stat/mknod.c [new file with mode: 0644]
libc-top-half/musl/src/stat/mknodat.c [new file with mode: 0644]
libc-top-half/musl/src/stat/stat.c [new file with mode: 0644]
libc-top-half/musl/src/stat/statvfs.c [new file with mode: 0644]
libc-top-half/musl/src/stat/umask.c [new file with mode: 0644]
libc-top-half/musl/src/stat/utimensat.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/__fclose_ca.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/__fdopen.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/__fmodeflags.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/__fopen_rb_ca.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/__lockfile.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/__overflow.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/__stdio_close.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/__stdio_exit.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/__stdio_read.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/__stdio_seek.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/__stdio_write.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/__stdout_write.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/__string_read.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/__toread.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/__towrite.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/__uflow.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/asprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/clearerr.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/dprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/ext.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/ext2.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fclose.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/feof.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/ferror.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fflush.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fgetc.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fgetln.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fgetpos.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fgets.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fgetwc.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fgetws.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fileno.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/flockfile.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fmemopen.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fopen.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fopencookie.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fputc.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fputs.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fputwc.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fputws.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fread.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/freopen.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fscanf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fseek.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fsetpos.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/ftell.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/ftrylockfile.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/funlockfile.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fwide.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fwprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fwrite.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/fwscanf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/getc.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/getc.h [new file with mode: 0644]
libc-top-half/musl/src/stdio/getc_unlocked.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/getchar.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/getchar_unlocked.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/getdelim.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/getline.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/gets.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/getw.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/getwc.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/getwchar.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/ofl.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/ofl_add.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/open_memstream.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/open_wmemstream.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/pclose.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/perror.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/popen.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/printf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/putc.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/putc.h [new file with mode: 0644]
libc-top-half/musl/src/stdio/putc_unlocked.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/putchar.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/putchar_unlocked.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/puts.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/putw.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/putwc.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/putwchar.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/remove.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/rename.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/rewind.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/scanf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/setbuf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/setbuffer.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/setlinebuf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/setvbuf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/snprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/sprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/sscanf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/stderr.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/stdin.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/stdout.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/swprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/swscanf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/tempnam.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/tmpfile.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/tmpnam.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/ungetc.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/ungetwc.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/vasprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/vdprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/vfprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/vfscanf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/vfwprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/vfwscanf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/vprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/vscanf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/vsnprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/vsprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/vsscanf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/vswprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/vswscanf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/vwprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/vwscanf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/wprintf.c [new file with mode: 0644]
libc-top-half/musl/src/stdio/wscanf.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/abs.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/atof.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/atoi.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/atol.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/atoll.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/bsearch.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/div.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/ecvt.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/fcvt.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/gcvt.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/imaxabs.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/imaxdiv.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/labs.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/ldiv.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/llabs.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/lldiv.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/qsort.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/strtod.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/strtol.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/wcstod.c [new file with mode: 0644]
libc-top-half/musl/src/stdlib/wcstol.c [new file with mode: 0644]
libc-top-half/musl/src/string/arm/__aeabi_memcpy.s [new file with mode: 0644]
libc-top-half/musl/src/string/arm/__aeabi_memset.s [new file with mode: 0644]
libc-top-half/musl/src/string/arm/memcpy.c [new file with mode: 0644]
libc-top-half/musl/src/string/arm/memcpy_le.S [new file with mode: 0644]
libc-top-half/musl/src/string/bcmp.c [new file with mode: 0644]
libc-top-half/musl/src/string/bcopy.c [new file with mode: 0644]
libc-top-half/musl/src/string/bzero.c [new file with mode: 0644]
libc-top-half/musl/src/string/explicit_bzero.c [new file with mode: 0644]
libc-top-half/musl/src/string/i386/memcpy.s [new file with mode: 0644]
libc-top-half/musl/src/string/i386/memmove.s [new file with mode: 0644]
libc-top-half/musl/src/string/i386/memset.s [new file with mode: 0644]
libc-top-half/musl/src/string/index.c [new file with mode: 0644]
libc-top-half/musl/src/string/memccpy.c [new file with mode: 0644]
libc-top-half/musl/src/string/memchr.c [new file with mode: 0644]
libc-top-half/musl/src/string/memcmp.c [new file with mode: 0644]
libc-top-half/musl/src/string/memcpy.c [new file with mode: 0644]
libc-top-half/musl/src/string/memmem.c [new file with mode: 0644]
libc-top-half/musl/src/string/memmove.c [new file with mode: 0644]
libc-top-half/musl/src/string/mempcpy.c [new file with mode: 0644]
libc-top-half/musl/src/string/memrchr.c [new file with mode: 0644]
libc-top-half/musl/src/string/memset.c [new file with mode: 0644]
libc-top-half/musl/src/string/rindex.c [new file with mode: 0644]
libc-top-half/musl/src/string/stpcpy.c [new file with mode: 0644]
libc-top-half/musl/src/string/stpncpy.c [new file with mode: 0644]
libc-top-half/musl/src/string/strcasecmp.c [new file with mode: 0644]
libc-top-half/musl/src/string/strcasestr.c [new file with mode: 0644]
libc-top-half/musl/src/string/strcat.c [new file with mode: 0644]
libc-top-half/musl/src/string/strchr.c [new file with mode: 0644]
libc-top-half/musl/src/string/strchrnul.c [new file with mode: 0644]
libc-top-half/musl/src/string/strcmp.c [new file with mode: 0644]
libc-top-half/musl/src/string/strcpy.c [new file with mode: 0644]
libc-top-half/musl/src/string/strcspn.c [new file with mode: 0644]
libc-top-half/musl/src/string/strdup.c [new file with mode: 0644]
libc-top-half/musl/src/string/strerror_r.c [new file with mode: 0644]
libc-top-half/musl/src/string/strlcat.c [new file with mode: 0644]
libc-top-half/musl/src/string/strlcpy.c [new file with mode: 0644]
libc-top-half/musl/src/string/strlen.c [new file with mode: 0644]
libc-top-half/musl/src/string/strncasecmp.c [new file with mode: 0644]
libc-top-half/musl/src/string/strncat.c [new file with mode: 0644]
libc-top-half/musl/src/string/strncmp.c [new file with mode: 0644]
libc-top-half/musl/src/string/strncpy.c [new file with mode: 0644]
libc-top-half/musl/src/string/strndup.c [new file with mode: 0644]
libc-top-half/musl/src/string/strnlen.c [new file with mode: 0644]
libc-top-half/musl/src/string/strpbrk.c [new file with mode: 0644]
libc-top-half/musl/src/string/strrchr.c [new file with mode: 0644]
libc-top-half/musl/src/string/strsep.c [new file with mode: 0644]
libc-top-half/musl/src/string/strsignal.c [new file with mode: 0644]
libc-top-half/musl/src/string/strspn.c [new file with mode: 0644]
libc-top-half/musl/src/string/strstr.c [new file with mode: 0644]
libc-top-half/musl/src/string/strtok.c [new file with mode: 0644]
libc-top-half/musl/src/string/strtok_r.c [new file with mode: 0644]
libc-top-half/musl/src/string/strverscmp.c [new file with mode: 0644]
libc-top-half/musl/src/string/swab.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcpcpy.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcpncpy.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcscasecmp.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcscasecmp_l.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcscat.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcschr.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcscmp.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcscpy.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcscspn.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcsdup.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcslen.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcsncasecmp.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcsncasecmp_l.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcsncat.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcsncmp.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcsncpy.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcsnlen.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcspbrk.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcsrchr.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcsspn.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcsstr.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcstok.c [new file with mode: 0644]
libc-top-half/musl/src/string/wcswcs.c [new file with mode: 0644]
libc-top-half/musl/src/string/wmemchr.c [new file with mode: 0644]
libc-top-half/musl/src/string/wmemcmp.c [new file with mode: 0644]
libc-top-half/musl/src/string/wmemcpy.c [new file with mode: 0644]
libc-top-half/musl/src/string/wmemmove.c [new file with mode: 0644]
libc-top-half/musl/src/string/wmemset.c [new file with mode: 0644]
libc-top-half/musl/src/string/x86_64/memcpy.s [new file with mode: 0644]
libc-top-half/musl/src/string/x86_64/memmove.s [new file with mode: 0644]
libc-top-half/musl/src/string/x86_64/memset.s [new file with mode: 0644]
libc-top-half/musl/src/temp/__randname.c [new file with mode: 0644]
libc-top-half/musl/src/temp/mkdtemp.c [new file with mode: 0644]
libc-top-half/musl/src/temp/mkostemp.c [new file with mode: 0644]
libc-top-half/musl/src/temp/mkostemps.c [new file with mode: 0644]
libc-top-half/musl/src/temp/mkstemp.c [new file with mode: 0644]
libc-top-half/musl/src/temp/mkstemps.c [new file with mode: 0644]
libc-top-half/musl/src/temp/mktemp.c [new file with mode: 0644]
libc-top-half/musl/src/termios/cfgetospeed.c [new file with mode: 0644]
libc-top-half/musl/src/termios/cfmakeraw.c [new file with mode: 0644]
libc-top-half/musl/src/termios/cfsetospeed.c [new file with mode: 0644]
libc-top-half/musl/src/termios/tcdrain.c [new file with mode: 0644]
libc-top-half/musl/src/termios/tcflow.c [new file with mode: 0644]
libc-top-half/musl/src/termios/tcflush.c [new file with mode: 0644]
libc-top-half/musl/src/termios/tcgetattr.c [new file with mode: 0644]
libc-top-half/musl/src/termios/tcgetsid.c [new file with mode: 0644]
libc-top-half/musl/src/termios/tcsendbreak.c [new file with mode: 0644]
libc-top-half/musl/src/termios/tcsetattr.c [new file with mode: 0644]
libc-top-half/musl/src/thread/__lock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/__set_thread_area.c [new file with mode: 0644]
libc-top-half/musl/src/thread/__syscall_cp.c [new file with mode: 0644]
libc-top-half/musl/src/thread/__timedwait.c [new file with mode: 0644]
libc-top-half/musl/src/thread/__tls_get_addr.c [new file with mode: 0644]
libc-top-half/musl/src/thread/__unmapself.c [new file with mode: 0644]
libc-top-half/musl/src/thread/__wait.c [new file with mode: 0644]
libc-top-half/musl/src/thread/aarch64/__set_thread_area.s [new file with mode: 0644]
libc-top-half/musl/src/thread/aarch64/__unmapself.s [new file with mode: 0644]
libc-top-half/musl/src/thread/aarch64/clone.s [new file with mode: 0644]
libc-top-half/musl/src/thread/aarch64/syscall_cp.s [new file with mode: 0644]
libc-top-half/musl/src/thread/arm/__aeabi_read_tp.s [new file with mode: 0644]
libc-top-half/musl/src/thread/arm/__set_thread_area.c [new file with mode: 0644]
libc-top-half/musl/src/thread/arm/__unmapself.s [new file with mode: 0644]
libc-top-half/musl/src/thread/arm/atomics.s [new file with mode: 0644]
libc-top-half/musl/src/thread/arm/clone.s [new file with mode: 0644]
libc-top-half/musl/src/thread/arm/syscall_cp.s [new file with mode: 0644]
libc-top-half/musl/src/thread/call_once.c [new file with mode: 0644]
libc-top-half/musl/src/thread/clone.c [new file with mode: 0644]
libc-top-half/musl/src/thread/cnd_broadcast.c [new file with mode: 0644]
libc-top-half/musl/src/thread/cnd_destroy.c [new file with mode: 0644]
libc-top-half/musl/src/thread/cnd_init.c [new file with mode: 0644]
libc-top-half/musl/src/thread/cnd_signal.c [new file with mode: 0644]
libc-top-half/musl/src/thread/cnd_timedwait.c [new file with mode: 0644]
libc-top-half/musl/src/thread/cnd_wait.c [new file with mode: 0644]
libc-top-half/musl/src/thread/default_attr.c [new file with mode: 0644]
libc-top-half/musl/src/thread/i386/__set_thread_area.s [new file with mode: 0644]
libc-top-half/musl/src/thread/i386/__unmapself.s [new file with mode: 0644]
libc-top-half/musl/src/thread/i386/clone.s [new file with mode: 0644]
libc-top-half/musl/src/thread/i386/syscall_cp.s [new file with mode: 0644]
libc-top-half/musl/src/thread/i386/tls.s [new file with mode: 0644]
libc-top-half/musl/src/thread/lock_ptc.c [new file with mode: 0644]
libc-top-half/musl/src/thread/m68k/__m68k_read_tp.s [new file with mode: 0644]
libc-top-half/musl/src/thread/m68k/clone.s [new file with mode: 0644]
libc-top-half/musl/src/thread/m68k/syscall_cp.s [new file with mode: 0644]
libc-top-half/musl/src/thread/microblaze/__set_thread_area.s [new file with mode: 0644]
libc-top-half/musl/src/thread/microblaze/__unmapself.s [new file with mode: 0644]
libc-top-half/musl/src/thread/microblaze/clone.s [new file with mode: 0644]
libc-top-half/musl/src/thread/microblaze/syscall_cp.s [new file with mode: 0644]
libc-top-half/musl/src/thread/mips/__unmapself.s [new file with mode: 0644]
libc-top-half/musl/src/thread/mips/clone.s [new file with mode: 0644]
libc-top-half/musl/src/thread/mips/syscall_cp.s [new file with mode: 0644]
libc-top-half/musl/src/thread/mips64/__unmapself.s [new file with mode: 0644]
libc-top-half/musl/src/thread/mips64/clone.s [new file with mode: 0644]
libc-top-half/musl/src/thread/mips64/syscall_cp.s [new file with mode: 0644]
libc-top-half/musl/src/thread/mipsn32/__unmapself.s [new file with mode: 0644]
libc-top-half/musl/src/thread/mipsn32/clone.s [new file with mode: 0644]
libc-top-half/musl/src/thread/mipsn32/syscall_cp.s [new file with mode: 0644]
libc-top-half/musl/src/thread/mtx_destroy.c [new file with mode: 0644]
libc-top-half/musl/src/thread/mtx_init.c [new file with mode: 0644]
libc-top-half/musl/src/thread/mtx_lock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/mtx_timedlock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/mtx_trylock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/mtx_unlock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/or1k/__set_thread_area.s [new file with mode: 0644]
libc-top-half/musl/src/thread/or1k/__unmapself.s [new file with mode: 0644]
libc-top-half/musl/src/thread/or1k/clone.s [new file with mode: 0644]
libc-top-half/musl/src/thread/or1k/syscall_cp.s [new file with mode: 0644]
libc-top-half/musl/src/thread/powerpc/__set_thread_area.s [new file with mode: 0644]
libc-top-half/musl/src/thread/powerpc/__unmapself.s [new file with mode: 0644]
libc-top-half/musl/src/thread/powerpc/clone.s [new file with mode: 0644]
libc-top-half/musl/src/thread/powerpc/syscall_cp.s [new file with mode: 0644]
libc-top-half/musl/src/thread/powerpc64/__set_thread_area.s [new file with mode: 0644]
libc-top-half/musl/src/thread/powerpc64/__unmapself.s [new file with mode: 0644]
libc-top-half/musl/src/thread/powerpc64/clone.s [new file with mode: 0644]
libc-top-half/musl/src/thread/powerpc64/syscall_cp.s [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_atfork.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_attr_destroy.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_attr_get.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_attr_init.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_attr_setdetachstate.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_attr_setguardsize.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_attr_setinheritsched.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_attr_setschedparam.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_attr_setschedpolicy.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_attr_setscope.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_attr_setstack.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_attr_setstacksize.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_barrier_destroy.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_barrier_init.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_barrier_wait.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_barrierattr_destroy.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_barrierattr_init.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_barrierattr_setpshared.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_cancel.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_cleanup_push.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_cond_broadcast.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_cond_destroy.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_cond_init.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_cond_signal.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_cond_timedwait.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_cond_wait.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_condattr_destroy.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_condattr_init.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_condattr_setclock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_condattr_setpshared.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_create.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_detach.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_equal.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_getattr_np.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_getconcurrency.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_getcpuclockid.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_getschedparam.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_getspecific.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_join.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_key_create.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_key_delete.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_kill.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_mutex_consistent.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_mutex_destroy.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_mutex_getprioceiling.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_mutex_init.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_mutex_lock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_mutex_setprioceiling.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_mutex_timedlock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_mutex_trylock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_mutex_unlock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_mutexattr_destroy.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_mutexattr_init.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_mutexattr_setprotocol.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_mutexattr_setpshared.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_mutexattr_setrobust.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_mutexattr_settype.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_once.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_rwlock_destroy.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_rwlock_init.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_rwlock_rdlock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_rwlock_timedrdlock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_rwlock_timedwrlock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_rwlock_tryrdlock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_rwlock_trywrlock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_rwlock_unlock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_rwlock_wrlock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_rwlockattr_destroy.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_rwlockattr_init.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_rwlockattr_setpshared.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_self.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_setattr_default_np.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_setcancelstate.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_setcanceltype.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_setconcurrency.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_setname_np.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_setschedparam.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_setschedprio.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_setspecific.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_sigmask.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_spin_destroy.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_spin_init.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_spin_lock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_spin_trylock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_spin_unlock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/pthread_testcancel.c [new file with mode: 0644]
libc-top-half/musl/src/thread/s390x/__set_thread_area.s [new file with mode: 0644]
libc-top-half/musl/src/thread/s390x/__tls_get_offset.s [new file with mode: 0644]
libc-top-half/musl/src/thread/s390x/__unmapself.s [new file with mode: 0644]
libc-top-half/musl/src/thread/s390x/clone.s [new file with mode: 0644]
libc-top-half/musl/src/thread/s390x/syscall_cp.s [new file with mode: 0644]
libc-top-half/musl/src/thread/sem_destroy.c [new file with mode: 0644]
libc-top-half/musl/src/thread/sem_getvalue.c [new file with mode: 0644]
libc-top-half/musl/src/thread/sem_init.c [new file with mode: 0644]
libc-top-half/musl/src/thread/sem_open.c [new file with mode: 0644]
libc-top-half/musl/src/thread/sem_post.c [new file with mode: 0644]
libc-top-half/musl/src/thread/sem_timedwait.c [new file with mode: 0644]
libc-top-half/musl/src/thread/sem_trywait.c [new file with mode: 0644]
libc-top-half/musl/src/thread/sem_unlink.c [new file with mode: 0644]
libc-top-half/musl/src/thread/sem_wait.c [new file with mode: 0644]
libc-top-half/musl/src/thread/sh/__set_thread_area.c [new file with mode: 0644]
libc-top-half/musl/src/thread/sh/__unmapself.c [new file with mode: 0644]
libc-top-half/musl/src/thread/sh/__unmapself_mmu.s [new file with mode: 0644]
libc-top-half/musl/src/thread/sh/atomics.s [new file with mode: 0644]
libc-top-half/musl/src/thread/sh/clone.s [new file with mode: 0644]
libc-top-half/musl/src/thread/sh/syscall_cp.s [new file with mode: 0644]
libc-top-half/musl/src/thread/synccall.c [new file with mode: 0644]
libc-top-half/musl/src/thread/syscall_cp.c [new file with mode: 0644]
libc-top-half/musl/src/thread/thrd_create.c [new file with mode: 0644]
libc-top-half/musl/src/thread/thrd_exit.c [new file with mode: 0644]
libc-top-half/musl/src/thread/thrd_join.c [new file with mode: 0644]
libc-top-half/musl/src/thread/thrd_sleep.c [new file with mode: 0644]
libc-top-half/musl/src/thread/thrd_yield.c [new file with mode: 0644]
libc-top-half/musl/src/thread/tls.c [new file with mode: 0644]
libc-top-half/musl/src/thread/tss_create.c [new file with mode: 0644]
libc-top-half/musl/src/thread/tss_delete.c [new file with mode: 0644]
libc-top-half/musl/src/thread/tss_set.c [new file with mode: 0644]
libc-top-half/musl/src/thread/vmlock.c [new file with mode: 0644]
libc-top-half/musl/src/thread/x32/__set_thread_area.s [new file with mode: 0644]
libc-top-half/musl/src/thread/x32/__unmapself.s [new file with mode: 0644]
libc-top-half/musl/src/thread/x32/clone.s [new file with mode: 0644]
libc-top-half/musl/src/thread/x32/syscall_cp.s [new file with mode: 0644]
libc-top-half/musl/src/thread/x32/syscall_cp_fixup.c [new file with mode: 0644]
libc-top-half/musl/src/thread/x86_64/__set_thread_area.s [new file with mode: 0644]
libc-top-half/musl/src/thread/x86_64/__unmapself.s [new file with mode: 0644]
libc-top-half/musl/src/thread/x86_64/clone.s [new file with mode: 0644]
libc-top-half/musl/src/thread/x86_64/syscall_cp.s [new file with mode: 0644]
libc-top-half/musl/src/time/__map_file.c [new file with mode: 0644]
libc-top-half/musl/src/time/__month_to_secs.c [new file with mode: 0644]
libc-top-half/musl/src/time/__secs_to_tm.c [new file with mode: 0644]
libc-top-half/musl/src/time/__tm_to_secs.c [new file with mode: 0644]
libc-top-half/musl/src/time/__tz.c [new file with mode: 0644]
libc-top-half/musl/src/time/__year_to_secs.c [new file with mode: 0644]
libc-top-half/musl/src/time/asctime.c [new file with mode: 0644]
libc-top-half/musl/src/time/asctime_r.c [new file with mode: 0644]
libc-top-half/musl/src/time/clock.c [new file with mode: 0644]
libc-top-half/musl/src/time/clock_getcpuclockid.c [new file with mode: 0644]
libc-top-half/musl/src/time/clock_getres.c [new file with mode: 0644]
libc-top-half/musl/src/time/clock_gettime.c [new file with mode: 0644]
libc-top-half/musl/src/time/clock_nanosleep.c [new file with mode: 0644]
libc-top-half/musl/src/time/clock_settime.c [new file with mode: 0644]
libc-top-half/musl/src/time/ctime.c [new file with mode: 0644]
libc-top-half/musl/src/time/ctime_r.c [new file with mode: 0644]
libc-top-half/musl/src/time/difftime.c [new file with mode: 0644]
libc-top-half/musl/src/time/ftime.c [new file with mode: 0644]
libc-top-half/musl/src/time/getdate.c [new file with mode: 0644]
libc-top-half/musl/src/time/gettimeofday.c [new file with mode: 0644]
libc-top-half/musl/src/time/gmtime.c [new file with mode: 0644]
libc-top-half/musl/src/time/gmtime_r.c [new file with mode: 0644]
libc-top-half/musl/src/time/localtime.c [new file with mode: 0644]
libc-top-half/musl/src/time/localtime_r.c [new file with mode: 0644]
libc-top-half/musl/src/time/mktime.c [new file with mode: 0644]
libc-top-half/musl/src/time/nanosleep.c [new file with mode: 0644]
libc-top-half/musl/src/time/strftime.c [new file with mode: 0644]
libc-top-half/musl/src/time/strptime.c [new file with mode: 0644]
libc-top-half/musl/src/time/time.c [new file with mode: 0644]
libc-top-half/musl/src/time/time_impl.h [new file with mode: 0644]
libc-top-half/musl/src/time/timegm.c [new file with mode: 0644]
libc-top-half/musl/src/time/timer_create.c [new file with mode: 0644]
libc-top-half/musl/src/time/timer_delete.c [new file with mode: 0644]
libc-top-half/musl/src/time/timer_getoverrun.c [new file with mode: 0644]
libc-top-half/musl/src/time/timer_gettime.c [new file with mode: 0644]
libc-top-half/musl/src/time/timer_settime.c [new file with mode: 0644]
libc-top-half/musl/src/time/times.c [new file with mode: 0644]
libc-top-half/musl/src/time/timespec_get.c [new file with mode: 0644]
libc-top-half/musl/src/time/utime.c [new file with mode: 0644]
libc-top-half/musl/src/time/wcsftime.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/_exit.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/access.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/acct.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/alarm.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/chdir.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/chown.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/close.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/ctermid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/dup.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/dup2.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/dup3.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/faccessat.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/fchdir.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/fchown.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/fchownat.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/fdatasync.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/fsync.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/ftruncate.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/getcwd.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/getegid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/geteuid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/getgid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/getgroups.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/gethostname.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/getlogin.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/getlogin_r.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/getpgid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/getpgrp.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/getpid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/getppid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/getsid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/getuid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/isatty.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/lchown.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/link.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/linkat.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/lseek.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/mips/pipe.s [new file with mode: 0644]
libc-top-half/musl/src/unistd/mips64/pipe.s [new file with mode: 0644]
libc-top-half/musl/src/unistd/mipsn32/pipe.s [new file with mode: 0644]
libc-top-half/musl/src/unistd/nice.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/pause.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/pipe.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/pipe2.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/posix_close.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/pread.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/preadv.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/pwrite.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/pwritev.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/read.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/readlink.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/readlinkat.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/readv.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/renameat.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/rmdir.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/setegid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/seteuid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/setgid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/setpgid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/setpgrp.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/setregid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/setresgid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/setresuid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/setreuid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/setsid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/setuid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/setxid.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/sh/pipe.s [new file with mode: 0644]
libc-top-half/musl/src/unistd/sleep.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/symlink.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/symlinkat.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/sync.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/tcgetpgrp.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/tcsetpgrp.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/truncate.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/ttyname.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/ttyname_r.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/ualarm.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/unlink.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/unlinkat.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/usleep.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/write.c [new file with mode: 0644]
libc-top-half/musl/src/unistd/writev.c [new file with mode: 0644]
libc-top-half/musl/tools/add-cfi.common.awk [new file with mode: 0644]
libc-top-half/musl/tools/add-cfi.i386.awk [new file with mode: 0644]
libc-top-half/musl/tools/add-cfi.x86_64.awk [new file with mode: 0644]
libc-top-half/musl/tools/install.sh [new file with mode: 0755]
libc-top-half/musl/tools/ld.musl-clang.in [new file with mode: 0644]
libc-top-half/musl/tools/mkalltypes.sed [new file with mode: 0644]
libc-top-half/musl/tools/musl-clang.in [new file with mode: 0644]
libc-top-half/musl/tools/musl-gcc.specs.sh [new file with mode: 0644]
libc-top-half/musl/tools/version.sh [new file with mode: 0644]
libc-top-half/sources/LICENSE [new file with mode: 0644]
libc-top-half/sources/arc4random.c [new file with mode: 0644]