├── .gitattributes ├── .github ├── actions │ └── setup │ │ └── action.yml └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── LICENSE ├── LICENSE-APACHE ├── LICENSE-APACHE-LLVM ├── LICENSE-MIT ├── Makefile ├── README.md ├── dlmalloc ├── include │ └── unistd.h └── src │ ├── dlmalloc.c │ └── malloc.c ├── emmalloc └── emmalloc.c ├── expected ├── wasm32-wasip1-threads │ ├── defined-symbols.txt │ ├── include-all.c │ ├── predefined-macros.txt │ └── undefined-symbols.txt ├── wasm32-wasip1 │ ├── defined-symbols.txt │ ├── include-all.c │ ├── predefined-macros.txt │ └── undefined-symbols.txt └── wasm32-wasip2 │ ├── defined-symbols.txt │ ├── include-all.c │ ├── predefined-macros.txt │ └── undefined-symbols.txt ├── fts ├── config.h ├── musl-fts │ ├── COPYING │ ├── NOTICE.wasi-libc.md │ ├── fts.c │ └── fts.h ├── patches │ └── 0001-Add-conditional-handling-for-fchdir-and-chdir-functi.patch └── update-musl-fts.sh ├── libc-bottom-half ├── README.md ├── clocks │ ├── clock.c │ ├── getrusage.c │ └── times.c ├── cloudlibc │ ├── LICENSE │ └── src │ │ ├── common │ │ ├── clock.h │ │ ├── errors.h │ │ ├── limits.h │ │ └── time.h │ │ ├── include │ │ └── _ │ │ │ └── cdefs.h │ │ └── libc │ │ ├── dirent │ │ ├── closedir.c │ │ ├── dirent_impl.h │ │ ├── dirfd.c │ │ ├── fdclosedir.c │ │ ├── fdopendir.c │ │ ├── opendirat.c │ │ ├── readdir.c │ │ ├── rewinddir.c │ │ ├── scandirat.c │ │ ├── seekdir.c │ │ └── telldir.c │ │ ├── errno │ │ └── errno.c │ │ ├── fcntl │ │ ├── fcntl.c │ │ ├── openat.c │ │ ├── posix_fadvise.c │ │ └── posix_fallocate.c │ │ ├── poll │ │ └── poll.c │ │ ├── sched │ │ └── sched_yield.c │ │ ├── stdio │ │ └── renameat.c │ │ ├── stdlib │ │ └── _Exit.c │ │ ├── sys │ │ ├── ioctl │ │ │ └── ioctl.c │ │ ├── select │ │ │ ├── pselect.c │ │ │ └── select.c │ │ ├── socket │ │ │ ├── getsockopt.c │ │ │ ├── recv.c │ │ │ ├── send.c │ │ │ ├── shutdown.c │ │ │ └── socket_impl.h │ │ ├── stat │ │ │ ├── fstat.c │ │ │ ├── fstatat.c │ │ │ ├── futimens.c │ │ │ ├── mkdirat.c │ │ │ ├── stat_impl.h │ │ │ └── utimensat.c │ │ ├── time │ │ │ └── gettimeofday.c │ │ └── uio │ │ │ ├── preadv.c │ │ │ ├── pwritev.c │ │ │ ├── readv.c │ │ │ └── writev.c │ │ ├── time │ │ ├── CLOCK_MONOTONIC.c │ │ ├── CLOCK_REALTIME.c │ │ ├── clock_getres.c │ │ ├── clock_gettime.c │ │ ├── clock_nanosleep.c │ │ ├── nanosleep.c │ │ └── time.c │ │ └── unistd │ │ ├── faccessat.c │ │ ├── fdatasync.c │ │ ├── fsync.c │ │ ├── ftruncate.c │ │ ├── linkat.c │ │ ├── lseek.c │ │ ├── pread.c │ │ ├── pwrite.c │ │ ├── read.c │ │ ├── readlinkat.c │ │ ├── sleep.c │ │ ├── symlinkat.c │ │ ├── unlinkat.c │ │ ├── usleep.c │ │ └── write.c ├── crt │ ├── crt1-command.c │ ├── crt1-reactor.c │ └── crt1.c ├── getpid │ └── getpid.c ├── headers │ ├── private │ │ ├── _ │ │ │ ├── limits.h │ │ │ ├── struct │ │ │ │ ├── timespec.h │ │ │ │ └── timeval.h │ │ │ └── types.h │ │ ├── assert.h │ │ ├── common │ │ │ └── crt.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── sched.h │ │ ├── stdarg.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── sys │ │ │ └── mman.h │ │ ├── threads.h │ │ └── wasi │ │ │ ├── descriptor_table.h │ │ │ ├── file.h │ │ │ ├── file_utils.h │ │ │ ├── poll.h │ │ │ ├── sockets_utils.h │ │ │ ├── stdio.h │ │ │ ├── tcp.h │ │ │ └── udp.h │ └── public │ │ ├── __errno.h │ │ ├── __errno_values.h │ │ ├── __fd_set.h │ │ ├── __function___isatty.h │ │ ├── __functions_malloc.h │ │ ├── __functions_memcpy.h │ │ ├── __header_dirent.h │ │ ├── __header_fcntl.h │ │ ├── __header_inttypes.h │ │ ├── __header_netinet_in.h │ │ ├── __header_poll.h │ │ ├── __header_stdlib.h │ │ ├── __header_string.h │ │ ├── __header_sys_ioctl.h │ │ ├── __header_sys_resource.h │ │ ├── __header_sys_socket.h │ │ ├── __header_sys_stat.h │ │ ├── __header_time.h │ │ ├── __header_unistd.h │ │ ├── __macro_FD_SETSIZE.h │ │ ├── __macro_PAGESIZE.h │ │ ├── __mode_t.h │ │ ├── __seek.h │ │ ├── __struct_dirent.h │ │ ├── __struct_in6_addr.h │ │ ├── __struct_in_addr.h │ │ ├── __struct_iovec.h │ │ ├── __struct_msghdr.h │ │ ├── __struct_pollfd.h │ │ ├── __struct_rusage.h │ │ ├── __struct_sockaddr.h │ │ ├── __struct_sockaddr_in.h │ │ ├── __struct_sockaddr_in6.h │ │ ├── __struct_sockaddr_storage.h │ │ ├── __struct_sockaddr_un.h │ │ ├── __struct_stat.h │ │ ├── __struct_timespec.h │ │ ├── __struct_timeval.h │ │ ├── __struct_tm.h │ │ ├── __struct_tms.h │ │ ├── __typedef_DIR.h │ │ ├── __typedef_blkcnt_t.h │ │ ├── __typedef_blksize_t.h │ │ ├── __typedef_clock_t.h │ │ ├── __typedef_clockid_t.h │ │ ├── __typedef_dev_t.h │ │ ├── __typedef_fd_set.h │ │ ├── __typedef_gid_t.h │ │ ├── __typedef_in_addr_t.h │ │ ├── __typedef_in_port_t.h │ │ ├── __typedef_ino_t.h │ │ ├── __typedef_mode_t.h │ │ ├── __typedef_nfds_t.h │ │ ├── __typedef_nlink_t.h │ │ ├── __typedef_off_t.h │ │ ├── __typedef_sa_family_t.h │ │ ├── __typedef_sigset_t.h │ │ ├── __typedef_socklen_t.h │ │ ├── __typedef_ssize_t.h │ │ ├── __typedef_suseconds_t.h │ │ ├── __typedef_time_t.h │ │ ├── __typedef_uid_t.h │ │ ├── __wasi_snapshot.h │ │ ├── dirent.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── inttypes.h │ │ ├── netinet │ │ └── in.h │ │ ├── poll.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── sys │ │ ├── ioctl.h │ │ ├── resource.h │ │ ├── select.h │ │ ├── socket.h │ │ ├── stat.h │ │ ├── time.h │ │ ├── times.h │ │ ├── types.h │ │ ├── uio.h │ │ └── un.h │ │ ├── time.h │ │ ├── unistd.h │ │ ├── wasi │ │ ├── api.h │ │ ├── libc-environ.h │ │ ├── libc-find-relpath.h │ │ ├── libc-nocwd.h │ │ ├── libc.h │ │ └── wasip2.h │ │ └── wchar.h ├── mman │ └── mman.c ├── signal │ └── signal.c └── sources │ ├── __errno_location.c │ ├── __main_void.c │ ├── __wasilibc_dt.c │ ├── __wasilibc_environ.c │ ├── __wasilibc_fd_renumber.c │ ├── __wasilibc_initialize_environ.c │ ├── __wasilibc_random.c │ ├── __wasilibc_real.c │ ├── __wasilibc_rmdirat.c │ ├── __wasilibc_tell.c │ ├── __wasilibc_unlinkat.c │ ├── abort.c │ ├── accept-wasip1.c │ ├── accept-wasip2.c │ ├── at_fdcwd.c │ ├── bind.c │ ├── chdir.c │ ├── complex-builtins.c │ ├── connect.c │ ├── descriptor_table.c │ ├── environ.c │ ├── errno.c │ ├── getcwd.c │ ├── getentropy.c │ ├── getsockpeername.c │ ├── isatty.c │ ├── listen.c │ ├── math │ ├── fmin-fmax.c │ └── math-builtins.c │ ├── netdb.c │ ├── poll-wasip2.c │ ├── posix.c │ ├── preopens.c │ ├── reallocarray.c │ ├── recv.c │ ├── sbrk.c │ ├── send.c │ ├── shutdown.c │ ├── socket.c │ ├── sockets_utils.c │ ├── sockopt.c │ ├── truncate.c │ ├── wasip2.c │ ├── wasip2_component_type.o │ ├── wasip2_file.c │ ├── wasip2_file_utils.c │ ├── wasip2_stdio.c │ ├── wasip2_tcp.c │ └── wasip2_udp.c ├── libc-top-half ├── README.md ├── headers │ └── private │ │ ├── printscan.h │ │ └── wasi │ │ └── libc-environ-compat.h ├── musl │ ├── .mailmap │ ├── COPYRIGHT │ ├── INSTALL │ ├── Makefile │ ├── README │ ├── VERSION │ ├── WHATSNEW │ ├── arch │ │ ├── aarch64 │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── mman.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── fp_arch.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── arm │ │ │ ├── arch.mak │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── ioctl_fix.h │ │ │ │ ├── ipcstat.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── reg.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── generic │ │ │ ├── bits │ │ │ │ ├── dirent.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ioctl_fix.h │ │ │ │ ├── ipc.h │ │ │ │ ├── ipcstat.h │ │ │ │ ├── kd.h │ │ │ │ ├── limits.h │ │ │ │ ├── link.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── poll.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── shm.h │ │ │ │ ├── socket.h │ │ │ │ ├── soundcard.h │ │ │ │ ├── statfs.h │ │ │ │ ├── termios.h │ │ │ │ └── vt.h │ │ │ └── fp_arch.h │ │ ├── i386 │ │ │ ├── arch.mak │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ipcstat.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── reg.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── loongarch64 │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── m68k │ │ │ ├── arch.mak │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── ipcstat.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── reg.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── microblaze │ │ │ ├── arch.mak │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── float.h │ │ │ │ ├── ipcstat.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── mips │ │ │ ├── arch.mak │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipcstat.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── reg.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── ksigaction.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── mips64 │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── mman.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── reg.h │ │ │ │ ├── resource.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── ksigaction.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── mipsn32 │ │ │ ├── arch.mak │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipcstat.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── reg.h │ │ │ │ ├── resource.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── ksigaction.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── or1k │ │ │ ├── arch.mak │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── float.h │ │ │ │ ├── ipcstat.h │ │ │ │ ├── limits.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── powerpc │ │ │ ├── arch.mak │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── ipcstat.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── reg.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── powerpc64 │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipc.h │ │ │ │ ├── mman.h │ │ │ │ ├── posix.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── reg.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ ├── termios.h │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── riscv32 │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── ipcstat.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── riscv64 │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── s390x │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── ioctl_fix.h │ │ │ │ ├── limits.h │ │ │ │ ├── link.h │ │ │ │ ├── posix.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── reg.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── sh │ │ │ ├── arch.mak │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ipcstat.h │ │ │ │ ├── limits.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── ksigaction.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── wasm32 │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── dirent.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── float.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── limits.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ └── stdint.h │ │ │ ├── fp_arch.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ ├── x32 │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ │ ├── alltypes.h.in │ │ │ │ ├── fcntl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── ioctl_fix.h │ │ │ │ ├── ipc.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── msg.h │ │ │ │ ├── posix.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── reg.h │ │ │ │ ├── sem.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── stdint.h │ │ │ │ ├── syscall.h.in │ │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── ksigaction.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ │ └── x86_64 │ │ │ ├── atomic_arch.h │ │ │ ├── bits │ │ │ ├── alltypes.h.in │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── io.h │ │ │ ├── limits.h │ │ │ ├── mman.h │ │ │ ├── posix.h │ │ │ ├── ptrace.h │ │ │ ├── reg.h │ │ │ ├── sem.h │ │ │ ├── setjmp.h │ │ │ ├── signal.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── syscall.h.in │ │ │ └── user.h │ │ │ ├── crt_arch.h │ │ │ ├── ksigaction.h │ │ │ ├── kstat.h │ │ │ ├── pthread_arch.h │ │ │ ├── reloc.h │ │ │ └── syscall_arch.h │ ├── compat │ │ └── time32 │ │ │ ├── __xstat.c │ │ │ ├── adjtime32.c │ │ │ ├── adjtimex_time32.c │ │ │ ├── aio_suspend_time32.c │ │ │ ├── clock_adjtime32.c │ │ │ ├── clock_getres_time32.c │ │ │ ├── clock_gettime32.c │ │ │ ├── clock_nanosleep_time32.c │ │ │ ├── clock_settime32.c │ │ │ ├── cnd_timedwait_time32.c │ │ │ ├── ctime32.c │ │ │ ├── ctime32_r.c │ │ │ ├── difftime32.c │ │ │ ├── fstat_time32.c │ │ │ ├── fstatat_time32.c │ │ │ ├── ftime32.c │ │ │ ├── futimens_time32.c │ │ │ ├── futimes_time32.c │ │ │ ├── futimesat_time32.c │ │ │ ├── getitimer_time32.c │ │ │ ├── getrusage_time32.c │ │ │ ├── gettimeofday_time32.c │ │ │ ├── gmtime32.c │ │ │ ├── gmtime32_r.c │ │ │ ├── localtime32.c │ │ │ ├── localtime32_r.c │ │ │ ├── lstat_time32.c │ │ │ ├── lutimes_time32.c │ │ │ ├── mktime32.c │ │ │ ├── mq_timedreceive_time32.c │ │ │ ├── mq_timedsend_time32.c │ │ │ ├── mtx_timedlock_time32.c │ │ │ ├── nanosleep_time32.c │ │ │ ├── ppoll_time32.c │ │ │ ├── pselect_time32.c │ │ │ ├── pthread_cond_timedwait_time32.c │ │ │ ├── pthread_mutex_timedlock_time32.c │ │ │ ├── pthread_rwlock_timedrdlock_time32.c │ │ │ ├── pthread_rwlock_timedwrlock_time32.c │ │ │ ├── pthread_timedjoin_np_time32.c │ │ │ ├── recvmmsg_time32.c │ │ │ ├── sched_rr_get_interval_time32.c │ │ │ ├── select_time32.c │ │ │ ├── sem_timedwait_time32.c │ │ │ ├── semtimedop_time32.c │ │ │ ├── setitimer_time32.c │ │ │ ├── settimeofday_time32.c │ │ │ ├── sigtimedwait_time32.c │ │ │ ├── stat_time32.c │ │ │ ├── stime32.c │ │ │ ├── thrd_sleep_time32.c │ │ │ ├── time32.c │ │ │ ├── time32.h │ │ │ ├── time32gm.c │ │ │ ├── timer_gettime32.c │ │ │ ├── timer_settime32.c │ │ │ ├── timerfd_gettime32.c │ │ │ ├── timerfd_settime32.c │ │ │ ├── timespec_get_time32.c │ │ │ ├── utime_time32.c │ │ │ ├── utimensat_time32.c │ │ │ ├── utimes_time32.c │ │ │ ├── wait3_time32.c │ │ │ └── wait4_time32.c │ ├── configure │ ├── crt │ │ ├── Scrt1.c │ │ ├── aarch64 │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── arm │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── crt1.c │ │ ├── crti.c │ │ ├── crtn.c │ │ ├── i386 │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── microblaze │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── mips │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── mips64 │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── mipsn32 │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── or1k │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── powerpc │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── powerpc64 │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── rcrt1.c │ │ ├── s390x │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── sh │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ ├── x32 │ │ │ ├── crti.s │ │ │ └── crtn.s │ │ └── x86_64 │ │ │ ├── crti.s │ │ │ └── crtn.s │ ├── dist │ │ └── config.mak │ ├── dynamic.list │ ├── include │ │ ├── aio.h │ │ ├── alloca.h │ │ ├── alltypes.h.in │ │ ├── ar.h │ │ ├── arpa │ │ │ ├── ftp.h │ │ │ ├── inet.h │ │ │ ├── nameser.h │ │ │ ├── nameser_compat.h │ │ │ ├── telnet.h │ │ │ └── tftp.h │ │ ├── assert.h │ │ ├── byteswap.h │ │ ├── complex.h │ │ ├── cpio.h │ │ ├── crypt.h │ │ ├── ctype.h │ │ ├── dirent.h │ │ ├── dlfcn.h │ │ ├── elf.h │ │ ├── endian.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── features.h │ │ ├── fenv.h │ │ ├── float.h │ │ ├── fmtmsg.h │ │ ├── fnmatch.h │ │ ├── ftw.h │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── grp.h │ │ ├── iconv.h │ │ ├── ifaddrs.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── langinfo.h │ │ ├── lastlog.h │ │ ├── libgen.h │ │ ├── libintl.h │ │ ├── limits.h │ │ ├── link.h │ │ ├── locale.h │ │ ├── malloc.h │ │ ├── math.h │ │ ├── memory.h │ │ ├── mntent.h │ │ ├── monetary.h │ │ ├── mqueue.h │ │ ├── net │ │ │ ├── ethernet.h │ │ │ ├── if.h │ │ │ ├── if_arp.h │ │ │ └── route.h │ │ ├── netdb.h │ │ ├── netinet │ │ │ ├── ether.h │ │ │ ├── icmp6.h │ │ │ ├── if_ether.h │ │ │ ├── igmp.h │ │ │ ├── in.h │ │ │ ├── in_systm.h │ │ │ ├── ip.h │ │ │ ├── ip6.h │ │ │ ├── ip_icmp.h │ │ │ ├── tcp.h │ │ │ └── udp.h │ │ ├── netpacket │ │ │ └── packet.h │ │ ├── nl_types.h │ │ ├── paths.h │ │ ├── poll.h │ │ ├── pthread.h │ │ ├── pty.h │ │ ├── pwd.h │ │ ├── regex.h │ │ ├── resolv.h │ │ ├── sched.h │ │ ├── scsi │ │ │ ├── scsi.h │ │ │ ├── scsi_ioctl.h │ │ │ └── sg.h │ │ ├── search.h │ │ ├── semaphore.h │ │ ├── setjmp.h │ │ ├── shadow.h │ │ ├── signal.h │ │ ├── spawn.h │ │ ├── stdalign.h │ │ ├── stdarg.h │ │ ├── stdbool.h │ │ ├── stdc-predef.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdio_ext.h │ │ ├── stdlib.h │ │ ├── stdnoreturn.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── stropts.h │ │ ├── sys │ │ │ ├── acct.h │ │ │ ├── auxv.h │ │ │ ├── cachectl.h │ │ │ ├── dir.h │ │ │ ├── epoll.h │ │ │ ├── errno.h │ │ │ ├── eventfd.h │ │ │ ├── fanotify.h │ │ │ ├── fcntl.h │ │ │ ├── file.h │ │ │ ├── fsuid.h │ │ │ ├── inotify.h │ │ │ ├── io.h │ │ │ ├── ioctl.h │ │ │ ├── ipc.h │ │ │ ├── kd.h │ │ │ ├── klog.h │ │ │ ├── membarrier.h │ │ │ ├── mman.h │ │ │ ├── mount.h │ │ │ ├── msg.h │ │ │ ├── mtio.h │ │ │ ├── param.h │ │ │ ├── personality.h │ │ │ ├── poll.h │ │ │ ├── prctl.h │ │ │ ├── procfs.h │ │ │ ├── ptrace.h │ │ │ ├── quota.h │ │ │ ├── random.h │ │ │ ├── reboot.h │ │ │ ├── reg.h │ │ │ ├── resource.h │ │ │ ├── select.h │ │ │ ├── sem.h │ │ │ ├── sendfile.h │ │ │ ├── shm.h │ │ │ ├── signal.h │ │ │ ├── signalfd.h │ │ │ ├── socket.h │ │ │ ├── soundcard.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── statvfs.h │ │ │ ├── stropts.h │ │ │ ├── swap.h │ │ │ ├── syscall.h │ │ │ ├── sysinfo.h │ │ │ ├── syslog.h │ │ │ ├── sysmacros.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── timerfd.h │ │ │ ├── times.h │ │ │ ├── timex.h │ │ │ ├── ttydefaults.h │ │ │ ├── types.h │ │ │ ├── ucontext.h │ │ │ ├── uio.h │ │ │ ├── un.h │ │ │ ├── user.h │ │ │ ├── utsname.h │ │ │ ├── vfs.h │ │ │ ├── vt.h │ │ │ ├── wait.h │ │ │ └── xattr.h │ │ ├── syscall.h │ │ ├── sysexits.h │ │ ├── syslog.h │ │ ├── tar.h │ │ ├── termios.h │ │ ├── tgmath.h │ │ ├── threads.h │ │ ├── time.h │ │ ├── uchar.h │ │ ├── ucontext.h │ │ ├── ulimit.h │ │ ├── unistd.h │ │ ├── utime.h │ │ ├── utmp.h │ │ ├── utmpx.h │ │ ├── values.h │ │ ├── wait.h │ │ ├── wasi │ │ │ └── libc-busywait.h │ │ ├── wchar.h │ │ ├── wctype.h │ │ └── wordexp.h │ ├── ldso │ │ ├── dlstart.c │ │ └── dynlink.c │ ├── src │ │ ├── aio │ │ │ ├── aio.c │ │ │ ├── aio_suspend.c │ │ │ └── lio_listio.c │ │ ├── complex │ │ │ ├── __cexp.c │ │ │ ├── __cexpf.c │ │ │ ├── cabs.c │ │ │ ├── cabsf.c │ │ │ ├── cabsl.c │ │ │ ├── cacos.c │ │ │ ├── cacosf.c │ │ │ ├── cacosh.c │ │ │ ├── cacoshf.c │ │ │ ├── cacoshl.c │ │ │ ├── cacosl.c │ │ │ ├── carg.c │ │ │ ├── cargf.c │ │ │ ├── cargl.c │ │ │ ├── casin.c │ │ │ ├── casinf.c │ │ │ ├── casinh.c │ │ │ ├── casinhf.c │ │ │ ├── casinhl.c │ │ │ ├── casinl.c │ │ │ ├── catan.c │ │ │ ├── catanf.c │ │ │ ├── catanh.c │ │ │ ├── catanhf.c │ │ │ ├── catanhl.c │ │ │ ├── catanl.c │ │ │ ├── ccos.c │ │ │ ├── ccosf.c │ │ │ ├── ccosh.c │ │ │ ├── ccoshf.c │ │ │ ├── ccoshl.c │ │ │ ├── ccosl.c │ │ │ ├── cexp.c │ │ │ ├── cexpf.c │ │ │ ├── cexpl.c │ │ │ ├── cimag.c │ │ │ ├── cimagf.c │ │ │ ├── cimagl.c │ │ │ ├── clog.c │ │ │ ├── clogf.c │ │ │ ├── clogl.c │ │ │ ├── conj.c │ │ │ ├── conjf.c │ │ │ ├── conjl.c │ │ │ ├── cpow.c │ │ │ ├── cpowf.c │ │ │ ├── cpowl.c │ │ │ ├── cproj.c │ │ │ ├── cprojf.c │ │ │ ├── cprojl.c │ │ │ ├── creal.c │ │ │ ├── crealf.c │ │ │ ├── creall.c │ │ │ ├── csin.c │ │ │ ├── csinf.c │ │ │ ├── csinh.c │ │ │ ├── csinhf.c │ │ │ ├── csinhl.c │ │ │ ├── csinl.c │ │ │ ├── csqrt.c │ │ │ ├── csqrtf.c │ │ │ ├── csqrtl.c │ │ │ ├── ctan.c │ │ │ ├── ctanf.c │ │ │ ├── ctanh.c │ │ │ ├── ctanhf.c │ │ │ ├── ctanhl.c │ │ │ └── ctanl.c │ │ ├── conf │ │ │ ├── confstr.c │ │ │ ├── fpathconf.c │ │ │ ├── legacy.c │ │ │ ├── pathconf.c │ │ │ └── sysconf.c │ │ ├── crypt │ │ │ ├── crypt.c │ │ │ ├── crypt_blowfish.c │ │ │ ├── crypt_des.c │ │ │ ├── crypt_des.h │ │ │ ├── crypt_md5.c │ │ │ ├── crypt_r.c │ │ │ ├── crypt_sha256.c │ │ │ ├── crypt_sha512.c │ │ │ └── encrypt.c │ │ ├── ctype │ │ │ ├── __ctype_b_loc.c │ │ │ ├── __ctype_get_mb_cur_max.c │ │ │ ├── __ctype_tolower_loc.c │ │ │ ├── __ctype_toupper_loc.c │ │ │ ├── alpha.h │ │ │ ├── casemap.h │ │ │ ├── isalnum.c │ │ │ ├── isalpha.c │ │ │ ├── isascii.c │ │ │ ├── isblank.c │ │ │ ├── iscntrl.c │ │ │ ├── isdigit.c │ │ │ ├── isgraph.c │ │ │ ├── islower.c │ │ │ ├── isprint.c │ │ │ ├── ispunct.c │ │ │ ├── isspace.c │ │ │ ├── isupper.c │ │ │ ├── iswalnum.c │ │ │ ├── iswalpha.c │ │ │ ├── iswblank.c │ │ │ ├── iswcntrl.c │ │ │ ├── iswctype.c │ │ │ ├── iswdigit.c │ │ │ ├── iswgraph.c │ │ │ ├── iswlower.c │ │ │ ├── iswprint.c │ │ │ ├── iswpunct.c │ │ │ ├── iswspace.c │ │ │ ├── iswupper.c │ │ │ ├── iswxdigit.c │ │ │ ├── isxdigit.c │ │ │ ├── nonspacing.h │ │ │ ├── punct.h │ │ │ ├── toascii.c │ │ │ ├── tolower.c │ │ │ ├── toupper.c │ │ │ ├── towctrans.c │ │ │ ├── wcswidth.c │ │ │ ├── wctrans.c │ │ │ ├── wcwidth.c │ │ │ └── wide.h │ │ ├── dirent │ │ │ ├── __dirent.h │ │ │ ├── alphasort.c │ │ │ ├── closedir.c │ │ │ ├── dirfd.c │ │ │ ├── fdopendir.c │ │ │ ├── opendir.c │ │ │ ├── readdir.c │ │ │ ├── readdir_r.c │ │ │ ├── rewinddir.c │ │ │ ├── scandir.c │ │ │ ├── seekdir.c │ │ │ ├── telldir.c │ │ │ └── versionsort.c │ │ ├── env │ │ │ ├── __environ.c │ │ │ ├── __init_tls.c │ │ │ ├── __libc_start_main.c │ │ │ ├── __reset_tls.c │ │ │ ├── __stack_chk_fail.c │ │ │ ├── clearenv.c │ │ │ ├── getenv.c │ │ │ ├── putenv.c │ │ │ ├── secure_getenv.c │ │ │ ├── setenv.c │ │ │ └── unsetenv.c │ │ ├── errno │ │ │ ├── __errno_location.c │ │ │ ├── __strerror.h │ │ │ └── strerror.c │ │ ├── exit │ │ │ ├── _Exit.c │ │ │ ├── abort.c │ │ │ ├── abort_lock.c │ │ │ ├── arm │ │ │ │ └── __aeabi_atexit.c │ │ │ ├── assert.c │ │ │ ├── at_quick_exit.c │ │ │ ├── atexit.c │ │ │ ├── exit.c │ │ │ └── quick_exit.c │ │ ├── fcntl │ │ │ ├── creat.c │ │ │ ├── fcntl.c │ │ │ ├── open.c │ │ │ ├── openat.c │ │ │ ├── posix_fadvise.c │ │ │ └── posix_fallocate.c │ │ ├── fenv │ │ │ ├── __flt_rounds.c │ │ │ ├── aarch64 │ │ │ │ └── fenv.s │ │ │ ├── arm │ │ │ │ ├── fenv-hf.S │ │ │ │ └── fenv.c │ │ │ ├── fegetexceptflag.c │ │ │ ├── feholdexcept.c │ │ │ ├── fenv.c │ │ │ ├── fesetexceptflag.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── i386 │ │ │ │ └── fenv.s │ │ │ ├── loongarch64 │ │ │ │ └── fenv.S │ │ │ ├── m68k │ │ │ │ └── fenv.c │ │ │ ├── mips │ │ │ │ ├── fenv-sf.c │ │ │ │ └── fenv.S │ │ │ ├── mips64 │ │ │ │ ├── fenv-sf.c │ │ │ │ └── fenv.S │ │ │ ├── mipsn32 │ │ │ │ ├── fenv-sf.c │ │ │ │ └── fenv.S │ │ │ ├── powerpc │ │ │ │ ├── fenv-sf.c │ │ │ │ └── fenv.S │ │ │ ├── powerpc64 │ │ │ │ └── fenv.c │ │ │ ├── riscv32 │ │ │ │ ├── fenv-sf.c │ │ │ │ └── fenv.S │ │ │ ├── riscv64 │ │ │ │ ├── fenv-sf.c │ │ │ │ └── fenv.S │ │ │ ├── s390x │ │ │ │ └── fenv.c │ │ │ ├── sh │ │ │ │ ├── fenv-nofpu.c │ │ │ │ └── fenv.S │ │ │ ├── x32 │ │ │ │ └── fenv.s │ │ │ └── x86_64 │ │ │ │ └── fenv.s │ │ ├── include │ │ │ ├── arpa │ │ │ │ └── inet.h │ │ │ ├── crypt.h │ │ │ ├── errno.h │ │ │ ├── features.h │ │ │ ├── langinfo.h │ │ │ ├── pthread.h │ │ │ ├── resolv.h │ │ │ ├── signal.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ │ ├── auxv.h │ │ │ │ ├── membarrier.h │ │ │ │ ├── mman.h │ │ │ │ ├── stat.h │ │ │ │ ├── sysinfo.h │ │ │ │ └── time.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ └── wchar.h │ │ ├── internal │ │ │ ├── aio_impl.h │ │ │ ├── atomic.h │ │ │ ├── complex_impl.h │ │ │ ├── defsysinfo.c │ │ │ ├── dynlink.h │ │ │ ├── emulate_wait4.c │ │ │ ├── fdpic_crt.h │ │ │ ├── floatscan.c │ │ │ ├── floatscan.h │ │ │ ├── fork_impl.h │ │ │ ├── futex.h │ │ │ ├── i386 │ │ │ │ └── defsysinfo.s │ │ │ ├── intscan.c │ │ │ ├── intscan.h │ │ │ ├── ksigaction.h │ │ │ ├── libc.c │ │ │ ├── libc.h │ │ │ ├── libm.h │ │ │ ├── locale_impl.h │ │ │ ├── lock.h │ │ │ ├── procfdname.c │ │ │ ├── pthread_impl.h │ │ │ ├── sh │ │ │ │ └── __shcall.c │ │ │ ├── shgetc.c │ │ │ ├── shgetc.h │ │ │ ├── stdio_impl.h │ │ │ ├── syscall.h │ │ │ ├── syscall_ret.c │ │ │ ├── vdso.c │ │ │ └── version.c │ │ ├── ipc │ │ │ ├── ftok.c │ │ │ ├── ipc.h │ │ │ ├── msgctl.c │ │ │ ├── msgget.c │ │ │ ├── msgrcv.c │ │ │ ├── msgsnd.c │ │ │ ├── semctl.c │ │ │ ├── semget.c │ │ │ ├── semop.c │ │ │ ├── semtimedop.c │ │ │ ├── shmat.c │ │ │ ├── shmctl.c │ │ │ ├── shmdt.c │ │ │ └── shmget.c │ │ ├── ldso │ │ │ ├── __dlsym.c │ │ │ ├── aarch64 │ │ │ │ ├── dlsym.s │ │ │ │ └── tlsdesc.s │ │ │ ├── arm │ │ │ │ ├── dlsym.s │ │ │ │ ├── dlsym_time64.S │ │ │ │ ├── find_exidx.c │ │ │ │ └── tlsdesc.S │ │ │ ├── dl_iterate_phdr.c │ │ │ ├── dladdr.c │ │ │ ├── dlclose.c │ │ │ ├── dlerror.c │ │ │ ├── dlinfo.c │ │ │ ├── dlopen.c │ │ │ ├── dlsym.c │ │ │ ├── i386 │ │ │ │ ├── dlsym.s │ │ │ │ ├── dlsym_time64.S │ │ │ │ └── tlsdesc.s │ │ │ ├── loongarch64 │ │ │ │ └── dlsym.s │ │ │ ├── m68k │ │ │ │ ├── dlsym.s │ │ │ │ └── dlsym_time64.S │ │ │ ├── microblaze │ │ │ │ ├── dlsym.s │ │ │ │ └── dlsym_time64.S │ │ │ ├── mips │ │ │ │ ├── dlsym.s │ │ │ │ └── dlsym_time64.S │ │ │ ├── mips64 │ │ │ │ └── dlsym.s │ │ │ ├── mipsn32 │ │ │ │ ├── dlsym.s │ │ │ │ └── dlsym_time64.S │ │ │ ├── or1k │ │ │ │ ├── dlsym.s │ │ │ │ └── dlsym_time64.S │ │ │ ├── powerpc │ │ │ │ ├── dlsym.s │ │ │ │ └── dlsym_time64.S │ │ │ ├── powerpc64 │ │ │ │ └── dlsym.s │ │ │ ├── riscv32 │ │ │ │ └── dlsym.s │ │ │ ├── riscv64 │ │ │ │ ├── dlsym.s │ │ │ │ └── tlsdesc.s │ │ │ ├── s390x │ │ │ │ └── dlsym.s │ │ │ ├── sh │ │ │ │ ├── dlsym.s │ │ │ │ └── dlsym_time64.S │ │ │ ├── tlsdesc.c │ │ │ ├── x32 │ │ │ │ └── dlsym.s │ │ │ └── x86_64 │ │ │ │ ├── dlsym.s │ │ │ │ └── tlsdesc.s │ │ ├── legacy │ │ │ ├── cuserid.c │ │ │ ├── daemon.c │ │ │ ├── err.c │ │ │ ├── euidaccess.c │ │ │ ├── ftw.c │ │ │ ├── futimes.c │ │ │ ├── getdtablesize.c │ │ │ ├── getloadavg.c │ │ │ ├── getpagesize.c │ │ │ ├── getpass.c │ │ │ ├── getusershell.c │ │ │ ├── isastream.c │ │ │ ├── lutimes.c │ │ │ ├── ulimit.c │ │ │ ├── utmpx.c │ │ │ └── valloc.c │ │ ├── linux │ │ │ ├── adjtime.c │ │ │ ├── adjtimex.c │ │ │ ├── arch_prctl.c │ │ │ ├── brk.c │ │ │ ├── cache.c │ │ │ ├── cap.c │ │ │ ├── chroot.c │ │ │ ├── clock_adjtime.c │ │ │ ├── clone.c │ │ │ ├── copy_file_range.c │ │ │ ├── epoll.c │ │ │ ├── eventfd.c │ │ │ ├── fallocate.c │ │ │ ├── fanotify.c │ │ │ ├── flock.c │ │ │ ├── getdents.c │ │ │ ├── getrandom.c │ │ │ ├── gettid.c │ │ │ ├── inotify.c │ │ │ ├── ioperm.c │ │ │ ├── iopl.c │ │ │ ├── klogctl.c │ │ │ ├── membarrier.c │ │ │ ├── memfd_create.c │ │ │ ├── mlock2.c │ │ │ ├── module.c │ │ │ ├── mount.c │ │ │ ├── name_to_handle_at.c │ │ │ ├── open_by_handle_at.c │ │ │ ├── personality.c │ │ │ ├── pivot_root.c │ │ │ ├── prctl.c │ │ │ ├── preadv2.c │ │ │ ├── prlimit.c │ │ │ ├── process_vm.c │ │ │ ├── ptrace.c │ │ │ ├── pwritev2.c │ │ │ ├── quotactl.c │ │ │ ├── readahead.c │ │ │ ├── reboot.c │ │ │ ├── remap_file_pages.c │ │ │ ├── sbrk.c │ │ │ ├── sendfile.c │ │ │ ├── setfsgid.c │ │ │ ├── setfsuid.c │ │ │ ├── setgroups.c │ │ │ ├── sethostname.c │ │ │ ├── setns.c │ │ │ ├── settimeofday.c │ │ │ ├── signalfd.c │ │ │ ├── splice.c │ │ │ ├── statx.c │ │ │ ├── stime.c │ │ │ ├── swap.c │ │ │ ├── sync_file_range.c │ │ │ ├── syncfs.c │ │ │ ├── sysinfo.c │ │ │ ├── tee.c │ │ │ ├── timerfd.c │ │ │ ├── unshare.c │ │ │ ├── utimes.c │ │ │ ├── vhangup.c │ │ │ ├── vmsplice.c │ │ │ ├── wait3.c │ │ │ ├── wait4.c │ │ │ ├── x32 │ │ │ │ └── sysinfo.c │ │ │ └── xattr.c │ │ ├── locale │ │ │ ├── __lctrans.c │ │ │ ├── __mo_lookup.c │ │ │ ├── big5.h │ │ │ ├── bind_textdomain_codeset.c │ │ │ ├── c_locale.c │ │ │ ├── catclose.c │ │ │ ├── catgets.c │ │ │ ├── catopen.c │ │ │ ├── codepages.h │ │ │ ├── dcngettext.c │ │ │ ├── duplocale.c │ │ │ ├── freelocale.c │ │ │ ├── gb18030.h │ │ │ ├── hkscs.h │ │ │ ├── iconv.c │ │ │ ├── iconv_close.c │ │ │ ├── jis0208.h │ │ │ ├── ksc.h │ │ │ ├── langinfo.c │ │ │ ├── legacychars.h │ │ │ ├── locale_map.c │ │ │ ├── localeconv.c │ │ │ ├── newlocale.c │ │ │ ├── pleval.c │ │ │ ├── pleval.h │ │ │ ├── revjis.h │ │ │ ├── setlocale.c │ │ │ ├── strcoll.c │ │ │ ├── strfmon.c │ │ │ ├── strtod_l.c │ │ │ ├── strxfrm.c │ │ │ ├── textdomain.c │ │ │ ├── uselocale.c │ │ │ ├── wcscoll.c │ │ │ └── wcsxfrm.c │ │ ├── malloc │ │ │ ├── calloc.c │ │ │ ├── free.c │ │ │ ├── libc_calloc.c │ │ │ ├── lite_malloc.c │ │ │ ├── mallocng │ │ │ │ ├── aligned_alloc.c │ │ │ │ ├── donate.c │ │ │ │ ├── free.c │ │ │ │ ├── glue.h │ │ │ │ ├── malloc.c │ │ │ │ ├── malloc_usable_size.c │ │ │ │ ├── meta.h │ │ │ │ └── realloc.c │ │ │ ├── memalign.c │ │ │ ├── oldmalloc │ │ │ │ ├── aligned_alloc.c │ │ │ │ ├── malloc.c │ │ │ │ ├── malloc_impl.h │ │ │ │ └── malloc_usable_size.c │ │ │ ├── posix_memalign.c │ │ │ ├── realloc.c │ │ │ ├── reallocarray.c │ │ │ └── replaced.c │ │ ├── math │ │ │ ├── __cos.c │ │ │ ├── __cosdf.c │ │ │ ├── __cosl.c │ │ │ ├── __expo2.c │ │ │ ├── __expo2f.c │ │ │ ├── __fpclassify.c │ │ │ ├── __fpclassifyf.c │ │ │ ├── __fpclassifyl.c │ │ │ ├── __invtrigl.c │ │ │ ├── __invtrigl.h │ │ │ ├── __math_divzero.c │ │ │ ├── __math_divzerof.c │ │ │ ├── __math_invalid.c │ │ │ ├── __math_invalidf.c │ │ │ ├── __math_invalidl.c │ │ │ ├── __math_oflow.c │ │ │ ├── __math_oflowf.c │ │ │ ├── __math_uflow.c │ │ │ ├── __math_uflowf.c │ │ │ ├── __math_xflow.c │ │ │ ├── __math_xflowf.c │ │ │ ├── __polevll.c │ │ │ ├── __rem_pio2.c │ │ │ ├── __rem_pio2_large.c │ │ │ ├── __rem_pio2f.c │ │ │ ├── __rem_pio2l.c │ │ │ ├── __signbit.c │ │ │ ├── __signbitf.c │ │ │ ├── __signbitl.c │ │ │ ├── __sin.c │ │ │ ├── __sindf.c │ │ │ ├── __sinl.c │ │ │ ├── __tan.c │ │ │ ├── __tandf.c │ │ │ ├── __tanl.c │ │ │ ├── aarch64 │ │ │ │ ├── ceil.c │ │ │ │ ├── ceilf.c │ │ │ │ ├── fabs.c │ │ │ │ ├── fabsf.c │ │ │ │ ├── floor.c │ │ │ │ ├── floorf.c │ │ │ │ ├── fma.c │ │ │ │ ├── fmaf.c │ │ │ │ ├── fmax.c │ │ │ │ ├── fmaxf.c │ │ │ │ ├── fmin.c │ │ │ │ ├── fminf.c │ │ │ │ ├── llrint.c │ │ │ │ ├── llrintf.c │ │ │ │ ├── llround.c │ │ │ │ ├── llroundf.c │ │ │ │ ├── lrint.c │ │ │ │ ├── lrintf.c │ │ │ │ ├── lround.c │ │ │ │ ├── lroundf.c │ │ │ │ ├── nearbyint.c │ │ │ │ ├── nearbyintf.c │ │ │ │ ├── rint.c │ │ │ │ ├── rintf.c │ │ │ │ ├── round.c │ │ │ │ ├── roundf.c │ │ │ │ ├── sqrt.c │ │ │ │ ├── sqrtf.c │ │ │ │ ├── trunc.c │ │ │ │ └── truncf.c │ │ │ ├── acos.c │ │ │ ├── acosf.c │ │ │ ├── acosh.c │ │ │ ├── acoshf.c │ │ │ ├── acoshl.c │ │ │ ├── acosl.c │ │ │ ├── arm │ │ │ │ ├── fabs.c │ │ │ │ ├── fabsf.c │ │ │ │ ├── fma.c │ │ │ │ ├── fmaf.c │ │ │ │ ├── sqrt.c │ │ │ │ └── sqrtf.c │ │ │ ├── asin.c │ │ │ ├── asinf.c │ │ │ ├── asinh.c │ │ │ ├── asinhf.c │ │ │ ├── asinhl.c │ │ │ ├── asinl.c │ │ │ ├── atan.c │ │ │ ├── atan2.c │ │ │ ├── atan2f.c │ │ │ ├── atan2l.c │ │ │ ├── atanf.c │ │ │ ├── atanh.c │ │ │ ├── atanhf.c │ │ │ ├── atanhl.c │ │ │ ├── atanl.c │ │ │ ├── cbrt.c │ │ │ ├── cbrtf.c │ │ │ ├── cbrtl.c │ │ │ ├── ceil.c │ │ │ ├── ceilf.c │ │ │ ├── ceill.c │ │ │ ├── copysign.c │ │ │ ├── copysignf.c │ │ │ ├── copysignl.c │ │ │ ├── cos.c │ │ │ ├── cosf.c │ │ │ ├── cosh.c │ │ │ ├── coshf.c │ │ │ ├── coshl.c │ │ │ ├── cosl.c │ │ │ ├── erf.c │ │ │ ├── erff.c │ │ │ ├── erfl.c │ │ │ ├── exp.c │ │ │ ├── exp10.c │ │ │ ├── exp10f.c │ │ │ ├── exp10l.c │ │ │ ├── exp2.c │ │ │ ├── exp2f.c │ │ │ ├── exp2f_data.c │ │ │ ├── exp2f_data.h │ │ │ ├── exp2l.c │ │ │ ├── exp_data.c │ │ │ ├── exp_data.h │ │ │ ├── expf.c │ │ │ ├── expl.c │ │ │ ├── expm1.c │ │ │ ├── expm1f.c │ │ │ ├── expm1l.c │ │ │ ├── fabs.c │ │ │ ├── fabsf.c │ │ │ ├── fabsl.c │ │ │ ├── fdim.c │ │ │ ├── fdimf.c │ │ │ ├── fdiml.c │ │ │ ├── finite.c │ │ │ ├── finitef.c │ │ │ ├── floor.c │ │ │ ├── floorf.c │ │ │ ├── floorl.c │ │ │ ├── fma.c │ │ │ ├── fmaf.c │ │ │ ├── fmal.c │ │ │ ├── fmax.c │ │ │ ├── fmaxf.c │ │ │ ├── fmaxl.c │ │ │ ├── fmin.c │ │ │ ├── fminf.c │ │ │ ├── fminl.c │ │ │ ├── fmod.c │ │ │ ├── fmodf.c │ │ │ ├── fmodl.c │ │ │ ├── frexp.c │ │ │ ├── frexpf.c │ │ │ ├── frexpl.c │ │ │ ├── hypot.c │ │ │ ├── hypotf.c │ │ │ ├── hypotl.c │ │ │ ├── i386 │ │ │ │ ├── __invtrigl.s │ │ │ │ ├── acos.s │ │ │ │ ├── acosf.s │ │ │ │ ├── acosl.s │ │ │ │ ├── asin.s │ │ │ │ ├── asinf.s │ │ │ │ ├── asinl.s │ │ │ │ ├── atan.s │ │ │ │ ├── atan2.s │ │ │ │ ├── atan2f.s │ │ │ │ ├── atan2l.s │ │ │ │ ├── atanf.s │ │ │ │ ├── atanl.s │ │ │ │ ├── ceil.s │ │ │ │ ├── ceilf.s │ │ │ │ ├── ceill.s │ │ │ │ ├── exp2l.s │ │ │ │ ├── exp_ld.s │ │ │ │ ├── expl.s │ │ │ │ ├── expm1l.s │ │ │ │ ├── fabs.c │ │ │ │ ├── fabsf.c │ │ │ │ ├── fabsl.c │ │ │ │ ├── floor.s │ │ │ │ ├── floorf.s │ │ │ │ ├── floorl.s │ │ │ │ ├── fmod.c │ │ │ │ ├── fmodf.c │ │ │ │ ├── fmodl.c │ │ │ │ ├── hypot.s │ │ │ │ ├── hypotf.s │ │ │ │ ├── ldexp.s │ │ │ │ ├── ldexpf.s │ │ │ │ ├── ldexpl.s │ │ │ │ ├── llrint.c │ │ │ │ ├── llrintf.c │ │ │ │ ├── llrintl.c │ │ │ │ ├── log.s │ │ │ │ ├── log10.s │ │ │ │ ├── log10f.s │ │ │ │ ├── log10l.s │ │ │ │ ├── log1p.s │ │ │ │ ├── log1pf.s │ │ │ │ ├── log1pl.s │ │ │ │ ├── log2.s │ │ │ │ ├── log2f.s │ │ │ │ ├── log2l.s │ │ │ │ ├── logf.s │ │ │ │ ├── logl.s │ │ │ │ ├── lrint.c │ │ │ │ ├── lrintf.c │ │ │ │ ├── lrintl.c │ │ │ │ ├── remainder.c │ │ │ │ ├── remainderf.c │ │ │ │ ├── remainderl.c │ │ │ │ ├── remquo.s │ │ │ │ ├── remquof.s │ │ │ │ ├── remquol.s │ │ │ │ ├── rint.c │ │ │ │ ├── rintf.c │ │ │ │ ├── rintl.c │ │ │ │ ├── scalbln.s │ │ │ │ ├── scalblnf.s │ │ │ │ ├── scalblnl.s │ │ │ │ ├── scalbn.s │ │ │ │ ├── scalbnf.s │ │ │ │ ├── scalbnl.s │ │ │ │ ├── sqrt.c │ │ │ │ ├── sqrtf.c │ │ │ │ ├── sqrtl.c │ │ │ │ ├── trunc.s │ │ │ │ ├── truncf.s │ │ │ │ └── truncl.s │ │ │ ├── ilogb.c │ │ │ ├── ilogbf.c │ │ │ ├── ilogbl.c │ │ │ ├── j0.c │ │ │ ├── j0f.c │ │ │ ├── j1.c │ │ │ ├── j1f.c │ │ │ ├── jn.c │ │ │ ├── jnf.c │ │ │ ├── ldexp.c │ │ │ ├── ldexpf.c │ │ │ ├── ldexpl.c │ │ │ ├── lgamma.c │ │ │ ├── lgamma_r.c │ │ │ ├── lgammaf.c │ │ │ ├── lgammaf_r.c │ │ │ ├── lgammal.c │ │ │ ├── llrint.c │ │ │ ├── llrintf.c │ │ │ ├── llrintl.c │ │ │ ├── llround.c │ │ │ ├── llroundf.c │ │ │ ├── llroundl.c │ │ │ ├── log.c │ │ │ ├── log10.c │ │ │ ├── log10f.c │ │ │ ├── log10l.c │ │ │ ├── log1p.c │ │ │ ├── log1pf.c │ │ │ ├── log1pl.c │ │ │ ├── log2.c │ │ │ ├── log2_data.c │ │ │ ├── log2_data.h │ │ │ ├── log2f.c │ │ │ ├── log2f_data.c │ │ │ ├── log2f_data.h │ │ │ ├── log2l.c │ │ │ ├── log_data.c │ │ │ ├── log_data.h │ │ │ ├── logb.c │ │ │ ├── logbf.c │ │ │ ├── logbl.c │ │ │ ├── logf.c │ │ │ ├── logf_data.c │ │ │ ├── logf_data.h │ │ │ ├── logl.c │ │ │ ├── lrint.c │ │ │ ├── lrintf.c │ │ │ ├── lrintl.c │ │ │ ├── lround.c │ │ │ ├── lroundf.c │ │ │ ├── lroundl.c │ │ │ ├── m68k │ │ │ │ └── sqrtl.c │ │ │ ├── mips │ │ │ │ ├── fabs.c │ │ │ │ ├── fabsf.c │ │ │ │ ├── sqrt.c │ │ │ │ └── sqrtf.c │ │ │ ├── modf.c │ │ │ ├── modff.c │ │ │ ├── modfl.c │ │ │ ├── nan.c │ │ │ ├── nanf.c │ │ │ ├── nanl.c │ │ │ ├── nearbyint.c │ │ │ ├── nearbyintf.c │ │ │ ├── nearbyintl.c │ │ │ ├── nextafter.c │ │ │ ├── nextafterf.c │ │ │ ├── nextafterl.c │ │ │ ├── nexttoward.c │ │ │ ├── nexttowardf.c │ │ │ ├── nexttowardl.c │ │ │ ├── pow.c │ │ │ ├── pow_data.c │ │ │ ├── pow_data.h │ │ │ ├── powerpc │ │ │ │ ├── fabs.c │ │ │ │ ├── fabsf.c │ │ │ │ ├── fma.c │ │ │ │ ├── fmaf.c │ │ │ │ ├── sqrt.c │ │ │ │ └── sqrtf.c │ │ │ ├── powerpc64 │ │ │ │ ├── ceil.c │ │ │ │ ├── ceilf.c │ │ │ │ ├── fabs.c │ │ │ │ ├── fabsf.c │ │ │ │ ├── floor.c │ │ │ │ ├── floorf.c │ │ │ │ ├── fma.c │ │ │ │ ├── fmaf.c │ │ │ │ ├── fmax.c │ │ │ │ ├── fmaxf.c │ │ │ │ ├── fmin.c │ │ │ │ ├── fminf.c │ │ │ │ ├── lrint.c │ │ │ │ ├── lrintf.c │ │ │ │ ├── lround.c │ │ │ │ ├── lroundf.c │ │ │ │ ├── round.c │ │ │ │ ├── roundf.c │ │ │ │ ├── sqrt.c │ │ │ │ ├── sqrtf.c │ │ │ │ ├── trunc.c │ │ │ │ └── truncf.c │ │ │ ├── powf.c │ │ │ ├── powf_data.c │ │ │ ├── powf_data.h │ │ │ ├── powl.c │ │ │ ├── remainder.c │ │ │ ├── remainderf.c │ │ │ ├── remainderl.c │ │ │ ├── remquo.c │ │ │ ├── remquof.c │ │ │ ├── remquol.c │ │ │ ├── rint.c │ │ │ ├── rintf.c │ │ │ ├── rintl.c │ │ │ ├── riscv32 │ │ │ │ ├── copysign.c │ │ │ │ ├── copysignf.c │ │ │ │ ├── fabs.c │ │ │ │ ├── fabsf.c │ │ │ │ ├── fma.c │ │ │ │ ├── fmaf.c │ │ │ │ ├── fmax.c │ │ │ │ ├── fmaxf.c │ │ │ │ ├── fmin.c │ │ │ │ ├── fminf.c │ │ │ │ ├── sqrt.c │ │ │ │ └── sqrtf.c │ │ │ ├── riscv64 │ │ │ │ ├── copysign.c │ │ │ │ ├── copysignf.c │ │ │ │ ├── fabs.c │ │ │ │ ├── fabsf.c │ │ │ │ ├── fma.c │ │ │ │ ├── fmaf.c │ │ │ │ ├── fmax.c │ │ │ │ ├── fmaxf.c │ │ │ │ ├── fmin.c │ │ │ │ ├── fminf.c │ │ │ │ ├── sqrt.c │ │ │ │ └── sqrtf.c │ │ │ ├── round.c │ │ │ ├── roundf.c │ │ │ ├── roundl.c │ │ │ ├── s390x │ │ │ │ ├── ceil.c │ │ │ │ ├── ceilf.c │ │ │ │ ├── ceill.c │ │ │ │ ├── fabs.c │ │ │ │ ├── fabsf.c │ │ │ │ ├── fabsl.c │ │ │ │ ├── floor.c │ │ │ │ ├── floorf.c │ │ │ │ ├── floorl.c │ │ │ │ ├── fma.c │ │ │ │ ├── fmaf.c │ │ │ │ ├── nearbyint.c │ │ │ │ ├── nearbyintf.c │ │ │ │ ├── nearbyintl.c │ │ │ │ ├── rint.c │ │ │ │ ├── rintf.c │ │ │ │ ├── rintl.c │ │ │ │ ├── round.c │ │ │ │ ├── roundf.c │ │ │ │ ├── roundl.c │ │ │ │ ├── sqrt.c │ │ │ │ ├── sqrtf.c │ │ │ │ ├── sqrtl.c │ │ │ │ ├── trunc.c │ │ │ │ ├── truncf.c │ │ │ │ └── truncl.c │ │ │ ├── scalb.c │ │ │ ├── scalbf.c │ │ │ ├── scalbln.c │ │ │ ├── scalblnf.c │ │ │ ├── scalblnl.c │ │ │ ├── scalbn.c │ │ │ ├── scalbnf.c │ │ │ ├── scalbnl.c │ │ │ ├── signgam.c │ │ │ ├── significand.c │ │ │ ├── significandf.c │ │ │ ├── sin.c │ │ │ ├── sincos.c │ │ │ ├── sincosf.c │ │ │ ├── sincosl.c │ │ │ ├── sinf.c │ │ │ ├── sinh.c │ │ │ ├── sinhf.c │ │ │ ├── sinhl.c │ │ │ ├── sinl.c │ │ │ ├── sqrt.c │ │ │ ├── sqrt_data.c │ │ │ ├── sqrt_data.h │ │ │ ├── sqrtf.c │ │ │ ├── sqrtl.c │ │ │ ├── tan.c │ │ │ ├── tanf.c │ │ │ ├── tanh.c │ │ │ ├── tanhf.c │ │ │ ├── tanhl.c │ │ │ ├── tanl.c │ │ │ ├── tgamma.c │ │ │ ├── tgammaf.c │ │ │ ├── tgammal.c │ │ │ ├── trunc.c │ │ │ ├── truncf.c │ │ │ ├── truncl.c │ │ │ ├── x32 │ │ │ │ ├── __invtrigl.s │ │ │ │ ├── acosl.s │ │ │ │ ├── asinl.s │ │ │ │ ├── atan2l.s │ │ │ │ ├── atanl.s │ │ │ │ ├── ceill.s │ │ │ │ ├── exp2l.s │ │ │ │ ├── expl.s │ │ │ │ ├── expm1l.s │ │ │ │ ├── fabs.s │ │ │ │ ├── fabsf.s │ │ │ │ ├── fabsl.s │ │ │ │ ├── floorl.s │ │ │ │ ├── fma.c │ │ │ │ ├── fmaf.c │ │ │ │ ├── fmodl.s │ │ │ │ ├── llrint.s │ │ │ │ ├── llrintf.s │ │ │ │ ├── llrintl.s │ │ │ │ ├── log10l.s │ │ │ │ ├── log1pl.s │ │ │ │ ├── log2l.s │ │ │ │ ├── logl.s │ │ │ │ ├── lrint.s │ │ │ │ ├── lrintf.s │ │ │ │ ├── lrintl.s │ │ │ │ ├── remainderl.s │ │ │ │ ├── rintl.s │ │ │ │ ├── sqrt.s │ │ │ │ ├── sqrtf.s │ │ │ │ ├── sqrtl.s │ │ │ │ └── truncl.s │ │ │ └── x86_64 │ │ │ │ ├── __invtrigl.s │ │ │ │ ├── acosl.s │ │ │ │ ├── asinl.s │ │ │ │ ├── atan2l.s │ │ │ │ ├── atanl.s │ │ │ │ ├── ceill.s │ │ │ │ ├── exp2l.s │ │ │ │ ├── expl.s │ │ │ │ ├── expm1l.s │ │ │ │ ├── fabs.c │ │ │ │ ├── fabsf.c │ │ │ │ ├── fabsl.c │ │ │ │ ├── floorl.s │ │ │ │ ├── fma.c │ │ │ │ ├── fmaf.c │ │ │ │ ├── fmodl.c │ │ │ │ ├── llrint.c │ │ │ │ ├── llrintf.c │ │ │ │ ├── llrintl.c │ │ │ │ ├── log10l.s │ │ │ │ ├── log1pl.s │ │ │ │ ├── log2l.s │ │ │ │ ├── logl.s │ │ │ │ ├── lrint.c │ │ │ │ ├── lrintf.c │ │ │ │ ├── lrintl.c │ │ │ │ ├── remainderl.c │ │ │ │ ├── remquol.c │ │ │ │ ├── rintl.c │ │ │ │ ├── sqrt.c │ │ │ │ ├── sqrtf.c │ │ │ │ ├── sqrtl.c │ │ │ │ └── truncl.s │ │ ├── misc │ │ │ ├── a64l.c │ │ │ ├── basename.c │ │ │ ├── dirname.c │ │ │ ├── dl.c │ │ │ ├── ffs.c │ │ │ ├── ffsl.c │ │ │ ├── ffsll.c │ │ │ ├── fmtmsg.c │ │ │ ├── forkpty.c │ │ │ ├── get_current_dir_name.c │ │ │ ├── getauxval.c │ │ │ ├── getdomainname.c │ │ │ ├── getentropy.c │ │ │ ├── gethostid.c │ │ │ ├── getopt.c │ │ │ ├── getopt_long.c │ │ │ ├── getpriority.c │ │ │ ├── getresgid.c │ │ │ ├── getresuid.c │ │ │ ├── getrlimit.c │ │ │ ├── getrusage.c │ │ │ ├── getsubopt.c │ │ │ ├── initgroups.c │ │ │ ├── ioctl.c │ │ │ ├── issetugid.c │ │ │ ├── lockf.c │ │ │ ├── login_tty.c │ │ │ ├── mntent.c │ │ │ ├── nftw.c │ │ │ ├── openpty.c │ │ │ ├── ptsname.c │ │ │ ├── pty.c │ │ │ ├── realpath.c │ │ │ ├── setdomainname.c │ │ │ ├── setpriority.c │ │ │ ├── setrlimit.c │ │ │ ├── syscall.c │ │ │ ├── syslog.c │ │ │ ├── uname.c │ │ │ └── wordexp.c │ │ ├── mman │ │ │ ├── madvise.c │ │ │ ├── mincore.c │ │ │ ├── mlock.c │ │ │ ├── mlockall.c │ │ │ ├── mmap.c │ │ │ ├── mprotect.c │ │ │ ├── mremap.c │ │ │ ├── msync.c │ │ │ ├── munlock.c │ │ │ ├── munlockall.c │ │ │ ├── munmap.c │ │ │ ├── posix_madvise.c │ │ │ └── shm_open.c │ │ ├── mq │ │ │ ├── mq_close.c │ │ │ ├── mq_getattr.c │ │ │ ├── mq_notify.c │ │ │ ├── mq_open.c │ │ │ ├── mq_receive.c │ │ │ ├── mq_send.c │ │ │ ├── mq_setattr.c │ │ │ ├── mq_timedreceive.c │ │ │ ├── mq_timedsend.c │ │ │ └── mq_unlink.c │ │ ├── multibyte │ │ │ ├── btowc.c │ │ │ ├── c16rtomb.c │ │ │ ├── c32rtomb.c │ │ │ ├── internal.c │ │ │ ├── internal.h │ │ │ ├── mblen.c │ │ │ ├── mbrlen.c │ │ │ ├── mbrtoc16.c │ │ │ ├── mbrtoc32.c │ │ │ ├── mbrtowc.c │ │ │ ├── mbsinit.c │ │ │ ├── mbsnrtowcs.c │ │ │ ├── mbsrtowcs.c │ │ │ ├── mbstowcs.c │ │ │ ├── mbtowc.c │ │ │ ├── wcrtomb.c │ │ │ ├── wcsnrtombs.c │ │ │ ├── wcsrtombs.c │ │ │ ├── wcstombs.c │ │ │ ├── wctob.c │ │ │ └── wctomb.c │ │ ├── network │ │ │ ├── accept.c │ │ │ ├── accept4.c │ │ │ ├── bind.c │ │ │ ├── connect.c │ │ │ ├── dn_comp.c │ │ │ ├── dn_expand.c │ │ │ ├── dn_skipname.c │ │ │ ├── dns_parse.c │ │ │ ├── ent.c │ │ │ ├── ether.c │ │ │ ├── freeaddrinfo.c │ │ │ ├── gai_strerror.c │ │ │ ├── getaddrinfo.c │ │ │ ├── gethostbyaddr.c │ │ │ ├── gethostbyaddr_r.c │ │ │ ├── gethostbyname.c │ │ │ ├── gethostbyname2.c │ │ │ ├── gethostbyname2_r.c │ │ │ ├── gethostbyname_r.c │ │ │ ├── getifaddrs.c │ │ │ ├── getnameinfo.c │ │ │ ├── getpeername.c │ │ │ ├── getservbyname.c │ │ │ ├── getservbyname_r.c │ │ │ ├── getservbyport.c │ │ │ ├── getservbyport_r.c │ │ │ ├── getsockname.c │ │ │ ├── getsockopt.c │ │ │ ├── h_errno.c │ │ │ ├── herror.c │ │ │ ├── hstrerror.c │ │ │ ├── htonl.c │ │ │ ├── htons.c │ │ │ ├── if_freenameindex.c │ │ │ ├── if_indextoname.c │ │ │ ├── if_nameindex.c │ │ │ ├── if_nametoindex.c │ │ │ ├── in6addr_any.c │ │ │ ├── in6addr_loopback.c │ │ │ ├── inet_addr.c │ │ │ ├── inet_aton.c │ │ │ ├── inet_legacy.c │ │ │ ├── inet_ntoa.c │ │ │ ├── inet_ntop.c │ │ │ ├── inet_pton.c │ │ │ ├── listen.c │ │ │ ├── lookup.h │ │ │ ├── lookup_ipliteral.c │ │ │ ├── lookup_name.c │ │ │ ├── lookup_serv.c │ │ │ ├── netlink.c │ │ │ ├── netlink.h │ │ │ ├── netname.c │ │ │ ├── ns_parse.c │ │ │ ├── ntohl.c │ │ │ ├── ntohs.c │ │ │ ├── proto.c │ │ │ ├── recv.c │ │ │ ├── recvfrom.c │ │ │ ├── recvmmsg.c │ │ │ ├── recvmsg.c │ │ │ ├── res_init.c │ │ │ ├── res_mkquery.c │ │ │ ├── res_msend.c │ │ │ ├── res_query.c │ │ │ ├── res_querydomain.c │ │ │ ├── res_send.c │ │ │ ├── res_state.c │ │ │ ├── resolvconf.c │ │ │ ├── send.c │ │ │ ├── sendmmsg.c │ │ │ ├── sendmsg.c │ │ │ ├── sendto.c │ │ │ ├── serv.c │ │ │ ├── setsockopt.c │ │ │ ├── shutdown.c │ │ │ ├── sockatmark.c │ │ │ ├── socket.c │ │ │ └── socketpair.c │ │ ├── passwd │ │ │ ├── fgetgrent.c │ │ │ ├── fgetpwent.c │ │ │ ├── fgetspent.c │ │ │ ├── getgr_a.c │ │ │ ├── getgr_r.c │ │ │ ├── getgrent.c │ │ │ ├── getgrent_a.c │ │ │ ├── getgrouplist.c │ │ │ ├── getpw_a.c │ │ │ ├── getpw_r.c │ │ │ ├── getpwent.c │ │ │ ├── getpwent_a.c │ │ │ ├── getspent.c │ │ │ ├── getspnam.c │ │ │ ├── getspnam_r.c │ │ │ ├── lckpwdf.c │ │ │ ├── nscd.h │ │ │ ├── nscd_query.c │ │ │ ├── putgrent.c │ │ │ ├── putpwent.c │ │ │ ├── putspent.c │ │ │ └── pwf.h │ │ ├── prng │ │ │ ├── __rand48_step.c │ │ │ ├── __seed48.c │ │ │ ├── drand48.c │ │ │ ├── lcong48.c │ │ │ ├── lrand48.c │ │ │ ├── mrand48.c │ │ │ ├── rand.c │ │ │ ├── rand48.h │ │ │ ├── rand_r.c │ │ │ ├── random.c │ │ │ ├── seed48.c │ │ │ └── srand48.c │ │ ├── process │ │ │ ├── _Fork.c │ │ │ ├── aarch64 │ │ │ │ └── vfork.s │ │ │ ├── arm │ │ │ │ └── vfork.s │ │ │ ├── execl.c │ │ │ ├── execle.c │ │ │ ├── execlp.c │ │ │ ├── execv.c │ │ │ ├── execve.c │ │ │ ├── execvp.c │ │ │ ├── fdop.h │ │ │ ├── fexecve.c │ │ │ ├── fork.c │ │ │ ├── i386 │ │ │ │ └── vfork.s │ │ │ ├── posix_spawn.c │ │ │ ├── posix_spawn_file_actions_addchdir.c │ │ │ ├── posix_spawn_file_actions_addclose.c │ │ │ ├── posix_spawn_file_actions_adddup2.c │ │ │ ├── posix_spawn_file_actions_addfchdir.c │ │ │ ├── posix_spawn_file_actions_addopen.c │ │ │ ├── posix_spawn_file_actions_destroy.c │ │ │ ├── posix_spawn_file_actions_init.c │ │ │ ├── posix_spawnattr_destroy.c │ │ │ ├── posix_spawnattr_getflags.c │ │ │ ├── posix_spawnattr_getpgroup.c │ │ │ ├── posix_spawnattr_getsigdefault.c │ │ │ ├── posix_spawnattr_getsigmask.c │ │ │ ├── posix_spawnattr_init.c │ │ │ ├── posix_spawnattr_sched.c │ │ │ ├── posix_spawnattr_setflags.c │ │ │ ├── posix_spawnattr_setpgroup.c │ │ │ ├── posix_spawnattr_setsigdefault.c │ │ │ ├── posix_spawnattr_setsigmask.c │ │ │ ├── posix_spawnp.c │ │ │ ├── riscv64 │ │ │ │ └── vfork.s │ │ │ ├── s390x │ │ │ │ └── vfork.s │ │ │ ├── sh │ │ │ │ └── vfork.s │ │ │ ├── system.c │ │ │ ├── vfork.c │ │ │ ├── wait.c │ │ │ ├── waitid.c │ │ │ ├── waitpid.c │ │ │ ├── x32 │ │ │ │ └── vfork.s │ │ │ └── x86_64 │ │ │ │ └── vfork.s │ │ ├── regex │ │ │ ├── fnmatch.c │ │ │ ├── glob.c │ │ │ ├── regcomp.c │ │ │ ├── regerror.c │ │ │ ├── regexec.c │ │ │ ├── tre-mem.c │ │ │ └── tre.h │ │ ├── sched │ │ │ ├── affinity.c │ │ │ ├── sched_cpucount.c │ │ │ ├── sched_get_priority_max.c │ │ │ ├── sched_getcpu.c │ │ │ ├── sched_getparam.c │ │ │ ├── sched_getscheduler.c │ │ │ ├── sched_rr_get_interval.c │ │ │ ├── sched_setparam.c │ │ │ ├── sched_setscheduler.c │ │ │ └── sched_yield.c │ │ ├── search │ │ │ ├── hsearch.c │ │ │ ├── insque.c │ │ │ ├── lsearch.c │ │ │ ├── tdelete.c │ │ │ ├── tdestroy.c │ │ │ ├── tfind.c │ │ │ ├── tsearch.c │ │ │ ├── tsearch.h │ │ │ └── twalk.c │ │ ├── select │ │ │ ├── poll.c │ │ │ ├── ppoll.c │ │ │ ├── pselect.c │ │ │ └── select.c │ │ ├── setjmp │ │ │ ├── aarch64 │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── arm │ │ │ │ ├── longjmp.S │ │ │ │ └── setjmp.S │ │ │ ├── i386 │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── longjmp.c │ │ │ ├── loongarch64 │ │ │ │ ├── longjmp.S │ │ │ │ └── setjmp.S │ │ │ ├── m68k │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── microblaze │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── mips │ │ │ │ ├── longjmp.S │ │ │ │ └── setjmp.S │ │ │ ├── mips64 │ │ │ │ ├── longjmp.S │ │ │ │ └── setjmp.S │ │ │ ├── mipsn32 │ │ │ │ ├── longjmp.S │ │ │ │ └── setjmp.S │ │ │ ├── or1k │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── powerpc │ │ │ │ ├── longjmp.S │ │ │ │ └── setjmp.S │ │ │ ├── powerpc64 │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── riscv32 │ │ │ │ ├── longjmp.S │ │ │ │ └── setjmp.S │ │ │ ├── riscv64 │ │ │ │ ├── longjmp.S │ │ │ │ └── setjmp.S │ │ │ ├── s390x │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ ├── setjmp.c │ │ │ ├── sh │ │ │ │ ├── longjmp.S │ │ │ │ └── setjmp.S │ │ │ ├── wasm32 │ │ │ │ └── rt.c │ │ │ ├── x32 │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ │ └── x86_64 │ │ │ │ ├── longjmp.s │ │ │ │ └── setjmp.s │ │ ├── signal │ │ │ ├── aarch64 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── arm │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── block.c │ │ │ ├── getitimer.c │ │ │ ├── i386 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── kill.c │ │ │ ├── killpg.c │ │ │ ├── loongarch64 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── m68k │ │ │ │ └── sigsetjmp.s │ │ │ ├── microblaze │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── mips │ │ │ │ └── sigsetjmp.s │ │ │ ├── mips64 │ │ │ │ └── sigsetjmp.s │ │ │ ├── mipsn32 │ │ │ │ └── sigsetjmp.s │ │ │ ├── or1k │ │ │ │ └── sigsetjmp.s │ │ │ ├── powerpc │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── powerpc64 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── psiginfo.c │ │ │ ├── psignal.c │ │ │ ├── raise.c │ │ │ ├── restore.c │ │ │ ├── riscv32 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── riscv64 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── s390x │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── setitimer.c │ │ │ ├── sh │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ │ ├── sigaction.c │ │ │ ├── sigaddset.c │ │ │ ├── sigaltstack.c │ │ │ ├── sigandset.c │ │ │ ├── sigdelset.c │ │ │ ├── sigemptyset.c │ │ │ ├── sigfillset.c │ │ │ ├── sighold.c │ │ │ ├── sigignore.c │ │ │ ├── siginterrupt.c │ │ │ ├── sigisemptyset.c │ │ │ ├── sigismember.c │ │ │ ├── siglongjmp.c │ │ │ ├── signal.c │ │ │ ├── sigorset.c │ │ │ ├── sigpause.c │ │ │ ├── sigpending.c │ │ │ ├── sigprocmask.c │ │ │ ├── sigqueue.c │ │ │ ├── sigrelse.c │ │ │ ├── sigrtmax.c │ │ │ ├── sigrtmin.c │ │ │ ├── sigset.c │ │ │ ├── sigsetjmp.c │ │ │ ├── sigsetjmp_tail.c │ │ │ ├── sigsuspend.c │ │ │ ├── sigtimedwait.c │ │ │ ├── sigwait.c │ │ │ ├── sigwaitinfo.c │ │ │ ├── x32 │ │ │ │ ├── getitimer.c │ │ │ │ ├── restore.s │ │ │ │ ├── setitimer.c │ │ │ │ └── sigsetjmp.s │ │ │ └── x86_64 │ │ │ │ ├── restore.s │ │ │ │ └── sigsetjmp.s │ │ ├── stat │ │ │ ├── __xstat.c │ │ │ ├── chmod.c │ │ │ ├── fchmod.c │ │ │ ├── fchmodat.c │ │ │ ├── fstat.c │ │ │ ├── fstatat.c │ │ │ ├── futimens.c │ │ │ ├── futimesat.c │ │ │ ├── lchmod.c │ │ │ ├── lstat.c │ │ │ ├── mkdir.c │ │ │ ├── mkdirat.c │ │ │ ├── mkfifo.c │ │ │ ├── mkfifoat.c │ │ │ ├── mknod.c │ │ │ ├── mknodat.c │ │ │ ├── stat.c │ │ │ ├── statvfs.c │ │ │ ├── umask.c │ │ │ └── utimensat.c │ │ ├── stdio │ │ │ ├── __fclose_ca.c │ │ │ ├── __fdopen.c │ │ │ ├── __fmodeflags.c │ │ │ ├── __fopen_rb_ca.c │ │ │ ├── __lockfile.c │ │ │ ├── __overflow.c │ │ │ ├── __stdio_close.c │ │ │ ├── __stdio_exit.c │ │ │ ├── __stdio_read.c │ │ │ ├── __stdio_seek.c │ │ │ ├── __stdio_write.c │ │ │ ├── __stdout_write.c │ │ │ ├── __toread.c │ │ │ ├── __towrite.c │ │ │ ├── __uflow.c │ │ │ ├── asprintf.c │ │ │ ├── clearerr.c │ │ │ ├── dprintf.c │ │ │ ├── ext.c │ │ │ ├── ext2.c │ │ │ ├── fclose.c │ │ │ ├── feof.c │ │ │ ├── ferror.c │ │ │ ├── fflush.c │ │ │ ├── fgetc.c │ │ │ ├── fgetln.c │ │ │ ├── fgetpos.c │ │ │ ├── fgets.c │ │ │ ├── fgetwc.c │ │ │ ├── fgetws.c │ │ │ ├── fileno.c │ │ │ ├── flockfile.c │ │ │ ├── fmemopen.c │ │ │ ├── fopen.c │ │ │ ├── fopencookie.c │ │ │ ├── fprintf.c │ │ │ ├── fputc.c │ │ │ ├── fputs.c │ │ │ ├── fputwc.c │ │ │ ├── fputws.c │ │ │ ├── fread.c │ │ │ ├── freopen.c │ │ │ ├── fscanf.c │ │ │ ├── fseek.c │ │ │ ├── fsetpos.c │ │ │ ├── ftell.c │ │ │ ├── ftrylockfile.c │ │ │ ├── funlockfile.c │ │ │ ├── fwide.c │ │ │ ├── fwprintf.c │ │ │ ├── fwrite.c │ │ │ ├── fwscanf.c │ │ │ ├── getc.c │ │ │ ├── getc.h │ │ │ ├── getc_unlocked.c │ │ │ ├── getchar.c │ │ │ ├── getchar_unlocked.c │ │ │ ├── getdelim.c │ │ │ ├── getline.c │ │ │ ├── gets.c │ │ │ ├── getw.c │ │ │ ├── getwc.c │ │ │ ├── getwchar.c │ │ │ ├── ofl.c │ │ │ ├── ofl_add.c │ │ │ ├── open_memstream.c │ │ │ ├── open_wmemstream.c │ │ │ ├── pclose.c │ │ │ ├── perror.c │ │ │ ├── popen.c │ │ │ ├── printf.c │ │ │ ├── putc.c │ │ │ ├── putc.h │ │ │ ├── putc_unlocked.c │ │ │ ├── putchar.c │ │ │ ├── putchar_unlocked.c │ │ │ ├── puts.c │ │ │ ├── putw.c │ │ │ ├── putwc.c │ │ │ ├── putwchar.c │ │ │ ├── remove.c │ │ │ ├── rename.c │ │ │ ├── rewind.c │ │ │ ├── scanf.c │ │ │ ├── setbuf.c │ │ │ ├── setbuffer.c │ │ │ ├── setlinebuf.c │ │ │ ├── setvbuf.c │ │ │ ├── snprintf.c │ │ │ ├── sprintf.c │ │ │ ├── sscanf.c │ │ │ ├── stderr.c │ │ │ ├── stdin.c │ │ │ ├── stdout.c │ │ │ ├── swprintf.c │ │ │ ├── swscanf.c │ │ │ ├── tempnam.c │ │ │ ├── tmpfile.c │ │ │ ├── tmpnam.c │ │ │ ├── ungetc.c │ │ │ ├── ungetwc.c │ │ │ ├── vasprintf.c │ │ │ ├── vdprintf.c │ │ │ ├── vfprintf.c │ │ │ ├── vfscanf.c │ │ │ ├── vfwprintf.c │ │ │ ├── vfwscanf.c │ │ │ ├── vprintf.c │ │ │ ├── vscanf.c │ │ │ ├── vsnprintf.c │ │ │ ├── vsprintf.c │ │ │ ├── vsscanf.c │ │ │ ├── vswprintf.c │ │ │ ├── vswscanf.c │ │ │ ├── vwprintf.c │ │ │ ├── vwscanf.c │ │ │ ├── wprintf.c │ │ │ └── wscanf.c │ │ ├── stdlib │ │ │ ├── abs.c │ │ │ ├── atof.c │ │ │ ├── atoi.c │ │ │ ├── atol.c │ │ │ ├── atoll.c │ │ │ ├── bsearch.c │ │ │ ├── div.c │ │ │ ├── ecvt.c │ │ │ ├── fcvt.c │ │ │ ├── gcvt.c │ │ │ ├── imaxabs.c │ │ │ ├── imaxdiv.c │ │ │ ├── labs.c │ │ │ ├── ldiv.c │ │ │ ├── llabs.c │ │ │ ├── lldiv.c │ │ │ ├── qsort.c │ │ │ ├── qsort_nr.c │ │ │ ├── strtod.c │ │ │ ├── strtol.c │ │ │ ├── wcstod.c │ │ │ └── wcstol.c │ │ ├── string │ │ │ ├── aarch64 │ │ │ │ ├── memcpy.S │ │ │ │ └── memset.S │ │ │ ├── arm │ │ │ │ ├── __aeabi_memcpy.s │ │ │ │ ├── __aeabi_memset.s │ │ │ │ └── memcpy.S │ │ │ ├── bcmp.c │ │ │ ├── bcopy.c │ │ │ ├── bzero.c │ │ │ ├── explicit_bzero.c │ │ │ ├── i386 │ │ │ │ ├── memcpy.s │ │ │ │ ├── memmove.s │ │ │ │ └── memset.s │ │ │ ├── index.c │ │ │ ├── memccpy.c │ │ │ ├── memchr.c │ │ │ ├── memcmp.c │ │ │ ├── memcpy.c │ │ │ ├── memmem.c │ │ │ ├── memmove.c │ │ │ ├── mempcpy.c │ │ │ ├── memrchr.c │ │ │ ├── memset.c │ │ │ ├── rindex.c │ │ │ ├── stpcpy.c │ │ │ ├── stpncpy.c │ │ │ ├── strcasecmp.c │ │ │ ├── strcasestr.c │ │ │ ├── strcat.c │ │ │ ├── strchr.c │ │ │ ├── strchrnul.c │ │ │ ├── strcmp.c │ │ │ ├── strcpy.c │ │ │ ├── strcspn.c │ │ │ ├── strdup.c │ │ │ ├── strerror_r.c │ │ │ ├── strlcat.c │ │ │ ├── strlcpy.c │ │ │ ├── strlen.c │ │ │ ├── strncasecmp.c │ │ │ ├── strncat.c │ │ │ ├── strncmp.c │ │ │ ├── strncpy.c │ │ │ ├── strndup.c │ │ │ ├── strnlen.c │ │ │ ├── strpbrk.c │ │ │ ├── strrchr.c │ │ │ ├── strsep.c │ │ │ ├── strsignal.c │ │ │ ├── strspn.c │ │ │ ├── strstr.c │ │ │ ├── strtok.c │ │ │ ├── strtok_r.c │ │ │ ├── strverscmp.c │ │ │ ├── swab.c │ │ │ ├── wcpcpy.c │ │ │ ├── wcpncpy.c │ │ │ ├── wcscasecmp.c │ │ │ ├── wcscasecmp_l.c │ │ │ ├── wcscat.c │ │ │ ├── wcschr.c │ │ │ ├── wcscmp.c │ │ │ ├── wcscpy.c │ │ │ ├── wcscspn.c │ │ │ ├── wcsdup.c │ │ │ ├── wcslen.c │ │ │ ├── wcsncasecmp.c │ │ │ ├── wcsncasecmp_l.c │ │ │ ├── wcsncat.c │ │ │ ├── wcsncmp.c │ │ │ ├── wcsncpy.c │ │ │ ├── wcsnlen.c │ │ │ ├── wcspbrk.c │ │ │ ├── wcsrchr.c │ │ │ ├── wcsspn.c │ │ │ ├── wcsstr.c │ │ │ ├── wcstok.c │ │ │ ├── wcswcs.c │ │ │ ├── wmemchr.c │ │ │ ├── wmemcmp.c │ │ │ ├── wmemcpy.c │ │ │ ├── wmemmove.c │ │ │ ├── wmemset.c │ │ │ └── x86_64 │ │ │ │ ├── memcpy.s │ │ │ │ ├── memmove.s │ │ │ │ └── memset.s │ │ ├── temp │ │ │ ├── __randname.c │ │ │ ├── mkdtemp.c │ │ │ ├── mkostemp.c │ │ │ ├── mkostemps.c │ │ │ ├── mkstemp.c │ │ │ ├── mkstemps.c │ │ │ └── mktemp.c │ │ ├── termios │ │ │ ├── cfgetospeed.c │ │ │ ├── cfmakeraw.c │ │ │ ├── cfsetospeed.c │ │ │ ├── tcdrain.c │ │ │ ├── tcflow.c │ │ │ ├── tcflush.c │ │ │ ├── tcgetattr.c │ │ │ ├── tcgetsid.c │ │ │ ├── tcgetwinsize.c │ │ │ ├── tcsendbreak.c │ │ │ ├── tcsetattr.c │ │ │ └── tcsetwinsize.c │ │ ├── thread │ │ │ ├── __lock.c │ │ │ ├── __set_thread_area.c │ │ │ ├── __syscall_cp.c │ │ │ ├── __timedwait.c │ │ │ ├── __tls_get_addr.c │ │ │ ├── __unmapself.c │ │ │ ├── __wait.c │ │ │ ├── aarch64 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── arm │ │ │ │ ├── __aeabi_read_tp.s │ │ │ │ ├── __set_thread_area.c │ │ │ │ ├── __unmapself.s │ │ │ │ ├── atomics.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── call_once.c │ │ │ ├── clone.c │ │ │ ├── cnd_broadcast.c │ │ │ ├── cnd_destroy.c │ │ │ ├── cnd_init.c │ │ │ ├── cnd_signal.c │ │ │ ├── cnd_timedwait.c │ │ │ ├── cnd_wait.c │ │ │ ├── default_attr.c │ │ │ ├── i386 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ ├── syscall_cp.s │ │ │ │ └── tls.s │ │ │ ├── lock_ptc.c │ │ │ ├── loongarch64 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── m68k │ │ │ │ ├── __m68k_read_tp.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── microblaze │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── mips │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── mips64 │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── mipsn32 │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── mtx_destroy.c │ │ │ ├── mtx_init.c │ │ │ ├── mtx_lock.c │ │ │ ├── mtx_timedlock.c │ │ │ ├── mtx_trylock.c │ │ │ ├── mtx_unlock.c │ │ │ ├── or1k │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── powerpc │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── powerpc64 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── pthread_atfork.c │ │ │ ├── pthread_attr_destroy.c │ │ │ ├── pthread_attr_get.c │ │ │ ├── pthread_attr_init.c │ │ │ ├── pthread_attr_setdetachstate.c │ │ │ ├── pthread_attr_setguardsize.c │ │ │ ├── pthread_attr_setinheritsched.c │ │ │ ├── pthread_attr_setschedparam.c │ │ │ ├── pthread_attr_setschedpolicy.c │ │ │ ├── pthread_attr_setscope.c │ │ │ ├── pthread_attr_setstack.c │ │ │ ├── pthread_attr_setstacksize.c │ │ │ ├── pthread_barrier_destroy.c │ │ │ ├── pthread_barrier_init.c │ │ │ ├── pthread_barrier_wait.c │ │ │ ├── pthread_barrierattr_destroy.c │ │ │ ├── pthread_barrierattr_init.c │ │ │ ├── pthread_barrierattr_setpshared.c │ │ │ ├── pthread_cancel.c │ │ │ ├── pthread_cleanup_push.c │ │ │ ├── pthread_cond_broadcast.c │ │ │ ├── pthread_cond_destroy.c │ │ │ ├── pthread_cond_init.c │ │ │ ├── pthread_cond_signal.c │ │ │ ├── pthread_cond_timedwait.c │ │ │ ├── pthread_cond_wait.c │ │ │ ├── pthread_condattr_destroy.c │ │ │ ├── pthread_condattr_init.c │ │ │ ├── pthread_condattr_setclock.c │ │ │ ├── pthread_condattr_setpshared.c │ │ │ ├── pthread_create.c │ │ │ ├── pthread_detach.c │ │ │ ├── pthread_equal.c │ │ │ ├── pthread_getattr_np.c │ │ │ ├── pthread_getconcurrency.c │ │ │ ├── pthread_getcpuclockid.c │ │ │ ├── pthread_getname_np.c │ │ │ ├── pthread_getschedparam.c │ │ │ ├── pthread_getspecific.c │ │ │ ├── pthread_join.c │ │ │ ├── pthread_key_create.c │ │ │ ├── pthread_kill.c │ │ │ ├── pthread_mutex_consistent.c │ │ │ ├── pthread_mutex_destroy.c │ │ │ ├── pthread_mutex_getprioceiling.c │ │ │ ├── pthread_mutex_init.c │ │ │ ├── pthread_mutex_lock.c │ │ │ ├── pthread_mutex_setprioceiling.c │ │ │ ├── pthread_mutex_timedlock.c │ │ │ ├── pthread_mutex_trylock.c │ │ │ ├── pthread_mutex_unlock.c │ │ │ ├── pthread_mutexattr_destroy.c │ │ │ ├── pthread_mutexattr_init.c │ │ │ ├── pthread_mutexattr_setprotocol.c │ │ │ ├── pthread_mutexattr_setpshared.c │ │ │ ├── pthread_mutexattr_setrobust.c │ │ │ ├── pthread_mutexattr_settype.c │ │ │ ├── pthread_once.c │ │ │ ├── pthread_rwlock_destroy.c │ │ │ ├── pthread_rwlock_init.c │ │ │ ├── pthread_rwlock_rdlock.c │ │ │ ├── pthread_rwlock_timedrdlock.c │ │ │ ├── pthread_rwlock_timedwrlock.c │ │ │ ├── pthread_rwlock_tryrdlock.c │ │ │ ├── pthread_rwlock_trywrlock.c │ │ │ ├── pthread_rwlock_unlock.c │ │ │ ├── pthread_rwlock_wrlock.c │ │ │ ├── pthread_rwlockattr_destroy.c │ │ │ ├── pthread_rwlockattr_init.c │ │ │ ├── pthread_rwlockattr_setpshared.c │ │ │ ├── pthread_self.c │ │ │ ├── pthread_setattr_default_np.c │ │ │ ├── pthread_setcancelstate.c │ │ │ ├── pthread_setcanceltype.c │ │ │ ├── pthread_setconcurrency.c │ │ │ ├── pthread_setname_np.c │ │ │ ├── pthread_setschedparam.c │ │ │ ├── pthread_setschedprio.c │ │ │ ├── pthread_setspecific.c │ │ │ ├── pthread_sigmask.c │ │ │ ├── pthread_spin_destroy.c │ │ │ ├── pthread_spin_init.c │ │ │ ├── pthread_spin_lock.c │ │ │ ├── pthread_spin_trylock.c │ │ │ ├── pthread_spin_unlock.c │ │ │ ├── pthread_testcancel.c │ │ │ ├── riscv32 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── riscv64 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── s390x │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __tls_get_offset.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── sem_destroy.c │ │ │ ├── sem_getvalue.c │ │ │ ├── sem_init.c │ │ │ ├── sem_open.c │ │ │ ├── sem_post.c │ │ │ ├── sem_timedwait.c │ │ │ ├── sem_trywait.c │ │ │ ├── sem_unlink.c │ │ │ ├── sem_wait.c │ │ │ ├── sh │ │ │ │ ├── __set_thread_area.c │ │ │ │ ├── __unmapself.c │ │ │ │ ├── __unmapself_mmu.s │ │ │ │ ├── atomics.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ ├── synccall.c │ │ │ ├── syscall_cp.c │ │ │ ├── thrd_create.c │ │ │ ├── thrd_exit.c │ │ │ ├── thrd_join.c │ │ │ ├── thrd_sleep.c │ │ │ ├── thrd_yield.c │ │ │ ├── tls.c │ │ │ ├── tss_create.c │ │ │ ├── tss_delete.c │ │ │ ├── tss_set.c │ │ │ ├── vmlock.c │ │ │ ├── wasm32 │ │ │ │ ├── __wasilibc_busywait.c │ │ │ │ └── wasi_thread_start.s │ │ │ ├── x32 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ │ └── x86_64 │ │ │ │ ├── __set_thread_area.s │ │ │ │ ├── __unmapself.s │ │ │ │ ├── clone.s │ │ │ │ └── syscall_cp.s │ │ ├── time │ │ │ ├── __map_file.c │ │ │ ├── __month_to_secs.c │ │ │ ├── __secs_to_tm.c │ │ │ ├── __tm_to_secs.c │ │ │ ├── __tz.c │ │ │ ├── __year_to_secs.c │ │ │ ├── asctime.c │ │ │ ├── asctime_r.c │ │ │ ├── clock.c │ │ │ ├── clock_getcpuclockid.c │ │ │ ├── clock_getres.c │ │ │ ├── clock_gettime.c │ │ │ ├── clock_nanosleep.c │ │ │ ├── clock_settime.c │ │ │ ├── ctime.c │ │ │ ├── ctime_r.c │ │ │ ├── difftime.c │ │ │ ├── ftime.c │ │ │ ├── getdate.c │ │ │ ├── gettimeofday.c │ │ │ ├── gmtime.c │ │ │ ├── gmtime_r.c │ │ │ ├── localtime.c │ │ │ ├── localtime_r.c │ │ │ ├── mktime.c │ │ │ ├── nanosleep.c │ │ │ ├── strftime.c │ │ │ ├── strptime.c │ │ │ ├── time.c │ │ │ ├── time_impl.h │ │ │ ├── timegm.c │ │ │ ├── timer_create.c │ │ │ ├── timer_delete.c │ │ │ ├── timer_getoverrun.c │ │ │ ├── timer_gettime.c │ │ │ ├── timer_settime.c │ │ │ ├── times.c │ │ │ ├── timespec_get.c │ │ │ ├── utime.c │ │ │ └── wcsftime.c │ │ └── unistd │ │ │ ├── _exit.c │ │ │ ├── access.c │ │ │ ├── acct.c │ │ │ ├── alarm.c │ │ │ ├── chdir.c │ │ │ ├── chown.c │ │ │ ├── close.c │ │ │ ├── ctermid.c │ │ │ ├── dup.c │ │ │ ├── dup2.c │ │ │ ├── dup3.c │ │ │ ├── faccessat.c │ │ │ ├── fchdir.c │ │ │ ├── fchown.c │ │ │ ├── fchownat.c │ │ │ ├── fdatasync.c │ │ │ ├── fsync.c │ │ │ ├── ftruncate.c │ │ │ ├── getcwd.c │ │ │ ├── getegid.c │ │ │ ├── geteuid.c │ │ │ ├── getgid.c │ │ │ ├── getgroups.c │ │ │ ├── gethostname.c │ │ │ ├── getlogin.c │ │ │ ├── getlogin_r.c │ │ │ ├── getpgid.c │ │ │ ├── getpgrp.c │ │ │ ├── getpid.c │ │ │ ├── getppid.c │ │ │ ├── getsid.c │ │ │ ├── getuid.c │ │ │ ├── isatty.c │ │ │ ├── lchown.c │ │ │ ├── link.c │ │ │ ├── linkat.c │ │ │ ├── lseek.c │ │ │ ├── mips │ │ │ └── pipe.s │ │ │ ├── mips64 │ │ │ └── pipe.s │ │ │ ├── mipsn32 │ │ │ ├── lseek.c │ │ │ └── pipe.s │ │ │ ├── nice.c │ │ │ ├── pause.c │ │ │ ├── pipe.c │ │ │ ├── pipe2.c │ │ │ ├── posix_close.c │ │ │ ├── pread.c │ │ │ ├── preadv.c │ │ │ ├── pwrite.c │ │ │ ├── pwritev.c │ │ │ ├── read.c │ │ │ ├── readlink.c │ │ │ ├── readlinkat.c │ │ │ ├── readv.c │ │ │ ├── renameat.c │ │ │ ├── rmdir.c │ │ │ ├── setegid.c │ │ │ ├── seteuid.c │ │ │ ├── setgid.c │ │ │ ├── setpgid.c │ │ │ ├── setpgrp.c │ │ │ ├── setregid.c │ │ │ ├── setresgid.c │ │ │ ├── setresuid.c │ │ │ ├── setreuid.c │ │ │ ├── setsid.c │ │ │ ├── setuid.c │ │ │ ├── setxid.c │ │ │ ├── sh │ │ │ └── pipe.s │ │ │ ├── sleep.c │ │ │ ├── symlink.c │ │ │ ├── symlinkat.c │ │ │ ├── sync.c │ │ │ ├── tcgetpgrp.c │ │ │ ├── tcsetpgrp.c │ │ │ ├── truncate.c │ │ │ ├── ttyname.c │ │ │ ├── ttyname_r.c │ │ │ ├── ualarm.c │ │ │ ├── unlink.c │ │ │ ├── unlinkat.c │ │ │ ├── usleep.c │ │ │ ├── write.c │ │ │ ├── writev.c │ │ │ └── x32 │ │ │ └── lseek.c │ └── tools │ │ ├── add-cfi.common.awk │ │ ├── add-cfi.i386.awk │ │ ├── add-cfi.x86_64.awk │ │ ├── install.sh │ │ ├── ld.musl-clang.in │ │ ├── mkalltypes.sed │ │ ├── musl-clang.in │ │ ├── musl-gcc.specs.sh │ │ └── version.sh └── sources │ └── arc4random.c ├── linker-provided-symbols.txt ├── scripts └── install-include-headers.sh ├── test ├── .gitignore ├── CMakeLists.txt ├── README.md ├── scripts │ ├── browser-test │ │ ├── harness.mjs │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── run-test.html │ │ └── run-test.mjs │ ├── cpython3.14.patch │ └── generate-stubs.sh ├── socket-test.cmake └── src │ ├── access.c │ ├── append.c │ ├── argv_two_args.c │ ├── busywait.c │ ├── chdir.c │ ├── clock_nanosleep.c │ ├── close.c │ ├── external_env.c │ ├── fadvise.c │ ├── fallocate.c │ ├── fcntl.c │ ├── fdatasync.c │ ├── fdopen.c │ ├── feof.c │ ├── file_nonblocking.c │ ├── file_permissions.c │ ├── fseek.c │ ├── fstat.c │ ├── fsync.c │ ├── ftruncate.c │ ├── fts.c │ ├── fwscanf.c │ ├── getentropy.c │ ├── hello.c │ ├── ioctl.c │ ├── isatty.c │ ├── link.c │ ├── lseek.c │ ├── memchr.c │ ├── memcmp.c │ ├── open_relative_path.c │ ├── opendir.c │ ├── poll-nonblocking-socket.c │ ├── poll.c │ ├── preadvwritev.c │ ├── preadwrite.c │ ├── pthread_cond_busywait.c │ ├── pthread_mutex_busywait.c │ ├── pthread_tsd_busywait.c │ ├── readlink.c │ ├── readv.c │ ├── rename.c │ ├── rewinddir.c │ ├── rmdir.c │ ├── scandir.c │ ├── seekdir.c │ ├── setsockopt.c │ ├── sockets-client-handle-hangups.c │ ├── sockets-client-hangup-after-connect.c │ ├── sockets-client-hangup-after-sending.c │ ├── sockets-client-hangup-while-receiving.c │ ├── sockets-client-hangup-while-sending.c │ ├── sockets-client-udp-blocking.c │ ├── sockets-client.c │ ├── sockets-multiple-client.c │ ├── sockets-multiple-server.c │ ├── sockets-nonblocking-multiple.c │ ├── sockets-nonblocking-udp-multiple.c │ ├── sockets-nonblocking-udp-no-connection.c │ ├── sockets-nonblocking-udp.c │ ├── sockets-nonblocking.c │ ├── sockets-server-handle-hangups.c │ ├── sockets-server-hangup-before-recv.c │ ├── sockets-server-hangup-before-send.c │ ├── sockets-server-hangup-during-recv.c │ ├── sockets-server-hangup-during-send.c │ ├── sockets-server-udp-blocking.c │ ├── sockets-server.c │ ├── stat.c │ ├── stdio.c │ ├── strchrnul.c │ ├── strlen.c │ ├── strptime.c │ ├── strrchr.c │ ├── time.c │ ├── time_and_times.c │ ├── usleep.c │ ├── utime.c │ └── write.c ├── thread-stub ├── README.md ├── pthread_barrier_destroy.c ├── pthread_barrier_init.c ├── pthread_barrier_wait.c ├── pthread_cond_broadcast.c ├── pthread_cond_destroy.c ├── pthread_cond_init.c ├── pthread_cond_signal.c ├── pthread_cond_timedwait.c ├── pthread_cond_wait.c ├── pthread_create.c ├── pthread_detach.c ├── pthread_join.c ├── pthread_mutex_consistent.c ├── pthread_mutex_getprioceiling.c ├── pthread_mutex_lock.c ├── pthread_mutex_timedlock.c ├── pthread_mutex_trylock.c ├── pthread_mutex_unlock.c ├── pthread_once.c ├── pthread_rwlock_rdlock.c ├── pthread_rwlock_timedrdlock.c ├── pthread_rwlock_timedwrlock.c ├── pthread_rwlock_tryrdlock.c ├── pthread_rwlock_trywrlock.c ├── pthread_rwlock_unlock.c ├── pthread_rwlock_wrlock.c ├── pthread_spin_lock.c ├── pthread_spin_trylock.c └── pthread_spin_unlock.c └── tools └── wasi-headers ├── .gitignore ├── Cargo.toml ├── LICENSE ├── src ├── c_header.rs ├── lib.rs └── main.rs └── tests └── verify.rs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | sysroot 2 | build 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-APACHE-LLVM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/LICENSE-APACHE-LLVM -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/README.md -------------------------------------------------------------------------------- /dlmalloc/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/dlmalloc/include/unistd.h -------------------------------------------------------------------------------- /dlmalloc/src/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/dlmalloc/src/dlmalloc.c -------------------------------------------------------------------------------- /dlmalloc/src/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/dlmalloc/src/malloc.c -------------------------------------------------------------------------------- /emmalloc/emmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/emmalloc/emmalloc.c -------------------------------------------------------------------------------- /expected/wasm32-wasip1/include-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/expected/wasm32-wasip1/include-all.c -------------------------------------------------------------------------------- /expected/wasm32-wasip2/include-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/expected/wasm32-wasip2/include-all.c -------------------------------------------------------------------------------- /fts/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/fts/config.h -------------------------------------------------------------------------------- /fts/musl-fts/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/fts/musl-fts/COPYING -------------------------------------------------------------------------------- /fts/musl-fts/NOTICE.wasi-libc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/fts/musl-fts/NOTICE.wasi-libc.md -------------------------------------------------------------------------------- /fts/musl-fts/fts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/fts/musl-fts/fts.c -------------------------------------------------------------------------------- /fts/musl-fts/fts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/fts/musl-fts/fts.h -------------------------------------------------------------------------------- /fts/update-musl-fts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/fts/update-musl-fts.sh -------------------------------------------------------------------------------- /libc-bottom-half/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/README.md -------------------------------------------------------------------------------- /libc-bottom-half/clocks/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/clocks/clock.c -------------------------------------------------------------------------------- /libc-bottom-half/clocks/getrusage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/clocks/getrusage.c -------------------------------------------------------------------------------- /libc-bottom-half/clocks/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/clocks/times.c -------------------------------------------------------------------------------- /libc-bottom-half/cloudlibc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/cloudlibc/LICENSE -------------------------------------------------------------------------------- /libc-bottom-half/crt/crt1-command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/crt/crt1-command.c -------------------------------------------------------------------------------- /libc-bottom-half/crt/crt1-reactor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/crt/crt1-reactor.c -------------------------------------------------------------------------------- /libc-bottom-half/crt/crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/crt/crt1.c -------------------------------------------------------------------------------- /libc-bottom-half/getpid/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/getpid/getpid.c -------------------------------------------------------------------------------- /libc-bottom-half/headers/private/_/limits.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc-bottom-half/headers/private/_/struct/timespec.h: -------------------------------------------------------------------------------- 1 | #include <__struct_timespec.h> 2 | -------------------------------------------------------------------------------- /libc-bottom-half/headers/private/_/struct/timeval.h: -------------------------------------------------------------------------------- 1 | #include <__struct_timeval.h> 2 | -------------------------------------------------------------------------------- /libc-bottom-half/headers/private/common/crt.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-bottom-half/headers/private/sched.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-bottom-half/headers/public/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/headers/public/poll.h -------------------------------------------------------------------------------- /libc-bottom-half/headers/public/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/headers/public/time.h -------------------------------------------------------------------------------- /libc-bottom-half/mman/mman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/mman/mman.c -------------------------------------------------------------------------------- /libc-bottom-half/signal/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/signal/signal.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/__main_void.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/__main_void.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/abort.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/at_fdcwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/at_fdcwd.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/bind.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/chdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/chdir.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/connect.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/environ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/environ.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/errno.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/getcwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/getcwd.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/getentropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/getentropy.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/isatty.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/listen.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/netdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/netdb.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/poll-wasip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/poll-wasip2.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/posix.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/preopens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/preopens.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/recv.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/sbrk.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/send.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/shutdown.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/socket.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/sockopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/sockopt.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/truncate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/truncate.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/wasip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/wasip2.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/wasip2_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/wasip2_file.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/wasip2_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/wasip2_tcp.c -------------------------------------------------------------------------------- /libc-bottom-half/sources/wasip2_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-bottom-half/sources/wasip2_udp.c -------------------------------------------------------------------------------- /libc-top-half/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/README.md -------------------------------------------------------------------------------- /libc-top-half/musl/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/.mailmap -------------------------------------------------------------------------------- /libc-top-half/musl/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/COPYRIGHT -------------------------------------------------------------------------------- /libc-top-half/musl/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/INSTALL -------------------------------------------------------------------------------- /libc-top-half/musl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/Makefile -------------------------------------------------------------------------------- /libc-top-half/musl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/README -------------------------------------------------------------------------------- /libc-top-half/musl/VERSION: -------------------------------------------------------------------------------- 1 | 1.2.5 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/WHATSNEW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/WHATSNEW -------------------------------------------------------------------------------- /libc-top-half/musl/arch/aarch64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[22]; 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/arm/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/arm/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/arm/bits/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/arm/bits/msg.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/arm/bits/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/arm/bits/reg.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/arm/bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/arm/bits/sem.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/arm/bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/arm/bits/shm.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/arm/crt_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/arm/crt_arch.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/arm/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/arm/kstat.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/arm/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/arm/reloc.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/generic/bits/hwcap.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/generic/bits/io.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/generic/bits/ioctl_fix.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/generic/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 2 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/generic/bits/kd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/generic/bits/limits.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/generic/bits/link.h: -------------------------------------------------------------------------------- 1 | typedef uint32_t Elf_Symndx; 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/generic/bits/mman.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/generic/bits/poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/generic/bits/ptrace.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/generic/bits/resource.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/generic/bits/socket.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/generic/bits/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/generic/bits/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/generic/fp_arch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/i386/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/i386/bits/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/i386/bits/io.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/i386/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/i386/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/i386/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[6]; 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/i386/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/i386/kstat.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/i386/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/i386/reloc.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/loongarch64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[23]; 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/m68k/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/m68k/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/m68k/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[39]; 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/m68k/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/m68k/kstat.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/m68k/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/m68k/reloc.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/microblaze/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/microblaze/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/microblaze/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[18]; 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/mips/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/mips/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/mips/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/mips/kstat.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/mips/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/mips/reloc.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/mips64/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/mips64/kstat.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/mips64/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/mips64/reloc.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/mipsn32/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/mipsn32/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/or1k/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/or1k/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/or1k/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 8192 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/or1k/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[13]; 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/or1k/bits/user.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/or1k/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/or1k/kstat.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/or1k/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/or1k/reloc.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/powerpc/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/powerpc/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/powerpc64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned __int128 __jmp_buf[32]; 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/riscv32/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/riscv32/kstat.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/riscv64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[26]; 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/s390x/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/s390x/bits/link.h: -------------------------------------------------------------------------------- 1 | typedef uint64_t Elf_Symndx; 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/s390x/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[18]; 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/s390x/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/s390x/kstat.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/s390x/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/s390x/reloc.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/sh/arch.mak: -------------------------------------------------------------------------------- 1 | COMPAT_SRC_DIRS = compat/time32 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/sh/bits/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/sh/bits/fenv.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/sh/bits/ipcstat.h: -------------------------------------------------------------------------------- 1 | #define IPC_STAT 0x102 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/sh/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/sh/bits/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/sh/bits/msg.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/sh/bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/sh/bits/sem.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/sh/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[15]; 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/sh/bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/sh/bits/shm.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/sh/bits/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/sh/bits/stat.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/sh/bits/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/sh/bits/user.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/sh/crt_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/sh/crt_arch.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/sh/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/sh/kstat.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/sh/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/sh/reloc.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/wasm32/bits/dirent.h: -------------------------------------------------------------------------------- 1 | #include <__struct_dirent.h> 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/wasm32/bits/fcntl.h: -------------------------------------------------------------------------------- 1 | /* Use the WASI libc fcntl implementation bits. */ 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/wasm32/bits/ioctl.h: -------------------------------------------------------------------------------- 1 | /* Use the WASI libc ioctl implementation bits. */ 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/wasm32/bits/limits.h: -------------------------------------------------------------------------------- 1 | #include <__macro_PAGESIZE.h> 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/wasm32/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[8]; 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/wasm32/bits/stat.h: -------------------------------------------------------------------------------- 1 | #include <__struct_stat.h> 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/wasm32/reloc.h: -------------------------------------------------------------------------------- 1 | #define LDSO_ARCH "wasm32" 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/wasm32/syscall_arch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/x32/bits/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/x32/bits/io.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/x32/bits/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/x32/bits/ipc.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/x32/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/x32/bits/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/x32/bits/msg.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/x32/bits/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/x32/bits/reg.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/x32/bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/x32/bits/sem.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/x32/bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/x32/bits/shm.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/x32/crt_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/x32/crt_arch.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/x32/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/x32/kstat.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/x32/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/x32/reloc.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/x86_64/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/x86_64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[8]; 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/arch/x86_64/kstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/x86_64/kstat.h -------------------------------------------------------------------------------- /libc-top-half/musl/arch/x86_64/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/arch/x86_64/reloc.h -------------------------------------------------------------------------------- /libc-top-half/musl/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/configure -------------------------------------------------------------------------------- /libc-top-half/musl/crt/Scrt1.c: -------------------------------------------------------------------------------- 1 | #include "crt1.c" 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/crt/aarch64/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/aarch64/crti.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/aarch64/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/aarch64/crtn.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/arm/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/arm/crti.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/arm/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/arm/crtn.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/crt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/crt1.c -------------------------------------------------------------------------------- /libc-top-half/musl/crt/crti.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/crt/crtn.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/crt/i386/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/i386/crti.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/i386/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/i386/crtn.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/mips/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/mips/crti.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/mips/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/mips/crtn.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/mips64/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/mips64/crti.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/mips64/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/mips64/crtn.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/mipsn32/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/mipsn32/crti.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/mipsn32/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/mipsn32/crtn.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/or1k/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/or1k/crti.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/or1k/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/or1k/crtn.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/powerpc/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/powerpc/crti.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/powerpc/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/powerpc/crtn.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/rcrt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/rcrt1.c -------------------------------------------------------------------------------- /libc-top-half/musl/crt/s390x/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/s390x/crti.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/s390x/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/s390x/crtn.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/sh/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/sh/crti.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/sh/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/sh/crtn.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/x32/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/x32/crti.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/x32/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/x32/crtn.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/x86_64/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/x86_64/crti.s -------------------------------------------------------------------------------- /libc-top-half/musl/crt/x86_64/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/crt/x86_64/crtn.s -------------------------------------------------------------------------------- /libc-top-half/musl/dist/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/dist/config.mak -------------------------------------------------------------------------------- /libc-top-half/musl/dynamic.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/dynamic.list -------------------------------------------------------------------------------- /libc-top-half/musl/include/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/aio.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/alloca.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/ar.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/arpa/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/arpa/ftp.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/arpa/inet.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/arpa/nameser_compat.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /libc-top-half/musl/include/arpa/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/arpa/tftp.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/assert.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/byteswap.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/complex.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/cpio.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/crypt.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/ctype.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/dirent.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/dlfcn.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/elf.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/endian.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/err.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/errno.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/fcntl.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/features.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/fenv.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/float.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/fmtmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/fmtmsg.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/fnmatch.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/ftw.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/getopt.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/glob.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/grp.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/iconv.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/ifaddrs.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/inttypes.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/iso646.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/langinfo.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/lastlog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/libgen.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/libintl.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/limits.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/link.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/locale.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/malloc.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/math.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/memory.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/include/mntent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/mntent.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/monetary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/monetary.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/mqueue.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/net/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/net/if.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/net/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/net/route.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/netdb.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/nl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/nl_types.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/paths.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/poll.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/pthread.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/pty.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/pwd.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/regex.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/resolv.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sched.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/scsi/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/scsi/scsi.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/scsi/sg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/scsi/sg.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/search.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/semaphore.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/setjmp.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/shadow.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/signal.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/spawn.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/stdalign.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/stdarg.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/stdbool.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/stddef.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/stdint.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/stdio.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/stdio_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/stdio_ext.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/stdlib.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/string.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/strings.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/stropts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/stropts.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/acct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/acct.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/auxv.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/dir.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/epoll.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/errno.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/fcntl.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/file.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/fsuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/fsuid.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/io.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/ioctl.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/ipc.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/kd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/klog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/klog.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/mman.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/mount.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/msg.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/mtio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/mtio.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/param.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/poll.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/prctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/prctl.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/quota.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/reg.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/sem.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/shm.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/stat.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/stropts.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/swap.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/time.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/timeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/timeb.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/times.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/timex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/timex.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/types.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/ucontext.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/uio.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/un.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/user.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/vfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/wait.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/sys/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sys/xattr.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/syscall.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/include/sysexits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/sysexits.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/syslog.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/tar.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/termios.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/tgmath.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/threads.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/time.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/uchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/uchar.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/ucontext.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/ulimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/ulimit.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/unistd.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/utime.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/utmp.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/utmpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/utmpx.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/values.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/wait.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/wchar.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/wctype.h -------------------------------------------------------------------------------- /libc-top-half/musl/include/wordexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/include/wordexp.h -------------------------------------------------------------------------------- /libc-top-half/musl/ldso/dlstart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/ldso/dlstart.c -------------------------------------------------------------------------------- /libc-top-half/musl/ldso/dynlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/ldso/dynlink.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/aio/aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/aio/aio.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/cabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/cabs.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/cabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/cabsf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/cabsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/cabsl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/cacos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/cacos.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/carg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/carg.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/cargf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/cargf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/cargl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/cargl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/casin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/casin.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/catan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/catan.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/ccos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/ccos.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/ccosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/ccosf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/ccosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/ccosh.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/ccosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/ccosl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/cexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/cexp.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/cexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/cexpf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/cexpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/cexpl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/cimag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/cimag.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/clog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/clog.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/clogf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/clogf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/clogl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/clogl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/conj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/conj.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/conjf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/conjf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/conjl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/conjl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/cpow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/cpow.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/cpowf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/cpowf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/cpowl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/cpowl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/cproj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/cproj.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/creal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/creal.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/csin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/csin.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/csinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/csinf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/csinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/csinh.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/csinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/csinl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/csqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/csqrt.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/ctan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/ctan.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/ctanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/ctanf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/ctanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/ctanh.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/complex/ctanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/complex/ctanl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/conf/confstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/conf/confstr.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/conf/legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/conf/legacy.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/conf/pathconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/conf/pathconf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/conf/sysconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/conf/sysconf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/crypt/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/crypt/crypt.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/crypt/crypt_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/crypt/crypt_r.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/crypt/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/crypt/encrypt.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/alpha.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/casemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/casemap.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/isalnum.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/isalpha.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/isascii.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/isblank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/isblank.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/iscntrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/iscntrl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/isdigit.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/isgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/isgraph.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/islower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/islower.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/isprint.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/ispunct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/ispunct.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/isspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/isspace.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/isupper.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/punct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/punct.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/toascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/toascii.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/tolower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/tolower.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/toupper.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/wctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/wctrans.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/wcwidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/wcwidth.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ctype/wide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ctype/wide.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/dirent/dirfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/dirent/dirfd.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/env/__environ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/env/__environ.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/env/clearenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/env/clearenv.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/env/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/env/getenv.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/env/putenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/env/putenv.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/env/setenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/env/setenv.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/env/unsetenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/env/unsetenv.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/exit/_Exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/exit/_Exit.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/exit/abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/exit/abort.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/exit/abort_lock.c: -------------------------------------------------------------------------------- 1 | #include "pthread_impl.h" 2 | 3 | volatile int __abort_lock[1]; 4 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/exit/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/exit/assert.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/exit/atexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/exit/atexit.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/exit/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/exit/exit.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/fcntl/creat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/fcntl/creat.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/fcntl/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/fcntl/fcntl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/fcntl/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/fcntl/open.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/fcntl/openat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/fcntl/openat.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/fenv/arm/fenv.c: -------------------------------------------------------------------------------- 1 | #if !__ARM_PCS_VFP 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/fenv/fenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/fenv/fenv.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/fenv/mips/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifdef __mips_soft_float 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/fenv/mips64/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifdef __mips_soft_float 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/fenv/mipsn32/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifdef __mips_soft_float 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/fenv/riscv32/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifndef __riscv_flen 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/fenv/riscv64/fenv-sf.c: -------------------------------------------------------------------------------- 1 | #ifndef __riscv_flen 2 | #include "../fenv.c" 3 | #endif 4 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/fenv/sh/fenv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/fenv/sh/fenv.S -------------------------------------------------------------------------------- /libc-top-half/musl/src/fenv/x32/fenv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/fenv/x32/fenv.s -------------------------------------------------------------------------------- /libc-top-half/musl/src/include/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/include/crypt.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/include/errno.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/include/stdio.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/include/time.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/include/wchar.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/internal/defsysinfo.c: -------------------------------------------------------------------------------- 1 | #include "libc.h" 2 | 3 | size_t __sysinfo; 4 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/internal/libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/internal/libc.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/internal/libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/internal/libc.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/internal/libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/internal/libm.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/internal/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/internal/lock.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/internal/vdso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/internal/vdso.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ipc/ftok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ipc/ftok.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ipc/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ipc/ipc.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/ipc/msgctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ipc/msgctl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ipc/msgget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ipc/msgget.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ipc/msgrcv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ipc/msgrcv.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ipc/msgsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ipc/msgsnd.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ipc/semctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ipc/semctl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ipc/semget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ipc/semget.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ipc/semop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ipc/semop.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ipc/shmat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ipc/shmat.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ipc/shmctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ipc/shmctl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ipc/shmdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ipc/shmdt.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ipc/shmget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ipc/shmget.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ldso/__dlsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ldso/__dlsym.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ldso/dladdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ldso/dladdr.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ldso/dlclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ldso/dlclose.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ldso/dlerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ldso/dlerror.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ldso/dlinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ldso/dlinfo.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ldso/dlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ldso/dlopen.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ldso/dlsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ldso/dlsym.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/ldso/sh/dlsym.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ldso/sh/dlsym.s -------------------------------------------------------------------------------- /libc-top-half/musl/src/ldso/tlsdesc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/ldso/tlsdesc.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/legacy/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/legacy/daemon.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/legacy/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/legacy/err.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/legacy/ftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/legacy/ftw.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/legacy/ulimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/legacy/ulimit.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/legacy/utmpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/legacy/utmpx.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/legacy/valloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/legacy/valloc.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/adjtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/adjtime.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/brk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/brk.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/cache.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/cap.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/chroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/chroot.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/clone.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/epoll.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/eventfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/eventfd.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/flock.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/gettid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/gettid.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/inotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/inotify.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/ioperm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/ioperm.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/iopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/iopl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/klogctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/klogctl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/mlock2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/mlock2.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/module.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/mount.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/prctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/prctl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/preadv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/preadv2.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/prlimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/prlimit.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/ptrace.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/reboot.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/sbrk.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/setns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/setns.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/splice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/splice.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/statx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/statx.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/stime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/stime.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/swap.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/syncfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/syncfs.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/sysinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/sysinfo.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/tee.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/timerfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/timerfd.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/unshare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/unshare.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/utimes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/utimes.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/vhangup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/vhangup.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/wait3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/wait3.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/wait4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/wait4.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/linux/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/linux/xattr.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/locale/big5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/locale/big5.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/locale/hkscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/locale/hkscs.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/locale/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/locale/iconv.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/locale/ksc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/locale/ksc.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/locale/pleval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/locale/pleval.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/locale/pleval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/locale/pleval.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/locale/revjis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/locale/revjis.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/malloc/calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/malloc/calloc.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/malloc/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/malloc/free.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/__cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/__cos.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/__cosdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/__cosdf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/__cosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/__cosl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/__expo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/__expo2.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/__expo2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/__expo2f.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/__sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/__sin.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/__sindf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/__sindf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/__sinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/__sinl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/__tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/__tan.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/__tandf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/__tandf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/__tanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/__tanl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/acos.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/acosf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/acosh.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/acoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/acoshf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/acoshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/acoshl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/acosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/acosl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/arm/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/arm/fabs.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/arm/fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/arm/fma.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/arm/fmaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/arm/fmaf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/arm/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/arm/sqrt.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/asin.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/asinf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/asinh.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/asinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/asinhf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/asinhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/asinhl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/asinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/asinl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/atan.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/atan2.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/atan2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/atan2f.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/atan2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/atan2l.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/atanf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/atanh.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/atanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/atanhf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/atanhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/atanhl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/atanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/atanl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/cbrt.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/cbrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/cbrtf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/cbrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/cbrtl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/ceil.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/ceilf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/ceill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/ceill.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/copysign.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/cos.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/cosf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/cosh.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/coshf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/coshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/coshl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/cosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/cosl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/erf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/erff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/erff.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/erfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/erfl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/exp.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/exp10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/exp10.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/exp10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/exp10f.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/exp10l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/exp10l.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/exp2.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/exp2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/exp2f.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/exp2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/exp2l.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/exp_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/exp_data.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/exp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/exp_data.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/expf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/expl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/expl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/expm1.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/expm1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/expm1f.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/expm1l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/expm1l.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fabs.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fabsf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fabsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fabsl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fdim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fdim.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fdimf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fdimf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fdiml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fdiml.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/finite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/finite.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/finitef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/finitef.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/floor.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/floorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/floorf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/floorl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/floorl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fma.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fmaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fmaf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fmal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fmal.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fmax.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fmaxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fmaxf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fmaxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fmaxl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fmin.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fminf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fminf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fminl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fminl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fmod.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fmodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fmodf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/fmodl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/fmodl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/frexp.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/frexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/frexpf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/frexpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/frexpl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/hypot.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/hypotf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/hypotf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/hypotl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/hypotl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/ceil.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/ceilf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/ceill.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/exp2l.s: -------------------------------------------------------------------------------- 1 | # see exp_ld.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp_ld.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/floorf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/floorl.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/ldexp.s: -------------------------------------------------------------------------------- 1 | # see scalbn.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/ldexpf.s: -------------------------------------------------------------------------------- 1 | # see scalbnf.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/ldexpl.s: -------------------------------------------------------------------------------- 1 | # see scalbnl.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/log.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/i386/log.s -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/remquof.s: -------------------------------------------------------------------------------- 1 | # see remquo.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/remquol.s: -------------------------------------------------------------------------------- 1 | # see remquo.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/scalbln.s: -------------------------------------------------------------------------------- 1 | # see scalbn.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/scalblnf.s: -------------------------------------------------------------------------------- 1 | # see scalbnf.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/scalblnl.s: -------------------------------------------------------------------------------- 1 | # see scalbnl.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/trunc.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/truncf.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/i386/truncl.s: -------------------------------------------------------------------------------- 1 | # see floor.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/ilogb.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/ilogbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/ilogbf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/ilogbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/ilogbl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/j0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/j0.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/j0f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/j0f.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/j1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/j1.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/j1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/j1f.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/jn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/jn.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/jnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/jnf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/ldexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/ldexp.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/ldexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/ldexpf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/ldexpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/ldexpl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/log.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/log10.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/log1p.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/log2.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/log2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/log2f.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/log2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/log2l.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/logb.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/logbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/logbf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/logbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/logbl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/logf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/logl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/logl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/lrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/lrint.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/modf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/modff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/modff.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/modfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/modfl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/nan.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | double nan(const char *s) 4 | { 5 | return NAN; 6 | } 7 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/nanf.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | float nanf(const char *s) 4 | { 5 | return NAN; 6 | } 7 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/nanl.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long double nanl(const char *s) 4 | { 5 | return NAN; 6 | } 7 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/pow.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/powf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/powl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/powl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/rint.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/rintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/rintf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/rintl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/rintl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/round.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/scalb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/scalb.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/sin.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/sinf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/sinh.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/sinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/sinhf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/sinhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/sinhl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/sinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/sinl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/sqrt.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/sqrtf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/sqrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/sqrtl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/tan.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/tanf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/tanh.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/tanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/tanhf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/tanhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/tanhl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/tanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/tanl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/math/trunc.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/x32/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/x32/ceill.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/x32/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp2l.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/x32/truncl.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/x86_64/__invtrigl.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/x86_64/ceill.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/x86_64/expm1l.s: -------------------------------------------------------------------------------- 1 | # see exp2l.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/math/x86_64/truncl.s: -------------------------------------------------------------------------------- 1 | # see floorl.s 2 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/misc/a64l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/misc/a64l.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/misc/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/misc/dl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/misc/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/misc/ffs.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/misc/ffsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/misc/ffsl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/misc/ffsll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/misc/ffsll.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/misc/gethostid.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | long gethostid() 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/misc/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/misc/ioctl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/misc/lockf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/misc/lockf.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/misc/nftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/misc/nftw.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/misc/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/misc/pty.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/misc/uname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/misc/uname.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/mman/mlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/mman/mlock.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/mman/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/mman/mmap.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/mman/msync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/mman/msync.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/mq/mq_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/mq/mq_open.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/mq/mq_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/mq/mq_send.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/network/res_init.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int res_init() 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/passwd/pwf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/passwd/pwf.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/prng/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/prng/rand.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/regex/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/regex/glob.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/regex/tre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/regex/tre.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/setjmp/longjmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/setjmp/setjmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/signal/sigsetjmp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/stat/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stat/chmod.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stat/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stat/fstat.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stat/lstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stat/lstat.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stat/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stat/mkdir.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stat/mknod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stat/mknod.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stat/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stat/stat.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stat/umask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stat/umask.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stdio/ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stdio/ext.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stdio/ext2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stdio/ext2.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stdio/feof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stdio/feof.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stdio/getc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stdio/getc.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stdio/getc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stdio/getc.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/stdio/gets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stdio/gets.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stdio/getw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stdio/getw.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stdio/ofl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stdio/ofl.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stdio/putc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stdio/putc.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stdio/putc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stdio/putc.h -------------------------------------------------------------------------------- /libc-top-half/musl/src/stdio/puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stdio/puts.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stdio/putw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stdio/putw.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stdlib/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stdlib/abs.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/stdlib/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/stdlib/div.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/thread/syscall_cp.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/thread/tls.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libc-top-half/musl/src/time/__tz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/time/__tz.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/time/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/time/clock.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/time/ctime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/time/ctime.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/time/ftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/time/ftime.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/time/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/time/time.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/time/times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/time/times.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/time/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/time/utime.c -------------------------------------------------------------------------------- /libc-top-half/musl/src/unistd/dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/src/unistd/dup.c -------------------------------------------------------------------------------- /libc-top-half/musl/tools/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/tools/install.sh -------------------------------------------------------------------------------- /libc-top-half/musl/tools/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/musl/tools/version.sh -------------------------------------------------------------------------------- /libc-top-half/sources/arc4random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/libc-top-half/sources/arc4random.c -------------------------------------------------------------------------------- /linker-provided-symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/linker-provided-symbols.txt -------------------------------------------------------------------------------- /scripts/install-include-headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/scripts/install-include-headers.sh -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | run 3 | node_modules 4 | -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/README.md -------------------------------------------------------------------------------- /test/scripts/cpython3.14.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/scripts/cpython3.14.patch -------------------------------------------------------------------------------- /test/scripts/generate-stubs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/scripts/generate-stubs.sh -------------------------------------------------------------------------------- /test/socket-test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/socket-test.cmake -------------------------------------------------------------------------------- /test/src/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/access.c -------------------------------------------------------------------------------- /test/src/append.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/append.c -------------------------------------------------------------------------------- /test/src/argv_two_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/argv_two_args.c -------------------------------------------------------------------------------- /test/src/busywait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/busywait.c -------------------------------------------------------------------------------- /test/src/chdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/chdir.c -------------------------------------------------------------------------------- /test/src/clock_nanosleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/clock_nanosleep.c -------------------------------------------------------------------------------- /test/src/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/close.c -------------------------------------------------------------------------------- /test/src/external_env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/external_env.c -------------------------------------------------------------------------------- /test/src/fadvise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/fadvise.c -------------------------------------------------------------------------------- /test/src/fallocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/fallocate.c -------------------------------------------------------------------------------- /test/src/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/fcntl.c -------------------------------------------------------------------------------- /test/src/fdatasync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/fdatasync.c -------------------------------------------------------------------------------- /test/src/fdopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/fdopen.c -------------------------------------------------------------------------------- /test/src/feof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/feof.c -------------------------------------------------------------------------------- /test/src/file_nonblocking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/file_nonblocking.c -------------------------------------------------------------------------------- /test/src/file_permissions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/file_permissions.c -------------------------------------------------------------------------------- /test/src/fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/fseek.c -------------------------------------------------------------------------------- /test/src/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/fstat.c -------------------------------------------------------------------------------- /test/src/fsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/fsync.c -------------------------------------------------------------------------------- /test/src/ftruncate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/ftruncate.c -------------------------------------------------------------------------------- /test/src/fts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/fts.c -------------------------------------------------------------------------------- /test/src/fwscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/fwscanf.c -------------------------------------------------------------------------------- /test/src/getentropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/getentropy.c -------------------------------------------------------------------------------- /test/src/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/hello.c -------------------------------------------------------------------------------- /test/src/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/ioctl.c -------------------------------------------------------------------------------- /test/src/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/isatty.c -------------------------------------------------------------------------------- /test/src/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/link.c -------------------------------------------------------------------------------- /test/src/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/lseek.c -------------------------------------------------------------------------------- /test/src/memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/memchr.c -------------------------------------------------------------------------------- /test/src/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/memcmp.c -------------------------------------------------------------------------------- /test/src/open_relative_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/open_relative_path.c -------------------------------------------------------------------------------- /test/src/opendir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/opendir.c -------------------------------------------------------------------------------- /test/src/poll-nonblocking-socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/poll-nonblocking-socket.c -------------------------------------------------------------------------------- /test/src/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/poll.c -------------------------------------------------------------------------------- /test/src/preadvwritev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/preadvwritev.c -------------------------------------------------------------------------------- /test/src/preadwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/preadwrite.c -------------------------------------------------------------------------------- /test/src/pthread_cond_busywait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/pthread_cond_busywait.c -------------------------------------------------------------------------------- /test/src/pthread_mutex_busywait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/pthread_mutex_busywait.c -------------------------------------------------------------------------------- /test/src/pthread_tsd_busywait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/pthread_tsd_busywait.c -------------------------------------------------------------------------------- /test/src/readlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/readlink.c -------------------------------------------------------------------------------- /test/src/readv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/readv.c -------------------------------------------------------------------------------- /test/src/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/rename.c -------------------------------------------------------------------------------- /test/src/rewinddir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/rewinddir.c -------------------------------------------------------------------------------- /test/src/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/rmdir.c -------------------------------------------------------------------------------- /test/src/scandir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/scandir.c -------------------------------------------------------------------------------- /test/src/seekdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/seekdir.c -------------------------------------------------------------------------------- /test/src/setsockopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/setsockopt.c -------------------------------------------------------------------------------- /test/src/sockets-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/sockets-client.c -------------------------------------------------------------------------------- /test/src/sockets-multiple-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/sockets-multiple-client.c -------------------------------------------------------------------------------- /test/src/sockets-multiple-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/sockets-multiple-server.c -------------------------------------------------------------------------------- /test/src/sockets-nonblocking-udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/sockets-nonblocking-udp.c -------------------------------------------------------------------------------- /test/src/sockets-nonblocking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/sockets-nonblocking.c -------------------------------------------------------------------------------- /test/src/sockets-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/sockets-server.c -------------------------------------------------------------------------------- /test/src/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/stat.c -------------------------------------------------------------------------------- /test/src/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/stdio.c -------------------------------------------------------------------------------- /test/src/strchrnul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/strchrnul.c -------------------------------------------------------------------------------- /test/src/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/strlen.c -------------------------------------------------------------------------------- /test/src/strptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/strptime.c -------------------------------------------------------------------------------- /test/src/strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/strrchr.c -------------------------------------------------------------------------------- /test/src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/time.c -------------------------------------------------------------------------------- /test/src/time_and_times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/time_and_times.c -------------------------------------------------------------------------------- /test/src/usleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/usleep.c -------------------------------------------------------------------------------- /test/src/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/utime.c -------------------------------------------------------------------------------- /test/src/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/test/src/write.c -------------------------------------------------------------------------------- /thread-stub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/README.md -------------------------------------------------------------------------------- /thread-stub/pthread_barrier_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_barrier_init.c -------------------------------------------------------------------------------- /thread-stub/pthread_barrier_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_barrier_wait.c -------------------------------------------------------------------------------- /thread-stub/pthread_cond_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_cond_destroy.c -------------------------------------------------------------------------------- /thread-stub/pthread_cond_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_cond_init.c -------------------------------------------------------------------------------- /thread-stub/pthread_cond_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_cond_signal.c -------------------------------------------------------------------------------- /thread-stub/pthread_cond_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_cond_wait.c -------------------------------------------------------------------------------- /thread-stub/pthread_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_create.c -------------------------------------------------------------------------------- /thread-stub/pthread_detach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_detach.c -------------------------------------------------------------------------------- /thread-stub/pthread_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_join.c -------------------------------------------------------------------------------- /thread-stub/pthread_mutex_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_mutex_lock.c -------------------------------------------------------------------------------- /thread-stub/pthread_mutex_trylock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_mutex_trylock.c -------------------------------------------------------------------------------- /thread-stub/pthread_mutex_unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_mutex_unlock.c -------------------------------------------------------------------------------- /thread-stub/pthread_once.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_once.c -------------------------------------------------------------------------------- /thread-stub/pthread_rwlock_rdlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_rwlock_rdlock.c -------------------------------------------------------------------------------- /thread-stub/pthread_rwlock_unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_rwlock_unlock.c -------------------------------------------------------------------------------- /thread-stub/pthread_rwlock_wrlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_rwlock_wrlock.c -------------------------------------------------------------------------------- /thread-stub/pthread_spin_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_spin_lock.c -------------------------------------------------------------------------------- /thread-stub/pthread_spin_trylock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_spin_trylock.c -------------------------------------------------------------------------------- /thread-stub/pthread_spin_unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/thread-stub/pthread_spin_unlock.c -------------------------------------------------------------------------------- /tools/wasi-headers/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /tools/wasi-headers/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/tools/wasi-headers/Cargo.toml -------------------------------------------------------------------------------- /tools/wasi-headers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/tools/wasi-headers/LICENSE -------------------------------------------------------------------------------- /tools/wasi-headers/src/c_header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/tools/wasi-headers/src/c_header.rs -------------------------------------------------------------------------------- /tools/wasi-headers/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/tools/wasi-headers/src/lib.rs -------------------------------------------------------------------------------- /tools/wasi-headers/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/tools/wasi-headers/src/main.rs -------------------------------------------------------------------------------- /tools/wasi-headers/tests/verify.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/wasi-libc/HEAD/tools/wasi-headers/tests/verify.rs --------------------------------------------------------------------------------