├── .gitattributes ├── .github └── workflows │ └── build-i386-kos-nOD.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── kos ├── .clang-format ├── .clang-tidy ├── .editorconfig ├── .sources ├── .vs │ ├── VSWorkspaceSettings.json │ └── tasks.vs.json ├── .vscode │ ├── settings.json │ └── tasks.json ├── README.md ├── cpp.hint ├── include │ ├── ConcurrencySal.h │ ├── README.md │ ├── __crt.h │ ├── __stdcxx.h │ ├── __stdinc.h │ ├── _ansi.h │ ├── _lfs_64.h │ ├── aio.h │ ├── aliases.h │ ├── alloc.h │ ├── alloca.h │ ├── ansidecl.h │ ├── ar.h │ ├── argp.h │ ├── argz.h │ ├── arm-kos │ │ ├── README.md │ │ ├── asm │ │ │ ├── arm.h │ │ │ ├── asmword.h │ │ │ ├── cfi.h │ │ │ ├── cpu-flags.h │ │ │ ├── intrin.h │ │ │ ├── isa.h │ │ │ ├── ls-syscalls.h │ │ │ ├── os │ │ │ │ └── kos │ │ │ │ │ └── mman.h │ │ │ ├── pagesize.h │ │ │ ├── redirect.h │ │ │ ├── registers.h │ │ │ ├── syscalls-proto.h │ │ │ ├── syscalls-trace.h │ │ │ ├── syscalls-types.h │ │ │ ├── syscalls.def │ │ │ └── syscalls.h │ │ ├── bits │ │ │ ├── syscalls.h │ │ │ └── va_list-struct.h │ │ ├── crt-features │ │ │ ├── crt-kos-syscalls.h │ │ │ └── crt-kos.h │ │ ├── fpu_control.h │ │ ├── kos │ │ │ ├── asm │ │ │ │ ├── kuser.h │ │ │ │ └── syscall.h │ │ │ ├── bits │ │ │ │ ├── except-handler.h │ │ │ │ ├── except.h │ │ │ │ ├── nopf.h │ │ │ │ └── thread.h │ │ │ ├── exec │ │ │ │ └── asm │ │ │ │ │ ├── elf-rel.h │ │ │ │ │ └── elf.h │ │ │ ├── kernel │ │ │ │ ├── bits │ │ │ │ │ ├── cpu-state-asm.h │ │ │ │ │ ├── cpu-state-helpers.h │ │ │ │ │ ├── cpu-state-verify.h │ │ │ │ │ └── cpu-state.h │ │ │ │ └── syscalls.h │ │ │ └── syscalls.h │ │ ├── libcpustate │ │ │ └── asm │ │ │ │ ├── features.h │ │ │ │ └── register.h │ │ ├── libservice │ │ │ ├── asm │ │ │ │ └── types.h │ │ │ └── bits │ │ │ │ └── com.h │ │ └── libunwind │ │ │ ├── ARM.extab.h │ │ │ └── asm │ │ │ ├── features.h │ │ │ └── isa.h │ ├── arpa │ │ ├── ftp.h │ │ ├── inet.h │ │ ├── nameser.h │ │ ├── nameser_compat.h │ │ ├── telnet.h │ │ └── tftp.h │ ├── asm-generic │ │ ├── README.md │ │ ├── auxvec.h │ │ ├── bitsperlong.h │ │ ├── errno-base.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── int-l64.h │ │ ├── int-ll64.h │ │ ├── ioctls.h │ │ ├── mman-common.h │ │ ├── mman.h │ │ ├── param.h │ │ ├── poll.h │ │ ├── posix_types.h │ │ ├── resource.h │ │ ├── setup.h │ │ ├── siginfo.h │ │ ├── signal-defs.h │ │ ├── signal.h │ │ ├── socket.h │ │ ├── sockios.h │ │ ├── stat.h │ │ ├── statfs.h │ │ ├── swab.h │ │ ├── termbits.h │ │ ├── termios.h │ │ ├── types.h │ │ └── ucontext.h │ ├── asm │ │ ├── README.md │ │ ├── __stdinc.h │ │ ├── asmword.h │ │ ├── auxvec.h │ │ ├── bitsperlong.h │ │ ├── byteorder.h │ │ ├── cacheline.h │ │ ├── cfi.h │ │ ├── crt │ │ │ ├── aio.h │ │ │ ├── confname.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── fmtmsg.h │ │ │ ├── fp_type.h │ │ │ ├── getpassfd.h │ │ │ ├── glob.h │ │ │ ├── humanize_number.h │ │ │ ├── langinfo.h │ │ │ ├── limits.h │ │ │ ├── locale.h │ │ │ ├── malloc.h │ │ │ ├── math-exception.h │ │ │ ├── math-libc_version.h │ │ │ ├── netdb.h │ │ │ ├── posix_spawn.h │ │ │ ├── process.h │ │ │ ├── pthreadvalues.h │ │ │ ├── readpassphrase.h │ │ │ ├── regex.h │ │ │ ├── resolv.h │ │ │ ├── semaphore.h │ │ │ ├── stdio.h │ │ │ ├── stdio_ext.h │ │ │ ├── stdlib.h │ │ │ ├── threads.h │ │ │ ├── time.h │ │ │ ├── ttyent.h │ │ │ ├── ucontext.h │ │ │ ├── util.h │ │ │ └── vis.h │ │ ├── defsym.h │ │ ├── errno-base.h │ │ ├── errno.h │ │ ├── farptr.h │ │ ├── fcntl.h │ │ ├── gas.h │ │ ├── intrin-arith.h │ │ ├── intrin-fpu.h │ │ ├── intrin.h │ │ ├── ioctl.h │ │ ├── ioctls.h │ │ ├── isa.h │ │ ├── ls-syscalls.h │ │ ├── mman.h │ │ ├── nomem-arch.h │ │ ├── nomem.h │ │ ├── os │ │ │ ├── block.h │ │ │ ├── clock.h │ │ │ ├── cygwin │ │ │ │ ├── clock.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── oflags.h │ │ │ │ ├── sched.h │ │ │ │ ├── sigevent.h │ │ │ │ ├── siginfo.h │ │ │ │ └── signal.h │ │ │ ├── dirent.h │ │ │ ├── dos │ │ │ │ ├── clock.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── oflags.h │ │ │ │ └── signal.h │ │ │ ├── epoll.h │ │ │ ├── errno.h │ │ │ ├── eventfd.h │ │ │ ├── fcntl.h │ │ │ ├── fd_set.h │ │ │ ├── features.h │ │ │ ├── file-ioctls.h │ │ │ ├── freebsd │ │ │ │ └── termios.h │ │ │ ├── generic │ │ │ │ └── vlimit.h │ │ │ ├── ipc.h │ │ │ ├── itimer.h │ │ │ ├── kos │ │ │ │ ├── block.h │ │ │ │ ├── clock.h │ │ │ │ ├── dirent.h │ │ │ │ ├── epoll.h │ │ │ │ ├── errno.h │ │ │ │ ├── eventfd.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── file-ioctls.h │ │ │ │ ├── ipc.h │ │ │ │ ├── itimer.h │ │ │ │ ├── limits.h │ │ │ │ ├── mkdev.h │ │ │ │ ├── mman.h │ │ │ │ ├── mount.h │ │ │ │ ├── msq.h │ │ │ │ ├── net-if.h │ │ │ │ ├── oflags.h │ │ │ │ ├── poll.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── random.h │ │ │ │ ├── reboot.h │ │ │ │ ├── resource.h │ │ │ │ ├── sched.h │ │ │ │ ├── sem.h │ │ │ │ ├── shm.h │ │ │ │ ├── sigevent.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── signal.h │ │ │ │ ├── signalfd.h │ │ │ │ ├── sigstack.h │ │ │ │ ├── socket-ioctls.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statvfs.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stropts.h │ │ │ │ ├── swap.h │ │ │ │ ├── syslog.h │ │ │ │ ├── termios.h │ │ │ │ ├── timerfd.h │ │ │ │ ├── timex.h │ │ │ │ ├── tty.h │ │ │ │ ├── ulimit.h │ │ │ │ ├── wait.h │ │ │ │ └── xattr.h │ │ │ ├── limits.h │ │ │ ├── mkdev.h │ │ │ ├── mman.h │ │ │ ├── mount.h │ │ │ ├── msq.h │ │ │ ├── net-if.h │ │ │ ├── netbsd │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── oflags.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── signal.h │ │ │ │ └── termios.h │ │ │ ├── oflags.h │ │ │ ├── paths.h │ │ │ ├── poll.h │ │ │ ├── ptrace.h │ │ │ ├── random.h │ │ │ ├── reboot.h │ │ │ ├── resource.h │ │ │ ├── sched.h │ │ │ ├── sem.h │ │ │ ├── shm.h │ │ │ ├── sigevent.h │ │ │ ├── siginfo.h │ │ │ ├── signal.h │ │ │ ├── signalfd.h │ │ │ ├── sigset.h │ │ │ ├── sigstack.h │ │ │ ├── socket-ioctls.h │ │ │ ├── socket.h │ │ │ ├── solaris │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── file-ioctls.h │ │ │ │ ├── mkdev.h │ │ │ │ ├── oflags.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── signal.h │ │ │ │ ├── termios.h │ │ │ │ └── tty.h │ │ │ ├── stat.h │ │ │ ├── statvfs.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── stropts.h │ │ │ ├── swap.h │ │ │ ├── syslog.h │ │ │ ├── termios.h │ │ │ ├── timerfd.h │ │ │ ├── timex.h │ │ │ ├── tty.h │ │ │ ├── ulimit.h │ │ │ ├── utsname.h │ │ │ ├── vfork.h │ │ │ ├── vlimit.h │ │ │ ├── wait.h │ │ │ └── xattr.h │ │ ├── page.h │ │ ├── pageid.h │ │ ├── pagesize.h │ │ ├── param.h │ │ ├── pkey.h │ │ ├── poll.h │ │ ├── posix_types.h │ │ ├── prctl.h │ │ ├── redirect.h │ │ ├── resource.h │ │ ├── sar.h │ │ ├── setup.h │ │ ├── siginfo.h │ │ ├── signal.h │ │ ├── signed-shift.h │ │ ├── socket.h │ │ ├── sockios.h │ │ ├── stat.h │ │ ├── statfs.h │ │ ├── swab.h │ │ ├── syscalls-proto.h │ │ ├── syscalls-trace.h │ │ ├── syscalls-types.h │ │ ├── syscalls.def │ │ ├── syscalls.h │ │ ├── termbits.h │ │ ├── termios.h │ │ ├── types.h │ │ ├── ucontext.h │ │ └── unistd.h │ ├── assert.h │ ├── atomic │ ├── atomic.h │ ├── attr │ │ ├── asm │ │ │ ├── attributes.h │ │ │ └── libattr.h │ │ ├── attributes.h │ │ ├── bits │ │ │ └── attributes.h │ │ ├── error_context.h │ │ ├── libattr.h │ │ └── xattr.h │ ├── bits │ │ ├── crt │ │ │ ├── _diskfree_t.h │ │ │ ├── addrinfo.h │ │ │ ├── aiocb.h │ │ │ ├── aioinit.h │ │ │ ├── argp.h │ │ │ ├── complex.h │ │ │ ├── crypt_data.h │ │ │ ├── ctype.h │ │ │ ├── db │ │ │ │ ├── aliases.h │ │ │ │ ├── fstab.h │ │ │ │ ├── group.h │ │ │ │ ├── hostent.h │ │ │ │ ├── mntent.h │ │ │ │ ├── netdb.h │ │ │ │ ├── passwd.h │ │ │ │ ├── protoent.h │ │ │ │ ├── rpcent.h │ │ │ │ ├── servent.h │ │ │ │ ├── spwd.h │ │ │ │ ├── ttyent.h │ │ │ │ ├── utmp.h │ │ │ │ └── utmpx.h │ │ │ ├── div.h │ │ │ ├── dlfcn.h │ │ │ ├── dos │ │ │ │ ├── _CrtMemState.h │ │ │ │ └── corecrt_startup.h │ │ │ ├── dyn-string.h │ │ │ ├── environments.h │ │ │ ├── fenv-impl.h │ │ │ ├── fenv.h │ │ │ ├── format-printer.h │ │ │ ├── fts.h │ │ │ ├── ftw.h │ │ │ ├── gaicb.h │ │ │ ├── getopt.h │ │ │ ├── glob.h │ │ │ ├── if_nameindex.h │ │ │ ├── ifaddr.h │ │ │ ├── ifaddrs.h │ │ │ ├── inttypes.h │ │ │ ├── io-file.h │ │ │ ├── langinfo.h │ │ │ ├── lconv.h │ │ │ ├── locale.h │ │ │ ├── mallinfo.h │ │ │ ├── mapfile.h │ │ │ ├── math-vector.h │ │ │ ├── mathdef.h │ │ │ ├── mbstate.h │ │ │ ├── ntptimeval.h │ │ │ ├── objalloc.h │ │ │ ├── obstack.h │ │ │ ├── partition.h │ │ │ ├── posix_spawn.h │ │ │ ├── printf_info.h │ │ │ ├── pthreadtypes.h │ │ │ ├── pthreadtypesizes.h │ │ │ ├── random-data.h │ │ │ ├── regex.h │ │ │ ├── resolv.h │ │ │ ├── semaphore.h │ │ │ ├── setjmp.h │ │ │ ├── stdio.h │ │ │ ├── sys_errlist.h │ │ │ ├── threads.h │ │ │ ├── tm.h │ │ │ ├── uformat-printer.h │ │ │ ├── unicode.h │ │ │ ├── vtimes.h │ │ │ ├── wctype.h │ │ │ ├── wformat-printer.h │ │ │ └── wordexp.h │ │ ├── elf-types.h │ │ ├── elf.h │ │ ├── math-constants.h │ │ ├── os │ │ │ ├── acct.h │ │ │ ├── cmsghdr.h │ │ │ ├── cpu_set.h │ │ │ ├── cygwin │ │ │ │ ├── flock.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── sigevent.h │ │ │ │ ├── siginfo.h │ │ │ │ └── stat.h │ │ │ ├── dirent.h │ │ │ ├── dos │ │ │ │ ├── dirent.h │ │ │ │ └── stat.h │ │ │ ├── epoll.h │ │ │ ├── f_owner_ex.h │ │ │ ├── fd_set.h │ │ │ ├── file_handle.h │ │ │ ├── flock.h │ │ │ ├── freebsd │ │ │ │ └── termios.h │ │ │ ├── generic │ │ │ │ ├── iovec.h │ │ │ │ ├── itimerspec.h │ │ │ │ ├── itimerval.h │ │ │ │ ├── linger.h │ │ │ │ ├── mqueue.h │ │ │ │ ├── sigset.h │ │ │ │ ├── sigset_with_size.h │ │ │ │ ├── sockaddr-common.h │ │ │ │ ├── sockaddr.h │ │ │ │ ├── sockaddr_storage.h │ │ │ │ ├── stat.h │ │ │ │ ├── timespec.h │ │ │ │ ├── timeval.h │ │ │ │ ├── ucontext.h │ │ │ │ └── wait.h │ │ │ ├── ifconf.h │ │ │ ├── ifmap.h │ │ │ ├── ifreq.h │ │ │ ├── iovec.h │ │ │ ├── ipc.h │ │ │ ├── itimerspec.h │ │ │ ├── itimerval.h │ │ │ ├── kos │ │ │ │ ├── acct.h │ │ │ │ ├── cmsghdr.h │ │ │ │ ├── cpu_set.h │ │ │ │ ├── dirent.h │ │ │ │ ├── epoll.h │ │ │ │ ├── f_owner_ex.h │ │ │ │ ├── file_handle.h │ │ │ │ ├── flock.h │ │ │ │ ├── ifconf.h │ │ │ │ ├── ifmap.h │ │ │ │ ├── ifreq.h │ │ │ │ ├── ipc.h │ │ │ │ ├── mmsghdr.h │ │ │ │ ├── msgbuf.h │ │ │ │ ├── msghdr.h │ │ │ │ ├── msq.h │ │ │ │ ├── pollfd.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── rlimit.h │ │ │ │ ├── rusage-convert.h │ │ │ │ ├── rusage.h │ │ │ │ ├── sched.h │ │ │ │ ├── sem.h │ │ │ │ ├── sembuf.h │ │ │ │ ├── shm.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── sigevent.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── signalfd_siginfo.h │ │ │ │ ├── sigstack.h │ │ │ │ ├── sigval.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs-convert.h │ │ │ │ ├── statfs.h │ │ │ │ ├── statvfs.h │ │ │ │ ├── stropts.h │ │ │ │ ├── sysinfo.h │ │ │ │ ├── termio.h │ │ │ │ ├── termios.h │ │ │ │ ├── termiox.h │ │ │ │ ├── timeb.h │ │ │ │ ├── timex.h │ │ │ │ ├── tms.h │ │ │ │ ├── ucred.h │ │ │ │ ├── ustat.h │ │ │ │ ├── utimbuf.h │ │ │ │ └── utsname.h │ │ │ ├── linger.h │ │ │ ├── linux │ │ │ │ └── stat.h │ │ │ ├── mcontext.h │ │ │ ├── mmsghdr.h │ │ │ ├── mqueue.h │ │ │ ├── msgbuf.h │ │ │ ├── msghdr.h │ │ │ ├── msq.h │ │ │ ├── netbsd │ │ │ │ └── termios.h │ │ │ ├── pollfd.h │ │ │ ├── ptrace.h │ │ │ ├── rlimit.h │ │ │ ├── rusage-convert.h │ │ │ ├── rusage.h │ │ │ ├── sched.h │ │ │ ├── sem.h │ │ │ ├── sembuf.h │ │ │ ├── shm.h │ │ │ ├── sigaction.h │ │ │ ├── sigcontext.h │ │ │ ├── sigevent.h │ │ │ ├── siginfo.h │ │ │ ├── signalfd_siginfo.h │ │ │ ├── sigset.h │ │ │ ├── sigset_with_size.h │ │ │ ├── sigstack.h │ │ │ ├── sigval.h │ │ │ ├── sockaddr-common.h │ │ │ ├── sockaddr.h │ │ │ ├── sockaddr_storage.h │ │ │ ├── solaris │ │ │ │ └── flock.h │ │ │ ├── stat.h │ │ │ ├── statfs-convert.h │ │ │ ├── statfs.h │ │ │ ├── statvfs.h │ │ │ ├── stropts.h │ │ │ ├── sysinfo.h │ │ │ ├── termio.h │ │ │ ├── termios.h │ │ │ ├── termiox.h │ │ │ ├── timeb.h │ │ │ ├── timespec.h │ │ │ ├── timeval.h │ │ │ ├── timex.h │ │ │ ├── tms.h │ │ │ ├── ucontext.h │ │ │ ├── ucred.h │ │ │ ├── ustat.h │ │ │ ├── utimbuf.h │ │ │ ├── utsname.h │ │ │ └── wait.h │ │ ├── os_defines.h │ │ ├── posix_lim1.h │ │ ├── posix_lim2.h │ │ ├── posix_opt.h │ │ ├── pthreadtypes.h │ │ ├── sigset.h │ │ ├── sockaddr.h │ │ ├── std_abs.h │ │ ├── syscalls.h │ │ ├── timex.h │ │ ├── types.h │ │ ├── types │ │ │ ├── FILE.h │ │ │ ├── NULL.h │ │ │ ├── __FILE.h │ │ │ ├── __fpos64_t.h │ │ │ ├── __fpos_t.h │ │ │ ├── __locale_t.h │ │ │ ├── __mbstate_t.h │ │ │ ├── __sigset_t.h │ │ │ ├── __sigval_t.h │ │ │ ├── blkcnt_t.h │ │ │ ├── blksize_t.h │ │ │ ├── clock_t.h │ │ │ ├── clockid_t.h │ │ │ ├── cookie_io_functions_t.h │ │ │ ├── dev_t.h │ │ │ ├── errno_t.h │ │ │ ├── error_t.h │ │ │ ├── fsblkcnt_t.h │ │ │ ├── fsfilcnt_t.h │ │ │ ├── gid_t.h │ │ │ ├── id_t.h │ │ │ ├── ino64_t.h │ │ │ ├── ino_t.h │ │ │ ├── intN_t.h │ │ │ ├── int_fastN_t.h │ │ │ ├── int_leastN_t.h │ │ │ ├── intmax_t.h │ │ │ ├── intptr_t.h │ │ │ ├── locale_t.h │ │ │ ├── mbstate_t.h │ │ │ ├── mode_t.h │ │ │ ├── nlink_t.h │ │ │ ├── off64_t.h │ │ │ ├── off_t.h │ │ │ ├── pid_t.h │ │ │ ├── ptrdiff_t.h │ │ │ ├── sig_atomic_t.h │ │ │ ├── sigevent_t.h │ │ │ ├── siginfo_t.h │ │ │ ├── sigset_t.h │ │ │ ├── sigval_t.h │ │ │ ├── size_t.h │ │ │ ├── socklen_t.h │ │ │ ├── ssize_t.h │ │ │ ├── stack_t.h │ │ │ ├── std_FILE.h │ │ │ ├── std_clock_t.h │ │ │ ├── std_mbstate_t.h │ │ │ ├── std_sig_atomic_t.h │ │ │ ├── std_size_t.h │ │ │ ├── std_time_t.h │ │ │ ├── std_wint_t.h │ │ │ ├── struct_FILE.h │ │ │ ├── struct_iovec.h │ │ │ ├── struct_itimerspec.h │ │ │ ├── struct_osockaddr.h │ │ │ ├── struct_rusage.h │ │ │ ├── struct_sched_param.h │ │ │ ├── struct_sigstack.h │ │ │ ├── struct_timespec.h │ │ │ ├── struct_timeval.h │ │ │ ├── struct_tm.h │ │ │ ├── suseconds_t.h │ │ │ ├── time_t.h │ │ │ ├── timer_t.h │ │ │ ├── uid_t.h │ │ │ ├── uintN_t.h │ │ │ ├── uintptr_t.h │ │ │ ├── useconds_t.h │ │ │ ├── va_list.h │ │ │ ├── wctype_t.h │ │ │ └── wint_t.h │ │ ├── typesizes.h │ │ ├── wchar.h │ │ ├── wordsize.h │ │ └── xopen_lim.h │ ├── bitstring.h │ ├── bsd │ │ ├── bitstring.h │ │ ├── bsd.h │ │ ├── err.h │ │ ├── errno.h │ │ ├── getopt.h │ │ ├── grp.h │ │ ├── inttypes.h │ │ ├── libutil.h │ │ ├── pwd.h │ │ ├── readpassphrase.h │ │ ├── sgtty.h │ │ ├── signal.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── stringlist.h │ │ ├── sys │ │ │ ├── bitstring.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── queue.h │ │ │ ├── time.h │ │ │ └── ttychars.h │ │ ├── tzfile.h │ │ ├── unistd.h │ │ ├── vis.h │ │ └── wchar.h │ ├── bstring.h │ ├── bytesex.h │ ├── byteswap.h │ ├── c++ │ │ ├── bits │ │ │ ├── README.txt │ │ │ ├── __addressof.h │ │ │ ├── addressof.h │ │ │ ├── allocator.h │ │ │ ├── bad_alloc.h │ │ │ ├── bad_array_new_length.h │ │ │ ├── bad_cast.h │ │ │ ├── bad_typeid.h │ │ │ ├── char_traits.h │ │ │ ├── crt_exceptions.h │ │ │ ├── exception.h │ │ │ ├── forward.h │ │ │ ├── integer_sequence.h │ │ │ ├── iterator.h │ │ │ ├── move.h │ │ │ ├── operator_new.h │ │ │ ├── pair.h │ │ │ ├── traits │ │ │ │ ├── __is_array_bounds.h │ │ │ │ ├── __is_referenceable.h │ │ │ │ ├── __is_swappable.h │ │ │ │ ├── add_cv.h │ │ │ │ ├── add_pointer.h │ │ │ │ ├── add_reference.h │ │ │ │ ├── aligned_storage.h │ │ │ │ ├── andor.h │ │ │ │ ├── common_type.h │ │ │ │ ├── conditional.h │ │ │ │ ├── decay.h │ │ │ │ ├── declval.h │ │ │ │ ├── enable_if.h │ │ │ │ ├── extent.h │ │ │ │ ├── integral_constant.h │ │ │ │ ├── is_arithmetic.h │ │ │ │ ├── is_array.h │ │ │ │ ├── is_assignable.h │ │ │ │ ├── is_base_of.h │ │ │ │ ├── is_class.h │ │ │ │ ├── is_constructible.h │ │ │ │ ├── is_convertible.h │ │ │ │ ├── is_cv.h │ │ │ │ ├── is_destructible.h │ │ │ │ ├── is_enum.h │ │ │ │ ├── is_floating_point.h │ │ │ │ ├── is_function.h │ │ │ │ ├── is_integral.h │ │ │ │ ├── is_invocable.h │ │ │ │ ├── is_member.h │ │ │ │ ├── is_member_pointer.h │ │ │ │ ├── is_null_pointer.h │ │ │ │ ├── is_object.h │ │ │ │ ├── is_pointer.h │ │ │ │ ├── is_reference.h │ │ │ │ ├── is_same.h │ │ │ │ ├── is_scalar.h │ │ │ │ ├── is_sign.h │ │ │ │ ├── is_union.h │ │ │ │ ├── is_void.h │ │ │ │ ├── make_sign.h │ │ │ │ ├── remove_all_extents.h │ │ │ │ ├── remove_cv.h │ │ │ │ ├── remove_extent.h │ │ │ │ ├── remove_pointer.h │ │ │ │ ├── remove_reference.h │ │ │ │ ├── result_of.h │ │ │ │ └── underlying_type.h │ │ │ ├── tuple.h │ │ │ ├── unique_ptr.h │ │ │ ├── varargs-template-emulate.h │ │ │ └── varargs-template.h │ │ └── compiler │ │ │ └── enum-class.h │ ├── cassert │ ├── ccomplex │ ├── cctype │ ├── cerrno │ ├── cfenv │ ├── cfi.h │ ├── cfloat │ ├── cinttypes │ ├── ciso646 │ ├── climits │ ├── clocale │ ├── cmath │ ├── compat │ │ ├── bits │ │ │ ├── os │ │ │ │ ├── cmsghdr.h │ │ │ │ ├── flock.h │ │ │ │ ├── generic │ │ │ │ │ ├── cmsghdr.h │ │ │ │ │ ├── flock.h │ │ │ │ │ ├── iovec.h │ │ │ │ │ ├── itimerspec.h │ │ │ │ │ ├── itimerval.h │ │ │ │ │ ├── mmsghdr.h │ │ │ │ │ ├── msghdr.h │ │ │ │ │ ├── rlimit.h │ │ │ │ │ ├── rusage-convert.h │ │ │ │ │ ├── rusage.h │ │ │ │ │ ├── sigaction.h │ │ │ │ │ ├── sigevent.h │ │ │ │ │ ├── siginfo-convert.h │ │ │ │ │ ├── siginfo.h │ │ │ │ │ ├── sigset_with_size.h │ │ │ │ │ ├── sigstack.h │ │ │ │ │ ├── sigval.h │ │ │ │ │ ├── statfs-convert.h │ │ │ │ │ ├── statfs.h │ │ │ │ │ ├── timeb.h │ │ │ │ │ ├── timespec.h │ │ │ │ │ ├── timeval.h │ │ │ │ │ ├── tms.h │ │ │ │ │ └── utimbuf.h │ │ │ │ ├── iovec.h │ │ │ │ ├── itimerspec.h │ │ │ │ ├── itimerval.h │ │ │ │ ├── kos │ │ │ │ │ ├── cmsghdr.h │ │ │ │ │ ├── flock.h │ │ │ │ │ ├── mmsghdr.h │ │ │ │ │ ├── msghdr.h │ │ │ │ │ ├── rlimit.h │ │ │ │ │ ├── rusage-convert.h │ │ │ │ │ ├── rusage.h │ │ │ │ │ ├── sigaction.h │ │ │ │ │ ├── sigevent.h │ │ │ │ │ ├── siginfo-convert.h │ │ │ │ │ ├── siginfo.h │ │ │ │ │ ├── sigstack.h │ │ │ │ │ ├── sigval.h │ │ │ │ │ ├── statfs-convert.h │ │ │ │ │ ├── statfs.h │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ ├── timeb.h │ │ │ │ │ ├── tms.h │ │ │ │ │ └── utimbuf.h │ │ │ │ ├── mcontext.h │ │ │ │ ├── mmsghdr.h │ │ │ │ ├── msghdr.h │ │ │ │ ├── rlimit.h │ │ │ │ ├── rusage-convert.h │ │ │ │ ├── rusage.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── sigevent.h │ │ │ │ ├── siginfo-convert.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── sigset.h │ │ │ │ ├── sigset_with_size.h │ │ │ │ ├── sigstack.h │ │ │ │ ├── sigval.h │ │ │ │ ├── statfs-convert.h │ │ │ │ ├── statfs.h │ │ │ │ ├── sysinfo.h │ │ │ │ ├── timeb.h │ │ │ │ ├── timespec.h │ │ │ │ ├── timeval.h │ │ │ │ ├── tms.h │ │ │ │ ├── ucontext.h │ │ │ │ └── utimbuf.h │ │ │ ├── types.h │ │ │ ├── typesizes.h │ │ │ └── va_list-struct.h │ │ ├── config.h │ │ ├── kos │ │ │ ├── asm │ │ │ │ └── futex.h │ │ │ ├── bits │ │ │ │ ├── coredump.h │ │ │ │ ├── except-handler.h │ │ │ │ ├── futex-expr.h │ │ │ │ └── syscall-info.h │ │ │ ├── compat │ │ │ │ ├── linux-dirent.h │ │ │ │ ├── linux-olddirent.h │ │ │ │ ├── linux-oldselect.h │ │ │ │ └── linux-stat.h │ │ │ ├── except-handler.h │ │ │ ├── exec │ │ │ │ ├── asm │ │ │ │ │ ├── elf.h │ │ │ │ │ └── rtld.h │ │ │ │ ├── bits │ │ │ │ │ ├── elf.h │ │ │ │ │ └── peb.h │ │ │ │ ├── elf.h │ │ │ │ ├── peb.h │ │ │ │ └── rtld.h │ │ │ ├── futex.h │ │ │ └── types.h │ │ ├── linux │ │ │ └── msdos_fs.h │ │ ├── pointer.h │ │ ├── signal.h │ │ └── sys │ │ │ └── ucontext.h │ ├── compiler │ │ ├── c++.h │ │ ├── c.h │ │ ├── checker.h │ │ ├── clang.h │ │ ├── docgen.h │ │ ├── gcc-builtins.h │ │ ├── gcc-warnings.h │ │ ├── gcc.h │ │ ├── generic.h │ │ ├── intellisense-common.h │ │ ├── intellisense-gcc.h │ │ ├── intellisense-msvc.h │ │ ├── msvc.h │ │ ├── other.h │ │ └── pp-generic.h │ ├── complex.h │ ├── confname.h │ ├── confstr.h │ ├── conio.h │ ├── corecrt.h │ ├── corecrt_io.h │ ├── corecrt_malloc.h │ ├── corecrt_math.h │ ├── corecrt_math_defines.h │ ├── corecrt_memcpy_s.h │ ├── corecrt_memory.h │ ├── corecrt_search.h │ ├── corecrt_startup.h │ ├── corecrt_stdio_config.h │ ├── corecrt_wconio.h │ ├── corecrt_wctype.h │ ├── corecrt_wdirect.h │ ├── corecrt_wio.h │ ├── corecrt_wprocess.h │ ├── corecrt_wstdio.h │ ├── corecrt_wstdlib.h │ ├── corecrt_wstring.h │ ├── corecrt_wtime.h │ ├── cpio.h │ ├── crt-features │ │ ├── _crt-select.h │ │ ├── crt-cyg.h │ │ ├── crt-dos.h │ │ ├── crt-glc.h │ │ ├── crt-kos-kernel.h │ │ ├── crt-kos-syscalls.h │ │ ├── crt-kos.h │ │ ├── delete-printf.h │ │ └── generic.h │ ├── crtdbg.h │ ├── crtdefs.h │ ├── crypt.h │ ├── csetjmp │ ├── csignal │ ├── cstdalign │ ├── cstdarg │ ├── cstdbool │ ├── cstddef │ ├── cstdint │ ├── cstdio │ ├── cstdlib │ ├── cstring │ ├── ctgmath │ ├── cthreads.h │ ├── ctime │ ├── ctype.h │ ├── cuchar │ ├── cwchar │ ├── cwctype │ ├── daemon.h │ ├── dir.h │ ├── direct.h │ ├── dirent.h │ ├── dlfcn.h │ ├── dos.h │ ├── dyn-string.h │ ├── elf.h │ ├── elf_abi.h │ ├── endian.h │ ├── envz.h │ ├── err.h │ ├── errno.h │ ├── error.h │ ├── exception │ ├── execinfo.h │ ├── fastmath.h │ ├── fcntl.h │ ├── features.h │ ├── fenv.h │ ├── file.h │ ├── float.h │ ├── fmtmsg.h │ ├── fnmatch.h │ ├── format-printer.h │ ├── fpu_control.h │ ├── fstab.h │ ├── fts.h │ ├── ftw.h │ ├── getopt.h │ ├── getpagesize.h │ ├── glob.h │ ├── gnu-versions.h │ ├── gnu │ │ ├── lib-names.h │ │ ├── libc-version.h │ │ └── stubs.h │ ├── gppconio.h │ ├── grp.h │ ├── huge_val.h │ ├── hw │ │ ├── README.txt │ │ ├── bus │ │ │ ├── pci.h │ │ │ └── serial.h │ │ ├── disk │ │ │ ├── ata.h │ │ │ ├── part │ │ │ │ ├── efi.h │ │ │ │ ├── embr.h │ │ │ │ └── mbr.h │ │ │ └── scsi.h │ │ ├── hid │ │ │ ├── ps2.h │ │ │ ├── usb-hid.h │ │ │ └── usbkbd.h │ │ ├── ic │ │ │ ├── apic.h │ │ │ └── pic.h │ │ ├── net │ │ │ └── ne2k.h │ │ ├── rtc │ │ │ └── cmos.h │ │ ├── timer │ │ │ └── pit.h │ │ ├── usb │ │ │ ├── class.h │ │ │ ├── hub.h │ │ │ ├── ohci.h │ │ │ ├── uhci.h │ │ │ └── usb.h │ │ └── video │ │ │ ├── bochsvbe.h │ │ │ ├── vga.h │ │ │ ├── vgamodes.h │ │ │ └── vmware.h │ ├── hybrid │ │ ├── __alloca.h │ │ ├── __altint.h │ │ ├── __asm.h │ │ ├── __assembly.h │ │ ├── __assert.h │ │ ├── __atomic-complete.h │ │ ├── __atomic-gasm-x86.h │ │ ├── __atomic-libatomic.h │ │ ├── __atomic-msvc.h │ │ ├── __atomic.h │ │ ├── __bit.h │ │ ├── __bitfield.h │ │ ├── __bitset.h │ │ ├── __byteswap.h │ │ ├── __debug-alignment.h │ │ ├── __minmax.h │ │ ├── __overflow.h │ │ ├── __pointer-cxx-impl.h │ │ ├── __pointer.h │ │ ├── __rotate.h │ │ ├── __string.h │ │ ├── __unaligned.h │ │ ├── __va_size.h │ │ ├── __wordbits.h │ │ ├── align.h │ │ ├── alloca.h │ │ ├── altint.h │ │ ├── atomic.h │ │ ├── bit.h │ │ ├── bitset.h │ │ ├── byteorder.h │ │ ├── byteswap.h │ │ ├── compiler.h │ │ ├── debug-alignment.h │ │ ├── floatcore.h │ │ ├── host.h │ │ ├── int128.h │ │ ├── limitcore.h │ │ ├── minmax.h │ │ ├── overflow.h │ │ ├── pointer.h │ │ ├── pp │ │ │ ├── __bubble.h │ │ │ ├── __va_nargs.h │ │ │ └── bubble.h │ │ ├── sched │ │ │ ├── __gettid.h │ │ │ ├── __preemption.h │ │ │ ├── __yield.h │ │ │ ├── atomic-lock.h │ │ │ ├── atomic-once.h │ │ │ ├── atomic-owner-rwlock.h │ │ │ ├── atomic-rwlock.h │ │ │ ├── preemption.h │ │ │ └── yield.h │ │ ├── sequence │ │ │ ├── bitset.h │ │ │ ├── bsearch.h │ │ │ ├── list.h │ │ │ ├── rbtree-abi.h │ │ │ ├── rbtree.h │ │ │ └── vector.h │ │ ├── spcall.h │ │ ├── sync │ │ │ ├── atomic-lock.h │ │ │ ├── atomic-once.h │ │ │ ├── atomic-owner-rwlock.h │ │ │ └── atomic-rwlock.h │ │ ├── typecore.h │ │ ├── unaligned.h │ │ └── wordbits.h │ ├── i386-kos │ │ ├── asm │ │ │ ├── README.md │ │ │ ├── __stdinc.h │ │ │ ├── asmword.h │ │ │ ├── cfi.h │ │ │ ├── cpu-cpuid.h │ │ │ ├── cpu-features.h │ │ │ ├── cpu-flags.h │ │ │ ├── cpu-msr.h │ │ │ ├── crt │ │ │ │ └── fenv.h │ │ │ ├── farptr.h │ │ │ ├── instr │ │ │ │ ├── compat.h │ │ │ │ ├── fsgsbase.h │ │ │ │ ├── interrupt.h │ │ │ │ ├── jccN.h │ │ │ │ ├── kgsbase.h │ │ │ │ ├── movzxq.h │ │ │ │ └── ttest.h │ │ │ ├── intrin-arith.h │ │ │ ├── intrin-cpuid.h │ │ │ ├── intrin-fpu.h │ │ │ ├── intrin-lock.h │ │ │ ├── intrin-segarith.h │ │ │ ├── intrin-tbm.h │ │ │ ├── intrin.h │ │ │ ├── isa.h │ │ │ ├── ls-syscalls.h │ │ │ ├── ls-syscalls32.h │ │ │ ├── ls-syscalls64.h │ │ │ ├── nomem-arch.h │ │ │ ├── os │ │ │ │ └── kos │ │ │ │ │ └── prctl.h │ │ │ ├── pageid.h │ │ │ ├── pagesize.h │ │ │ ├── pkey.h │ │ │ ├── prctl.h │ │ │ ├── redirect.h │ │ │ ├── registers-compat.h │ │ │ ├── registers.h │ │ │ ├── rtm.h │ │ │ ├── syscall3264-compat.h │ │ │ ├── syscall3264-types.h │ │ │ ├── syscalls-proto.h │ │ │ ├── syscalls-proto32.h │ │ │ ├── syscalls-proto32_d.h │ │ │ ├── syscalls-proto64.h │ │ │ ├── syscalls-proto64_d.h │ │ │ ├── syscalls-trace.h │ │ │ ├── syscalls-trace32.h │ │ │ ├── syscalls-trace32_d.h │ │ │ ├── syscalls-trace64.h │ │ │ ├── syscalls-trace64_d.h │ │ │ ├── syscalls-types.h │ │ │ ├── syscalls-types32.h │ │ │ ├── syscalls-types32_d.h │ │ │ ├── syscalls-types64.h │ │ │ ├── syscalls-types64_d.h │ │ │ ├── syscalls.h │ │ │ ├── syscalls32.def │ │ │ ├── syscalls32.h │ │ │ ├── syscalls32_d.h │ │ │ ├── syscalls64.def │ │ │ ├── syscalls64.h │ │ │ └── syscalls64_d.h │ │ ├── bits │ │ │ ├── crt │ │ │ │ ├── fenv-impl.h │ │ │ │ ├── fenv.h │ │ │ │ ├── math-vector.h │ │ │ │ ├── mathdef.h │ │ │ │ ├── pthreadtypesizes.h │ │ │ │ └── setjmp.h │ │ │ ├── elf.h │ │ │ ├── os │ │ │ │ ├── cygwin │ │ │ │ │ ├── mcontext32.h │ │ │ │ │ ├── mcontext64.h │ │ │ │ │ ├── ucontext32.h │ │ │ │ │ └── ucontext64.h │ │ │ │ ├── generic │ │ │ │ │ ├── iovec.h │ │ │ │ │ ├── iovec32.h │ │ │ │ │ ├── iovec64.h │ │ │ │ │ ├── itimerspec.h │ │ │ │ │ ├── itimerspec32.h │ │ │ │ │ ├── itimerspec64.h │ │ │ │ │ ├── itimerval.h │ │ │ │ │ ├── itimerval32.h │ │ │ │ │ ├── itimerval64.h │ │ │ │ │ ├── sigset_with_size.h │ │ │ │ │ ├── sigset_with_size32.h │ │ │ │ │ ├── sigset_with_size64.h │ │ │ │ │ ├── timespec.h │ │ │ │ │ ├── timespec32.h │ │ │ │ │ ├── timespec64.h │ │ │ │ │ ├── timeval.h │ │ │ │ │ ├── timeval32.h │ │ │ │ │ └── timeval64.h │ │ │ │ ├── kos │ │ │ │ │ ├── cmsghdr.h │ │ │ │ │ ├── cmsghdr32.h │ │ │ │ │ ├── cmsghdr64.h │ │ │ │ │ ├── flock.h │ │ │ │ │ ├── flock32.h │ │ │ │ │ ├── flock64.h │ │ │ │ │ ├── mcontext32.h │ │ │ │ │ ├── mcontext64.h │ │ │ │ │ ├── mmsghdr.h │ │ │ │ │ ├── mmsghdr32.h │ │ │ │ │ ├── mmsghdr64.h │ │ │ │ │ ├── msghdr.h │ │ │ │ │ ├── msghdr32.h │ │ │ │ │ ├── msghdr64.h │ │ │ │ │ ├── rlimit.h │ │ │ │ │ ├── rlimit32.h │ │ │ │ │ ├── rlimit64.h │ │ │ │ │ ├── rusage-convert.h │ │ │ │ │ ├── rusage.h │ │ │ │ │ ├── rusage32.h │ │ │ │ │ ├── rusage64.h │ │ │ │ │ ├── sigaction.h │ │ │ │ │ ├── sigaction32.h │ │ │ │ │ ├── sigaction64.h │ │ │ │ │ ├── sigevent.h │ │ │ │ │ ├── sigevent32.h │ │ │ │ │ ├── sigevent64.h │ │ │ │ │ ├── siginfo-convert.h │ │ │ │ │ ├── siginfo.h │ │ │ │ │ ├── siginfo32.h │ │ │ │ │ ├── siginfo64.h │ │ │ │ │ ├── sigstack.h │ │ │ │ │ ├── sigstack32.h │ │ │ │ │ ├── sigstack64.h │ │ │ │ │ ├── sigval.h │ │ │ │ │ ├── sigval32.h │ │ │ │ │ ├── sigval64.h │ │ │ │ │ ├── statfs-convert.h │ │ │ │ │ ├── statfs.h │ │ │ │ │ ├── statfs32.h │ │ │ │ │ ├── statfs64.h │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ ├── sysinfo32.h │ │ │ │ │ ├── sysinfo64.h │ │ │ │ │ ├── timeb.h │ │ │ │ │ ├── timeb32.h │ │ │ │ │ ├── timeb64.h │ │ │ │ │ ├── tms.h │ │ │ │ │ ├── tms32.h │ │ │ │ │ ├── tms64.h │ │ │ │ │ ├── ucontext32.h │ │ │ │ │ ├── ucontext64.h │ │ │ │ │ ├── utimbuf.h │ │ │ │ │ ├── utimbuf32.h │ │ │ │ │ └── utimbuf64.h │ │ │ │ ├── linux │ │ │ │ │ ├── mcontext32.h │ │ │ │ │ ├── mcontext64.h │ │ │ │ │ ├── ucontext32.h │ │ │ │ │ └── ucontext64.h │ │ │ │ ├── mcontext.h │ │ │ │ └── ucontext.h │ │ │ ├── syscalls.h │ │ │ ├── syscalls32.h │ │ │ ├── syscalls64.h │ │ │ ├── typesizes.h │ │ │ ├── va_list-struct.h │ │ │ ├── va_list-struct32.h │ │ │ └── va_list-struct64.h │ │ ├── compat │ │ │ ├── bits │ │ │ │ ├── os │ │ │ │ │ ├── generic │ │ │ │ │ │ ├── iovec.h │ │ │ │ │ │ ├── itimerspec.h │ │ │ │ │ │ ├── itimerval.h │ │ │ │ │ │ ├── sigset_with_size.h │ │ │ │ │ │ ├── timespec.h │ │ │ │ │ │ └── timeval.h │ │ │ │ │ ├── kos │ │ │ │ │ │ ├── cmsghdr.h │ │ │ │ │ │ ├── flock.h │ │ │ │ │ │ ├── mmsghdr.h │ │ │ │ │ │ ├── msghdr.h │ │ │ │ │ │ ├── rlimit.h │ │ │ │ │ │ ├── rusage-convert.h │ │ │ │ │ │ ├── rusage.h │ │ │ │ │ │ ├── sigaction.h │ │ │ │ │ │ ├── sigevent.h │ │ │ │ │ │ ├── siginfo-convert.h │ │ │ │ │ │ ├── siginfo.h │ │ │ │ │ │ ├── sigstack.h │ │ │ │ │ │ ├── sigval.h │ │ │ │ │ │ ├── statfs-convert.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ │ ├── timeb.h │ │ │ │ │ │ ├── tms.h │ │ │ │ │ │ └── utimbuf.h │ │ │ │ │ ├── mcontext.h │ │ │ │ │ └── ucontext.h │ │ │ │ ├── typesizes.h │ │ │ │ └── va_list-struct.h │ │ │ ├── config.h │ │ │ └── kos │ │ │ │ ├── bits │ │ │ │ ├── coredump.h │ │ │ │ ├── except-handler.h │ │ │ │ ├── futex-expr.h │ │ │ │ └── syscall-info.h │ │ │ │ ├── compat │ │ │ │ ├── linux-dirent.h │ │ │ │ ├── linux-olddirent.h │ │ │ │ ├── linux-oldselect.h │ │ │ │ ├── linux-stat-convert.h │ │ │ │ └── linux-stat.h │ │ │ │ └── exec │ │ │ │ ├── asm │ │ │ │ ├── elf.h │ │ │ │ └── rtld.h │ │ │ │ └── bits │ │ │ │ ├── elf.h │ │ │ │ └── peb.h │ │ ├── crt-features │ │ │ ├── crt-cyg.h │ │ │ ├── crt-dos.h │ │ │ ├── crt-glc.h │ │ │ ├── crt-kos-syscalls.h │ │ │ ├── crt-kos-syscalls32.h │ │ │ ├── crt-kos-syscalls64.h │ │ │ ├── crt-kos.h │ │ │ ├── crt-kos32.h │ │ │ ├── crt-kos64.h │ │ │ ├── makedos.dee │ │ │ └── makeglibc.dee │ │ ├── fpu_control.h │ │ ├── kos │ │ │ ├── asm │ │ │ │ ├── lockop.h │ │ │ │ ├── rpc-method.h │ │ │ │ ├── rtm.h │ │ │ │ ├── syscall-test-ebp.h │ │ │ │ └── syscall.h │ │ │ ├── bits │ │ │ │ ├── coredump.h │ │ │ │ ├── coredump32.h │ │ │ │ ├── coredump64.h │ │ │ │ ├── debugtrap.h │ │ │ │ ├── debugtrap32.h │ │ │ │ ├── debugtrap64.h │ │ │ │ ├── except-handler.h │ │ │ │ ├── except-handler32.h │ │ │ │ ├── except-handler64.h │ │ │ │ ├── except.h │ │ │ │ ├── exception_data-convert.h │ │ │ │ ├── exception_data.h │ │ │ │ ├── exception_data32.h │ │ │ │ ├── exception_data64.h │ │ │ │ ├── futex-expr.h │ │ │ │ ├── futex-expr32.h │ │ │ │ ├── futex-expr64.h │ │ │ │ ├── nopf.h │ │ │ │ ├── rtm.h │ │ │ │ ├── syscall-info-convert.h │ │ │ │ ├── syscall-info.h │ │ │ │ ├── syscall-info32.h │ │ │ │ ├── syscall-info64.h │ │ │ │ ├── thread.h │ │ │ │ ├── ukern-struct.h │ │ │ │ ├── ukern-struct32.h │ │ │ │ ├── ukern-struct64.h │ │ │ │ ├── ukern.h │ │ │ │ └── userprocmask.h │ │ │ ├── compat │ │ │ │ ├── linux-dirent.h │ │ │ │ ├── linux-ldt.h │ │ │ │ ├── linux-olddirent.h │ │ │ │ ├── linux-oldselect.h │ │ │ │ ├── linux-stat-convert.h │ │ │ │ ├── linux-stat.h │ │ │ │ └── linux-uname.h │ │ │ ├── config │ │ │ │ └── _toolchain.h │ │ │ ├── except │ │ │ │ └── asm │ │ │ │ │ └── codes.h │ │ │ ├── exec │ │ │ │ ├── asm │ │ │ │ │ ├── elf-rel.h │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── elf32.h │ │ │ │ │ ├── elf64.h │ │ │ │ │ ├── lazybind.h │ │ │ │ │ ├── lazybind32.h │ │ │ │ │ ├── lazybind64.h │ │ │ │ │ └── rtld.h │ │ │ │ └── bits │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── elf32.h │ │ │ │ │ ├── elf64.h │ │ │ │ │ ├── peb.h │ │ │ │ │ ├── peb32.h │ │ │ │ │ └── peb64.h │ │ │ ├── kernel │ │ │ │ ├── asm │ │ │ │ │ └── paging.h │ │ │ │ ├── bits │ │ │ │ │ ├── cpu-state-asm.h │ │ │ │ │ ├── cpu-state-asm32.h │ │ │ │ │ ├── cpu-state-asm64.h │ │ │ │ │ ├── cpu-state-compat.h │ │ │ │ │ ├── cpu-state-helpers.h │ │ │ │ │ ├── cpu-state-helpers32.h │ │ │ │ │ ├── cpu-state-helpers64.h │ │ │ │ │ ├── cpu-state-helperscc.h │ │ │ │ │ ├── cpu-state-verify.h │ │ │ │ │ ├── cpu-state.h │ │ │ │ │ ├── cpu-state32.h │ │ │ │ │ ├── cpu-state64.h │ │ │ │ │ ├── fpu-sstate.h │ │ │ │ │ ├── fpu-state-helpers.h │ │ │ │ │ ├── fpu-state-helperscc.h │ │ │ │ │ ├── fpu-state.h │ │ │ │ │ ├── fpu-state32.h │ │ │ │ │ ├── fpu-state64.h │ │ │ │ │ ├── gdb-cpu-state.h │ │ │ │ │ ├── gdb-cpu-state32.h │ │ │ │ │ └── gdb-cpu-state64.h │ │ │ │ ├── syscalls.h │ │ │ │ ├── syscalls32.h │ │ │ │ ├── syscalls64.h │ │ │ │ └── x86 │ │ │ │ │ ├── gdt.h │ │ │ │ │ ├── segment.h │ │ │ │ │ ├── tss-compat.h │ │ │ │ │ ├── tss.h │ │ │ │ │ ├── tss16.h │ │ │ │ │ ├── tss32.h │ │ │ │ │ └── tss64.h │ │ │ ├── syscalls.h │ │ │ ├── syscalls32.h │ │ │ └── syscalls64.h │ │ ├── libcpustate │ │ │ └── asm │ │ │ │ ├── features.h │ │ │ │ └── register.h │ │ ├── libm │ │ │ └── asm │ │ │ │ ├── _builtin.h │ │ │ │ ├── atan.h │ │ │ │ ├── atan2.h │ │ │ │ ├── ceil.h │ │ │ │ ├── fabs.h │ │ │ │ ├── floor.h │ │ │ │ ├── lrint.h │ │ │ │ ├── lround.h │ │ │ │ ├── rint.h │ │ │ │ ├── round.h │ │ │ │ ├── sqrt.h │ │ │ │ └── trunc.h │ │ ├── libpciaccess │ │ │ └── config.h │ │ ├── libregdump │ │ │ ├── cpu-state.h │ │ │ └── x86.h │ │ ├── libservice │ │ │ ├── asm │ │ │ │ └── types.h │ │ │ └── bits │ │ │ │ └── com.h │ │ ├── libunwind │ │ │ └── asm │ │ │ │ ├── features.h │ │ │ │ └── isa.h │ │ ├── libviocore │ │ │ └── bits │ │ │ │ └── viocore.h │ │ ├── linux │ │ │ └── bits │ │ │ │ ├── posix_types.h │ │ │ │ ├── posix_types_32.h │ │ │ │ ├── posix_types_64.h │ │ │ │ └── posix_types_x32.h │ │ ├── optimized │ │ │ └── string.h │ │ └── sys │ │ │ ├── debugreg.h │ │ │ ├── io.h │ │ │ ├── mmio.h │ │ │ ├── segments.h │ │ │ ├── syscall-proto32.h │ │ │ └── syscall-proto64.h │ ├── iconv.h │ ├── ieee754.h │ ├── ieee854.h │ ├── ieeefp.h │ ├── ifaddrs.h │ ├── initializer_list │ ├── int128.h │ ├── intrin.h │ ├── inttypes.h │ ├── io.h │ ├── iso646.h │ ├── iterator │ ├── jmp_buf.h │ ├── kos │ │ ├── anno.h │ │ ├── aref.h │ │ ├── asm │ │ │ ├── futex.h │ │ │ ├── lockop.h │ │ │ ├── rpc-method.h │ │ │ ├── rpc.h │ │ │ ├── rtm.h │ │ │ └── syscall.h │ │ ├── bits │ │ │ ├── coredump.h │ │ │ ├── debugtrap.h │ │ │ ├── except-catch.h │ │ │ ├── except-compiler.h │ │ │ ├── except-handler.h │ │ │ ├── except-register-state-helpers.h │ │ │ ├── except-register-state.h │ │ │ ├── except.h │ │ │ ├── exception_data.h │ │ │ ├── exception_info.h │ │ │ ├── exception_nest.h │ │ │ ├── fastexcept.h │ │ │ ├── futex-expr.h │ │ │ ├── lockop.h │ │ │ ├── nopf.h │ │ │ ├── rpc.h │ │ │ ├── rtm.h │ │ │ ├── shared-lock.h │ │ │ ├── shared-recursive-lock.h │ │ │ ├── shared-recursive-rwlock.h │ │ │ ├── shared-rwlock.h │ │ │ ├── syscall-info.h │ │ │ ├── thread.h │ │ │ ├── ukern-struct.h │ │ │ ├── ukern.h │ │ │ ├── userprocmask.h │ │ │ └── uuid.h │ │ ├── capability.h │ │ ├── compat │ │ │ ├── linux-dirent.h │ │ │ ├── linux-dirent64.h │ │ │ ├── linux-olddirent.h │ │ │ ├── linux-oldselect.h │ │ │ ├── linux-stat-convert.h │ │ │ └── linux-stat.h │ │ ├── config │ │ │ ├── config.h │ │ │ ├── configurations │ │ │ │ ├── OD.h │ │ │ │ ├── OnD.h │ │ │ │ ├── README.md │ │ │ │ ├── nOD.h │ │ │ │ └── nOnD.h │ │ │ └── toolchain.h │ │ ├── coredump.h │ │ ├── debugtrap.h │ │ ├── dosfs.h │ │ ├── except-handler.h │ │ ├── except.h │ │ ├── except │ │ │ ├── asm │ │ │ │ └── codes.h │ │ │ ├── checker.h │ │ │ ├── codes.h │ │ │ └── reason │ │ │ │ ├── fs.h │ │ │ │ ├── illop.h │ │ │ │ ├── inval.h │ │ │ │ ├── io.h │ │ │ │ ├── net.h │ │ │ │ └── noexec.h │ │ ├── exec │ │ │ ├── asm │ │ │ │ ├── elf-rel.h │ │ │ │ ├── elf.h │ │ │ │ ├── lazybind.h │ │ │ │ └── rtld.h │ │ │ ├── bits │ │ │ │ ├── elf.h │ │ │ │ └── peb.h │ │ │ ├── elf-rel.h │ │ │ ├── elf.h │ │ │ ├── idata.h │ │ │ ├── ifunc.h │ │ │ ├── lazybind.h │ │ │ ├── module.h │ │ │ ├── pe.h │ │ │ ├── peb.h │ │ │ └── rtld.h │ │ ├── fcntl.h │ │ ├── fd.h │ │ ├── futex.h │ │ ├── futexexpr.h │ │ ├── hybrid │ │ │ ├── heap.h │ │ │ └── sched-signal.h │ │ ├── io.h │ │ ├── ioctl │ │ │ ├── _openfd.h │ │ │ ├── fd.h │ │ │ ├── file.h │ │ │ ├── kbd.h │ │ │ ├── leaks.h │ │ │ ├── mod.h │ │ │ ├── mouse.h │ │ │ ├── pidfd.h │ │ │ ├── pipe.h │ │ │ ├── svga.h │ │ │ ├── tty.h │ │ │ └── video.h │ │ ├── kernel │ │ │ ├── asm │ │ │ │ └── paging.h │ │ │ ├── bits │ │ │ │ ├── cpu-state-asm.h │ │ │ │ ├── cpu-state-compat.h │ │ │ │ ├── cpu-state-helpers.h │ │ │ │ ├── cpu-state-helperscc.h │ │ │ │ ├── cpu-state-verify.h │ │ │ │ ├── cpu-state.h │ │ │ │ ├── fpu-state-helpers.h │ │ │ │ ├── fpu-state-helperscc.h │ │ │ │ ├── fpu-state.h │ │ │ │ └── gdb-cpu-state.h │ │ │ ├── cpu-state-asm.h │ │ │ ├── cpu-state-compat.h │ │ │ ├── cpu-state-helpers.h │ │ │ ├── cpu-state-helperscc.h │ │ │ ├── cpu-state-verify.h │ │ │ ├── cpu-state.h │ │ │ ├── fpu-state-helpers.h │ │ │ ├── fpu-state-helperscc.h │ │ │ ├── fpu-state.h │ │ │ ├── gdb-cpu-state.h │ │ │ ├── handle.h │ │ │ ├── memory.h │ │ │ ├── paging.h │ │ │ ├── printk.h │ │ │ ├── syscalls.h │ │ │ └── types.h │ │ ├── keyboard.h │ │ ├── ksysctl.h │ │ ├── lockop.h │ │ ├── malloc.h │ │ ├── malloca.h │ │ ├── net │ │ │ └── printf.h │ │ ├── nopf.h │ │ ├── parts │ │ │ └── malloca.h │ │ ├── personality.h │ │ ├── refcnt-nonatomic.h │ │ ├── refcnt.h │ │ ├── refptr.h │ │ ├── rpc.h │ │ ├── rpc.md │ │ ├── rtm.h │ │ ├── sched │ │ │ ├── shared-lock.h │ │ │ ├── shared-recursive-lock.h │ │ │ ├── shared-recursive-rwlock.h │ │ │ └── shared-rwlock.h │ │ ├── sys │ │ │ ├── epoll.h │ │ │ ├── ioctl.h │ │ │ ├── mman.h │ │ │ ├── socket.h │ │ │ └── stat.h │ │ ├── syscalls.h │ │ ├── thread.h │ │ ├── types.h │ │ ├── ukern.h │ │ ├── unistd.h │ │ └── uuid.h │ ├── langinfo.h │ ├── lastlog.h │ ├── libansitty │ │ ├── ansitty.h │ │ ├── api.h │ │ └── ctl.h │ ├── libbios86 │ │ ├── api.h │ │ └── bios.h │ ├── libbuffer │ │ ├── api.h │ │ ├── linebuffer.h │ │ ├── packetbuffer.h │ │ └── ringbuffer.h │ ├── libc │ │ ├── core │ │ │ ├── ctype.h │ │ │ ├── errno.h │ │ │ ├── error.h │ │ │ ├── fenv.h │ │ │ ├── format-printer.h │ │ │ ├── kos.malloc.h │ │ │ ├── malloc.h │ │ │ ├── parts.uchar.string.h │ │ │ ├── signal.h │ │ │ ├── ssp.string.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── strings.h │ │ │ ├── sys.auxv.h │ │ │ ├── sys.signal.h │ │ │ ├── unicode.h │ │ │ └── unistd.h │ │ ├── ctype.h │ │ ├── errno.h │ │ ├── error.h │ │ ├── fenv.h │ │ ├── format-printer.h │ │ ├── kos.malloc.h │ │ ├── local │ │ │ ├── aio │ │ │ │ ├── aio_suspend.h │ │ │ │ ├── aio_suspend64.h │ │ │ │ ├── aio_suspend64t64.h │ │ │ │ └── aio_suspendt64.h │ │ │ ├── argp │ │ │ │ ├── _option_is_end.h │ │ │ │ ├── _option_is_short.h │ │ │ │ ├── argp_error.h │ │ │ │ ├── argp_failure.h │ │ │ │ ├── argp_usage.h │ │ │ │ ├── argp_verror.h │ │ │ │ └── argp_vfailure.h │ │ │ ├── argz │ │ │ │ ├── argz_add.h │ │ │ │ ├── argz_add_sep.h │ │ │ │ ├── argz_append.h │ │ │ │ ├── argz_count.h │ │ │ │ ├── argz_create.h │ │ │ │ ├── argz_create_sep.h │ │ │ │ ├── argz_delete.h │ │ │ │ ├── argz_extract.h │ │ │ │ ├── argz_insert.h │ │ │ │ ├── argz_next.h │ │ │ │ ├── argz_replace.h │ │ │ │ └── argz_stringify.h │ │ │ ├── arpa.inet │ │ │ │ ├── inet_addr.h │ │ │ │ ├── inet_aton.h │ │ │ │ ├── inet_lnaof.h │ │ │ │ ├── inet_makeaddr.h │ │ │ │ ├── inet_neta.h │ │ │ │ ├── inet_netof.h │ │ │ │ ├── inet_network.h │ │ │ │ ├── inet_ntoa.h │ │ │ │ ├── inet_ntoa_r.h │ │ │ │ └── inet_paton.h │ │ │ ├── arpa.nameser │ │ │ │ ├── dn_comp.h │ │ │ │ ├── ns_get16.h │ │ │ │ ├── ns_get32.h │ │ │ │ ├── ns_name_compress.h │ │ │ │ ├── ns_put16.h │ │ │ │ └── ns_put32.h │ │ │ ├── attr.attributes │ │ │ │ ├── attr_multi.h │ │ │ │ └── attr_multif.h │ │ │ ├── attr.libattr │ │ │ │ ├── attr_copy_action.h │ │ │ │ ├── attr_copy_check_permissions.h │ │ │ │ ├── attr_copy_fd.h │ │ │ │ ├── attr_copy_file.h │ │ │ │ ├── attr_copy_impl.h │ │ │ │ └── attr_load_actions.h │ │ │ ├── bsd.libutil │ │ │ │ ├── flopen.h │ │ │ │ └── flopenat.h │ │ │ ├── complex │ │ │ │ ├── _cchsh.h │ │ │ │ ├── _cchshf.h │ │ │ │ ├── _cchshl.h │ │ │ │ ├── _ctans.h │ │ │ │ ├── _ctansf.h │ │ │ │ ├── _ctansl.h │ │ │ │ ├── _redupi.h │ │ │ │ ├── _redupif.h │ │ │ │ ├── _redupil.h │ │ │ │ ├── cabs.h │ │ │ │ ├── cabsf.h │ │ │ │ ├── cabsl.h │ │ │ │ ├── cacos.h │ │ │ │ ├── cacosf.h │ │ │ │ ├── cacosh.h │ │ │ │ ├── cacoshf.h │ │ │ │ ├── cacoshl.h │ │ │ │ ├── cacosl.h │ │ │ │ ├── carg.h │ │ │ │ ├── cargf.h │ │ │ │ ├── cargl.h │ │ │ │ ├── casin.h │ │ │ │ ├── casinf.h │ │ │ │ ├── casinh.h │ │ │ │ ├── casinhf.h │ │ │ │ ├── casinhl.h │ │ │ │ ├── casinl.h │ │ │ │ ├── catan.h │ │ │ │ ├── catanf.h │ │ │ │ ├── catanh.h │ │ │ │ ├── catanhf.h │ │ │ │ ├── catanhl.h │ │ │ │ ├── catanl.h │ │ │ │ ├── ccos.h │ │ │ │ ├── ccosf.h │ │ │ │ ├── ccosh.h │ │ │ │ ├── ccoshf.h │ │ │ │ ├── ccoshl.h │ │ │ │ ├── ccosl.h │ │ │ │ ├── cexp.h │ │ │ │ ├── cexpf.h │ │ │ │ ├── cexpl.h │ │ │ │ ├── cimag.h │ │ │ │ ├── cimagf.h │ │ │ │ ├── cimagl.h │ │ │ │ ├── clog.h │ │ │ │ ├── clogf.h │ │ │ │ ├── clogl.h │ │ │ │ ├── conj.h │ │ │ │ ├── conjf.h │ │ │ │ ├── conjl.h │ │ │ │ ├── cpow.h │ │ │ │ ├── cpowf.h │ │ │ │ ├── cpowl.h │ │ │ │ ├── cproj.h │ │ │ │ ├── cprojf.h │ │ │ │ ├── cprojl.h │ │ │ │ ├── creal.h │ │ │ │ ├── crealf.h │ │ │ │ ├── creall.h │ │ │ │ ├── csin.h │ │ │ │ ├── csinf.h │ │ │ │ ├── csinh.h │ │ │ │ ├── csinhf.h │ │ │ │ ├── csinhl.h │ │ │ │ ├── csinl.h │ │ │ │ ├── csqrt.h │ │ │ │ ├── csqrtf.h │ │ │ │ ├── csqrtl.h │ │ │ │ ├── ctan.h │ │ │ │ ├── ctanf.h │ │ │ │ ├── ctanh.h │ │ │ │ ├── ctanhf.h │ │ │ │ ├── ctanhl.h │ │ │ │ └── ctanl.h │ │ │ ├── conio │ │ │ │ ├── __conio_common_vcprintf.h │ │ │ │ ├── __conio_common_vcprintf_p.h │ │ │ │ ├── __conio_common_vcprintf_s.h │ │ │ │ ├── __conio_common_vcscanf.h │ │ │ │ ├── _cgets.h │ │ │ │ ├── _cgets_s.h │ │ │ │ ├── _conio_getpass.h │ │ │ │ ├── _conio_wherexy.h │ │ │ │ ├── _cprintf.h │ │ │ │ ├── _cprintf_l.h │ │ │ │ ├── _cprintf_p.h │ │ │ │ ├── _cprintf_p_l.h │ │ │ │ ├── _cprintf_s.h │ │ │ │ ├── _cprintf_s_l.h │ │ │ │ ├── _cputs.h │ │ │ │ ├── _cscanf.h │ │ │ │ ├── _cscanf_l.h │ │ │ │ ├── _cscanf_s.h │ │ │ │ ├── _cscanf_s_l.h │ │ │ │ ├── _getch.h │ │ │ │ ├── _getch_nolock.h │ │ │ │ ├── _getche.h │ │ │ │ ├── _getche_nolock.h │ │ │ │ ├── _putch.h │ │ │ │ ├── _putch_nolock.h │ │ │ │ ├── _ungetch.h │ │ │ │ ├── _ungetch_nolock.h │ │ │ │ ├── _vcprintf.h │ │ │ │ ├── _vcprintf_l.h │ │ │ │ ├── _vcprintf_p.h │ │ │ │ ├── _vcprintf_p_l.h │ │ │ │ ├── _vcprintf_s.h │ │ │ │ ├── _vcprintf_s_l.h │ │ │ │ ├── _vcscanf.h │ │ │ │ ├── _vcscanf_l.h │ │ │ │ ├── _vcscanf_s.h │ │ │ │ ├── _vcscanf_s_l.h │ │ │ │ ├── clearkeybuf.h │ │ │ │ ├── clreol.h │ │ │ │ ├── clrscr.h │ │ │ │ ├── cputsxy.h │ │ │ │ ├── delline.h │ │ │ │ ├── gotoxy.h │ │ │ │ ├── highvideo.h │ │ │ │ ├── insline.h │ │ │ │ ├── lowvideo.h │ │ │ │ ├── movetext.h │ │ │ │ ├── normvideo.h │ │ │ │ ├── putchxy.h │ │ │ │ ├── textattr.h │ │ │ │ ├── textbackground.h │ │ │ │ ├── textcolor.h │ │ │ │ ├── wherex.h │ │ │ │ ├── wherey.h │ │ │ │ └── window.h │ │ │ ├── corecrt_malloc │ │ │ │ ├── _aligned_free.h │ │ │ │ ├── _aligned_malloc.h │ │ │ │ ├── _aligned_msize.h │ │ │ │ ├── _aligned_offset_malloc.h │ │ │ │ ├── _aligned_offset_realloc.h │ │ │ │ ├── _aligned_offset_recalloc.h │ │ │ │ ├── _aligned_realloc.h │ │ │ │ └── _aligned_recalloc.h │ │ │ ├── corecrt_startup │ │ │ │ ├── _configure_narrow_argv.h │ │ │ │ ├── _configure_wide_argv.h │ │ │ │ ├── _execute_onexit_table.h │ │ │ │ ├── _get_initial_narrow_environment.h │ │ │ │ ├── _get_initial_wide_environment.h │ │ │ │ ├── _get_narrow_winmain_command_line.h │ │ │ │ ├── _get_wide_winmain_command_line.h │ │ │ │ ├── _initialize_narrow_environment.h │ │ │ │ ├── _initialize_onexit_table.h │ │ │ │ ├── _initialize_wide_environment.h │ │ │ │ ├── _initterm.h │ │ │ │ ├── _initterm_e.h │ │ │ │ ├── _query_app_type.h │ │ │ │ └── _register_onexit_function.h │ │ │ ├── corecrt_wconio │ │ │ │ ├── __conio_common_vcwprintf.h │ │ │ │ ├── __conio_common_vcwprintf_p.h │ │ │ │ ├── __conio_common_vcwprintf_s.h │ │ │ │ ├── __conio_common_vcwscanf.h │ │ │ │ ├── _cgetws.h │ │ │ │ ├── _cgetws_s.h │ │ │ │ ├── _cputws.h │ │ │ │ ├── _cwprintf.h │ │ │ │ ├── _cwprintf_l.h │ │ │ │ ├── _cwprintf_p.h │ │ │ │ ├── _cwprintf_p_l.h │ │ │ │ ├── _cwprintf_s.h │ │ │ │ ├── _cwprintf_s_l.h │ │ │ │ ├── _cwscanf.h │ │ │ │ ├── _cwscanf_l.h │ │ │ │ ├── _cwscanf_s.h │ │ │ │ ├── _cwscanf_s_l.h │ │ │ │ ├── _getwch.h │ │ │ │ ├── _getwch_nolock.h │ │ │ │ ├── _getwche.h │ │ │ │ ├── _getwche_nolock.h │ │ │ │ ├── _putwch.h │ │ │ │ ├── _putwch_nolock.h │ │ │ │ ├── _ungetwch.h │ │ │ │ ├── _ungetwch_nolock.h │ │ │ │ ├── _vcwprintf.h │ │ │ │ ├── _vcwprintf_l.h │ │ │ │ ├── _vcwprintf_p.h │ │ │ │ ├── _vcwprintf_p_l.h │ │ │ │ ├── _vcwprintf_s.h │ │ │ │ ├── _vcwprintf_s_l.h │ │ │ │ ├── _vcwscanf.h │ │ │ │ ├── _vcwscanf_l.h │ │ │ │ ├── _vcwscanf_s.h │ │ │ │ └── _vcwscanf_s_l.h │ │ │ ├── corecrt_wdirect │ │ │ │ ├── _wgetdcwd.h │ │ │ │ └── _wmkdir.h │ │ │ ├── corecrt_wio │ │ │ │ ├── _waccess_s.h │ │ │ │ ├── _wmktemp.h │ │ │ │ ├── _wmktemp_s.h │ │ │ │ ├── _wsopen.h │ │ │ │ ├── _wsopen_dispatch.h │ │ │ │ └── _wsopen_s.h │ │ │ ├── corecrt_wstdio │ │ │ │ ├── __stdio_common_vfwprintf.h │ │ │ │ ├── __stdio_common_vfwprintf_p.h │ │ │ │ ├── __stdio_common_vfwprintf_s.h │ │ │ │ ├── __stdio_common_vfwscanf.h │ │ │ │ ├── __stdio_common_vsnwprintf_s.h │ │ │ │ ├── __stdio_common_vswprintf.h │ │ │ │ ├── __stdio_common_vswprintf_p.h │ │ │ │ ├── __stdio_common_vswprintf_s.h │ │ │ │ ├── __stdio_common_vswscanf.h │ │ │ │ ├── __swprintf_l.h │ │ │ │ ├── __vswprintf_l.h │ │ │ │ ├── _fwprintf_l.h │ │ │ │ ├── _fwprintf_p.h │ │ │ │ ├── _fwprintf_p_l.h │ │ │ │ ├── _fwprintf_s_l.h │ │ │ │ ├── _fwscanf_l.h │ │ │ │ ├── _fwscanf_s_l.h │ │ │ │ ├── _getws.h │ │ │ │ ├── _getws_s.h │ │ │ │ ├── _putws.h │ │ │ │ ├── _scwprintf.h │ │ │ │ ├── _scwprintf_l.h │ │ │ │ ├── _scwprintf_p.h │ │ │ │ ├── _scwprintf_p_l.h │ │ │ │ ├── _snwprintf.h │ │ │ │ ├── _snwprintf_l.h │ │ │ │ ├── _snwprintf_s.h │ │ │ │ ├── _snwprintf_s_l.h │ │ │ │ ├── _snwscanf.h │ │ │ │ ├── _snwscanf_l.h │ │ │ │ ├── _snwscanf_s.h │ │ │ │ ├── _snwscanf_s_l.h │ │ │ │ ├── _swprintf.h │ │ │ │ ├── _swprintf_c.h │ │ │ │ ├── _swprintf_c_l.h │ │ │ │ ├── _swprintf_p.h │ │ │ │ ├── _swprintf_p_l.h │ │ │ │ ├── _swprintf_s_l.h │ │ │ │ ├── _swscanf_l.h │ │ │ │ ├── _swscanf_s_l.h │ │ │ │ ├── _vfwprintf_l.h │ │ │ │ ├── _vfwprintf_p.h │ │ │ │ ├── _vfwprintf_p_l.h │ │ │ │ ├── _vfwprintf_s_l.h │ │ │ │ ├── _vfwscanf_l.h │ │ │ │ ├── _vfwscanf_s_l.h │ │ │ │ ├── _vscwprintf.h │ │ │ │ ├── _vscwprintf_l.h │ │ │ │ ├── _vscwprintf_p.h │ │ │ │ ├── _vscwprintf_p_l.h │ │ │ │ ├── _vsnwprintf.h │ │ │ │ ├── _vsnwprintf_l.h │ │ │ │ ├── _vsnwprintf_s.h │ │ │ │ ├── _vsnwprintf_s_l.h │ │ │ │ ├── _vsnwscanf.h │ │ │ │ ├── _vsnwscanf_l.h │ │ │ │ ├── _vsnwscanf_s.h │ │ │ │ ├── _vsnwscanf_s_l.h │ │ │ │ ├── _vswprintf.h │ │ │ │ ├── _vswprintf_c.h │ │ │ │ ├── _vswprintf_c_l.h │ │ │ │ ├── _vswprintf_p.h │ │ │ │ ├── _vswprintf_p_l.h │ │ │ │ ├── _vswprintf_s_l.h │ │ │ │ ├── _vswscanf_l.h │ │ │ │ ├── _vswscanf_s_l.h │ │ │ │ ├── _vwprintf_l.h │ │ │ │ ├── _vwprintf_p.h │ │ │ │ ├── _vwprintf_p_l.h │ │ │ │ ├── _vwprintf_s_l.h │ │ │ │ ├── _vwscanf_l.h │ │ │ │ ├── _vwscanf_s_l.h │ │ │ │ ├── _wfdopen.h │ │ │ │ ├── _wfopen_s.h │ │ │ │ ├── _wfreopen_s.h │ │ │ │ ├── _wfsopen.h │ │ │ │ ├── _wperror.h │ │ │ │ ├── _wprintf_l.h │ │ │ │ ├── _wprintf_p.h │ │ │ │ ├── _wprintf_p_l.h │ │ │ │ ├── _wprintf_s_l.h │ │ │ │ ├── _wscanf_l.h │ │ │ │ ├── _wscanf_s_l.h │ │ │ │ ├── fwprintf_s.h │ │ │ │ ├── fwscanf_s.h │ │ │ │ ├── swprintf_s.h │ │ │ │ ├── swscanf_s.h │ │ │ │ ├── vfwprintf_s.h │ │ │ │ ├── vfwscanf_s.h │ │ │ │ ├── vswprintf_s.h │ │ │ │ ├── vswscanf_s.h │ │ │ │ ├── vwprintf_s.h │ │ │ │ ├── vwscanf_s.h │ │ │ │ ├── wprintf_s.h │ │ │ │ └── wscanf_s.h │ │ │ ├── corecrt_wstdlib │ │ │ │ ├── _i64tow.h │ │ │ │ ├── _i64tow_s.h │ │ │ │ ├── _itow.h │ │ │ │ ├── _itow_s.h │ │ │ │ ├── _ltow.h │ │ │ │ ├── _ltow_s.h │ │ │ │ ├── _ui64tow.h │ │ │ │ ├── _ui64tow_s.h │ │ │ │ ├── _ultow.h │ │ │ │ ├── _ultow_s.h │ │ │ │ ├── _wfullpath.h │ │ │ │ ├── _wmakepath.h │ │ │ │ ├── _wmakepath_s.h │ │ │ │ ├── _wsearchenv.h │ │ │ │ ├── _wsplitpath.h │ │ │ │ ├── _wsplitpath_s.h │ │ │ │ ├── _wtof.h │ │ │ │ ├── _wtof_l.h │ │ │ │ ├── _wtoi64.h │ │ │ │ ├── _wtoi64_l.h │ │ │ │ ├── _wtoi_l.h │ │ │ │ ├── _wtol_l.h │ │ │ │ └── _wtoll_l.h │ │ │ ├── corecrt_wstring │ │ │ │ ├── __wcserror.h │ │ │ │ ├── __wcserror_s.h │ │ │ │ ├── _wcserror.h │ │ │ │ ├── _wcserror_s.h │ │ │ │ ├── _wcslwr_s.h │ │ │ │ ├── _wcslwr_s_l.h │ │ │ │ ├── _wcsnset_s.h │ │ │ │ ├── _wcsset_s.h │ │ │ │ ├── _wcsupr_s.h │ │ │ │ ├── _wcsupr_s_l.h │ │ │ │ ├── wcscat_s.h │ │ │ │ ├── wcscpy_s.h │ │ │ │ ├── wcsncat_s.h │ │ │ │ ├── wcsncpy_s.h │ │ │ │ ├── wmemcpy_s.h │ │ │ │ └── wmemmove_s.h │ │ │ ├── corecrt_wtime │ │ │ │ ├── _wasctime.h │ │ │ │ ├── _wasctime_s.h │ │ │ │ ├── _wctime32.h │ │ │ │ ├── _wctime32_s.h │ │ │ │ ├── _wctime64.h │ │ │ │ ├── _wctime64_s.h │ │ │ │ ├── _wstrdate.h │ │ │ │ ├── _wstrdate_s.h │ │ │ │ ├── _wstrtime.h │ │ │ │ └── _wstrtime_s.h │ │ │ ├── crtdbg │ │ │ │ ├── _CrtCheckMemory.h │ │ │ │ ├── _CrtDoForAllClientObjects.h │ │ │ │ ├── _CrtDumpMemoryLeaks.h │ │ │ │ ├── _CrtGetCheckCount.h │ │ │ │ ├── _CrtIsMemoryBlock.h │ │ │ │ ├── _CrtIsValidHeapPointer.h │ │ │ │ ├── _CrtIsValidPointer.h │ │ │ │ ├── _CrtMemCheckpoint.h │ │ │ │ ├── _CrtMemDifference.h │ │ │ │ ├── _CrtMemDumpAllObjectsSince.h │ │ │ │ ├── _CrtMemDumpStatistics.h │ │ │ │ ├── _CrtReportBlockType.h │ │ │ │ ├── _CrtSetCheckCount.h │ │ │ │ ├── _CrtSetDbgFlag.h │ │ │ │ ├── _aligned_free_dbg.h │ │ │ │ ├── _aligned_malloc_dbg.h │ │ │ │ ├── _aligned_msize_dbg.h │ │ │ │ ├── _aligned_offset_malloc_dbg.h │ │ │ │ ├── _aligned_offset_realloc_dbg.h │ │ │ │ ├── _aligned_offset_recalloc_dbg.h │ │ │ │ ├── _aligned_realloc_dbg.h │ │ │ │ ├── _aligned_recalloc_dbg.h │ │ │ │ ├── _calloc_dbg.h │ │ │ │ ├── _dupenv_s_dbg.h │ │ │ │ ├── _expand_dbg.h │ │ │ │ ├── _free_dbg.h │ │ │ │ ├── _fullpath_dbg.h │ │ │ │ ├── _getcwd_dbg.h │ │ │ │ ├── _getdcwd_dbg.h │ │ │ │ ├── _malloc_dbg.h │ │ │ │ ├── _msize_dbg.h │ │ │ │ ├── _realloc_dbg.h │ │ │ │ ├── _recalloc_dbg.h │ │ │ │ ├── _strdup_dbg.h │ │ │ │ ├── _tempnam_dbg.h │ │ │ │ ├── _wcsdup_dbg.h │ │ │ │ ├── _wdupenv_s_dbg.h │ │ │ │ ├── _wfullpath_dbg.h │ │ │ │ ├── _wgetcwd_dbg.h │ │ │ │ ├── _wgetdcwd_dbg.h │ │ │ │ └── _wtempnam_dbg.h │ │ │ ├── cthreads │ │ │ │ ├── cthread_abort.h │ │ │ │ ├── cthread_errno.h │ │ │ │ ├── cthread_fork.h │ │ │ │ ├── cthread_getspecific.h │ │ │ │ ├── cthread_init.h │ │ │ │ ├── cthread_join.h │ │ │ │ ├── cthread_keycreate.h │ │ │ │ ├── cthread_limit.h │ │ │ │ ├── cthread_set_errno_self.h │ │ │ │ ├── cthread_set_limit.h │ │ │ │ └── cthread_setspecific.h │ │ │ ├── ctype │ │ │ │ ├── ___mb_cur_max_l_func.h │ │ │ │ ├── __ctype_get_mb_cur_max.h │ │ │ │ ├── _chvalidator_l.h │ │ │ │ ├── _isctype.h │ │ │ │ ├── _isctype_l.h │ │ │ │ ├── isalnum.h │ │ │ │ ├── isalnum_l.h │ │ │ │ ├── isalpha.h │ │ │ │ ├── isalpha_l.h │ │ │ │ ├── isblank.h │ │ │ │ ├── isblank_l.h │ │ │ │ ├── iscntrl.h │ │ │ │ ├── iscntrl_l.h │ │ │ │ ├── isdigit.h │ │ │ │ ├── isdigit_l.h │ │ │ │ ├── isgraph.h │ │ │ │ ├── isgraph_l.h │ │ │ │ ├── islower.h │ │ │ │ ├── islower_l.h │ │ │ │ ├── isprint.h │ │ │ │ ├── isprint_l.h │ │ │ │ ├── ispunct.h │ │ │ │ ├── ispunct_l.h │ │ │ │ ├── isspace.h │ │ │ │ ├── isspace_l.h │ │ │ │ ├── issymcont.h │ │ │ │ ├── issymstrt.h │ │ │ │ ├── isupper.h │ │ │ │ ├── isupper_l.h │ │ │ │ ├── isxdigit.h │ │ │ │ ├── isxdigit_l.h │ │ │ │ ├── tolower.h │ │ │ │ ├── tolower_l.h │ │ │ │ ├── toupper.h │ │ │ │ └── toupper_l.h │ │ │ ├── direct │ │ │ │ ├── _chdrive.h │ │ │ │ ├── _getdcwd.h │ │ │ │ └── _mkdir.h │ │ │ ├── dirent │ │ │ │ ├── alphasort.h │ │ │ │ ├── alphasort64.h │ │ │ │ ├── closedir.h │ │ │ │ ├── fopendirat.h │ │ │ │ ├── kreaddir.h │ │ │ │ ├── kreaddir64.h │ │ │ │ ├── opendir.h │ │ │ │ ├── opendirat.h │ │ │ │ ├── readdir.h │ │ │ │ ├── scandir.h │ │ │ │ ├── scandir64.h │ │ │ │ ├── versionsort.h │ │ │ │ └── versionsort64.h │ │ │ ├── dyn-string │ │ │ │ ├── dyn_string_append.h │ │ │ │ ├── dyn_string_append_char.h │ │ │ │ ├── dyn_string_append_cstr.h │ │ │ │ ├── dyn_string_clear.h │ │ │ │ ├── dyn_string_copy.h │ │ │ │ ├── dyn_string_copy_cstr.h │ │ │ │ ├── dyn_string_delete.h │ │ │ │ ├── dyn_string_eq.h │ │ │ │ ├── dyn_string_init.h │ │ │ │ ├── dyn_string_insert.h │ │ │ │ ├── dyn_string_insert_char.h │ │ │ │ ├── dyn_string_insert_cstr.h │ │ │ │ ├── dyn_string_new.h │ │ │ │ ├── dyn_string_prepend.h │ │ │ │ ├── dyn_string_prepend_cstr.h │ │ │ │ ├── dyn_string_release.h │ │ │ │ ├── dyn_string_resize.h │ │ │ │ └── dyn_string_substring.h │ │ │ ├── envz │ │ │ │ ├── envz_add.h │ │ │ │ ├── envz_entry.h │ │ │ │ ├── envz_get.h │ │ │ │ ├── envz_merge.h │ │ │ │ ├── envz_remove.h │ │ │ │ └── envz_strip.h │ │ │ ├── err │ │ │ │ ├── err.h │ │ │ │ ├── errc.h │ │ │ │ ├── errx.h │ │ │ │ ├── verr.h │ │ │ │ ├── verrc.h │ │ │ │ ├── verrx.h │ │ │ │ ├── vwarn.h │ │ │ │ ├── vwarnc.h │ │ │ │ ├── vwarnx.h │ │ │ │ ├── warn.h │ │ │ │ ├── warnc.h │ │ │ │ └── warnx.h │ │ │ ├── errno │ │ │ │ └── __p_program_invocation_short_name.h │ │ │ ├── error │ │ │ │ ├── error.h │ │ │ │ ├── error_at_line.h │ │ │ │ ├── verror.h │ │ │ │ └── verror_at_line.h │ │ │ ├── execinfo │ │ │ │ ├── backtrace_symbols.h │ │ │ │ ├── backtrace_symbols_fd.h │ │ │ │ ├── backtrace_symbols_fd_fmt.h │ │ │ │ └── backtrace_symbols_fmt.h │ │ │ ├── fcntl │ │ │ │ ├── creat.h │ │ │ │ ├── creat64.h │ │ │ │ ├── directio.h │ │ │ │ ├── fallocate.h │ │ │ │ ├── fallocate64.h │ │ │ │ ├── lockf.h │ │ │ │ ├── lockf64.h │ │ │ │ ├── open.h │ │ │ │ ├── open64.h │ │ │ │ ├── openat.h │ │ │ │ ├── openat64.h │ │ │ │ ├── posix_fadvise.h │ │ │ │ ├── posix_fadvise64.h │ │ │ │ ├── posix_fallocate.h │ │ │ │ ├── posix_fallocate64.h │ │ │ │ ├── readahead.h │ │ │ │ └── sync_file_range.h │ │ │ ├── fenv │ │ │ │ ├── feclearexcept.h │ │ │ │ ├── fedisableexcept.h │ │ │ │ ├── feenableexcept.h │ │ │ │ ├── fegetenv.h │ │ │ │ ├── fegetexcept.h │ │ │ │ ├── fegetexceptflag.h │ │ │ │ ├── fegetround.h │ │ │ │ ├── feholdexcept.h │ │ │ │ ├── feraiseexcept.h │ │ │ │ ├── fesetenv.h │ │ │ │ ├── fesetexceptflag.h │ │ │ │ ├── fesetround.h │ │ │ │ ├── fetestexcept.h │ │ │ │ └── feupdateenv.h │ │ │ ├── float │ │ │ │ ├── _control87.h │ │ │ │ ├── _controlfp.h │ │ │ │ ├── _controlfp_s.h │ │ │ │ └── _set_controlfp.h │ │ │ ├── fnmatch │ │ │ │ └── fnmatch.h │ │ │ ├── format-printer │ │ │ │ ├── format_aprintf_alloc.h │ │ │ │ ├── format_aprintf_pack.h │ │ │ │ ├── format_aprintf_printer.h │ │ │ │ ├── format_escape.h │ │ │ │ ├── format_hexdump.h │ │ │ │ ├── format_length.h │ │ │ │ ├── format_printf.h │ │ │ │ ├── format_repeat.h │ │ │ │ ├── format_scanf.h │ │ │ │ ├── format_snprintf_printer.h │ │ │ │ ├── format_sprintf_printer.h │ │ │ │ ├── format_vprintf.h │ │ │ │ ├── format_vscanf.h │ │ │ │ └── format_width.h │ │ │ ├── fstab │ │ │ │ ├── getfsfile.h │ │ │ │ └── getfsspec.h │ │ │ ├── getopt │ │ │ │ ├── getopt.h │ │ │ │ ├── getopt_impl.h │ │ │ │ ├── getopt_long.h │ │ │ │ └── getopt_long_only.h │ │ │ ├── glob │ │ │ │ ├── glob.h │ │ │ │ ├── glob64.h │ │ │ │ ├── globfree.h │ │ │ │ └── globfree64.h │ │ │ ├── grp │ │ │ │ ├── fgetgrent_r.h │ │ │ │ ├── fgetgrfiltered_r.h │ │ │ │ ├── fgetgrgid_r.h │ │ │ │ ├── fgetgrnam_r.h │ │ │ │ ├── getgrgid.h │ │ │ │ ├── getgrnam.h │ │ │ │ ├── getgrouplist.h │ │ │ │ ├── gid_from_group.h │ │ │ │ ├── group_from_gid.h │ │ │ │ ├── initgroups.h │ │ │ │ ├── putgrent.h │ │ │ │ └── setgroupent.h │ │ │ ├── inttypes │ │ │ │ ├── imaxdiv.h │ │ │ │ ├── strtoi.h │ │ │ │ ├── strtoi_l.h │ │ │ │ ├── strtoimax.h │ │ │ │ ├── strtoimax_l.h │ │ │ │ ├── strtoimax_r.h │ │ │ │ ├── strtou.h │ │ │ │ ├── strtou_l.h │ │ │ │ ├── strtoumax.h │ │ │ │ ├── strtoumax_l.h │ │ │ │ ├── strtoumax_r.h │ │ │ │ ├── wcstoimax.h │ │ │ │ ├── wcstoimax_l.h │ │ │ │ ├── wcstoimax_r.h │ │ │ │ ├── wcstoumax.h │ │ │ │ ├── wcstoumax_l.h │ │ │ │ └── wcstoumax_r.h │ │ │ ├── io │ │ │ │ ├── __lock_fhandle.h │ │ │ │ ├── _access_s.h │ │ │ │ ├── _filelengthi64.h │ │ │ │ ├── _get_osfhandle.h │ │ │ │ ├── _open_osfhandle.h │ │ │ │ ├── _pipe.h │ │ │ │ ├── _setmode.h │ │ │ │ ├── _sopen_dispatch.h │ │ │ │ ├── _sopen_s.h │ │ │ │ ├── _umask_s.h │ │ │ │ ├── _unlock_fhandle.h │ │ │ │ ├── eof.h │ │ │ │ ├── filelength.h │ │ │ │ ├── sopen.h │ │ │ │ └── umask_s.h │ │ │ ├── kos.except │ │ │ │ ├── _except_badusage_no_nesting.h │ │ │ │ ├── _except_check_no_nesting.h │ │ │ │ ├── except_active.h │ │ │ │ ├── except_as_errno.h │ │ │ │ ├── except_as_signal.h │ │ │ │ ├── except_class.h │ │ │ │ ├── except_code.h │ │ │ │ ├── except_data.h │ │ │ │ ├── except_info.h │ │ │ │ ├── except_name.h │ │ │ │ ├── except_print_short_description.h │ │ │ │ ├── except_priority.h │ │ │ │ ├── except_register_state.h │ │ │ │ └── except_subclass.h │ │ │ ├── kos.fcntl │ │ │ │ ├── Creat.h │ │ │ │ ├── Creat64.h │ │ │ │ ├── Open.h │ │ │ │ ├── Open64.h │ │ │ │ ├── OpenAt.h │ │ │ │ └── OpenAt64.h │ │ │ ├── kos.futex │ │ │ │ ├── futex_timedwaituntil.h │ │ │ │ ├── futex_timedwaituntil64.h │ │ │ │ ├── futex_timedwaituntil_exactbits.h │ │ │ │ ├── futex_timedwaituntil_exactbits64.h │ │ │ │ ├── futex_timedwaitwhile.h │ │ │ │ ├── futex_timedwaitwhile64.h │ │ │ │ ├── futex_timedwaitwhile_above.h │ │ │ │ ├── futex_timedwaitwhile_above64.h │ │ │ │ ├── futex_timedwaitwhile_aboveequal.h │ │ │ │ ├── futex_timedwaitwhile_aboveequal64.h │ │ │ │ ├── futex_timedwaitwhile_allbits.h │ │ │ │ ├── futex_timedwaitwhile_allbits64.h │ │ │ │ ├── futex_timedwaitwhile_anybit.h │ │ │ │ ├── futex_timedwaitwhile_anybit64.h │ │ │ │ ├── futex_timedwaitwhile_below.h │ │ │ │ ├── futex_timedwaitwhile_below64.h │ │ │ │ ├── futex_timedwaitwhile_belowequal.h │ │ │ │ ├── futex_timedwaitwhile_belowequal64.h │ │ │ │ ├── futex_timedwaitwhile_exactbits.h │ │ │ │ ├── futex_timedwaitwhile_exactbits64.h │ │ │ │ ├── futex_waituntil.h │ │ │ │ ├── futex_waituntil_exactbits.h │ │ │ │ ├── futex_waitwhile.h │ │ │ │ ├── futex_waitwhile_above.h │ │ │ │ ├── futex_waitwhile_aboveequal.h │ │ │ │ ├── futex_waitwhile_allbits.h │ │ │ │ ├── futex_waitwhile_anybit.h │ │ │ │ ├── futex_waitwhile_below.h │ │ │ │ ├── futex_waitwhile_belowequal.h │ │ │ │ ├── futex_waitwhile_exactbits.h │ │ │ │ ├── futex_wake.h │ │ │ │ ├── futex_wakeall.h │ │ │ │ ├── futex_wakemask.h │ │ │ │ ├── lfutex.h │ │ │ │ └── lfutex64.h │ │ │ ├── kos.futexexpr │ │ │ │ ├── LFutexExpr64_except.h │ │ │ │ ├── LFutexExprI64_except.h │ │ │ │ ├── LFutexExprI_except.h │ │ │ │ ├── LFutexExpr_except.h │ │ │ │ ├── lfutexexpr.h │ │ │ │ └── lfutexexpr64.h │ │ │ ├── kos.lockop │ │ │ │ ├── _lockop_reap_atomic_lock.h │ │ │ │ ├── _lockop_reap_atomic_rwlock.h │ │ │ │ ├── _lockop_reap_ex.h │ │ │ │ ├── _lockop_reap_shared_lock.h │ │ │ │ ├── _lockop_reap_shared_rwlock.h │ │ │ │ ├── _oblockop_reap_atomic_lock.h │ │ │ │ ├── _oblockop_reap_atomic_lock_LO.h │ │ │ │ ├── _oblockop_reap_atomic_lock_OL.h │ │ │ │ ├── _oblockop_reap_atomic_rwlock.h │ │ │ │ ├── _oblockop_reap_atomic_rwlock_LO.h │ │ │ │ ├── _oblockop_reap_atomic_rwlock_OL.h │ │ │ │ ├── _oblockop_reap_ex.h │ │ │ │ ├── _oblockop_reap_shared_lock.h │ │ │ │ └── _oblockop_reap_shared_rwlock.h │ │ │ ├── kos.malloc │ │ │ │ ├── MemCDup.h │ │ │ │ ├── MemDup.h │ │ │ │ └── Valloc.h │ │ │ ├── kos.nopf │ │ │ │ ├── atomic_andb_nopf.h │ │ │ │ ├── atomic_andl_nopf.h │ │ │ │ ├── atomic_andq_nopf.h │ │ │ │ ├── atomic_andw_nopf.h │ │ │ │ ├── atomic_fetchaddb_nopf.h │ │ │ │ ├── atomic_fetchaddl_nopf.h │ │ │ │ ├── atomic_fetchaddq_nopf.h │ │ │ │ ├── atomic_fetchaddw_nopf.h │ │ │ │ ├── atomic_orb_nopf.h │ │ │ │ ├── atomic_orl_nopf.h │ │ │ │ ├── atomic_orq_nopf.h │ │ │ │ ├── atomic_orw_nopf.h │ │ │ │ ├── atomic_xchb_nopf.h │ │ │ │ ├── atomic_xchl_nopf.h │ │ │ │ ├── atomic_xchq_nopf.h │ │ │ │ ├── atomic_xchw_nopf.h │ │ │ │ ├── atomic_xorb_nopf.h │ │ │ │ ├── atomic_xorl_nopf.h │ │ │ │ ├── atomic_xorq_nopf.h │ │ │ │ ├── atomic_xorw_nopf.h │ │ │ │ ├── memcpy_nopf.h │ │ │ │ ├── memeq_nopf.h │ │ │ │ ├── memset_nopf.h │ │ │ │ ├── readb_nopf.h │ │ │ │ ├── readl_nopf.h │ │ │ │ ├── readq_nopf.h │ │ │ │ ├── readw_nopf.h │ │ │ │ ├── writeb_nopf.h │ │ │ │ ├── writel_nopf.h │ │ │ │ ├── writeq_nopf.h │ │ │ │ └── writew_nopf.h │ │ │ ├── kos.rtm │ │ │ │ ├── rtm_abort.h │ │ │ │ ├── rtm_begin.h │ │ │ │ ├── rtm_end.h │ │ │ │ └── rtm_test.h │ │ │ ├── kos.sched.shared-lock │ │ │ │ ├── shared_lock_acquire.h │ │ │ │ ├── shared_lock_acquire_nx.h │ │ │ │ ├── shared_lock_acquire_with_timeout.h │ │ │ │ ├── shared_lock_acquire_with_timeout64.h │ │ │ │ ├── shared_lock_acquire_with_timeout_nx.h │ │ │ │ ├── shared_lock_release_ex.h │ │ │ │ ├── shared_lock_tryacquire.h │ │ │ │ ├── shared_lock_waitfor.h │ │ │ │ ├── shared_lock_waitfor_nx.h │ │ │ │ ├── shared_lock_waitfor_with_timeout.h │ │ │ │ ├── shared_lock_waitfor_with_timeout64.h │ │ │ │ └── shared_lock_waitfor_with_timeout_nx.h │ │ │ ├── kos.sched.shared-rwlock │ │ │ │ ├── shared_rwlock_read.h │ │ │ │ ├── shared_rwlock_read_nx.h │ │ │ │ ├── shared_rwlock_read_with_timeout.h │ │ │ │ ├── shared_rwlock_read_with_timeout64.h │ │ │ │ ├── shared_rwlock_read_with_timeout_nx.h │ │ │ │ ├── shared_rwlock_waitread.h │ │ │ │ ├── shared_rwlock_waitread_nx.h │ │ │ │ ├── shared_rwlock_waitread_with_timeout.h │ │ │ │ ├── shared_rwlock_waitread_with_timeout64.h │ │ │ │ ├── shared_rwlock_waitread_with_timeout_nx.h │ │ │ │ ├── shared_rwlock_waitwrite.h │ │ │ │ ├── shared_rwlock_waitwrite_nx.h │ │ │ │ ├── shared_rwlock_waitwrite_with_timeout.h │ │ │ │ ├── shared_rwlock_waitwrite_with_timeout64.h │ │ │ │ ├── shared_rwlock_waitwrite_with_timeout_nx.h │ │ │ │ ├── shared_rwlock_write.h │ │ │ │ ├── shared_rwlock_write_nx.h │ │ │ │ ├── shared_rwlock_write_with_timeout.h │ │ │ │ ├── shared_rwlock_write_with_timeout64.h │ │ │ │ └── shared_rwlock_write_with_timeout_nx.h │ │ │ ├── kos.sys.mman │ │ │ │ ├── MAdvise.h │ │ │ │ ├── MMap.h │ │ │ │ ├── MMap64.h │ │ │ │ ├── PKeyGet.h │ │ │ │ ├── PKeySet.h │ │ │ │ ├── PosixMAdvise.h │ │ │ │ ├── ShmOpen.h │ │ │ │ └── ShmUnlink.h │ │ │ ├── kos.sys.socket │ │ │ │ ├── RecvMMsg.h │ │ │ │ └── RecvMMsg64.h │ │ │ ├── kos.sys.stat │ │ │ │ ├── FUTimens.h │ │ │ │ ├── FUTimens64.h │ │ │ │ ├── UTimensAt.h │ │ │ │ └── UTimensAt64.h │ │ │ ├── kos.unistd │ │ │ │ ├── ChOwn.h │ │ │ │ ├── Execl.h │ │ │ │ ├── Execle.h │ │ │ │ ├── Execlpe.h │ │ │ │ ├── Execpl.h │ │ │ │ ├── FChRoot.h │ │ │ │ ├── FDataSync.h │ │ │ │ ├── FSync.h │ │ │ │ ├── FTruncate.h │ │ │ │ ├── FTruncate64.h │ │ │ │ ├── GetCurrentDirName.h │ │ │ │ ├── LChOwn.h │ │ │ │ ├── LPathConf.h │ │ │ │ ├── LSeek.h │ │ │ │ ├── LSeek64.h │ │ │ │ ├── Link.h │ │ │ │ ├── Nice.h │ │ │ │ ├── PRead.h │ │ │ │ ├── PRead64.h │ │ │ │ ├── PReadAll.h │ │ │ │ ├── PReadAll64.h │ │ │ │ ├── PWrite.h │ │ │ │ ├── PWrite64.h │ │ │ │ ├── PWriteAll.h │ │ │ │ ├── PWriteAll64.h │ │ │ │ ├── PathConf.h │ │ │ │ ├── ReadAll.h │ │ │ │ ├── ReadLink.h │ │ │ │ ├── RmDir.h │ │ │ │ ├── SetRGid.h │ │ │ │ ├── SetRUid.h │ │ │ │ ├── Symlink.h │ │ │ │ ├── SyncFS.h │ │ │ │ ├── TCGetPGrp.h │ │ │ │ ├── TCSetPGrp.h │ │ │ │ ├── Tell.h │ │ │ │ ├── Tell64.h │ │ │ │ ├── Truncate.h │ │ │ │ ├── Truncate64.h │ │ │ │ ├── Unlink.h │ │ │ │ ├── WriteAll.h │ │ │ │ └── WritePrinter.h │ │ │ ├── kos.uuid │ │ │ │ └── uuid_fromstr.h │ │ │ ├── langinfo │ │ │ │ ├── nl_langinfo.h │ │ │ │ └── nl_langinfo_l.h │ │ │ ├── libgen │ │ │ │ ├── __xpg_basename.h │ │ │ │ ├── bgets.h │ │ │ │ ├── bufsplit.h │ │ │ │ ├── copylist.h │ │ │ │ ├── copylist64.h │ │ │ │ ├── copylist_sz.h │ │ │ │ ├── dirname.h │ │ │ │ ├── fcopylist_sz.h │ │ │ │ ├── strcadd.h │ │ │ │ ├── strccpy.h │ │ │ │ ├── streadd.h │ │ │ │ ├── strecpy.h │ │ │ │ ├── strfind.h │ │ │ │ ├── strrspn.h │ │ │ │ └── strtrns.h │ │ │ ├── libiberty │ │ │ │ ├── C_alloca.h │ │ │ │ ├── buildargv.h │ │ │ │ ├── choose_temp_base.h │ │ │ │ ├── choose_tmpdir.h │ │ │ │ ├── concat.h │ │ │ │ ├── concat_copy.h │ │ │ │ ├── concat_copy2.h │ │ │ │ ├── concat_length.h │ │ │ │ ├── concat_vcopy.h │ │ │ │ ├── countargv.h │ │ │ │ ├── dos_lbasename.h │ │ │ │ ├── dupargv.h │ │ │ │ ├── errno_max.h │ │ │ │ ├── expandargv.h │ │ │ │ ├── fdmatch.h │ │ │ │ ├── fdopen_unlocked.h │ │ │ │ ├── fopen_unlocked.h │ │ │ │ ├── freeargv.h │ │ │ │ ├── get_run_time.h │ │ │ │ ├── getpwd.h │ │ │ │ ├── hex_init.h │ │ │ │ ├── lrealpath.h │ │ │ │ ├── make_temp_file.h │ │ │ │ ├── make_temp_file_with_prefix.h │ │ │ │ ├── physmem_available.h │ │ │ │ ├── physmem_total.h │ │ │ │ ├── reconcat.h │ │ │ │ ├── signo_max.h │ │ │ │ ├── spaces.h │ │ │ │ ├── stack_limit_increase.h │ │ │ │ ├── strtoerrno.h │ │ │ │ ├── unix_lbasename.h │ │ │ │ ├── unlink_if_ordinary.h │ │ │ │ ├── unlock_std_streams.h │ │ │ │ ├── unlock_stream.h │ │ │ │ ├── vconcat.h │ │ │ │ ├── writeargv.h │ │ │ │ ├── xasprintf.h │ │ │ │ ├── xcalloc.h │ │ │ │ ├── xcrc32.h │ │ │ │ ├── xmalloc.h │ │ │ │ ├── xmemdup.h │ │ │ │ ├── xrealloc.h │ │ │ │ ├── xstrdup.h │ │ │ │ ├── xstrndup.h │ │ │ │ └── xvasprintf.h │ │ │ ├── libintl │ │ │ │ └── dcngettext.h │ │ │ ├── locale │ │ │ │ ├── _Getdays.h │ │ │ │ ├── _Getmonths.h │ │ │ │ ├── _W_Getdays.h │ │ │ │ └── _W_Getmonths.h │ │ │ ├── lock-intern │ │ │ │ ├── __mutex_unlock_solid.h │ │ │ │ ├── __spin_lock_locked.h │ │ │ │ ├── __spin_lock_solid.h │ │ │ │ ├── __spin_try_lock.h │ │ │ │ └── __spin_unlock.h │ │ │ ├── malloc │ │ │ │ ├── mallinfo.h │ │ │ │ ├── mallinfo2.h │ │ │ │ ├── malloc_trim.h │ │ │ │ ├── mallopt.h │ │ │ │ ├── memalign.h │ │ │ │ ├── memcdup.h │ │ │ │ ├── memdup.h │ │ │ │ ├── posix_memalign.h │ │ │ │ ├── reallocarray.h │ │ │ │ ├── recalloc.h │ │ │ │ ├── recallocv.h │ │ │ │ └── valloc.h │ │ │ ├── math │ │ │ │ ├── __fpclassify.h │ │ │ │ ├── __fpclassifyf.h │ │ │ │ ├── __fpclassifyl.h │ │ │ │ ├── __iscanonicall.h │ │ │ │ ├── __issignaling.h │ │ │ │ ├── __issignalingf.h │ │ │ │ ├── __issignalingl.h │ │ │ │ ├── __signbit.h │ │ │ │ ├── __signbitf.h │ │ │ │ ├── __signbitl.h │ │ │ │ ├── _chgsign.h │ │ │ │ ├── _chgsignf.h │ │ │ │ ├── _dtest.h │ │ │ │ ├── _fdtest.h │ │ │ │ ├── _ldtest.h │ │ │ │ ├── acos.h │ │ │ │ ├── acosf.h │ │ │ │ ├── acosh.h │ │ │ │ ├── acoshf.h │ │ │ │ ├── acoshl.h │ │ │ │ ├── acosl.h │ │ │ │ ├── asin.h │ │ │ │ ├── asinf.h │ │ │ │ ├── asinh.h │ │ │ │ ├── asinhf.h │ │ │ │ ├── asinhl.h │ │ │ │ ├── asinl.h │ │ │ │ ├── atan.h │ │ │ │ ├── atan2.h │ │ │ │ ├── atan2f.h │ │ │ │ ├── atan2l.h │ │ │ │ ├── atanf.h │ │ │ │ ├── atanh.h │ │ │ │ ├── atanhf.h │ │ │ │ ├── atanhl.h │ │ │ │ ├── atanl.h │ │ │ │ ├── canonicalize.h │ │ │ │ ├── canonicalizef.h │ │ │ │ ├── canonicalizel.h │ │ │ │ ├── cbrt.h │ │ │ │ ├── cbrtf.h │ │ │ │ ├── cbrtl.h │ │ │ │ ├── ceil.h │ │ │ │ ├── ceilf.h │ │ │ │ ├── ceill.h │ │ │ │ ├── copysign.h │ │ │ │ ├── copysignf.h │ │ │ │ ├── copysignl.h │ │ │ │ ├── cos.h │ │ │ │ ├── cosf.h │ │ │ │ ├── cosh.h │ │ │ │ ├── coshf.h │ │ │ │ ├── coshl.h │ │ │ │ ├── cosl.h │ │ │ │ ├── erf.h │ │ │ │ ├── erfc.h │ │ │ │ ├── erfcf.h │ │ │ │ ├── erfcl.h │ │ │ │ ├── erff.h │ │ │ │ ├── erfl.h │ │ │ │ ├── exp.h │ │ │ │ ├── exp10.h │ │ │ │ ├── exp10f.h │ │ │ │ ├── exp10l.h │ │ │ │ ├── exp2.h │ │ │ │ ├── exp2f.h │ │ │ │ ├── exp2l.h │ │ │ │ ├── expf.h │ │ │ │ ├── expl.h │ │ │ │ ├── expm1.h │ │ │ │ ├── expm1f.h │ │ │ │ ├── expm1l.h │ │ │ │ ├── fabs.h │ │ │ │ ├── fabsf.h │ │ │ │ ├── fabsl.h │ │ │ │ ├── fdim.h │ │ │ │ ├── fdimf.h │ │ │ │ ├── fdiml.h │ │ │ │ ├── finite.h │ │ │ │ ├── finitef.h │ │ │ │ ├── finitel.h │ │ │ │ ├── floor.h │ │ │ │ ├── floorf.h │ │ │ │ ├── floorl.h │ │ │ │ ├── fma.h │ │ │ │ ├── fmaf.h │ │ │ │ ├── fmal.h │ │ │ │ ├── fmax.h │ │ │ │ ├── fmaxf.h │ │ │ │ ├── fmaxl.h │ │ │ │ ├── fmaxmag.h │ │ │ │ ├── fmaxmagf.h │ │ │ │ ├── fmaxmagl.h │ │ │ │ ├── fmin.h │ │ │ │ ├── fminf.h │ │ │ │ ├── fminl.h │ │ │ │ ├── fminmag.h │ │ │ │ ├── fminmagf.h │ │ │ │ ├── fminmagl.h │ │ │ │ ├── fmod.h │ │ │ │ ├── fmodf.h │ │ │ │ ├── fmodl.h │ │ │ │ ├── frexp.h │ │ │ │ ├── frexpf.h │ │ │ │ ├── frexpl.h │ │ │ │ ├── fromfpf.h │ │ │ │ ├── fromfpl.h │ │ │ │ ├── fromfpxf.h │ │ │ │ ├── fromfpxl.h │ │ │ │ ├── hypot.h │ │ │ │ ├── hypotf.h │ │ │ │ ├── hypotl.h │ │ │ │ ├── ilogb.h │ │ │ │ ├── ilogbf.h │ │ │ │ ├── ilogbl.h │ │ │ │ ├── isinf.h │ │ │ │ ├── isinff.h │ │ │ │ ├── isinfl.h │ │ │ │ ├── isnan.h │ │ │ │ ├── isnanf.h │ │ │ │ ├── isnanl.h │ │ │ │ ├── j0.h │ │ │ │ ├── j0f.h │ │ │ │ ├── j0l.h │ │ │ │ ├── j1.h │ │ │ │ ├── j1f.h │ │ │ │ ├── j1l.h │ │ │ │ ├── jn.h │ │ │ │ ├── jnf.h │ │ │ │ ├── jnl.h │ │ │ │ ├── ldexp.h │ │ │ │ ├── ldexpf.h │ │ │ │ ├── ldexpl.h │ │ │ │ ├── lgamma.h │ │ │ │ ├── lgamma_r.h │ │ │ │ ├── lgammaf.h │ │ │ │ ├── lgammaf_r.h │ │ │ │ ├── lgammal.h │ │ │ │ ├── lgammal_r.h │ │ │ │ ├── llogb.h │ │ │ │ ├── llogbf.h │ │ │ │ ├── llogbl.h │ │ │ │ ├── llrint.h │ │ │ │ ├── llrintf.h │ │ │ │ ├── llrintl.h │ │ │ │ ├── llround.h │ │ │ │ ├── llroundf.h │ │ │ │ ├── llroundl.h │ │ │ │ ├── log.h │ │ │ │ ├── log10.h │ │ │ │ ├── log10f.h │ │ │ │ ├── log10l.h │ │ │ │ ├── log1p.h │ │ │ │ ├── log1pf.h │ │ │ │ ├── log1pl.h │ │ │ │ ├── log2.h │ │ │ │ ├── log2f.h │ │ │ │ ├── log2l.h │ │ │ │ ├── logb.h │ │ │ │ ├── logbf.h │ │ │ │ ├── logbl.h │ │ │ │ ├── logf.h │ │ │ │ ├── logl.h │ │ │ │ ├── lrint.h │ │ │ │ ├── lrintf.h │ │ │ │ ├── lrintl.h │ │ │ │ ├── lround.h │ │ │ │ ├── lroundf.h │ │ │ │ ├── lroundl.h │ │ │ │ ├── modf.h │ │ │ │ ├── modff.h │ │ │ │ ├── modfl.h │ │ │ │ ├── nan.h │ │ │ │ ├── nanf.h │ │ │ │ ├── nanl.h │ │ │ │ ├── nextafter.h │ │ │ │ ├── nextafterf.h │ │ │ │ ├── nextafterl.h │ │ │ │ ├── nextdown.h │ │ │ │ ├── nextdownf.h │ │ │ │ ├── nextdownl.h │ │ │ │ ├── nexttoward.h │ │ │ │ ├── nexttowardf.h │ │ │ │ ├── nextup.h │ │ │ │ ├── nextupf.h │ │ │ │ ├── nextupl.h │ │ │ │ ├── pow.h │ │ │ │ ├── pow10.h │ │ │ │ ├── pow10f.h │ │ │ │ ├── pow10l.h │ │ │ │ ├── powf.h │ │ │ │ ├── powl.h │ │ │ │ ├── remainder.h │ │ │ │ ├── remainderf.h │ │ │ │ ├── remainderl.h │ │ │ │ ├── remquo.h │ │ │ │ ├── remquof.h │ │ │ │ ├── remquol.h │ │ │ │ ├── rint.h │ │ │ │ ├── rintf.h │ │ │ │ ├── rintl.h │ │ │ │ ├── round.h │ │ │ │ ├── roundeven.h │ │ │ │ ├── roundevenf.h │ │ │ │ ├── roundevenl.h │ │ │ │ ├── roundf.h │ │ │ │ ├── roundl.h │ │ │ │ ├── scalb.h │ │ │ │ ├── scalbf.h │ │ │ │ ├── scalbl.h │ │ │ │ ├── scalbln.h │ │ │ │ ├── scalblnf.h │ │ │ │ ├── scalblnl.h │ │ │ │ ├── scalbn.h │ │ │ │ ├── scalbnf.h │ │ │ │ ├── scalbnl.h │ │ │ │ ├── significand.h │ │ │ │ ├── significandf.h │ │ │ │ ├── significandl.h │ │ │ │ ├── sin.h │ │ │ │ ├── sincos.h │ │ │ │ ├── sincosf.h │ │ │ │ ├── sincosl.h │ │ │ │ ├── sinf.h │ │ │ │ ├── sinh.h │ │ │ │ ├── sinhf.h │ │ │ │ ├── sinhl.h │ │ │ │ ├── sinl.h │ │ │ │ ├── sqrt.h │ │ │ │ ├── sqrtf.h │ │ │ │ ├── sqrtl.h │ │ │ │ ├── tan.h │ │ │ │ ├── tanf.h │ │ │ │ ├── tanh.h │ │ │ │ ├── tanhf.h │ │ │ │ ├── tanhl.h │ │ │ │ ├── tanl.h │ │ │ │ ├── tgamma.h │ │ │ │ ├── tgammaf.h │ │ │ │ ├── tgammal.h │ │ │ │ ├── trunc.h │ │ │ │ ├── truncf.h │ │ │ │ ├── truncl.h │ │ │ │ ├── ufromfpf.h │ │ │ │ ├── ufromfpl.h │ │ │ │ ├── ufromfpxf.h │ │ │ │ ├── ufromfpxl.h │ │ │ │ ├── y0.h │ │ │ │ ├── y0f.h │ │ │ │ ├── y0l.h │ │ │ │ ├── y1.h │ │ │ │ ├── y1f.h │ │ │ │ ├── y1l.h │ │ │ │ ├── yn.h │ │ │ │ ├── ynf.h │ │ │ │ └── ynl.h │ │ │ ├── mbctype │ │ │ │ ├── _get_mbbtype_l.h │ │ │ │ ├── _getmbcp_l.h │ │ │ │ ├── _ismbbalnum.h │ │ │ │ ├── _ismbbalnum_l.h │ │ │ │ ├── _ismbbalpha.h │ │ │ │ ├── _ismbbalpha_l.h │ │ │ │ ├── _ismbbblank.h │ │ │ │ ├── _ismbbblank_l.h │ │ │ │ ├── _ismbbgraph.h │ │ │ │ ├── _ismbbgraph_l.h │ │ │ │ ├── _ismbbkalnum.h │ │ │ │ ├── _ismbbkalnum_l.h │ │ │ │ ├── _ismbbkana.h │ │ │ │ ├── _ismbbkana_l.h │ │ │ │ ├── _ismbbkpunct.h │ │ │ │ ├── _ismbbkpunct_l.h │ │ │ │ ├── _ismbblead.h │ │ │ │ ├── _ismbblead_l.h │ │ │ │ ├── _ismbbprint.h │ │ │ │ ├── _ismbbprint_l.h │ │ │ │ ├── _ismbbpunct.h │ │ │ │ ├── _ismbbpunct_l.h │ │ │ │ ├── _ismbbtrail.h │ │ │ │ └── _ismbbtrail_l.h │ │ │ ├── mbstring │ │ │ │ ├── _ismbcalnum.h │ │ │ │ ├── _ismbcalnum_l.h │ │ │ │ ├── _ismbcalpha.h │ │ │ │ ├── _ismbcalpha_l.h │ │ │ │ ├── _ismbcblank.h │ │ │ │ ├── _ismbcblank_l.h │ │ │ │ ├── _ismbcdigit.h │ │ │ │ ├── _ismbcdigit_l.h │ │ │ │ ├── _ismbcgraph.h │ │ │ │ ├── _ismbcgraph_l.h │ │ │ │ ├── _ismbchira.h │ │ │ │ ├── _ismbchira_l.h │ │ │ │ ├── _ismbckata.h │ │ │ │ ├── _ismbckata_l.h │ │ │ │ ├── _ismbcl0.h │ │ │ │ ├── _ismbcl0_l.h │ │ │ │ ├── _ismbcl1.h │ │ │ │ ├── _ismbcl1_l.h │ │ │ │ ├── _ismbcl2.h │ │ │ │ ├── _ismbcl2_l.h │ │ │ │ ├── _ismbclegal.h │ │ │ │ ├── _ismbclegal_l.h │ │ │ │ ├── _ismbclower.h │ │ │ │ ├── _ismbclower_l.h │ │ │ │ ├── _ismbcprint.h │ │ │ │ ├── _ismbcprint_l.h │ │ │ │ ├── _ismbcpunct.h │ │ │ │ ├── _ismbcpunct_l.h │ │ │ │ ├── _ismbcspace.h │ │ │ │ ├── _ismbcspace_l.h │ │ │ │ ├── _ismbcsymbol.h │ │ │ │ ├── _ismbcsymbol_l.h │ │ │ │ ├── _ismbcupper.h │ │ │ │ ├── _ismbcupper_l.h │ │ │ │ ├── _ismbslead.h │ │ │ │ ├── _ismbslead_l.h │ │ │ │ ├── _ismbstrail.h │ │ │ │ ├── _ismbstrail_l.h │ │ │ │ ├── _mbbtombc.h │ │ │ │ ├── _mbbtype.h │ │ │ │ ├── _mbbtype_l.h │ │ │ │ ├── _mbccpy.h │ │ │ │ ├── _mbccpy_l.h │ │ │ │ ├── _mbccpy_s.h │ │ │ │ ├── _mbccpy_s_l.h │ │ │ │ ├── _mbcjistojms.h │ │ │ │ ├── _mbcjistojms_l.h │ │ │ │ ├── _mbcjmstojis.h │ │ │ │ ├── _mbcjmstojis_l.h │ │ │ │ ├── _mbclen.h │ │ │ │ ├── _mbclen_l.h │ │ │ │ ├── _mbctohira.h │ │ │ │ ├── _mbctohira_l.h │ │ │ │ ├── _mbctokata.h │ │ │ │ ├── _mbctokata_l.h │ │ │ │ ├── _mbctolower.h │ │ │ │ ├── _mbctolower_l.h │ │ │ │ ├── _mbctombb.h │ │ │ │ ├── _mbctoupper.h │ │ │ │ ├── _mbctoupper_l.h │ │ │ │ ├── _mbsbtype.h │ │ │ │ ├── _mbsbtype_l.h │ │ │ │ ├── _mbscat_l.h │ │ │ │ ├── _mbscat_s.h │ │ │ │ ├── _mbscat_s_l.h │ │ │ │ ├── _mbschr.h │ │ │ │ ├── _mbschr_l.h │ │ │ │ ├── _mbscmp.h │ │ │ │ ├── _mbscmp_l.h │ │ │ │ ├── _mbscoll.h │ │ │ │ ├── _mbscoll_l.h │ │ │ │ ├── _mbscpy_l.h │ │ │ │ ├── _mbscpy_s.h │ │ │ │ ├── _mbscpy_s_l.h │ │ │ │ ├── _mbscspn.h │ │ │ │ ├── _mbscspn_l.h │ │ │ │ ├── _mbsdec.h │ │ │ │ ├── _mbsdec_l.h │ │ │ │ ├── _mbsicmp.h │ │ │ │ ├── _mbsicmp_l.h │ │ │ │ ├── _mbsicoll.h │ │ │ │ ├── _mbsicoll_l.h │ │ │ │ ├── _mbsinc.h │ │ │ │ ├── _mbsinc_l.h │ │ │ │ ├── _mbslen.h │ │ │ │ ├── _mbslen_l.h │ │ │ │ ├── _mbslwr.h │ │ │ │ ├── _mbslwr_l.h │ │ │ │ ├── _mbslwr_s.h │ │ │ │ ├── _mbslwr_s_l.h │ │ │ │ ├── _mbsnbcat.h │ │ │ │ ├── _mbsnbcat_l.h │ │ │ │ ├── _mbsnbcat_s.h │ │ │ │ ├── _mbsnbcat_s_l.h │ │ │ │ ├── _mbsnbcmp.h │ │ │ │ ├── _mbsnbcmp_l.h │ │ │ │ ├── _mbsnbcnt.h │ │ │ │ ├── _mbsnbcnt_l.h │ │ │ │ ├── _mbsnbcoll.h │ │ │ │ ├── _mbsnbcoll_l.h │ │ │ │ ├── _mbsnbcpy.h │ │ │ │ ├── _mbsnbcpy_l.h │ │ │ │ ├── _mbsnbcpy_s.h │ │ │ │ ├── _mbsnbcpy_s_l.h │ │ │ │ ├── _mbsnbicmp.h │ │ │ │ ├── _mbsnbicmp_l.h │ │ │ │ ├── _mbsnbicoll.h │ │ │ │ ├── _mbsnbicoll_l.h │ │ │ │ ├── _mbsnbset.h │ │ │ │ ├── _mbsnbset_l.h │ │ │ │ ├── _mbsnbset_s.h │ │ │ │ ├── _mbsnbset_s_l.h │ │ │ │ ├── _mbsncat.h │ │ │ │ ├── _mbsncat_l.h │ │ │ │ ├── _mbsncat_s.h │ │ │ │ ├── _mbsncat_s_l.h │ │ │ │ ├── _mbsnccnt.h │ │ │ │ ├── _mbsnccnt_l.h │ │ │ │ ├── _mbsncmp.h │ │ │ │ ├── _mbsncmp_l.h │ │ │ │ ├── _mbsncoll.h │ │ │ │ ├── _mbsncoll_l.h │ │ │ │ ├── _mbsncpy.h │ │ │ │ ├── _mbsncpy_l.h │ │ │ │ ├── _mbsncpy_s.h │ │ │ │ ├── _mbsncpy_s_l.h │ │ │ │ ├── _mbsnextc.h │ │ │ │ ├── _mbsnextc_l.h │ │ │ │ ├── _mbsnicmp.h │ │ │ │ ├── _mbsnicmp_l.h │ │ │ │ ├── _mbsnicoll.h │ │ │ │ ├── _mbsnicoll_l.h │ │ │ │ ├── _mbsninc.h │ │ │ │ ├── _mbsninc_l.h │ │ │ │ ├── _mbsnlen.h │ │ │ │ ├── _mbsnlen_l.h │ │ │ │ ├── _mbsnset.h │ │ │ │ ├── _mbsnset_l.h │ │ │ │ ├── _mbsnset_s.h │ │ │ │ ├── _mbsnset_s_l.h │ │ │ │ ├── _mbspbrk.h │ │ │ │ ├── _mbspbrk_l.h │ │ │ │ ├── _mbsrchr.h │ │ │ │ ├── _mbsrchr_l.h │ │ │ │ ├── _mbsrev.h │ │ │ │ ├── _mbsrev_l.h │ │ │ │ ├── _mbsset.h │ │ │ │ ├── _mbsset_l.h │ │ │ │ ├── _mbsset_s.h │ │ │ │ ├── _mbsset_s_l.h │ │ │ │ ├── _mbsspn.h │ │ │ │ ├── _mbsspn_l.h │ │ │ │ ├── _mbsspnp.h │ │ │ │ ├── _mbsspnp_l.h │ │ │ │ ├── _mbsstr.h │ │ │ │ ├── _mbsstr_l.h │ │ │ │ ├── _mbstok.h │ │ │ │ ├── _mbstok_l.h │ │ │ │ ├── _mbstok_s.h │ │ │ │ ├── _mbstok_s_l.h │ │ │ │ ├── _mbsupr.h │ │ │ │ ├── _mbsupr_l.h │ │ │ │ ├── _mbsupr_s.h │ │ │ │ └── _mbsupr_s_l.h │ │ │ ├── mntent │ │ │ │ ├── addmntent.h │ │ │ │ ├── endmntent.h │ │ │ │ ├── getmntent.h │ │ │ │ ├── getmntent_r.h │ │ │ │ └── hasmntopt.h │ │ │ ├── mqueue │ │ │ │ ├── mq_timedreceive.h │ │ │ │ ├── mq_timedreceive64.h │ │ │ │ ├── mq_timedsend.h │ │ │ │ └── mq_timedsend64.h │ │ │ ├── net.if │ │ │ │ ├── if_freenameindex.h │ │ │ │ ├── if_indextoname.h │ │ │ │ ├── if_nametoindex.h │ │ │ │ └── opensock.h │ │ │ ├── netdb │ │ │ │ ├── gai_suspend.h │ │ │ │ └── gai_suspend64.h │ │ │ ├── netinet.ether │ │ │ │ ├── ether_aton.h │ │ │ │ ├── ether_aton_np.h │ │ │ │ ├── ether_aton_p.h │ │ │ │ ├── ether_aton_r.h │ │ │ │ ├── ether_hostton.h │ │ │ │ ├── ether_line.h │ │ │ │ ├── ether_line_np.h │ │ │ │ ├── ether_line_r.h │ │ │ │ ├── ether_ntoa.h │ │ │ │ ├── ether_ntoa_r.h │ │ │ │ ├── ether_ntohost.h │ │ │ │ └── ether_paton_r.h │ │ │ ├── objalloc │ │ │ │ ├── _objalloc_alloc.h │ │ │ │ ├── objalloc_create.h │ │ │ │ ├── objalloc_free.h │ │ │ │ └── objalloc_free_block.h │ │ │ ├── obstack │ │ │ │ ├── _obstack_begin.h │ │ │ │ ├── _obstack_begin_1.h │ │ │ │ ├── _obstack_memory_used.h │ │ │ │ ├── _obstack_newchunk.h │ │ │ │ ├── obstack_free.h │ │ │ │ └── obstack_printer.h │ │ │ ├── partition │ │ │ │ ├── partition_delete.h │ │ │ │ ├── partition_new.h │ │ │ │ ├── partition_print.h │ │ │ │ └── partition_union.h │ │ │ ├── parts.uchar.direct │ │ │ │ ├── _c16getdcwd.h │ │ │ │ ├── _c16mkdir.h │ │ │ │ ├── _c32getdcwd.h │ │ │ │ └── _c32mkdir.h │ │ │ ├── parts.uchar.fcntl │ │ │ │ ├── c16creat.h │ │ │ │ ├── c16creat64.h │ │ │ │ ├── c16open.h │ │ │ │ ├── c16open64.h │ │ │ │ ├── c16openat.h │ │ │ │ ├── c16openat64.h │ │ │ │ ├── c32creat.h │ │ │ │ ├── c32creat64.h │ │ │ │ ├── c32open.h │ │ │ │ ├── c32open64.h │ │ │ │ ├── c32openat.h │ │ │ │ └── c32openat64.h │ │ │ ├── parts.uchar.format-printer │ │ │ │ ├── format_c16aprintf_alloc.h │ │ │ │ ├── format_c16aprintf_pack.h │ │ │ │ ├── format_c16aprintf_printer.h │ │ │ │ ├── format_c16escape.h │ │ │ │ ├── format_c16hexdump.h │ │ │ │ ├── format_c16printf.h │ │ │ │ ├── format_c16repeat.h │ │ │ │ ├── format_c16scanf.h │ │ │ │ ├── format_c16snprintf_printer.h │ │ │ │ ├── format_c16sprintf_printer.h │ │ │ │ ├── format_c16width.h │ │ │ │ ├── format_c32aprintf_alloc.h │ │ │ │ ├── format_c32aprintf_pack.h │ │ │ │ ├── format_c32aprintf_printer.h │ │ │ │ ├── format_c32escape.h │ │ │ │ ├── format_c32hexdump.h │ │ │ │ ├── format_c32printf.h │ │ │ │ ├── format_c32repeat.h │ │ │ │ ├── format_c32scanf.h │ │ │ │ ├── format_c32snprintf_printer.h │ │ │ │ ├── format_c32sprintf_printer.h │ │ │ │ ├── format_c32width.h │ │ │ │ ├── format_vc16printf.h │ │ │ │ ├── format_vc16scanf.h │ │ │ │ ├── format_vc32printf.h │ │ │ │ └── format_vc32scanf.h │ │ │ ├── parts.uchar.inttypes │ │ │ │ ├── c16stoimax.h │ │ │ │ ├── c16stoimax_l.h │ │ │ │ ├── c16stoimax_r.h │ │ │ │ ├── c16stoumax.h │ │ │ │ ├── c16stoumax_l.h │ │ │ │ ├── c16stoumax_r.h │ │ │ │ ├── c32stoimax.h │ │ │ │ ├── c32stoimax_l.h │ │ │ │ ├── c32stoimax_r.h │ │ │ │ ├── c32stoumax.h │ │ │ │ ├── c32stoumax_l.h │ │ │ │ └── c32stoumax_r.h │ │ │ ├── parts.uchar.io │ │ │ │ ├── _c16access_s.h │ │ │ │ ├── _c16mktemp.h │ │ │ │ ├── _c16mktemp_s.h │ │ │ │ ├── _c16sopen.h │ │ │ │ ├── _c16sopen_dispatch.h │ │ │ │ ├── _c16sopen_s.h │ │ │ │ ├── _c32access_s.h │ │ │ │ ├── _c32mktemp.h │ │ │ │ ├── _c32mktemp_s.h │ │ │ │ ├── _c32sopen.h │ │ │ │ ├── _c32sopen_dispatch.h │ │ │ │ └── _c32sopen_s.h │ │ │ ├── parts.uchar.process │ │ │ │ ├── c16execl.h │ │ │ │ ├── c16execle.h │ │ │ │ ├── c16execlp.h │ │ │ │ ├── c16execlpe.h │ │ │ │ ├── c16execv.h │ │ │ │ ├── c16execve.h │ │ │ │ ├── c16execvp.h │ │ │ │ ├── c16execvpe.h │ │ │ │ ├── c16spawnl.h │ │ │ │ ├── c16spawnle.h │ │ │ │ ├── c16spawnlp.h │ │ │ │ ├── c16spawnlpe.h │ │ │ │ ├── c16spawnv.h │ │ │ │ ├── c16spawnve.h │ │ │ │ ├── c16spawnvp.h │ │ │ │ ├── c16spawnvpe.h │ │ │ │ ├── c32execl.h │ │ │ │ ├── c32execle.h │ │ │ │ ├── c32execlp.h │ │ │ │ ├── c32execlpe.h │ │ │ │ ├── c32execv.h │ │ │ │ ├── c32execve.h │ │ │ │ ├── c32execvp.h │ │ │ │ ├── c32execvpe.h │ │ │ │ ├── c32spawnl.h │ │ │ │ ├── c32spawnle.h │ │ │ │ ├── c32spawnlp.h │ │ │ │ ├── c32spawnlpe.h │ │ │ │ ├── c32spawnv.h │ │ │ │ ├── c32spawnve.h │ │ │ │ ├── c32spawnvp.h │ │ │ │ └── c32spawnvpe.h │ │ │ ├── parts.uchar.stdio │ │ │ │ ├── __sc16printf_l.h │ │ │ │ ├── __sc32printf_l.h │ │ │ │ ├── __stdio_common_vfc16printf.h │ │ │ │ ├── __stdio_common_vfc16printf_p.h │ │ │ │ ├── __stdio_common_vfc16printf_s.h │ │ │ │ ├── __stdio_common_vfc16scanf.h │ │ │ │ ├── __stdio_common_vfc32printf.h │ │ │ │ ├── __stdio_common_vfc32printf_p.h │ │ │ │ ├── __stdio_common_vfc32printf_s.h │ │ │ │ ├── __stdio_common_vfc32scanf.h │ │ │ │ ├── __stdio_common_vsc16printf.h │ │ │ │ ├── __stdio_common_vsc16printf_p.h │ │ │ │ ├── __stdio_common_vsc16printf_s.h │ │ │ │ ├── __stdio_common_vsc16scanf.h │ │ │ │ ├── __stdio_common_vsc32printf.h │ │ │ │ ├── __stdio_common_vsc32printf_p.h │ │ │ │ ├── __stdio_common_vsc32printf_s.h │ │ │ │ ├── __stdio_common_vsc32scanf.h │ │ │ │ ├── __stdio_common_vsnc16printf_s.h │ │ │ │ ├── __stdio_common_vsnc32printf_s.h │ │ │ │ ├── __vsc16printf_l.h │ │ │ │ ├── __vsc32printf_l.h │ │ │ │ ├── _c16fdopen.h │ │ │ │ ├── _c16fopen_s.h │ │ │ │ ├── _c16freopen_s.h │ │ │ │ ├── _c16fsopen.h │ │ │ │ ├── _c16perror.h │ │ │ │ ├── _c16printf_l.h │ │ │ │ ├── _c16printf_p.h │ │ │ │ ├── _c16printf_p_l.h │ │ │ │ ├── _c16printf_s_l.h │ │ │ │ ├── _c16scanf_l.h │ │ │ │ ├── _c16scanf_s_l.h │ │ │ │ ├── _c32fdopen.h │ │ │ │ ├── _c32fopen_s.h │ │ │ │ ├── _c32freopen_s.h │ │ │ │ ├── _c32fsopen.h │ │ │ │ ├── _c32perror.h │ │ │ │ ├── _c32printf_l.h │ │ │ │ ├── _c32printf_p.h │ │ │ │ ├── _c32printf_p_l.h │ │ │ │ ├── _c32printf_s_l.h │ │ │ │ ├── _c32scanf_l.h │ │ │ │ ├── _c32scanf_s_l.h │ │ │ │ ├── _fc16printf_l.h │ │ │ │ ├── _fc16printf_p.h │ │ │ │ ├── _fc16printf_p_l.h │ │ │ │ ├── _fc16printf_s_l.h │ │ │ │ ├── _fc16scanf_l.h │ │ │ │ ├── _fc16scanf_s_l.h │ │ │ │ ├── _fc32printf_l.h │ │ │ │ ├── _fc32printf_p.h │ │ │ │ ├── _fc32printf_p_l.h │ │ │ │ ├── _fc32printf_s_l.h │ │ │ │ ├── _fc32scanf_l.h │ │ │ │ ├── _fc32scanf_s_l.h │ │ │ │ ├── _getc16s.h │ │ │ │ ├── _getc16s_s.h │ │ │ │ ├── _getc32s.h │ │ │ │ ├── _getc32s_s.h │ │ │ │ ├── _putc16s.h │ │ │ │ ├── _putc32s.h │ │ │ │ ├── _sc16printf.h │ │ │ │ ├── _sc16printf_c.h │ │ │ │ ├── _sc16printf_c_l.h │ │ │ │ ├── _sc16printf_p.h │ │ │ │ ├── _sc16printf_p_l.h │ │ │ │ ├── _sc16printf_s_l.h │ │ │ │ ├── _sc16scanf_l.h │ │ │ │ ├── _sc16scanf_s_l.h │ │ │ │ ├── _sc32printf.h │ │ │ │ ├── _sc32printf_c.h │ │ │ │ ├── _sc32printf_c_l.h │ │ │ │ ├── _sc32printf_p.h │ │ │ │ ├── _sc32printf_p_l.h │ │ │ │ ├── _sc32printf_s_l.h │ │ │ │ ├── _sc32scanf_l.h │ │ │ │ ├── _sc32scanf_s_l.h │ │ │ │ ├── _scc16printf.h │ │ │ │ ├── _scc16printf_l.h │ │ │ │ ├── _scc16printf_p.h │ │ │ │ ├── _scc16printf_p_l.h │ │ │ │ ├── _scc32printf.h │ │ │ │ ├── _scc32printf_l.h │ │ │ │ ├── _scc32printf_p.h │ │ │ │ ├── _scc32printf_p_l.h │ │ │ │ ├── _snc16printf.h │ │ │ │ ├── _snc16printf_l.h │ │ │ │ ├── _snc16printf_s.h │ │ │ │ ├── _snc16printf_s_l.h │ │ │ │ ├── _snc16scanf.h │ │ │ │ ├── _snc16scanf_l.h │ │ │ │ ├── _snc16scanf_s.h │ │ │ │ ├── _snc16scanf_s_l.h │ │ │ │ ├── _snc32printf.h │ │ │ │ ├── _snc32printf_l.h │ │ │ │ ├── _snc32printf_s.h │ │ │ │ ├── _snc32printf_s_l.h │ │ │ │ ├── _snc32scanf.h │ │ │ │ ├── _snc32scanf_l.h │ │ │ │ ├── _snc32scanf_s.h │ │ │ │ ├── _snc32scanf_s_l.h │ │ │ │ ├── _vc16printf_l.h │ │ │ │ ├── _vc16printf_p.h │ │ │ │ ├── _vc16printf_p_l.h │ │ │ │ ├── _vc16printf_s_l.h │ │ │ │ ├── _vc16scanf_l.h │ │ │ │ ├── _vc16scanf_s_l.h │ │ │ │ ├── _vc32printf_l.h │ │ │ │ ├── _vc32printf_p.h │ │ │ │ ├── _vc32printf_p_l.h │ │ │ │ ├── _vc32printf_s_l.h │ │ │ │ ├── _vc32scanf_l.h │ │ │ │ ├── _vc32scanf_s_l.h │ │ │ │ ├── _vfc16printf_l.h │ │ │ │ ├── _vfc16printf_p.h │ │ │ │ ├── _vfc16printf_p_l.h │ │ │ │ ├── _vfc16printf_s_l.h │ │ │ │ ├── _vfc16scanf_l.h │ │ │ │ ├── _vfc16scanf_s_l.h │ │ │ │ ├── _vfc32printf_l.h │ │ │ │ ├── _vfc32printf_p.h │ │ │ │ ├── _vfc32printf_p_l.h │ │ │ │ ├── _vfc32printf_s_l.h │ │ │ │ ├── _vfc32scanf_l.h │ │ │ │ ├── _vfc32scanf_s_l.h │ │ │ │ ├── _vsc16printf.h │ │ │ │ ├── _vsc16printf_c.h │ │ │ │ ├── _vsc16printf_c_l.h │ │ │ │ ├── _vsc16printf_p.h │ │ │ │ ├── _vsc16printf_p_l.h │ │ │ │ ├── _vsc16printf_s_l.h │ │ │ │ ├── _vsc16scanf_l.h │ │ │ │ ├── _vsc16scanf_s_l.h │ │ │ │ ├── _vsc32printf.h │ │ │ │ ├── _vsc32printf_c.h │ │ │ │ ├── _vsc32printf_c_l.h │ │ │ │ ├── _vsc32printf_p.h │ │ │ │ ├── _vsc32printf_p_l.h │ │ │ │ ├── _vsc32printf_s_l.h │ │ │ │ ├── _vsc32scanf_l.h │ │ │ │ ├── _vsc32scanf_s_l.h │ │ │ │ ├── _vscc16printf.h │ │ │ │ ├── _vscc16printf_l.h │ │ │ │ ├── _vscc16printf_p.h │ │ │ │ ├── _vscc16printf_p_l.h │ │ │ │ ├── _vscc32printf.h │ │ │ │ ├── _vscc32printf_l.h │ │ │ │ ├── _vscc32printf_p.h │ │ │ │ ├── _vscc32printf_p_l.h │ │ │ │ ├── _vsnc16printf.h │ │ │ │ ├── _vsnc16printf_l.h │ │ │ │ ├── _vsnc16printf_s.h │ │ │ │ ├── _vsnc16printf_s_l.h │ │ │ │ ├── _vsnc16scanf.h │ │ │ │ ├── _vsnc16scanf_l.h │ │ │ │ ├── _vsnc16scanf_s.h │ │ │ │ ├── _vsnc16scanf_s_l.h │ │ │ │ ├── _vsnc32printf.h │ │ │ │ ├── _vsnc32printf_l.h │ │ │ │ ├── _vsnc32printf_s.h │ │ │ │ ├── _vsnc32printf_s_l.h │ │ │ │ ├── _vsnc32scanf.h │ │ │ │ ├── _vsnc32scanf_l.h │ │ │ │ ├── _vsnc32scanf_s.h │ │ │ │ ├── _vsnc32scanf_s_l.h │ │ │ │ ├── c16fopen.h │ │ │ │ ├── c16freopen.h │ │ │ │ ├── c16popen.h │ │ │ │ ├── c16printf.h │ │ │ │ ├── c16printf_s.h │ │ │ │ ├── c16printf_unlocked.h │ │ │ │ ├── c16remove.h │ │ │ │ ├── c16removeat.h │ │ │ │ ├── c16rename.h │ │ │ │ ├── c16renameat.h │ │ │ │ ├── c16renameat2.h │ │ │ │ ├── c16scanf.h │ │ │ │ ├── c16scanf_s.h │ │ │ │ ├── c16scanf_unlocked.h │ │ │ │ ├── c32fopen.h │ │ │ │ ├── c32freopen.h │ │ │ │ ├── c32popen.h │ │ │ │ ├── c32printf.h │ │ │ │ ├── c32printf_s.h │ │ │ │ ├── c32printf_unlocked.h │ │ │ │ ├── c32remove.h │ │ │ │ ├── c32removeat.h │ │ │ │ ├── c32rename.h │ │ │ │ ├── c32renameat.h │ │ │ │ ├── c32renameat2.h │ │ │ │ ├── c32scanf.h │ │ │ │ ├── c32scanf_s.h │ │ │ │ ├── c32scanf_unlocked.h │ │ │ │ ├── fc16printf.h │ │ │ │ ├── fc16printf_s.h │ │ │ │ ├── fc16printf_unlocked.h │ │ │ │ ├── fc16scanf.h │ │ │ │ ├── fc16scanf_s.h │ │ │ │ ├── fc16scanf_unlocked.h │ │ │ │ ├── fc32printf.h │ │ │ │ ├── fc32printf_s.h │ │ │ │ ├── fc32printf_unlocked.h │ │ │ │ ├── fc32scanf.h │ │ │ │ ├── fc32scanf_s.h │ │ │ │ ├── fc32scanf_unlocked.h │ │ │ │ ├── fgetc16s.h │ │ │ │ ├── fgetc16s_unlocked.h │ │ │ │ ├── fgetc32s.h │ │ │ │ ├── fgetc32s_unlocked.h │ │ │ │ ├── file_c16printer.h │ │ │ │ ├── file_c16printer_unlocked.h │ │ │ │ ├── file_c32printer.h │ │ │ │ ├── file_c32printer_unlocked.h │ │ │ │ ├── fopen_c16printer.h │ │ │ │ ├── fopen_c32printer.h │ │ │ │ ├── fputc16s.h │ │ │ │ ├── fputc16s_unlocked.h │ │ │ │ ├── fputc32s.h │ │ │ │ ├── fputc32s_unlocked.h │ │ │ │ ├── getchar16.h │ │ │ │ ├── getchar16_unlocked.h │ │ │ │ ├── getchar32.h │ │ │ │ ├── getchar32_unlocked.h │ │ │ │ ├── putchar16.h │ │ │ │ ├── putchar16_unlocked.h │ │ │ │ ├── putchar32.h │ │ │ │ ├── putchar32_unlocked.h │ │ │ │ ├── sc16printf.h │ │ │ │ ├── sc16printf_s.h │ │ │ │ ├── sc16scanf.h │ │ │ │ ├── sc16scanf_s.h │ │ │ │ ├── sc32printf.h │ │ │ │ ├── sc32printf_s.h │ │ │ │ ├── sc32scanf.h │ │ │ │ ├── sc32scanf_s.h │ │ │ │ ├── vc16printf.h │ │ │ │ ├── vc16printf_s.h │ │ │ │ ├── vc16printf_unlocked.h │ │ │ │ ├── vc16scanf.h │ │ │ │ ├── vc16scanf_s.h │ │ │ │ ├── vc16scanf_unlocked.h │ │ │ │ ├── vc32printf.h │ │ │ │ ├── vc32printf_s.h │ │ │ │ ├── vc32printf_unlocked.h │ │ │ │ ├── vc32scanf.h │ │ │ │ ├── vc32scanf_s.h │ │ │ │ ├── vc32scanf_unlocked.h │ │ │ │ ├── vfc16printf.h │ │ │ │ ├── vfc16printf_s.h │ │ │ │ ├── vfc16printf_unlocked.h │ │ │ │ ├── vfc16scanf.h │ │ │ │ ├── vfc16scanf_s.h │ │ │ │ ├── vfc16scanf_unlocked.h │ │ │ │ ├── vfc32printf.h │ │ │ │ ├── vfc32printf_s.h │ │ │ │ ├── vfc32printf_unlocked.h │ │ │ │ ├── vfc32scanf.h │ │ │ │ ├── vfc32scanf_s.h │ │ │ │ ├── vfc32scanf_unlocked.h │ │ │ │ ├── vsc16printf.h │ │ │ │ ├── vsc16printf_s.h │ │ │ │ ├── vsc16scanf.h │ │ │ │ ├── vsc16scanf_s.h │ │ │ │ ├── vsc32printf.h │ │ │ │ ├── vsc32printf_s.h │ │ │ │ ├── vsc32scanf.h │ │ │ │ └── vsc32scanf_s.h │ │ │ ├── parts.uchar.stdlib │ │ │ │ ├── c16frealpath.h │ │ │ │ ├── c16frealpath4.h │ │ │ │ ├── c16frealpathat.h │ │ │ │ ├── c16realpath.h │ │ │ │ ├── c16sto32.h │ │ │ │ ├── c16sto32_l.h │ │ │ │ ├── c16sto32_r.h │ │ │ │ ├── c16sto64.h │ │ │ │ ├── c16sto64_l.h │ │ │ │ ├── c16sto64_r.h │ │ │ │ ├── c16stol_r.h │ │ │ │ ├── c16stoll_r.h │ │ │ │ ├── c16stombs.h │ │ │ │ ├── c16stou32.h │ │ │ │ ├── c16stou32_l.h │ │ │ │ ├── c16stou32_r.h │ │ │ │ ├── c16stou64.h │ │ │ │ ├── c16stou64_l.h │ │ │ │ ├── c16stou64_r.h │ │ │ │ ├── c16stoul_r.h │ │ │ │ ├── c16stoull_r.h │ │ │ │ ├── c16system.h │ │ │ │ ├── c16toi.h │ │ │ │ ├── c16tol.h │ │ │ │ ├── c16toll.h │ │ │ │ ├── c16tomb.h │ │ │ │ ├── c32frealpath.h │ │ │ │ ├── c32frealpath4.h │ │ │ │ ├── c32frealpathat.h │ │ │ │ ├── c32realpath.h │ │ │ │ ├── c32sto32.h │ │ │ │ ├── c32sto32_l.h │ │ │ │ ├── c32sto32_r.h │ │ │ │ ├── c32sto64.h │ │ │ │ ├── c32sto64_l.h │ │ │ │ ├── c32sto64_r.h │ │ │ │ ├── c32stol_r.h │ │ │ │ ├── c32stoll_r.h │ │ │ │ ├── c32stombs.h │ │ │ │ ├── c32stou32.h │ │ │ │ ├── c32stou32_l.h │ │ │ │ ├── c32stou32_r.h │ │ │ │ ├── c32stou64.h │ │ │ │ ├── c32stou64_l.h │ │ │ │ ├── c32stou64_r.h │ │ │ │ ├── c32stoul_r.h │ │ │ │ ├── c32stoull_r.h │ │ │ │ ├── c32system.h │ │ │ │ ├── c32toi.h │ │ │ │ ├── c32tol.h │ │ │ │ ├── c32toll.h │ │ │ │ ├── c32tomb.h │ │ │ │ ├── mbstoc16s.h │ │ │ │ ├── mbstoc32s.h │ │ │ │ ├── mbtoc16.h │ │ │ │ └── mbtoc32.h │ │ │ ├── parts.uchar.string │ │ │ │ ├── c16casecmp.h │ │ │ │ ├── c16casecmp_l.h │ │ │ │ ├── c16casecoll.h │ │ │ │ ├── c16casecoll_l.h │ │ │ │ ├── c16casestr.h │ │ │ │ ├── c16casestr_l.h │ │ │ │ ├── c16cat.h │ │ │ │ ├── c16chr.h │ │ │ │ ├── c16chrnul.h │ │ │ │ ├── c16cmp.h │ │ │ │ ├── c16coll.h │ │ │ │ ├── c16coll_l.h │ │ │ │ ├── c16cpy.h │ │ │ │ ├── c16cspn.h │ │ │ │ ├── c16dup.h │ │ │ │ ├── c16end.h │ │ │ │ ├── c16fry.h │ │ │ │ ├── c16len.h │ │ │ │ ├── c16lstrip.h │ │ │ │ ├── c16lwr.h │ │ │ │ ├── c16lwr_l.h │ │ │ │ ├── c16memcasecmp.h │ │ │ │ ├── c16memcasecmp_l.h │ │ │ │ ├── c16memcmp.h │ │ │ │ ├── c16memcpy.h │ │ │ │ ├── c16memmove.h │ │ │ │ ├── c16mempcpy.h │ │ │ │ ├── c16mempmove.h │ │ │ │ ├── c16mempset.h │ │ │ │ ├── c16memset.h │ │ │ │ ├── c16ncasecmp.h │ │ │ │ ├── c16ncasecmp_l.h │ │ │ │ ├── c16ncasecoll.h │ │ │ │ ├── c16ncasecoll_l.h │ │ │ │ ├── c16ncat.h │ │ │ │ ├── c16nchr.h │ │ │ │ ├── c16nchrnul.h │ │ │ │ ├── c16ncmp.h │ │ │ │ ├── c16ncoll.h │ │ │ │ ├── c16ncoll_l.h │ │ │ │ ├── c16ncpy.h │ │ │ │ ├── c16ndup.h │ │ │ │ ├── c16nend.h │ │ │ │ ├── c16nlen.h │ │ │ │ ├── c16noff.h │ │ │ │ ├── c16nrchr.h │ │ │ │ ├── c16nrchrnul.h │ │ │ │ ├── c16nrev.h │ │ │ │ ├── c16nroff.h │ │ │ │ ├── c16nset.h │ │ │ │ ├── c16off.h │ │ │ │ ├── c16pbrk.h │ │ │ │ ├── c16pcpy.h │ │ │ │ ├── c16pncpy.h │ │ │ │ ├── c16rchr.h │ │ │ │ ├── c16rchrnul.h │ │ │ │ ├── c16rev.h │ │ │ │ ├── c16roff.h │ │ │ │ ├── c16rstrip.h │ │ │ │ ├── c16sep.h │ │ │ │ ├── c16set.h │ │ │ │ ├── c16spn.h │ │ │ │ ├── c16str.h │ │ │ │ ├── c16strip.h │ │ │ │ ├── c16tok.h │ │ │ │ ├── c16upr.h │ │ │ │ ├── c16upr_l.h │ │ │ │ ├── c16verscmp.h │ │ │ │ ├── c16xfrm.h │ │ │ │ ├── c16xfrm_l.h │ │ │ │ ├── c32casecmp.h │ │ │ │ ├── c32casecmp_l.h │ │ │ │ ├── c32casecoll.h │ │ │ │ ├── c32casecoll_l.h │ │ │ │ ├── c32casestr.h │ │ │ │ ├── c32casestr_l.h │ │ │ │ ├── c32cat.h │ │ │ │ ├── c32chr.h │ │ │ │ ├── c32chrnul.h │ │ │ │ ├── c32cmp.h │ │ │ │ ├── c32coll.h │ │ │ │ ├── c32coll_l.h │ │ │ │ ├── c32cpy.h │ │ │ │ ├── c32cspn.h │ │ │ │ ├── c32dup.h │ │ │ │ ├── c32end.h │ │ │ │ ├── c32fry.h │ │ │ │ ├── c32len.h │ │ │ │ ├── c32lstrip.h │ │ │ │ ├── c32lwr.h │ │ │ │ ├── c32lwr_l.h │ │ │ │ ├── c32memcasecmp.h │ │ │ │ ├── c32memcasecmp_l.h │ │ │ │ ├── c32memcmp.h │ │ │ │ ├── c32memcpy.h │ │ │ │ ├── c32memmove.h │ │ │ │ ├── c32mempcpy.h │ │ │ │ ├── c32mempmove.h │ │ │ │ ├── c32mempset.h │ │ │ │ ├── c32memset.h │ │ │ │ ├── c32ncasecmp.h │ │ │ │ ├── c32ncasecmp_l.h │ │ │ │ ├── c32ncasecoll.h │ │ │ │ ├── c32ncasecoll_l.h │ │ │ │ ├── c32ncat.h │ │ │ │ ├── c32nchr.h │ │ │ │ ├── c32nchrnul.h │ │ │ │ ├── c32ncmp.h │ │ │ │ ├── c32ncoll.h │ │ │ │ ├── c32ncoll_l.h │ │ │ │ ├── c32ncpy.h │ │ │ │ ├── c32ndup.h │ │ │ │ ├── c32nend.h │ │ │ │ ├── c32nlen.h │ │ │ │ ├── c32noff.h │ │ │ │ ├── c32nrchr.h │ │ │ │ ├── c32nrchrnul.h │ │ │ │ ├── c32nrev.h │ │ │ │ ├── c32nroff.h │ │ │ │ ├── c32nset.h │ │ │ │ ├── c32off.h │ │ │ │ ├── c32pbrk.h │ │ │ │ ├── c32pcpy.h │ │ │ │ ├── c32pncpy.h │ │ │ │ ├── c32rchr.h │ │ │ │ ├── c32rchrnul.h │ │ │ │ ├── c32rev.h │ │ │ │ ├── c32roff.h │ │ │ │ ├── c32rstrip.h │ │ │ │ ├── c32sep.h │ │ │ │ ├── c32set.h │ │ │ │ ├── c32spn.h │ │ │ │ ├── c32str.h │ │ │ │ ├── c32strip.h │ │ │ │ ├── c32tok.h │ │ │ │ ├── c32upr.h │ │ │ │ ├── c32upr_l.h │ │ │ │ ├── c32verscmp.h │ │ │ │ ├── c32xfrm.h │ │ │ │ ├── c32xfrm_l.h │ │ │ │ ├── fuzzy_c16casecmp_l.h │ │ │ │ ├── fuzzy_c16memcasecmp.h │ │ │ │ ├── fuzzy_c16memcasecmp_l.h │ │ │ │ ├── fuzzy_c16memcmp.h │ │ │ │ ├── fuzzy_c16ncasecmp_l.h │ │ │ │ ├── fuzzy_c16scasecmp.h │ │ │ │ ├── fuzzy_c16scmp.h │ │ │ │ ├── fuzzy_c16sncasecmp.h │ │ │ │ ├── fuzzy_c16sncmp.h │ │ │ │ ├── fuzzy_c32casecmp_l.h │ │ │ │ ├── fuzzy_c32memcasecmp.h │ │ │ │ ├── fuzzy_c32memcasecmp_l.h │ │ │ │ ├── fuzzy_c32memcmp.h │ │ │ │ ├── fuzzy_c32ncasecmp_l.h │ │ │ │ ├── fuzzy_c32scasecmp.h │ │ │ │ ├── fuzzy_c32scmp.h │ │ │ │ ├── fuzzy_c32sncasecmp.h │ │ │ │ ├── fuzzy_c32sncmp.h │ │ │ │ ├── wildc16casecmp.h │ │ │ │ ├── wildc16casecmp_l.h │ │ │ │ ├── wildc16cmp.h │ │ │ │ ├── wildc32casecmp.h │ │ │ │ ├── wildc32casecmp_l.h │ │ │ │ └── wildc32cmp.h │ │ │ ├── parts.uchar.sys.stat │ │ │ │ ├── c16chmod.h │ │ │ │ ├── c16fchmodat.h │ │ │ │ ├── c16fmkdirat.h │ │ │ │ ├── c16fmknodat.h │ │ │ │ ├── c16lchmod.h │ │ │ │ ├── c16mkdir.h │ │ │ │ ├── c16mkdirat.h │ │ │ │ ├── c16mkfifo.h │ │ │ │ ├── c16mkfifoat.h │ │ │ │ ├── c16mknod.h │ │ │ │ ├── c16mknodat.h │ │ │ │ ├── c16utimensat.h │ │ │ │ ├── c16utimensat64.h │ │ │ │ ├── c32chmod.h │ │ │ │ ├── c32fchmodat.h │ │ │ │ ├── c32fmkdirat.h │ │ │ │ ├── c32fmknodat.h │ │ │ │ ├── c32lchmod.h │ │ │ │ ├── c32mkdir.h │ │ │ │ ├── c32mkdirat.h │ │ │ │ ├── c32mkfifo.h │ │ │ │ ├── c32mkfifoat.h │ │ │ │ ├── c32mknod.h │ │ │ │ ├── c32mknodat.h │ │ │ │ ├── c32utimensat.h │ │ │ │ └── c32utimensat64.h │ │ │ ├── parts.uchar.time │ │ │ │ ├── _c16asctime.h │ │ │ │ ├── _c16asctime_s.h │ │ │ │ ├── _c16ctime32.h │ │ │ │ ├── _c16ctime32_s.h │ │ │ │ ├── _c16ctime64.h │ │ │ │ ├── _c16ctime64_s.h │ │ │ │ ├── _c16strdate.h │ │ │ │ ├── _c16strdate_s.h │ │ │ │ ├── _c16strtime.h │ │ │ │ ├── _c16strtime_s.h │ │ │ │ ├── _c32asctime.h │ │ │ │ ├── _c32asctime_s.h │ │ │ │ ├── _c32ctime32.h │ │ │ │ ├── _c32ctime32_s.h │ │ │ │ ├── _c32ctime64.h │ │ │ │ ├── _c32ctime64_s.h │ │ │ │ ├── _c32strdate.h │ │ │ │ ├── _c32strdate_s.h │ │ │ │ ├── _c32strtime.h │ │ │ │ ├── _c32strtime_s.h │ │ │ │ ├── c16ftime.h │ │ │ │ ├── c16ftime_l.h │ │ │ │ ├── c32ftime.h │ │ │ │ └── c32ftime_l.h │ │ │ ├── parts.uchar.unistd │ │ │ │ ├── c16access.h │ │ │ │ ├── c16chdir.h │ │ │ │ ├── c16chown.h │ │ │ │ ├── c16chroot.h │ │ │ │ ├── c16euidaccess.h │ │ │ │ ├── c16faccessat.h │ │ │ │ ├── c16fchownat.h │ │ │ │ ├── c16freadlinkat.h │ │ │ │ ├── c16fsymlinkat.h │ │ │ │ ├── c16get_current_dir_name.h │ │ │ │ ├── c16getcwd.h │ │ │ │ ├── c16getdomainname.h │ │ │ │ ├── c16gethostname.h │ │ │ │ ├── c16lchown.h │ │ │ │ ├── c16link.h │ │ │ │ ├── c16linkat.h │ │ │ │ ├── c16pathconf.h │ │ │ │ ├── c16readlink.h │ │ │ │ ├── c16readlinkat.h │ │ │ │ ├── c16rmdir.h │ │ │ │ ├── c16setdomainname.h │ │ │ │ ├── c16sethostname.h │ │ │ │ ├── c16setlogin.h │ │ │ │ ├── c16symlink.h │ │ │ │ ├── c16symlinkat.h │ │ │ │ ├── c16truncate.h │ │ │ │ ├── c16truncate64.h │ │ │ │ ├── c16ttyname.h │ │ │ │ ├── c16ttyname_r.h │ │ │ │ ├── c16unlink.h │ │ │ │ ├── c16unlinkat.h │ │ │ │ ├── c32access.h │ │ │ │ ├── c32chdir.h │ │ │ │ ├── c32chown.h │ │ │ │ ├── c32chroot.h │ │ │ │ ├── c32euidaccess.h │ │ │ │ ├── c32faccessat.h │ │ │ │ ├── c32fchownat.h │ │ │ │ ├── c32freadlinkat.h │ │ │ │ ├── c32fsymlinkat.h │ │ │ │ ├── c32get_current_dir_name.h │ │ │ │ ├── c32getcwd.h │ │ │ │ ├── c32getdomainname.h │ │ │ │ ├── c32gethostname.h │ │ │ │ ├── c32lchown.h │ │ │ │ ├── c32link.h │ │ │ │ ├── c32linkat.h │ │ │ │ ├── c32pathconf.h │ │ │ │ ├── c32readlink.h │ │ │ │ ├── c32readlinkat.h │ │ │ │ ├── c32rmdir.h │ │ │ │ ├── c32setdomainname.h │ │ │ │ ├── c32sethostname.h │ │ │ │ ├── c32setlogin.h │ │ │ │ ├── c32symlink.h │ │ │ │ ├── c32symlinkat.h │ │ │ │ ├── c32truncate.h │ │ │ │ ├── c32truncate64.h │ │ │ │ ├── c32ttyname.h │ │ │ │ ├── c32ttyname_r.h │ │ │ │ ├── c32unlink.h │ │ │ │ └── c32unlinkat.h │ │ │ ├── parts.uchar.utime │ │ │ │ ├── c16utime.h │ │ │ │ ├── c16utime64.h │ │ │ │ ├── c32utime.h │ │ │ │ └── c32utime64.h │ │ │ ├── parts.uchar.wchar │ │ │ │ ├── btoc16.h │ │ │ │ ├── btoc32.h │ │ │ │ ├── c16lcat.h │ │ │ │ ├── c16lcpy.h │ │ │ │ ├── c16nrtombs.h │ │ │ │ ├── c16rlen.h │ │ │ │ ├── c16rtombs.h │ │ │ │ ├── c16stod.h │ │ │ │ ├── c16stod_l.h │ │ │ │ ├── c16stof.h │ │ │ │ ├── c16stof_l.h │ │ │ │ ├── c16stol.h │ │ │ │ ├── c16stol_l.h │ │ │ │ ├── c16stold.h │ │ │ │ ├── c16stold_l.h │ │ │ │ ├── c16stoll.h │ │ │ │ ├── c16stoll_l.h │ │ │ │ ├── c16stoul.h │ │ │ │ ├── c16stoul_l.h │ │ │ │ ├── c16stoull.h │ │ │ │ ├── c16stoull_l.h │ │ │ │ ├── c16tob.h │ │ │ │ ├── c16width.h │ │ │ │ ├── c32lcat.h │ │ │ │ ├── c32lcpy.h │ │ │ │ ├── c32nrtombs.h │ │ │ │ ├── c32rlen.h │ │ │ │ ├── c32rtombs.h │ │ │ │ ├── c32stod.h │ │ │ │ ├── c32stod_l.h │ │ │ │ ├── c32stof.h │ │ │ │ ├── c32stof_l.h │ │ │ │ ├── c32stol.h │ │ │ │ ├── c32stol_l.h │ │ │ │ ├── c32stold.h │ │ │ │ ├── c32stold_l.h │ │ │ │ ├── c32stoll.h │ │ │ │ ├── c32stoll_l.h │ │ │ │ ├── c32stoul.h │ │ │ │ ├── c32stoul_l.h │ │ │ │ ├── c32stoull.h │ │ │ │ ├── c32stoull_l.h │ │ │ │ ├── c32tob.h │ │ │ │ ├── c32width.h │ │ │ │ ├── mbsnrtoc16.h │ │ │ │ ├── mbsnrtoc32.h │ │ │ │ ├── mbsrtoc16.h │ │ │ │ └── mbsrtoc32.h │ │ │ ├── parts.uchar.wctype │ │ │ │ ├── isalnum16.h │ │ │ │ ├── isalnum16_l.h │ │ │ │ ├── isalnum32.h │ │ │ │ ├── isalnum32_l.h │ │ │ │ ├── isalpha16.h │ │ │ │ ├── isalpha16_l.h │ │ │ │ ├── isalpha32.h │ │ │ │ ├── isalpha32_l.h │ │ │ │ ├── isascii16.h │ │ │ │ ├── isascii32.h │ │ │ │ ├── isblank16.h │ │ │ │ ├── isblank16_l.h │ │ │ │ ├── isblank32.h │ │ │ │ ├── isblank32_l.h │ │ │ │ ├── iscntrl16.h │ │ │ │ ├── iscntrl16_l.h │ │ │ │ ├── iscntrl32.h │ │ │ │ ├── iscntrl32_l.h │ │ │ │ ├── isctype16.h │ │ │ │ ├── isctype16_l.h │ │ │ │ ├── isctype32.h │ │ │ │ ├── isctype32_l.h │ │ │ │ ├── isdigit16.h │ │ │ │ ├── isdigit16_l.h │ │ │ │ ├── isdigit32.h │ │ │ │ ├── isdigit32_l.h │ │ │ │ ├── isgraph16.h │ │ │ │ ├── isgraph16_l.h │ │ │ │ ├── isgraph32.h │ │ │ │ ├── isgraph32_l.h │ │ │ │ ├── islower16.h │ │ │ │ ├── islower16_l.h │ │ │ │ ├── islower32.h │ │ │ │ ├── islower32_l.h │ │ │ │ ├── isprint16.h │ │ │ │ ├── isprint16_l.h │ │ │ │ ├── isprint32.h │ │ │ │ ├── isprint32_l.h │ │ │ │ ├── ispunct16.h │ │ │ │ ├── ispunct16_l.h │ │ │ │ ├── ispunct32.h │ │ │ │ ├── ispunct32_l.h │ │ │ │ ├── isspace16.h │ │ │ │ ├── isspace16_l.h │ │ │ │ ├── isspace32.h │ │ │ │ ├── isspace32_l.h │ │ │ │ ├── issymcont16.h │ │ │ │ ├── issymcont16_l.h │ │ │ │ ├── issymcont32.h │ │ │ │ ├── issymcont32_l.h │ │ │ │ ├── issymstrt16.h │ │ │ │ ├── issymstrt16_l.h │ │ │ │ ├── issymstrt32.h │ │ │ │ ├── issymstrt32_l.h │ │ │ │ ├── isupper16.h │ │ │ │ ├── isupper16_l.h │ │ │ │ ├── isupper32.h │ │ │ │ ├── isupper32_l.h │ │ │ │ ├── isxdigit16.h │ │ │ │ ├── isxdigit16_l.h │ │ │ │ ├── isxdigit32.h │ │ │ │ ├── isxdigit32_l.h │ │ │ │ ├── toctrans16.h │ │ │ │ ├── toctrans16_l.h │ │ │ │ ├── toctrans32.h │ │ │ │ ├── toctrans32_l.h │ │ │ │ ├── tolower16.h │ │ │ │ ├── tolower16_l.h │ │ │ │ ├── tolower32.h │ │ │ │ ├── tolower32_l.h │ │ │ │ ├── toupper16.h │ │ │ │ ├── toupper16_l.h │ │ │ │ ├── toupper32.h │ │ │ │ └── toupper32_l.h │ │ │ ├── parts.wchar.fcntl │ │ │ │ ├── wcreat.h │ │ │ │ ├── wcreat64.h │ │ │ │ ├── wopen.h │ │ │ │ ├── wopen64.h │ │ │ │ ├── wopenat.h │ │ │ │ └── wopenat64.h │ │ │ ├── parts.wchar.format-printer │ │ │ │ ├── format_vwprintf.h │ │ │ │ ├── format_vwscanf.h │ │ │ │ ├── format_waprintf_alloc.h │ │ │ │ ├── format_waprintf_pack.h │ │ │ │ ├── format_waprintf_printer.h │ │ │ │ ├── format_wescape.h │ │ │ │ ├── format_whexdump.h │ │ │ │ ├── format_wprintf.h │ │ │ │ ├── format_wrepeat.h │ │ │ │ ├── format_wscanf.h │ │ │ │ ├── format_wsnprintf_printer.h │ │ │ │ ├── format_wsprintf_printer.h │ │ │ │ └── format_wwidth.h │ │ │ ├── parts.wchar.process │ │ │ │ ├── wexecl.h │ │ │ │ ├── wexecle.h │ │ │ │ ├── wexeclp.h │ │ │ │ ├── wexeclpe.h │ │ │ │ ├── wexecv.h │ │ │ │ ├── wexecve.h │ │ │ │ ├── wexecvp.h │ │ │ │ ├── wexecvpe.h │ │ │ │ ├── wspawnl.h │ │ │ │ ├── wspawnle.h │ │ │ │ ├── wspawnlp.h │ │ │ │ ├── wspawnlpe.h │ │ │ │ ├── wspawnv.h │ │ │ │ ├── wspawnve.h │ │ │ │ ├── wspawnvp.h │ │ │ │ └── wspawnvpe.h │ │ │ ├── parts.wchar.stdio │ │ │ │ ├── wfopen.h │ │ │ │ ├── wfreopen.h │ │ │ │ ├── wpopen.h │ │ │ │ ├── wremove.h │ │ │ │ ├── wremoveat.h │ │ │ │ ├── wrename.h │ │ │ │ ├── wrenameat.h │ │ │ │ └── wrenameat2.h │ │ │ ├── parts.wchar.stdlib │ │ │ │ ├── wfrealpath.h │ │ │ │ ├── wfrealpath4.h │ │ │ │ ├── wfrealpathat.h │ │ │ │ ├── wrealpath.h │ │ │ │ ├── wsystem.h │ │ │ │ ├── wtoi.h │ │ │ │ ├── wtol.h │ │ │ │ └── wtoll.h │ │ │ ├── parts.wchar.sys.stat │ │ │ │ ├── wchmod.h │ │ │ │ ├── wfchmodat.h │ │ │ │ ├── wfmkdirat.h │ │ │ │ ├── wfmknodat.h │ │ │ │ ├── wlchmod.h │ │ │ │ ├── wmkdir.h │ │ │ │ ├── wmkdirat.h │ │ │ │ ├── wmkfifo.h │ │ │ │ ├── wmkfifoat.h │ │ │ │ ├── wmknod.h │ │ │ │ ├── wmknodat.h │ │ │ │ ├── wutimensat.h │ │ │ │ └── wutimensat64.h │ │ │ ├── parts.wchar.unistd │ │ │ │ ├── waccess.h │ │ │ │ ├── wchdir.h │ │ │ │ ├── wchown.h │ │ │ │ ├── wchroot.h │ │ │ │ ├── weuidaccess.h │ │ │ │ ├── wfaccessat.h │ │ │ │ ├── wfchownat.h │ │ │ │ ├── wfreadlinkat.h │ │ │ │ ├── wfsymlinkat.h │ │ │ │ ├── wget_current_dir_name.h │ │ │ │ ├── wgetcwd.h │ │ │ │ ├── wgetdomainname.h │ │ │ │ ├── wgethostname.h │ │ │ │ ├── wlchown.h │ │ │ │ ├── wlink.h │ │ │ │ ├── wlinkat.h │ │ │ │ ├── wpathconf.h │ │ │ │ ├── wreadlink.h │ │ │ │ ├── wreadlinkat.h │ │ │ │ ├── wrmdir.h │ │ │ │ ├── wsetdomainname.h │ │ │ │ ├── wsethostname.h │ │ │ │ ├── wsetlogin.h │ │ │ │ ├── wsymlink.h │ │ │ │ ├── wsymlinkat.h │ │ │ │ ├── wtruncate.h │ │ │ │ ├── wtruncate64.h │ │ │ │ ├── wttyname.h │ │ │ │ ├── wttyname_r.h │ │ │ │ ├── wunlink.h │ │ │ │ └── wunlinkat.h │ │ │ ├── parts.wchar.utime │ │ │ │ ├── wutime.h │ │ │ │ └── wutime64.h │ │ │ ├── process │ │ │ │ ├── _c_exit.h │ │ │ │ ├── _endthread.h │ │ │ │ ├── _getdllprocaddr.h │ │ │ │ ├── _loaddll.h │ │ │ │ ├── _unloaddll.h │ │ │ │ ├── cwait.h │ │ │ │ ├── fspawnve.h │ │ │ │ ├── spawnl.h │ │ │ │ ├── spawnle.h │ │ │ │ ├── spawnlp.h │ │ │ │ ├── spawnlpe.h │ │ │ │ ├── spawnv.h │ │ │ │ ├── spawnve.h │ │ │ │ ├── spawnvp.h │ │ │ │ └── spawnvpe.h │ │ │ ├── pthread │ │ │ │ ├── pthread_attr_getstack.h │ │ │ │ ├── pthread_attr_getstackaddr.h │ │ │ │ ├── pthread_attr_getstacksize.h │ │ │ │ ├── pthread_attr_setcreatesuspend_np.h │ │ │ │ ├── pthread_attr_setstack.h │ │ │ │ ├── pthread_attr_setstackaddr.h │ │ │ │ ├── pthread_attr_setstacksize.h │ │ │ │ ├── pthread_clockjoin64_np.h │ │ │ │ ├── pthread_clockjoin_np.h │ │ │ │ ├── pthread_cond_clockwait.h │ │ │ │ ├── pthread_cond_clockwait64.h │ │ │ │ ├── pthread_cond_reltimedwait64_np.h │ │ │ │ ├── pthread_cond_reltimedwait_np.h │ │ │ │ ├── pthread_cond_timedwait.h │ │ │ │ ├── pthread_cond_timedwait64.h │ │ │ │ ├── pthread_get_stackaddr_np.h │ │ │ │ ├── pthread_get_stacksize_np.h │ │ │ │ ├── pthread_getspecific.h │ │ │ │ ├── pthread_gettid_np.h │ │ │ │ ├── pthread_getunique_np.h │ │ │ │ ├── pthread_is_threaded_np.h │ │ │ │ ├── pthread_key_create_once_np.h │ │ │ │ ├── pthread_main_np.h │ │ │ │ ├── pthread_mutex_clocklock.h │ │ │ │ ├── pthread_mutex_clocklock64.h │ │ │ │ ├── pthread_mutex_reltimedlock64_np.h │ │ │ │ ├── pthread_mutex_reltimedlock_np.h │ │ │ │ ├── pthread_mutex_timedlock.h │ │ │ │ ├── pthread_mutex_timedlock64.h │ │ │ │ ├── pthread_num_processors_np.h │ │ │ │ ├── pthread_once.h │ │ │ │ ├── pthread_resume_np.h │ │ │ │ ├── pthread_rwlock_clockrdlock.h │ │ │ │ ├── pthread_rwlock_clockrdlock64.h │ │ │ │ ├── pthread_rwlock_clockwrlock.h │ │ │ │ ├── pthread_rwlock_clockwrlock64.h │ │ │ │ ├── pthread_rwlock_reltimedrdlock64_np.h │ │ │ │ ├── pthread_rwlock_reltimedrdlock_np.h │ │ │ │ ├── pthread_rwlock_reltimedwrlock64_np.h │ │ │ │ ├── pthread_rwlock_reltimedwrlock_np.h │ │ │ │ ├── pthread_rwlock_timedrdlock.h │ │ │ │ ├── pthread_rwlock_timedrdlock64.h │ │ │ │ ├── pthread_rwlock_timedwrlock.h │ │ │ │ ├── pthread_rwlock_timedwrlock64.h │ │ │ │ ├── pthread_set_num_processors_np.h │ │ │ │ ├── pthread_spin_destroy.h │ │ │ │ ├── pthread_spin_init.h │ │ │ │ ├── pthread_spin_lock.h │ │ │ │ ├── pthread_spin_trylock.h │ │ │ │ ├── pthread_spin_unlock.h │ │ │ │ ├── pthread_suspend_np.h │ │ │ │ ├── pthread_switch_add_np.h │ │ │ │ ├── pthread_switch_delete_np.h │ │ │ │ ├── pthread_timedjoin64_np.h │ │ │ │ └── pthread_timedjoin_np.h │ │ │ ├── pthread_np │ │ │ │ └── pthread_stackseg_np.h │ │ │ ├── pty │ │ │ │ └── forkpty.h │ │ │ ├── pwd │ │ │ │ ├── fgetpwent_r.h │ │ │ │ ├── fgetpwfiltered_r.h │ │ │ │ ├── fgetpwnam_r.h │ │ │ │ ├── fgetpwuid_r.h │ │ │ │ ├── getpw.h │ │ │ │ ├── getpwnam.h │ │ │ │ ├── getpwuid.h │ │ │ │ ├── nss_checkfield.h │ │ │ │ ├── nss_checkfieldlist.h │ │ │ │ ├── putpwent.h │ │ │ │ ├── pw_dup.h │ │ │ │ ├── setpassent.h │ │ │ │ ├── uid_from_user.h │ │ │ │ └── user_from_uid.h │ │ │ ├── readpassphrase │ │ │ │ └── readpassphrase.h │ │ │ ├── regex │ │ │ │ ├── re_compile_fastmap.h │ │ │ │ ├── re_match.h │ │ │ │ ├── re_search.h │ │ │ │ ├── re_set_registers.h │ │ │ │ ├── re_set_syntax.h │ │ │ │ ├── regasub.h │ │ │ │ ├── regerror.h │ │ │ │ ├── regerrordesc_np.h │ │ │ │ ├── regfree.h │ │ │ │ ├── regnsub.h │ │ │ │ ├── regsubprint.h │ │ │ │ └── regsubprintv.h │ │ │ ├── regexp │ │ │ │ ├── advance.h │ │ │ │ └── step.h │ │ │ ├── resolv │ │ │ │ ├── dn_expand.h │ │ │ │ ├── dn_skipname.h │ │ │ │ ├── sym_ntop.h │ │ │ │ ├── sym_ntos.h │ │ │ │ └── sym_ston.h │ │ │ ├── sched │ │ │ │ ├── sched_rr_get_interval.h │ │ │ │ └── sched_rr_get_interval64.h │ │ │ ├── search │ │ │ │ ├── _lfind_s.h │ │ │ │ ├── _lsearch_s.h │ │ │ │ ├── hcreate.h │ │ │ │ ├── hcreate_r.h │ │ │ │ ├── hdestroy.h │ │ │ │ ├── hdestroy_r.h │ │ │ │ ├── hsearch.h │ │ │ │ ├── hsearch_r.h │ │ │ │ ├── insque.h │ │ │ │ ├── lfind.h │ │ │ │ ├── lsearch.h │ │ │ │ ├── remque.h │ │ │ │ ├── tdelete.h │ │ │ │ ├── tdelete_r.h │ │ │ │ ├── tdestroy.h │ │ │ │ ├── tdestroy_r.h │ │ │ │ ├── tfind.h │ │ │ │ ├── tfind_r.h │ │ │ │ ├── tsearch.h │ │ │ │ ├── tsearch_r.h │ │ │ │ ├── twalk.h │ │ │ │ └── twalk_r.h │ │ │ ├── semaphore │ │ │ │ ├── sem_post_multiple.h │ │ │ │ ├── sem_timedwait.h │ │ │ │ └── sem_timedwait64.h │ │ │ ├── shadow │ │ │ │ ├── fgetspent_r.h │ │ │ │ ├── fgetspnam_r.h │ │ │ │ ├── getspnam.h │ │ │ │ ├── putspent.h │ │ │ │ ├── sgetspent.h │ │ │ │ └── sgetspent_r.h │ │ │ ├── signal │ │ │ │ ├── __libc_current_sigrtmax.h │ │ │ │ ├── __libc_current_sigrtmin.h │ │ │ │ ├── gsignal.h │ │ │ │ ├── killpg.h │ │ │ │ ├── psiginfo.h │ │ │ │ ├── psignal.h │ │ │ │ ├── raise.h │ │ │ │ ├── set_single_signal_masked.h │ │ │ │ ├── setsigmaskfullptr.h │ │ │ │ ├── sig2str.h │ │ │ │ ├── sigandset.h │ │ │ │ ├── sigblock.h │ │ │ │ ├── sigcodedesc_np.h │ │ │ │ ├── sigcodename_np.h │ │ │ │ ├── sigemptyset.h │ │ │ │ ├── sigfillset.h │ │ │ │ ├── siggetmask.h │ │ │ │ ├── sighold.h │ │ │ │ ├── sigignore.h │ │ │ │ ├── sigisemptyset.h │ │ │ │ ├── sigisfullset.h │ │ │ │ ├── signalnext.h │ │ │ │ ├── signalnumber.h │ │ │ │ ├── signandset.h │ │ │ │ ├── sigorset.h │ │ │ │ ├── sigpause.h │ │ │ │ ├── sigrelse.h │ │ │ │ ├── sigset.h │ │ │ │ ├── sigsetmask.h │ │ │ │ ├── sigstack.h │ │ │ │ ├── sigtimedwait.h │ │ │ │ ├── sigtimedwait64.h │ │ │ │ ├── ssignal.h │ │ │ │ ├── str2sig.h │ │ │ │ └── sysv_signal.h │ │ │ ├── sort │ │ │ │ └── sort_pointers.h │ │ │ ├── spawn │ │ │ │ ├── posix_fspawn_np.h │ │ │ │ ├── posix_spawn.h │ │ │ │ ├── posix_spawn_child.h │ │ │ │ ├── posix_spawn_file_actions_addchdir_np.h │ │ │ │ ├── posix_spawn_file_actions_addclose.h │ │ │ │ ├── posix_spawn_file_actions_addclosefrom_np.h │ │ │ │ ├── posix_spawn_file_actions_adddup2.h │ │ │ │ ├── posix_spawn_file_actions_addfchdir_np.h │ │ │ │ ├── posix_spawn_file_actions_addopen.h │ │ │ │ ├── posix_spawn_file_actions_addtcsetpgrp_np.h │ │ │ │ ├── posix_spawn_file_actions_alloc.h │ │ │ │ ├── posix_spawn_file_actions_destroy.h │ │ │ │ ├── posix_spawn_file_actions_init.h │ │ │ │ ├── posix_spawn_impl.h │ │ │ │ ├── posix_spawnattr_destroy.h │ │ │ │ ├── posix_spawnattr_getflags.h │ │ │ │ ├── posix_spawnattr_getpgroup.h │ │ │ │ ├── posix_spawnattr_getschedparam.h │ │ │ │ ├── posix_spawnattr_getschedpolicy.h │ │ │ │ ├── posix_spawnattr_getsigdefault.h │ │ │ │ ├── posix_spawnattr_getsigmask.h │ │ │ │ ├── posix_spawnattr_init.h │ │ │ │ ├── posix_spawnattr_setflags.h │ │ │ │ ├── posix_spawnattr_setpgroup.h │ │ │ │ ├── posix_spawnattr_setschedparam.h │ │ │ │ ├── posix_spawnattr_setschedpolicy.h │ │ │ │ ├── posix_spawnattr_setsigdefault.h │ │ │ │ ├── posix_spawnattr_setsigmask.h │ │ │ │ ├── posix_spawnp.h │ │ │ │ └── posix_xspawn_np.h │ │ │ ├── ssp.string │ │ │ │ ├── __memcpy_chk.h │ │ │ │ ├── __memcpyc_chk.h │ │ │ │ ├── __memcpyl_chk.h │ │ │ │ ├── __memcpyq_chk.h │ │ │ │ ├── __memcpyw_chk.h │ │ │ │ ├── __memmove_chk.h │ │ │ │ ├── __memmovec_chk.h │ │ │ │ ├── __memmovedown_chk.h │ │ │ │ ├── __memmovedownc_chk.h │ │ │ │ ├── __memmovedownl_chk.h │ │ │ │ ├── __memmovedownq_chk.h │ │ │ │ ├── __memmovedownw_chk.h │ │ │ │ ├── __memmovel_chk.h │ │ │ │ ├── __memmoveq_chk.h │ │ │ │ ├── __memmoveup_chk.h │ │ │ │ ├── __memmoveupc_chk.h │ │ │ │ ├── __memmoveupl_chk.h │ │ │ │ ├── __memmoveupq_chk.h │ │ │ │ ├── __memmoveupw_chk.h │ │ │ │ ├── __memmovew_chk.h │ │ │ │ ├── __mempcpy_chk.h │ │ │ │ ├── __mempcpyc_chk.h │ │ │ │ ├── __mempcpyl_chk.h │ │ │ │ ├── __mempcpyq_chk.h │ │ │ │ ├── __mempcpyw_chk.h │ │ │ │ ├── __mempmove_chk.h │ │ │ │ ├── __mempmovec_chk.h │ │ │ │ ├── __mempmovedown_chk.h │ │ │ │ ├── __mempmovedownc_chk.h │ │ │ │ ├── __mempmovedownl_chk.h │ │ │ │ ├── __mempmovedownq_chk.h │ │ │ │ ├── __mempmovedownw_chk.h │ │ │ │ ├── __mempmovel_chk.h │ │ │ │ ├── __mempmoveq_chk.h │ │ │ │ ├── __mempmoveup_chk.h │ │ │ │ ├── __mempmoveupc_chk.h │ │ │ │ ├── __mempmoveupl_chk.h │ │ │ │ ├── __mempmoveupq_chk.h │ │ │ │ ├── __mempmoveupw_chk.h │ │ │ │ ├── __mempmovew_chk.h │ │ │ │ ├── __mempset_chk.h │ │ │ │ ├── __mempsetl_chk.h │ │ │ │ ├── __mempsetq_chk.h │ │ │ │ ├── __mempsetw_chk.h │ │ │ │ ├── __memset_chk.h │ │ │ │ ├── __memsetl_chk.h │ │ │ │ ├── __memsetq_chk.h │ │ │ │ ├── __memsetw_chk.h │ │ │ │ ├── __stpcpy_chk.h │ │ │ │ ├── __stpncpy_chk.h │ │ │ │ ├── __strcat_chk.h │ │ │ │ ├── __strcpy_chk.h │ │ │ │ ├── __strncat_chk.h │ │ │ │ └── __strncpy_chk.h │ │ │ ├── stdio │ │ │ │ ├── __overflow.h │ │ │ │ ├── __stdio_common_vfprintf.h │ │ │ │ ├── __stdio_common_vfprintf_p.h │ │ │ │ ├── __stdio_common_vfprintf_s.h │ │ │ │ ├── __stdio_common_vfscanf.h │ │ │ │ ├── __stdio_common_vsnprintf_s.h │ │ │ │ ├── __stdio_common_vsprintf.h │ │ │ │ ├── __stdio_common_vsprintf_p.h │ │ │ │ ├── __stdio_common_vsprintf_s.h │ │ │ │ ├── __stdio_common_vsscanf.h │ │ │ │ ├── _flushall.h │ │ │ │ ├── _fprintf_l.h │ │ │ │ ├── _fprintf_p.h │ │ │ │ ├── _fprintf_p_l.h │ │ │ │ ├── _fprintf_s_l.h │ │ │ │ ├── _fread_nolock_s.h │ │ │ │ ├── _fscanf_l.h │ │ │ │ ├── _fscanf_s_l.h │ │ │ │ ├── _fsopen.h │ │ │ │ ├── _getmaxstdio.h │ │ │ │ ├── _printf_l.h │ │ │ │ ├── _printf_p.h │ │ │ │ ├── _printf_p_l.h │ │ │ │ ├── _printf_s_l.h │ │ │ │ ├── _scanf_l.h │ │ │ │ ├── _scanf_s_l.h │ │ │ │ ├── _scprintf.h │ │ │ │ ├── _scprintf_l.h │ │ │ │ ├── _scprintf_p.h │ │ │ │ ├── _scprintf_p_l.h │ │ │ │ ├── _setmaxstdio.h │ │ │ │ ├── _snprintf.h │ │ │ │ ├── _snprintf_c.h │ │ │ │ ├── _snprintf_c_l.h │ │ │ │ ├── _snprintf_l.h │ │ │ │ ├── _snprintf_s.h │ │ │ │ ├── _snprintf_s_l.h │ │ │ │ ├── _snscanf.h │ │ │ │ ├── _snscanf_l.h │ │ │ │ ├── _snscanf_s.h │ │ │ │ ├── _snscanf_s_l.h │ │ │ │ ├── _sprintf_l.h │ │ │ │ ├── _sprintf_p.h │ │ │ │ ├── _sprintf_p_l.h │ │ │ │ ├── _sprintf_s_l.h │ │ │ │ ├── _sscanf_l.h │ │ │ │ ├── _sscanf_s_l.h │ │ │ │ ├── _vfprintf_l.h │ │ │ │ ├── _vfprintf_p.h │ │ │ │ ├── _vfprintf_p_l.h │ │ │ │ ├── _vfprintf_s_l.h │ │ │ │ ├── _vfscanf_l.h │ │ │ │ ├── _vfscanf_s_l.h │ │ │ │ ├── _vprintf_l.h │ │ │ │ ├── _vprintf_p.h │ │ │ │ ├── _vprintf_p_l.h │ │ │ │ ├── _vprintf_s_l.h │ │ │ │ ├── _vscanf_l.h │ │ │ │ ├── _vscanf_s_l.h │ │ │ │ ├── _vscprintf.h │ │ │ │ ├── _vscprintf_l.h │ │ │ │ ├── _vscprintf_p.h │ │ │ │ ├── _vscprintf_p_l.h │ │ │ │ ├── _vsnprintf.h │ │ │ │ ├── _vsnprintf_c.h │ │ │ │ ├── _vsnprintf_c_l.h │ │ │ │ ├── _vsnprintf_l.h │ │ │ │ ├── _vsnprintf_s.h │ │ │ │ ├── _vsnprintf_s_l.h │ │ │ │ ├── _vsnscanf.h │ │ │ │ ├── _vsnscanf_l.h │ │ │ │ ├── _vsnscanf_s.h │ │ │ │ ├── _vsnscanf_s_l.h │ │ │ │ ├── _vsprintf_l.h │ │ │ │ ├── _vsprintf_p.h │ │ │ │ ├── _vsprintf_p_l.h │ │ │ │ ├── _vsprintf_s_l.h │ │ │ │ ├── _vsscanf_l.h │ │ │ │ ├── _vsscanf_s_l.h │ │ │ │ ├── asnprintf.h │ │ │ │ ├── asprintf.h │ │ │ │ ├── clearerr_s.h │ │ │ │ ├── dprintf.h │ │ │ │ ├── fflush.h │ │ │ │ ├── fflush_unlocked.h │ │ │ │ ├── fftruncate.h │ │ │ │ ├── fftruncate64.h │ │ │ │ ├── fftruncate64_unlocked.h │ │ │ │ ├── fftruncate_unlocked.h │ │ │ │ ├── fgetc.h │ │ │ │ ├── fgetc_unlocked.h │ │ │ │ ├── fgetpos.h │ │ │ │ ├── fgetpos64.h │ │ │ │ ├── fgetpos64_unlocked.h │ │ │ │ ├── fgetpos_unlocked.h │ │ │ │ ├── fgets.h │ │ │ │ ├── fgets_unlocked.h │ │ │ │ ├── file_printer.h │ │ │ │ ├── file_printer_unlocked.h │ │ │ │ ├── fisatty.h │ │ │ │ ├── flushall_unlocked.h │ │ │ │ ├── fmemopen.h │ │ │ │ ├── fmtcheck.h │ │ │ │ ├── fopen_printer.h │ │ │ │ ├── fopen_s.h │ │ │ │ ├── fopencookie.h │ │ │ │ ├── fprintf.h │ │ │ │ ├── fprintf_s.h │ │ │ │ ├── fprintf_unlocked.h │ │ │ │ ├── fputc.h │ │ │ │ ├── fputc_unlocked.h │ │ │ │ ├── fputs.h │ │ │ │ ├── fputs_unlocked.h │ │ │ │ ├── fread.h │ │ │ │ ├── fread_s.h │ │ │ │ ├── fread_unlocked.h │ │ │ │ ├── freopen64_unlocked.h │ │ │ │ ├── freopen_s.h │ │ │ │ ├── fscanf.h │ │ │ │ ├── fscanf_s.h │ │ │ │ ├── fscanf_unlocked.h │ │ │ │ ├── fseek.h │ │ │ │ ├── fseek_unlocked.h │ │ │ │ ├── fseeko.h │ │ │ │ ├── fseeko64.h │ │ │ │ ├── fseeko64_unlocked.h │ │ │ │ ├── fseeko_unlocked.h │ │ │ │ ├── fsetpos.h │ │ │ │ ├── fsetpos64.h │ │ │ │ ├── fsetpos64_unlocked.h │ │ │ │ ├── fsetpos_unlocked.h │ │ │ │ ├── ftell.h │ │ │ │ ├── ftell_unlocked.h │ │ │ │ ├── ftello.h │ │ │ │ ├── ftello64.h │ │ │ │ ├── ftello64_unlocked.h │ │ │ │ ├── ftello_unlocked.h │ │ │ │ ├── funopen.h │ │ │ │ ├── funopen2.h │ │ │ │ ├── funopen2_64.h │ │ │ │ ├── funopen64.h │ │ │ │ ├── fwrite.h │ │ │ │ ├── fwrite_unlocked.h │ │ │ │ ├── getchar.h │ │ │ │ ├── getchar_unlocked.h │ │ │ │ ├── getdelim.h │ │ │ │ ├── getdelim_unlocked.h │ │ │ │ ├── getline.h │ │ │ │ ├── getline_unlocked.h │ │ │ │ ├── gets.h │ │ │ │ ├── gets_s.h │ │ │ │ ├── getw.h │ │ │ │ ├── getw_unlocked.h │ │ │ │ ├── obstack_printf.h │ │ │ │ ├── obstack_vprintf.h │ │ │ │ ├── open_memstream.h │ │ │ │ ├── perror.h │ │ │ │ ├── printf.h │ │ │ │ ├── printf_s.h │ │ │ │ ├── printf_unlocked.h │ │ │ │ ├── putchar.h │ │ │ │ ├── putchar_unlocked.h │ │ │ │ ├── puts.h │ │ │ │ ├── puts_unlocked.h │ │ │ │ ├── putw.h │ │ │ │ ├── putw_unlocked.h │ │ │ │ ├── remove.h │ │ │ │ ├── removeat.h │ │ │ │ ├── rename.h │ │ │ │ ├── renameat.h │ │ │ │ ├── rewind.h │ │ │ │ ├── rewind_unlocked.h │ │ │ │ ├── scanf.h │ │ │ │ ├── scanf_s.h │ │ │ │ ├── scanf_unlocked.h │ │ │ │ ├── setbuf.h │ │ │ │ ├── setbuffer.h │ │ │ │ ├── setlinebuf.h │ │ │ │ ├── setvbuf_unlocked.h │ │ │ │ ├── snprintf.h │ │ │ │ ├── sprintf.h │ │ │ │ ├── sprintf_s.h │ │ │ │ ├── sscanf.h │ │ │ │ ├── sscanf_s.h │ │ │ │ ├── tmpfile.h │ │ │ │ ├── tmpfile64.h │ │ │ │ ├── tmpfile_s.h │ │ │ │ ├── tmpnam_r.h │ │ │ │ ├── tmpnam_s.h │ │ │ │ ├── ungetc_unlocked.h │ │ │ │ ├── vasnprintf.h │ │ │ │ ├── vasprintf.h │ │ │ │ ├── vdprintf.h │ │ │ │ ├── vfprintf.h │ │ │ │ ├── vfprintf_s.h │ │ │ │ ├── vfprintf_unlocked.h │ │ │ │ ├── vfscanf.h │ │ │ │ ├── vfscanf_s.h │ │ │ │ ├── vfscanf_unlocked.h │ │ │ │ ├── vprintf.h │ │ │ │ ├── vprintf_s.h │ │ │ │ ├── vprintf_unlocked.h │ │ │ │ ├── vscanf.h │ │ │ │ ├── vscanf_s.h │ │ │ │ ├── vscanf_unlocked.h │ │ │ │ ├── vsnprintf.h │ │ │ │ ├── vsnprintf_s.h │ │ │ │ ├── vsprintf.h │ │ │ │ ├── vsprintf_s.h │ │ │ │ ├── vsscanf.h │ │ │ │ └── vsscanf_s.h │ │ │ ├── stdlib │ │ │ │ ├── __p__pgmptr.h │ │ │ │ ├── _atodbl.h │ │ │ │ ├── _atodbl_l.h │ │ │ │ ├── _atof_l.h │ │ │ │ ├── _atoflt.h │ │ │ │ ├── _atoflt_l.h │ │ │ │ ├── _atoi64.h │ │ │ │ ├── _atoi64_l.h │ │ │ │ ├── _atoi_l.h │ │ │ │ ├── _atol_l.h │ │ │ │ ├── _atoldbl.h │ │ │ │ ├── _atoldbl_l.h │ │ │ │ ├── _atoll_l.h │ │ │ │ ├── _byteswap_uint64.h │ │ │ │ ├── _byteswap_ulong.h │ │ │ │ ├── _byteswap_ushort.h │ │ │ │ ├── _dupenv_s.h │ │ │ │ ├── _ecvt_s.h │ │ │ │ ├── _fcvt_s.h │ │ │ │ ├── _fullpath.h │ │ │ │ ├── _gcvt_s.h │ │ │ │ ├── _get_pgmptr.h │ │ │ │ ├── _get_wpgmptr.h │ │ │ │ ├── _i64toa.h │ │ │ │ ├── _i64toa_s.h │ │ │ │ ├── _itoa_s.h │ │ │ │ ├── _lrotl.h │ │ │ │ ├── _lrotr.h │ │ │ │ ├── _ltoa_s.h │ │ │ │ ├── _makepath.h │ │ │ │ ├── _makepath_s.h │ │ │ │ ├── _mblen_l.h │ │ │ │ ├── _mbstowcs_l.h │ │ │ │ ├── _mbstowcs_s_l.h │ │ │ │ ├── _mbstrlen.h │ │ │ │ ├── _mbstrlen_l.h │ │ │ │ ├── _mbstrnlen.h │ │ │ │ ├── _mbstrnlen_l.h │ │ │ │ ├── _mbtowc_l.h │ │ │ │ ├── _putenv_s.h │ │ │ │ ├── _rotl.h │ │ │ │ ├── _rotl64.h │ │ │ │ ├── _rotr.h │ │ │ │ ├── _rotr64.h │ │ │ │ ├── _searchenv.h │ │ │ │ ├── _sleep.h │ │ │ │ ├── _splitpath.h │ │ │ │ ├── _splitpath_s.h │ │ │ │ ├── _ui64toa.h │ │ │ │ ├── _ui64toa_s.h │ │ │ │ ├── _ultoa_s.h │ │ │ │ ├── _wcstombs_l.h │ │ │ │ ├── _wcstombs_s_l.h │ │ │ │ ├── _wctomb_l.h │ │ │ │ ├── _wctomb_s_l.h │ │ │ │ ├── _wdupenv_s.h │ │ │ │ ├── _wgetenv_s.h │ │ │ │ ├── a64l.h │ │ │ │ ├── abort.h │ │ │ │ ├── abortf.h │ │ │ │ ├── atof.h │ │ │ │ ├── atoi.h │ │ │ │ ├── atol.h │ │ │ │ ├── atoll.h │ │ │ │ ├── bsearch.h │ │ │ │ ├── bsearch_r.h │ │ │ │ ├── bsearch_s.h │ │ │ │ ├── calloc.h │ │ │ │ ├── clearenv.h │ │ │ │ ├── daemonfd.h │ │ │ │ ├── devname.h │ │ │ │ ├── div.h │ │ │ │ ├── ecvt.h │ │ │ │ ├── ecvt_r.h │ │ │ │ ├── fcvt.h │ │ │ │ ├── fcvt_r.h │ │ │ │ ├── fdwalk.h │ │ │ │ ├── frealpath.h │ │ │ │ ├── freezero.h │ │ │ │ ├── gcvt.h │ │ │ │ ├── getenv.h │ │ │ │ ├── getenv_s.h │ │ │ │ ├── getexecname.h │ │ │ │ ├── getprogname.h │ │ │ │ ├── getsubopt.h │ │ │ │ ├── heapsort.h │ │ │ │ ├── itoa.h │ │ │ │ ├── l64a.h │ │ │ │ ├── l64a_r.h │ │ │ │ ├── ldiv.h │ │ │ │ ├── lldiv.h │ │ │ │ ├── lltostr.h │ │ │ │ ├── ltoa.h │ │ │ │ ├── malloc.h │ │ │ │ ├── mblen.h │ │ │ │ ├── mbstowcs.h │ │ │ │ ├── mbstowcs_s.h │ │ │ │ ├── mbtowc.h │ │ │ │ ├── mergesort.h │ │ │ │ ├── mkdtemp.h │ │ │ │ ├── mkostemp.h │ │ │ │ ├── mkostemp64.h │ │ │ │ ├── mkostemps.h │ │ │ │ ├── mkostemps64.h │ │ │ │ ├── mkstemp.h │ │ │ │ ├── mkstemp64.h │ │ │ │ ├── mkstemps.h │ │ │ │ ├── mkstemps64.h │ │ │ │ ├── mktemp.h │ │ │ │ ├── ptsname.h │ │ │ │ ├── qecvt.h │ │ │ │ ├── qecvt_r.h │ │ │ │ ├── qfcvt.h │ │ │ │ ├── qfcvt_r.h │ │ │ │ ├── qgcvt.h │ │ │ │ ├── qsort.h │ │ │ │ ├── qsort_r.h │ │ │ │ ├── qsort_s.h │ │ │ │ ├── rand.h │ │ │ │ ├── rand_r.h │ │ │ │ ├── rand_s.h │ │ │ │ ├── random.h │ │ │ │ ├── reallocarr.h │ │ │ │ ├── reallocf.h │ │ │ │ ├── realpath.h │ │ │ │ ├── recallocarray.h │ │ │ │ ├── rpmatch.h │ │ │ │ ├── secure_getenv.h │ │ │ │ ├── setenv.h │ │ │ │ ├── setproctitle.h │ │ │ │ ├── setprogname.h │ │ │ │ ├── shexec.h │ │ │ │ ├── srand.h │ │ │ │ ├── srandom.h │ │ │ │ ├── strsuftoll.h │ │ │ │ ├── strsuftollx.h │ │ │ │ ├── strto32.h │ │ │ │ ├── strto32_l.h │ │ │ │ ├── strto32_r.h │ │ │ │ ├── strto64.h │ │ │ │ ├── strto64_l.h │ │ │ │ ├── strto64_r.h │ │ │ │ ├── strtod.h │ │ │ │ ├── strtod_l.h │ │ │ │ ├── strtof.h │ │ │ │ ├── strtof_l.h │ │ │ │ ├── strtol.h │ │ │ │ ├── strtol_l.h │ │ │ │ ├── strtol_r.h │ │ │ │ ├── strtold.h │ │ │ │ ├── strtold_l.h │ │ │ │ ├── strtoll.h │ │ │ │ ├── strtoll_l.h │ │ │ │ ├── strtoll_r.h │ │ │ │ ├── strtonum.h │ │ │ │ ├── strtou32.h │ │ │ │ ├── strtou32_l.h │ │ │ │ ├── strtou32_r.h │ │ │ │ ├── strtou64.h │ │ │ │ ├── strtou64_l.h │ │ │ │ ├── strtou64_r.h │ │ │ │ ├── strtoul.h │ │ │ │ ├── strtoul_l.h │ │ │ │ ├── strtoul_r.h │ │ │ │ ├── strtoull.h │ │ │ │ ├── strtoull_l.h │ │ │ │ ├── strtoull_r.h │ │ │ │ ├── system.h │ │ │ │ ├── system_mktemp.h │ │ │ │ ├── ulltostr.h │ │ │ │ ├── ultoa.h │ │ │ │ ├── unlockpt.h │ │ │ │ ├── unsetenv.h │ │ │ │ ├── vsetproctitle.h │ │ │ │ ├── wcstombs.h │ │ │ │ ├── wcstombs_s.h │ │ │ │ ├── wctomb.h │ │ │ │ └── wctomb_s.h │ │ │ ├── string │ │ │ │ ├── __xpg_strerror_r.h │ │ │ │ ├── _strerror.h │ │ │ │ ├── _strerror_s.h │ │ │ │ ├── _strlwr_s.h │ │ │ │ ├── _strlwr_s_l.h │ │ │ │ ├── _strnset_s.h │ │ │ │ ├── _strset_s.h │ │ │ │ ├── _strupr_s.h │ │ │ │ ├── _strupr_s_l.h │ │ │ │ ├── basename.h │ │ │ │ ├── bcmp.h │ │ │ │ ├── bcmpc.h │ │ │ │ ├── bcmpl.h │ │ │ │ ├── bcmpq.h │ │ │ │ ├── bcmpw.h │ │ │ │ ├── bcopy.h │ │ │ │ ├── bitcpy.h │ │ │ │ ├── bzero.h │ │ │ │ ├── bzeroc.h │ │ │ │ ├── bzerol.h │ │ │ │ ├── bzeroq.h │ │ │ │ ├── bzerow.h │ │ │ │ ├── consttime_memequal.h │ │ │ │ ├── explicit_memset.h │ │ │ │ ├── fuzzy_memcasecmp.h │ │ │ │ ├── fuzzy_memcasecmp_l.h │ │ │ │ ├── fuzzy_memcmp.h │ │ │ │ ├── fuzzy_memcmpl.h │ │ │ │ ├── fuzzy_memcmpq.h │ │ │ │ ├── fuzzy_memcmpw.h │ │ │ │ ├── fuzzy_strcasecmp.h │ │ │ │ ├── fuzzy_strcasecmp_l.h │ │ │ │ ├── fuzzy_strcmp.h │ │ │ │ ├── fuzzy_strncasecmp.h │ │ │ │ ├── fuzzy_strncasecmp_l.h │ │ │ │ ├── fuzzy_strncmp.h │ │ │ │ ├── memcasecmp.h │ │ │ │ ├── memcasecmp_l.h │ │ │ │ ├── memcasemem.h │ │ │ │ ├── memcasemem_l.h │ │ │ │ ├── memccpy.h │ │ │ │ ├── memchr.h │ │ │ │ ├── memchrl.h │ │ │ │ ├── memchrq.h │ │ │ │ ├── memchrw.h │ │ │ │ ├── memcmp.h │ │ │ │ ├── memcmpc.h │ │ │ │ ├── memcmpl.h │ │ │ │ ├── memcmpq.h │ │ │ │ ├── memcmpw.h │ │ │ │ ├── memcpy.h │ │ │ │ ├── memcpy_s.h │ │ │ │ ├── memcpyc.h │ │ │ │ ├── memcpyl.h │ │ │ │ ├── memcpyq.h │ │ │ │ ├── memcpyw.h │ │ │ │ ├── memend.h │ │ │ │ ├── memendl.h │ │ │ │ ├── memendq.h │ │ │ │ ├── memendw.h │ │ │ │ ├── memfrob.h │ │ │ │ ├── memlen.h │ │ │ │ ├── memlenl.h │ │ │ │ ├── memlenq.h │ │ │ │ ├── memlenw.h │ │ │ │ ├── memmem.h │ │ │ │ ├── memmove.h │ │ │ │ ├── memmove_s.h │ │ │ │ ├── memmovec.h │ │ │ │ ├── memmovedown.h │ │ │ │ ├── memmovedownc.h │ │ │ │ ├── memmovedownl.h │ │ │ │ ├── memmovedownq.h │ │ │ │ ├── memmovedownw.h │ │ │ │ ├── memmovel.h │ │ │ │ ├── memmoveq.h │ │ │ │ ├── memmoveup.h │ │ │ │ ├── memmoveupc.h │ │ │ │ ├── memmoveupl.h │ │ │ │ ├── memmoveupq.h │ │ │ │ ├── memmoveupw.h │ │ │ │ ├── memmovew.h │ │ │ │ ├── mempatl.h │ │ │ │ ├── mempatq.h │ │ │ │ ├── mempatw.h │ │ │ │ ├── mempcpy.h │ │ │ │ ├── mempcpyc.h │ │ │ │ ├── mempcpyl.h │ │ │ │ ├── mempcpyq.h │ │ │ │ ├── mempcpyw.h │ │ │ │ ├── mempmove.h │ │ │ │ ├── mempmovec.h │ │ │ │ ├── mempmovedown.h │ │ │ │ ├── mempmovedownc.h │ │ │ │ ├── mempmovedownl.h │ │ │ │ ├── mempmovedownq.h │ │ │ │ ├── mempmovedownw.h │ │ │ │ ├── mempmovel.h │ │ │ │ ├── mempmoveq.h │ │ │ │ ├── mempmoveup.h │ │ │ │ ├── mempmoveupc.h │ │ │ │ ├── mempmoveupl.h │ │ │ │ ├── mempmoveupq.h │ │ │ │ ├── mempmoveupw.h │ │ │ │ ├── mempmovew.h │ │ │ │ ├── mempset.h │ │ │ │ ├── mempsetl.h │ │ │ │ ├── mempsetq.h │ │ │ │ ├── mempsetw.h │ │ │ │ ├── memrchr.h │ │ │ │ ├── memrchrl.h │ │ │ │ ├── memrchrq.h │ │ │ │ ├── memrchrw.h │ │ │ │ ├── memrend.h │ │ │ │ ├── memrendl.h │ │ │ │ ├── memrendq.h │ │ │ │ ├── memrendw.h │ │ │ │ ├── memrev.h │ │ │ │ ├── memrevl.h │ │ │ │ ├── memrevq.h │ │ │ │ ├── memrevw.h │ │ │ │ ├── memrlen.h │ │ │ │ ├── memrlenl.h │ │ │ │ ├── memrlenq.h │ │ │ │ ├── memrlenw.h │ │ │ │ ├── memrmem.h │ │ │ │ ├── memrxchr.h │ │ │ │ ├── memrxchrl.h │ │ │ │ ├── memrxchrq.h │ │ │ │ ├── memrxchrw.h │ │ │ │ ├── memrxend.h │ │ │ │ ├── memrxendl.h │ │ │ │ ├── memrxendq.h │ │ │ │ ├── memrxendw.h │ │ │ │ ├── memrxlen.h │ │ │ │ ├── memrxlenl.h │ │ │ │ ├── memrxlenq.h │ │ │ │ ├── memrxlenw.h │ │ │ │ ├── memset.h │ │ │ │ ├── memsetl.h │ │ │ │ ├── memsetq.h │ │ │ │ ├── memsetw.h │ │ │ │ ├── memxchr.h │ │ │ │ ├── memxchrl.h │ │ │ │ ├── memxchrq.h │ │ │ │ ├── memxchrw.h │ │ │ │ ├── memxend.h │ │ │ │ ├── memxendl.h │ │ │ │ ├── memxendq.h │ │ │ │ ├── memxendw.h │ │ │ │ ├── memxlen.h │ │ │ │ ├── memxlenl.h │ │ │ │ ├── memxlenq.h │ │ │ │ ├── memxlenw.h │ │ │ │ ├── rawmemchr.h │ │ │ │ ├── rawmemchrl.h │ │ │ │ ├── rawmemchrq.h │ │ │ │ ├── rawmemchrw.h │ │ │ │ ├── rawmemlen.h │ │ │ │ ├── rawmemlenl.h │ │ │ │ ├── rawmemlenq.h │ │ │ │ ├── rawmemlenw.h │ │ │ │ ├── rawmemrchr.h │ │ │ │ ├── rawmemrchrl.h │ │ │ │ ├── rawmemrchrq.h │ │ │ │ ├── rawmemrchrw.h │ │ │ │ ├── rawmemrlen.h │ │ │ │ ├── rawmemrlenl.h │ │ │ │ ├── rawmemrlenq.h │ │ │ │ ├── rawmemrlenw.h │ │ │ │ ├── rawmemrxchr.h │ │ │ │ ├── rawmemrxchrl.h │ │ │ │ ├── rawmemrxchrq.h │ │ │ │ ├── rawmemrxchrw.h │ │ │ │ ├── rawmemrxlen.h │ │ │ │ ├── rawmemrxlenl.h │ │ │ │ ├── rawmemrxlenq.h │ │ │ │ ├── rawmemrxlenw.h │ │ │ │ ├── rawmemxchr.h │ │ │ │ ├── rawmemxchrl.h │ │ │ │ ├── rawmemxchrq.h │ │ │ │ ├── rawmemxchrw.h │ │ │ │ ├── rawmemxlen.h │ │ │ │ ├── rawmemxlenl.h │ │ │ │ ├── rawmemxlenq.h │ │ │ │ ├── rawmemxlenw.h │ │ │ │ ├── sigabbrev_np.h │ │ │ │ ├── sigdescr_np.h │ │ │ │ ├── stpcpy.h │ │ │ │ ├── stpncpy.h │ │ │ │ ├── strcasecmp.h │ │ │ │ ├── strcasecmp_l.h │ │ │ │ ├── strcasecoll.h │ │ │ │ ├── strcasecoll_l.h │ │ │ │ ├── strcasestr.h │ │ │ │ ├── strcasestr_l.h │ │ │ │ ├── strcat.h │ │ │ │ ├── strcat_s.h │ │ │ │ ├── strchr.h │ │ │ │ ├── strchrnul.h │ │ │ │ ├── strcmp.h │ │ │ │ ├── strcmpz.h │ │ │ │ ├── strcoll.h │ │ │ │ ├── strcoll_l.h │ │ │ │ ├── strcpy.h │ │ │ │ ├── strcpy_s.h │ │ │ │ ├── strcspn.h │ │ │ │ ├── strdup.h │ │ │ │ ├── strdupf.h │ │ │ │ ├── strend.h │ │ │ │ ├── strerror.h │ │ │ │ ├── strerror_l.h │ │ │ │ ├── strerror_r.h │ │ │ │ ├── strerrordesc_np.h │ │ │ │ ├── strerrorname_np.h │ │ │ │ ├── stresep.h │ │ │ │ ├── strfry.h │ │ │ │ ├── strlcat.h │ │ │ │ ├── strlcpy.h │ │ │ │ ├── strlen.h │ │ │ │ ├── strlstrip.h │ │ │ │ ├── strlwr.h │ │ │ │ ├── strlwr_l.h │ │ │ │ ├── strmode.h │ │ │ │ ├── strncasecmp.h │ │ │ │ ├── strncasecmp_l.h │ │ │ │ ├── strncasecoll.h │ │ │ │ ├── strncasecoll_l.h │ │ │ │ ├── strncat.h │ │ │ │ ├── strncat_s.h │ │ │ │ ├── strnchr.h │ │ │ │ ├── strnchrnul.h │ │ │ │ ├── strncmp.h │ │ │ │ ├── strncoll.h │ │ │ │ ├── strncoll_l.h │ │ │ │ ├── strncpy.h │ │ │ │ ├── strncpy_s.h │ │ │ │ ├── strndup.h │ │ │ │ ├── strnend.h │ │ │ │ ├── strnlen.h │ │ │ │ ├── strnlwr.h │ │ │ │ ├── strnlwr_l.h │ │ │ │ ├── strnoff.h │ │ │ │ ├── strnrchr.h │ │ │ │ ├── strnrchrnul.h │ │ │ │ ├── strnrev.h │ │ │ │ ├── strnroff.h │ │ │ │ ├── strnset.h │ │ │ │ ├── strnstr.h │ │ │ │ ├── strnupr.h │ │ │ │ ├── strnupr_l.h │ │ │ │ ├── stroff.h │ │ │ │ ├── strpbrk.h │ │ │ │ ├── strrchr.h │ │ │ │ ├── strrchrnul.h │ │ │ │ ├── strrev.h │ │ │ │ ├── strroff.h │ │ │ │ ├── strrstr.h │ │ │ │ ├── strrstrip.h │ │ │ │ ├── strsep.h │ │ │ │ ├── strset.h │ │ │ │ ├── strsignal.h │ │ │ │ ├── strspn.h │ │ │ │ ├── strstartcmp.h │ │ │ │ ├── strstartcmpz.h │ │ │ │ ├── strstr.h │ │ │ │ ├── strstrip.h │ │ │ │ ├── strtok.h │ │ │ │ ├── strtok_r.h │ │ │ │ ├── strtosigno.h │ │ │ │ ├── strupr.h │ │ │ │ ├── strupr_l.h │ │ │ │ ├── strverscmp.h │ │ │ │ ├── strxfrm.h │ │ │ │ ├── strxfrm_l.h │ │ │ │ ├── timingsafe_memcmp.h │ │ │ │ ├── uucopy.h │ │ │ │ ├── uucopystr.h │ │ │ │ ├── vstrdupf.h │ │ │ │ ├── wildstrcasecmp.h │ │ │ │ ├── wildstrcasecmp_l.h │ │ │ │ └── wildstrcmp.h │ │ │ ├── stringlist │ │ │ │ ├── sl_add.h │ │ │ │ ├── sl_delete.h │ │ │ │ ├── sl_find.h │ │ │ │ ├── sl_free.h │ │ │ │ └── sl_init.h │ │ │ ├── strings │ │ │ │ └── explicit_bzero.h │ │ │ ├── sys.eventfd │ │ │ │ ├── eventfd_read.h │ │ │ │ └── eventfd_write.h │ │ │ ├── sys.inotify │ │ │ │ ├── inotify_add_watch.h │ │ │ │ └── inotify_init.h │ │ │ ├── sys.mkdev │ │ │ │ ├── __major.h │ │ │ │ ├── __makedev.h │ │ │ │ ├── __minor.h │ │ │ │ ├── major.h │ │ │ │ ├── makedev.h │ │ │ │ └── minor.h │ │ │ ├── sys.mman │ │ │ │ ├── ffmapfile.h │ │ │ │ ├── fmapfile.h │ │ │ │ ├── fmapfileat.h │ │ │ │ ├── mapfile.h │ │ │ │ ├── mmap.h │ │ │ │ ├── mmap64.h │ │ │ │ ├── pkey_get.h │ │ │ │ ├── pkey_set.h │ │ │ │ ├── posix_madvise.h │ │ │ │ ├── shm_open.h │ │ │ │ ├── shm_unlink.h │ │ │ │ └── unmapfile.h │ │ │ ├── sys.mount │ │ │ │ └── umount.h │ │ │ ├── sys.poll │ │ │ │ ├── ppoll.h │ │ │ │ └── ppoll64.h │ │ │ ├── sys.random │ │ │ │ └── getentropy.h │ │ │ ├── sys.select │ │ │ │ ├── __fdelt_chk.h │ │ │ │ ├── pselect.h │ │ │ │ ├── pselect64.h │ │ │ │ ├── select.h │ │ │ │ └── select64.h │ │ │ ├── sys.sendfile │ │ │ │ ├── sendfile.h │ │ │ │ └── sendfile64.h │ │ │ ├── sys.socket │ │ │ │ ├── recvmmsg.h │ │ │ │ └── recvmmsg64.h │ │ │ ├── sys.stat │ │ │ │ ├── chmod.h │ │ │ │ ├── fstat.h │ │ │ │ ├── fstat64.h │ │ │ │ ├── fstatat.h │ │ │ │ ├── fstatat64.h │ │ │ │ ├── futimens.h │ │ │ │ ├── futimens64.h │ │ │ │ ├── getumask.h │ │ │ │ ├── lchmod.h │ │ │ │ ├── lstat.h │ │ │ │ ├── lstat64.h │ │ │ │ ├── mkdir.h │ │ │ │ ├── mkdirat.h │ │ │ │ ├── mkfifo.h │ │ │ │ ├── mkfifoat.h │ │ │ │ ├── mknod.h │ │ │ │ ├── mknodat.h │ │ │ │ ├── stat.h │ │ │ │ ├── stat64.h │ │ │ │ ├── utimensat.h │ │ │ │ └── utimensat64.h │ │ │ ├── sys.sysinfo │ │ │ │ ├── get_avphys_pages.h │ │ │ │ └── get_phys_pages.h │ │ │ ├── sys.syslog │ │ │ │ ├── syslog.h │ │ │ │ └── vsyslog.h │ │ │ ├── sys.time │ │ │ │ ├── adjtime.h │ │ │ │ ├── adjtime64.h │ │ │ │ ├── futimes.h │ │ │ │ ├── futimes64.h │ │ │ │ ├── futimesat.h │ │ │ │ ├── futimesat64.h │ │ │ │ ├── getitimer.h │ │ │ │ ├── getitimer64.h │ │ │ │ ├── gettimeofday.h │ │ │ │ ├── gettimeofday64.h │ │ │ │ ├── lutimes.h │ │ │ │ ├── lutimes64.h │ │ │ │ ├── setitimer.h │ │ │ │ ├── setitimer64.h │ │ │ │ ├── settimeofday.h │ │ │ │ ├── settimeofday64.h │ │ │ │ ├── utimes.h │ │ │ │ └── utimes64.h │ │ │ ├── sys.timeb │ │ │ │ ├── _ftime32.h │ │ │ │ ├── _ftime32_s.h │ │ │ │ ├── _ftime64.h │ │ │ │ ├── _ftime64_s.h │ │ │ │ ├── ftime.h │ │ │ │ └── ftime64.h │ │ │ ├── sys.timerfd │ │ │ │ ├── timerfd_gettime.h │ │ │ │ ├── timerfd_gettime64.h │ │ │ │ ├── timerfd_settime.h │ │ │ │ └── timerfd_settime64.h │ │ │ ├── sys.timex │ │ │ │ ├── adjtimex.h │ │ │ │ ├── adjtimex64.h │ │ │ │ ├── ntp_adjtime.h │ │ │ │ ├── ntp_adjtime64.h │ │ │ │ ├── ntp_gettime.h │ │ │ │ └── ntp_gettime64.h │ │ │ ├── sys.uio │ │ │ │ ├── preadv.h │ │ │ │ ├── preadv64.h │ │ │ │ ├── pwritev.h │ │ │ │ └── pwritev64.h │ │ │ ├── sys.vlimit │ │ │ │ └── vlimit.h │ │ │ ├── sys.vtimes │ │ │ │ └── vtimes.h │ │ │ ├── sys.wait │ │ │ │ ├── wait3.h │ │ │ │ ├── wait3_64.h │ │ │ │ ├── wait4.h │ │ │ │ └── wait4_64.h │ │ │ ├── termios │ │ │ │ ├── cfgetispeed.h │ │ │ │ ├── cfgetospeed.h │ │ │ │ ├── cfmakeraw.h │ │ │ │ ├── cfmakesane.h │ │ │ │ ├── cfsetispeed.h │ │ │ │ ├── cfsetospeed.h │ │ │ │ ├── cfsetspeed.h │ │ │ │ ├── tcdrain.h │ │ │ │ ├── tcflow.h │ │ │ │ ├── tcflush.h │ │ │ │ ├── tcgetattr.h │ │ │ │ ├── tcgetsid.h │ │ │ │ ├── tcgetwinsize.h │ │ │ │ ├── tcsendbreak.h │ │ │ │ ├── tcsetattr.h │ │ │ │ ├── tcsetsid.h │ │ │ │ └── tcsetwinsize.h │ │ │ ├── thread │ │ │ │ ├── thr_create.h │ │ │ │ ├── thr_getprio.h │ │ │ │ ├── thr_getspecific.h │ │ │ │ ├── thr_join.h │ │ │ │ ├── thr_setprio.h │ │ │ │ └── thr_stksegment.h │ │ │ ├── threads │ │ │ │ ├── cnd_broadcast.h │ │ │ │ ├── cnd_init.h │ │ │ │ ├── cnd_signal.h │ │ │ │ ├── cnd_timedwait.h │ │ │ │ ├── cnd_timedwait64.h │ │ │ │ ├── cnd_wait.h │ │ │ │ ├── mtx_init.h │ │ │ │ ├── mtx_lock.h │ │ │ │ ├── mtx_timedlock.h │ │ │ │ ├── mtx_timedlock64.h │ │ │ │ ├── mtx_trylock.h │ │ │ │ ├── mtx_unlock.h │ │ │ │ ├── thr_min_stack.h │ │ │ │ ├── thrd_create.h │ │ │ │ ├── thrd_detach.h │ │ │ │ ├── thrd_exit.h │ │ │ │ ├── thrd_join.h │ │ │ │ ├── thrd_sleep.h │ │ │ │ ├── thrd_sleep64.h │ │ │ │ ├── tss_create.h │ │ │ │ └── tss_set.h │ │ │ ├── time │ │ │ │ ├── __dstbias.h │ │ │ │ ├── _ctime32_s.h │ │ │ │ ├── _ctime64_s.h │ │ │ │ ├── _get_daylight.h │ │ │ │ ├── _get_dstbias.h │ │ │ │ ├── _get_timezone.h │ │ │ │ ├── _get_tzname.h │ │ │ │ ├── _getsystime.h │ │ │ │ ├── _gmtime32_s.h │ │ │ │ ├── _gmtime64_s.h │ │ │ │ ├── _localtime32.h │ │ │ │ ├── _localtime32_s.h │ │ │ │ ├── _localtime64_s.h │ │ │ │ ├── _setsystime.h │ │ │ │ ├── _strdate.h │ │ │ │ ├── _strdate_s.h │ │ │ │ ├── _strtime.h │ │ │ │ ├── _strtime_s.h │ │ │ │ ├── _time32.h │ │ │ │ ├── asctime.h │ │ │ │ ├── asctime_r.h │ │ │ │ ├── asctime_s.h │ │ │ │ ├── clock.h │ │ │ │ ├── clock_getres.h │ │ │ │ ├── clock_getres64.h │ │ │ │ ├── clock_gettime.h │ │ │ │ ├── clock_gettime64.h │ │ │ │ ├── clock_nanosleep.h │ │ │ │ ├── clock_nanosleep64.h │ │ │ │ ├── clock_settime.h │ │ │ │ ├── clock_settime64.h │ │ │ │ ├── ctime.h │ │ │ │ ├── ctime64.h │ │ │ │ ├── ctime64_r.h │ │ │ │ ├── ctime_r.h │ │ │ │ ├── difftime.h │ │ │ │ ├── difftime64.h │ │ │ │ ├── dysize.h │ │ │ │ ├── getdate.h │ │ │ │ ├── getdate_r.h │ │ │ │ ├── gmtime.h │ │ │ │ ├── gmtime64.h │ │ │ │ ├── gmtime64_r.h │ │ │ │ ├── gmtime_r.h │ │ │ │ ├── localtime.h │ │ │ │ ├── localtime64.h │ │ │ │ ├── localtime64_r.h │ │ │ │ ├── localtime_r.h │ │ │ │ ├── mktime.h │ │ │ │ ├── mktime64.h │ │ │ │ ├── nanosleep.h │ │ │ │ ├── nanosleep64.h │ │ │ │ ├── normalize_struct_tm.h │ │ │ │ ├── stime.h │ │ │ │ ├── stime64.h │ │ │ │ ├── strftime.h │ │ │ │ ├── strftime_l.h │ │ │ │ ├── strptime.h │ │ │ │ ├── strptime_l.h │ │ │ │ ├── time.h │ │ │ │ ├── time64.h │ │ │ │ ├── timegm.h │ │ │ │ ├── timegm64.h │ │ │ │ ├── timer_gettime.h │ │ │ │ ├── timer_gettime64.h │ │ │ │ ├── timer_settime.h │ │ │ │ ├── timer_settime64.h │ │ │ │ ├── timespec_get.h │ │ │ │ ├── timespec_get64.h │ │ │ │ ├── timespec_getres.h │ │ │ │ └── timespec_getres64.h │ │ │ ├── timeval-utils │ │ │ │ ├── timeval_add.h │ │ │ │ ├── timeval_add64.h │ │ │ │ ├── timeval_sub.h │ │ │ │ └── timeval_sub64.h │ │ │ ├── ttyent │ │ │ │ └── getttynam.h │ │ │ ├── uchar │ │ │ │ ├── c8rtomb.h │ │ │ │ ├── convert_c16tombs.h │ │ │ │ ├── convert_c16tombsn.h │ │ │ │ ├── convert_c16tombsv.h │ │ │ │ ├── convert_c16tombsvn.h │ │ │ │ ├── convert_c32tombs.h │ │ │ │ ├── convert_c32tombsn.h │ │ │ │ ├── convert_c32tombsv.h │ │ │ │ ├── convert_c32tombsvn.h │ │ │ │ ├── convert_freev.h │ │ │ │ ├── convert_freevn.h │ │ │ │ ├── convert_mbstoc16.h │ │ │ │ ├── convert_mbstoc16n.h │ │ │ │ ├── convert_mbstoc16v.h │ │ │ │ ├── convert_mbstoc16vn.h │ │ │ │ ├── convert_mbstoc32.h │ │ │ │ ├── convert_mbstoc32n.h │ │ │ │ ├── convert_mbstoc32v.h │ │ │ │ ├── convert_mbstoc32vn.h │ │ │ │ ├── convert_mbstowcs.h │ │ │ │ ├── convert_mbstowcsn.h │ │ │ │ ├── convert_mbstowcsv.h │ │ │ │ ├── convert_mbstowcsvn.h │ │ │ │ ├── convert_wcstombs.h │ │ │ │ ├── convert_wcstombsn.h │ │ │ │ ├── convert_wcstombsv.h │ │ │ │ ├── convert_wcstombsvn.h │ │ │ │ ├── mbrtoc8.h │ │ │ │ ├── uchar_c16rtomb.h │ │ │ │ ├── uchar_c32rtomb.h │ │ │ │ ├── uchar_mbrtoc16.h │ │ │ │ └── uchar_mbrtoc32.h │ │ │ ├── unicode │ │ │ │ ├── format_16to32.h │ │ │ │ ├── format_16to8.h │ │ │ │ ├── format_32to16.h │ │ │ │ ├── format_32to8.h │ │ │ │ ├── format_8to16.h │ │ │ │ ├── format_8to32.h │ │ │ │ ├── format_8tow.h │ │ │ │ ├── format_wto16.h │ │ │ │ ├── format_wto32.h │ │ │ │ ├── format_wto8.h │ │ │ │ ├── unicode_16to32.h │ │ │ │ ├── unicode_16to32_n.h │ │ │ │ ├── unicode_16to8.h │ │ │ │ ├── unicode_16to8_n.h │ │ │ │ ├── unicode_32to16.h │ │ │ │ ├── unicode_32to16_n.h │ │ │ │ ├── unicode_32to8.h │ │ │ │ ├── unicode_32to8_n.h │ │ │ │ ├── unicode_8to16.h │ │ │ │ ├── unicode_8to16_chk.h │ │ │ │ ├── unicode_8to16_chk_n.h │ │ │ │ ├── unicode_8to16_n.h │ │ │ │ ├── unicode_8to32.h │ │ │ │ ├── unicode_8to32_n.h │ │ │ │ ├── unicode_c16toc8.h │ │ │ │ ├── unicode_c8toc16.h │ │ │ │ ├── unicode_c8toc32.h │ │ │ │ ├── unicode_len8to16.h │ │ │ │ ├── unicode_len8to32.h │ │ │ │ ├── unicode_readutf16.h │ │ │ │ ├── unicode_readutf16_n.h │ │ │ │ ├── unicode_readutf16_rev.h │ │ │ │ ├── unicode_readutf16_rev_n.h │ │ │ │ ├── unicode_readutf16_swap.h │ │ │ │ ├── unicode_readutf16_swap_n.h │ │ │ │ ├── unicode_readutf16_swap_rev.h │ │ │ │ ├── unicode_readutf16_swap_rev_n.h │ │ │ │ ├── unicode_readutf8.h │ │ │ │ ├── unicode_readutf8_n.h │ │ │ │ ├── unicode_readutf8_rev.h │ │ │ │ ├── unicode_readutf8_rev_n.h │ │ │ │ ├── unicode_writeutf16.h │ │ │ │ ├── unicode_writeutf16_chk.h │ │ │ │ ├── unicode_writeutf8.h │ │ │ │ └── unicode_writeutf8_n.h │ │ │ ├── unistd │ │ │ │ ├── access.h │ │ │ │ ├── chdir.h │ │ │ │ ├── chown.h │ │ │ │ ├── closefrom.h │ │ │ │ ├── ctermid.h │ │ │ │ ├── ctermid_r.h │ │ │ │ ├── cuserid.h │ │ │ │ ├── daemon.h │ │ │ │ ├── daemon_setup.h │ │ │ │ ├── dup3.h │ │ │ │ ├── euidaccess.h │ │ │ │ ├── execl.h │ │ │ │ ├── execle.h │ │ │ │ ├── execlp.h │ │ │ │ ├── execlpe.h │ │ │ │ ├── execv.h │ │ │ │ ├── execvp.h │ │ │ │ ├── execvpe.h │ │ │ │ ├── fchroot.h │ │ │ │ ├── fdatasync.h │ │ │ │ ├── fexecve.h │ │ │ │ ├── fsync.h │ │ │ │ ├── ftruncate.h │ │ │ │ ├── ftruncate64.h │ │ │ │ ├── get_current_dir_name.h │ │ │ │ ├── getdomainname.h │ │ │ │ ├── getdtablesize.h │ │ │ │ ├── getegid.h │ │ │ │ ├── geteuid.h │ │ │ │ ├── getgid.h │ │ │ │ ├── gethostid.h │ │ │ │ ├── gethostname.h │ │ │ │ ├── getlogin.h │ │ │ │ ├── getlogin_r.h │ │ │ │ ├── getpass.h │ │ │ │ ├── getpass_r.h │ │ │ │ ├── getpassfd.h │ │ │ │ ├── getpeereid.h │ │ │ │ ├── getuid.h │ │ │ │ ├── getwd.h │ │ │ │ ├── group_member.h │ │ │ │ ├── isatty.h │ │ │ │ ├── issetugid.h │ │ │ │ ├── lchown.h │ │ │ │ ├── link.h │ │ │ │ ├── lpathconf.h │ │ │ │ ├── lseek.h │ │ │ │ ├── lseek64.h │ │ │ │ ├── nice.h │ │ │ │ ├── pathconf.h │ │ │ │ ├── pipe.h │ │ │ │ ├── pipe2.h │ │ │ │ ├── pread.h │ │ │ │ ├── pread64.h │ │ │ │ ├── preadall.h │ │ │ │ ├── preadall64.h │ │ │ │ ├── pwrite.h │ │ │ │ ├── pwrite64.h │ │ │ │ ├── pwriteall.h │ │ │ │ ├── pwriteall64.h │ │ │ │ ├── readall.h │ │ │ │ ├── readlink.h │ │ │ │ ├── readlinkat.h │ │ │ │ ├── resolvepath.h │ │ │ │ ├── rmdir.h │ │ │ │ ├── setegid.h │ │ │ │ ├── seteuid.h │ │ │ │ ├── setgid.h │ │ │ │ ├── sethostid.h │ │ │ │ ├── setpgrp.h │ │ │ │ ├── setregid.h │ │ │ │ ├── setreuid.h │ │ │ │ ├── setrgid.h │ │ │ │ ├── setruid.h │ │ │ │ ├── setuid.h │ │ │ │ ├── sleep.h │ │ │ │ ├── swab.h │ │ │ │ ├── symlink.h │ │ │ │ ├── symlinkat.h │ │ │ │ ├── sync.h │ │ │ │ ├── syncfs.h │ │ │ │ ├── tcgetpgrp.h │ │ │ │ ├── tcsetpgrp.h │ │ │ │ ├── tell.h │ │ │ │ ├── tell64.h │ │ │ │ ├── truncate.h │ │ │ │ ├── truncate64.h │ │ │ │ ├── ttyname.h │ │ │ │ ├── ttyname_r.h │ │ │ │ ├── ttyslot.h │ │ │ │ ├── ualarm.h │ │ │ │ ├── unlink.h │ │ │ │ ├── usleep.h │ │ │ │ ├── write_printer.h │ │ │ │ └── writeall.h │ │ │ ├── util │ │ │ │ └── fparseln.h │ │ │ ├── utime │ │ │ │ ├── _futime32.h │ │ │ │ ├── _utime32.h │ │ │ │ ├── _wutime32.h │ │ │ │ ├── futime.h │ │ │ │ ├── futime64.h │ │ │ │ ├── utime.h │ │ │ │ └── utime64.h │ │ │ ├── utmp │ │ │ │ └── login_tty.h │ │ │ ├── vis │ │ │ │ ├── nvis.h │ │ │ │ ├── snvis.h │ │ │ │ ├── stravis.h │ │ │ │ ├── strenvisx.h │ │ │ │ ├── strnunvis.h │ │ │ │ ├── strnunvis_netbsd.h │ │ │ │ ├── strnunvisx.h │ │ │ │ ├── strnvis.h │ │ │ │ ├── strnvis_netbsd.h │ │ │ │ ├── strnvisx.h │ │ │ │ ├── strsenvisx.h │ │ │ │ ├── strsnvis.h │ │ │ │ ├── strsnvisx.h │ │ │ │ ├── strsvis.h │ │ │ │ ├── strsvisx.h │ │ │ │ ├── strunvis.h │ │ │ │ ├── strunvisx.h │ │ │ │ ├── strvis.h │ │ │ │ ├── strvisx.h │ │ │ │ ├── svis.h │ │ │ │ ├── unvis.h │ │ │ │ └── vis.h │ │ │ ├── wchar │ │ │ │ ├── btowc.h │ │ │ │ ├── fgetws.h │ │ │ │ ├── fgetws_unlocked.h │ │ │ │ ├── file_wprinter.h │ │ │ │ ├── file_wprinter_unlocked.h │ │ │ │ ├── fopen_wprinter.h │ │ │ │ ├── fputws.h │ │ │ │ ├── fputws_unlocked.h │ │ │ │ ├── fuzzy_wcscasecmp.h │ │ │ │ ├── fuzzy_wcscasecmp_l.h │ │ │ │ ├── fuzzy_wcscmp.h │ │ │ │ ├── fuzzy_wcsncasecmp.h │ │ │ │ ├── fuzzy_wcsncasecmp_l.h │ │ │ │ ├── fuzzy_wcsncmp.h │ │ │ │ ├── fuzzy_wmemcasecmp.h │ │ │ │ ├── fuzzy_wmemcasecmp_l.h │ │ │ │ ├── fuzzy_wmemcmp.h │ │ │ │ ├── fwide.h │ │ │ │ ├── fwprintf.h │ │ │ │ ├── fwprintf_unlocked.h │ │ │ │ ├── fwscanf.h │ │ │ │ ├── fwscanf_unlocked.h │ │ │ │ ├── getwchar.h │ │ │ │ ├── getwchar_unlocked.h │ │ │ │ ├── mbrlen.h │ │ │ │ ├── mbrtowc.h │ │ │ │ ├── mbsinit.h │ │ │ │ ├── mbsnrtowcs.h │ │ │ │ ├── mbsrtowcs.h │ │ │ │ ├── putwchar.h │ │ │ │ ├── putwchar_unlocked.h │ │ │ │ ├── swprintf.h │ │ │ │ ├── swscanf.h │ │ │ │ ├── vfwprintf.h │ │ │ │ ├── vfwprintf_unlocked.h │ │ │ │ ├── vfwscanf.h │ │ │ │ ├── vfwscanf_unlocked.h │ │ │ │ ├── vswprintf.h │ │ │ │ ├── vswscanf.h │ │ │ │ ├── vwprintf.h │ │ │ │ ├── vwprintf_unlocked.h │ │ │ │ ├── vwscanf.h │ │ │ │ ├── vwscanf_unlocked.h │ │ │ │ ├── wcpcpy.h │ │ │ │ ├── wcpncpy.h │ │ │ │ ├── wcrtomb.h │ │ │ │ ├── wcscasecmp.h │ │ │ │ ├── wcscasecmp_l.h │ │ │ │ ├── wcscasecoll.h │ │ │ │ ├── wcscasecoll_l.h │ │ │ │ ├── wcscasestr.h │ │ │ │ ├── wcscasestr_l.h │ │ │ │ ├── wcscat.h │ │ │ │ ├── wcschr.h │ │ │ │ ├── wcschrnul.h │ │ │ │ ├── wcscmp.h │ │ │ │ ├── wcscoll.h │ │ │ │ ├── wcscoll_l.h │ │ │ │ ├── wcscpy.h │ │ │ │ ├── wcscspn.h │ │ │ │ ├── wcsdup.h │ │ │ │ ├── wcsend.h │ │ │ │ ├── wcsfry.h │ │ │ │ ├── wcsftime.h │ │ │ │ ├── wcsftime_l.h │ │ │ │ ├── wcslcat.h │ │ │ │ ├── wcslcpy.h │ │ │ │ ├── wcslen.h │ │ │ │ ├── wcslstrip.h │ │ │ │ ├── wcslwr.h │ │ │ │ ├── wcslwr_l.h │ │ │ │ ├── wcsncasecmp.h │ │ │ │ ├── wcsncasecmp_l.h │ │ │ │ ├── wcsncasecoll.h │ │ │ │ ├── wcsncasecoll_l.h │ │ │ │ ├── wcsncat.h │ │ │ │ ├── wcsnchr.h │ │ │ │ ├── wcsnchrnul.h │ │ │ │ ├── wcsncmp.h │ │ │ │ ├── wcsncoll.h │ │ │ │ ├── wcsncoll_l.h │ │ │ │ ├── wcsncpy.h │ │ │ │ ├── wcsndup.h │ │ │ │ ├── wcsnend.h │ │ │ │ ├── wcsnlen.h │ │ │ │ ├── wcsnlwr.h │ │ │ │ ├── wcsnlwr_l.h │ │ │ │ ├── wcsnoff.h │ │ │ │ ├── wcsnrchr.h │ │ │ │ ├── wcsnrchrnul.h │ │ │ │ ├── wcsnrev.h │ │ │ │ ├── wcsnroff.h │ │ │ │ ├── wcsnrtombs.h │ │ │ │ ├── wcsnset.h │ │ │ │ ├── wcsnupr.h │ │ │ │ ├── wcsnupr_l.h │ │ │ │ ├── wcsoff.h │ │ │ │ ├── wcspbrk.h │ │ │ │ ├── wcspcpy.h │ │ │ │ ├── wcspncpy.h │ │ │ │ ├── wcsrchr.h │ │ │ │ ├── wcsrchrnul.h │ │ │ │ ├── wcsrev.h │ │ │ │ ├── wcsroff.h │ │ │ │ ├── wcsrstrip.h │ │ │ │ ├── wcsrtombs.h │ │ │ │ ├── wcssep.h │ │ │ │ ├── wcsset.h │ │ │ │ ├── wcsspn.h │ │ │ │ ├── wcsstr.h │ │ │ │ ├── wcsstrip.h │ │ │ │ ├── wcsto32.h │ │ │ │ ├── wcsto32_l.h │ │ │ │ ├── wcsto32_r.h │ │ │ │ ├── wcsto64.h │ │ │ │ ├── wcsto64_l.h │ │ │ │ ├── wcsto64_r.h │ │ │ │ ├── wcstod.h │ │ │ │ ├── wcstod_l.h │ │ │ │ ├── wcstof.h │ │ │ │ ├── wcstof_l.h │ │ │ │ ├── wcstok.h │ │ │ │ ├── wcstol.h │ │ │ │ ├── wcstol_l.h │ │ │ │ ├── wcstol_r.h │ │ │ │ ├── wcstold.h │ │ │ │ ├── wcstold_l.h │ │ │ │ ├── wcstoll.h │ │ │ │ ├── wcstoll_l.h │ │ │ │ ├── wcstoll_r.h │ │ │ │ ├── wcstou32.h │ │ │ │ ├── wcstou32_l.h │ │ │ │ ├── wcstou32_r.h │ │ │ │ ├── wcstou64.h │ │ │ │ ├── wcstou64_l.h │ │ │ │ ├── wcstou64_r.h │ │ │ │ ├── wcstoul.h │ │ │ │ ├── wcstoul_l.h │ │ │ │ ├── wcstoul_r.h │ │ │ │ ├── wcstoull.h │ │ │ │ ├── wcstoull_l.h │ │ │ │ ├── wcstoull_r.h │ │ │ │ ├── wcsupr.h │ │ │ │ ├── wcsupr_l.h │ │ │ │ ├── wcsverscmp.h │ │ │ │ ├── wcswidth.h │ │ │ │ ├── wcsxfrm.h │ │ │ │ ├── wcsxfrm_l.h │ │ │ │ ├── wctob.h │ │ │ │ ├── wcwidth.h │ │ │ │ ├── wildwcscasecmp.h │ │ │ │ ├── wildwcscasecmp_l.h │ │ │ │ ├── wildwcscmp.h │ │ │ │ ├── wmemcasecmp.h │ │ │ │ ├── wmemcasecmp_l.h │ │ │ │ ├── wmemchr.h │ │ │ │ ├── wmemcmp.h │ │ │ │ ├── wmemcpy.h │ │ │ │ ├── wmemmove.h │ │ │ │ ├── wmempcpy.h │ │ │ │ ├── wmempmove.h │ │ │ │ ├── wmempset.h │ │ │ │ ├── wmemset.h │ │ │ │ ├── wprintf.h │ │ │ │ ├── wprintf_unlocked.h │ │ │ │ ├── wscanf.h │ │ │ │ └── wscanf_unlocked.h │ │ │ ├── wctype │ │ │ │ ├── _isleadbyte_l.h │ │ │ │ ├── isleadbyte.h │ │ │ │ ├── iswalnum.h │ │ │ │ ├── iswalnum_l.h │ │ │ │ ├── iswalpha.h │ │ │ │ ├── iswalpha_l.h │ │ │ │ ├── iswascii.h │ │ │ │ ├── iswblank.h │ │ │ │ ├── iswblank_l.h │ │ │ │ ├── iswcntrl.h │ │ │ │ ├── iswcntrl_l.h │ │ │ │ ├── iswctype.h │ │ │ │ ├── iswctype_l.h │ │ │ │ ├── iswdigit.h │ │ │ │ ├── iswdigit_l.h │ │ │ │ ├── iswgraph.h │ │ │ │ ├── iswgraph_l.h │ │ │ │ ├── iswlower.h │ │ │ │ ├── iswlower_l.h │ │ │ │ ├── iswprint.h │ │ │ │ ├── iswprint_l.h │ │ │ │ ├── iswpunct.h │ │ │ │ ├── iswpunct_l.h │ │ │ │ ├── iswspace.h │ │ │ │ ├── iswspace_l.h │ │ │ │ ├── iswsymcont.h │ │ │ │ ├── iswsymcont_l.h │ │ │ │ ├── iswsymstrt.h │ │ │ │ ├── iswsymstrt_l.h │ │ │ │ ├── iswupper.h │ │ │ │ ├── iswupper_l.h │ │ │ │ ├── iswxdigit.h │ │ │ │ ├── iswxdigit_l.h │ │ │ │ ├── towctrans.h │ │ │ │ ├── towctrans_l.h │ │ │ │ ├── towlower.h │ │ │ │ ├── towlower_l.h │ │ │ │ ├── towupper.h │ │ │ │ ├── towupper_l.h │ │ │ │ ├── wctrans.h │ │ │ │ ├── wctrans_l.h │ │ │ │ ├── wctype.h │ │ │ │ └── wctype_l.h │ │ │ └── wordexp │ │ │ │ └── wordfree.h │ │ ├── malloc.h │ │ ├── parts.uchar.string.h │ │ ├── signal.h │ │ ├── ssp.string.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── sys.auxv.h │ │ ├── sys.signal.h │ │ ├── template │ │ │ ├── MB_CUR_MAX.h │ │ │ ├── __libc_enable_secure.h │ │ │ ├── _hex-values.h │ │ │ ├── _hex_value.h │ │ │ ├── argp.h │ │ │ ├── daylight.h │ │ │ ├── dstbias.h │ │ │ ├── environ.h │ │ │ ├── format-printf.h │ │ │ ├── format-scanf.h │ │ │ ├── getdate_err.h │ │ │ ├── getopt.h │ │ │ ├── hex.h │ │ │ ├── itoa_digits.h │ │ │ ├── libiberty_concat_ptr.h │ │ │ ├── locN.h │ │ │ ├── lockop.h │ │ │ ├── mbcasemap.h │ │ │ ├── mbctype.h │ │ │ ├── program_invocation_name.h │ │ │ ├── re_syntax_options.h │ │ │ ├── signgam.h │ │ │ ├── stdstreams.h │ │ │ ├── stdtty.h │ │ │ ├── suboptarg.h │ │ │ ├── timezone.h │ │ │ ├── tzname.h │ │ │ ├── unicode_utf8seqlen.h │ │ │ └── utf8-seqlen.h │ │ ├── unicode.h │ │ └── unistd.h │ ├── libcmdline │ │ ├── api.h │ │ ├── decode.h │ │ └── encode.h │ ├── libcpustate │ │ ├── api.h │ │ ├── apply.h │ │ ├── asm │ │ │ ├── features.h │ │ │ └── register.h │ │ └── register.h │ ├── libdebuginfo │ │ ├── addr2line.h │ │ ├── api.h │ │ ├── cfi_entry.h │ │ ├── debug_aranges.h │ │ ├── debug_frame.h │ │ ├── debug_info.h │ │ ├── debug_line.h │ │ ├── dwarf.h │ │ ├── errno.h │ │ ├── repr.h │ │ ├── symtab.h │ │ └── unwind.h │ ├── libdemangle │ │ ├── api.h │ │ ├── demangle.h │ │ └── gcc.h │ ├── libdisasm │ │ ├── api.h │ │ ├── disassembler.h │ │ └── format.h │ ├── libdl │ │ ├── api.h │ │ ├── asm │ │ │ └── dlfcn.h │ │ ├── bits │ │ │ └── dlfcn.h │ │ ├── coreops.def │ │ ├── extension.h │ │ ├── module.h │ │ └── tls.h │ ├── libemu86 │ │ ├── api.h │ │ ├── eflags.h │ │ ├── emu │ │ │ ├── _notsup.c.inl │ │ │ ├── adcx.c.inl │ │ │ ├── andn.c.inl │ │ │ ├── arith.c.inl │ │ │ ├── arith2.c.inl │ │ │ ├── bcd.c.inl │ │ │ ├── bitscan.c.inl │ │ │ ├── bittest.c.inl │ │ │ ├── blsx.c.inl │ │ │ ├── bound.c.inl │ │ │ ├── bswap.c.inl │ │ │ ├── call.c.inl │ │ │ ├── cbw.c.inl │ │ │ ├── clts.c.inl │ │ │ ├── cmovcc.c.inl │ │ │ ├── cmps.c.inl │ │ │ ├── cmpxchg.c.inl │ │ │ ├── cmpxchgb.c.inl │ │ │ ├── cpuid.c.inl │ │ │ ├── enter.c.inl │ │ │ ├── flush.c.inl │ │ │ ├── hlt.c.inl │ │ │ ├── incdec.c.inl │ │ │ ├── int.c.inl │ │ │ ├── io.c.inl │ │ │ ├── iret.c.inl │ │ │ ├── jcc.c.inl │ │ │ ├── jmp.c.inl │ │ │ ├── lcall.c.inl │ │ │ ├── lea.c.inl │ │ │ ├── leave.c.inl │ │ │ ├── ljmp.c.inl │ │ │ ├── lods.c.inl │ │ │ ├── loop.c.inl │ │ │ ├── lret.c.inl │ │ │ ├── lxs.c.inl │ │ │ ├── misc.c.inl │ │ │ ├── misc2.c.inl │ │ │ ├── mov-creg.c.inl │ │ │ ├── mov-dreg.c.inl │ │ │ ├── mov-imm.c.inl │ │ │ ├── mov-moffs.c.inl │ │ │ ├── mov-sreg.c.inl │ │ │ ├── mov.c.inl │ │ │ ├── movbe.c.inl │ │ │ ├── movdir64b.c.inl │ │ │ ├── movnti.c.inl │ │ │ ├── movs.c.inl │ │ │ ├── movsx.c.inl │ │ │ ├── movsxd.c.inl │ │ │ ├── movzx.c.inl │ │ │ ├── msr.c.inl │ │ │ ├── nop.c.inl │ │ │ ├── pext.c.inl │ │ │ ├── pmode.c.inl │ │ │ ├── popcnt.c.inl │ │ │ ├── push-imm.c.inl │ │ │ ├── push-pop-sreg.c.inl │ │ │ ├── push-pop-util.h │ │ │ ├── push-pop.c.inl │ │ │ ├── pusha-popa.c.inl │ │ │ ├── pushf-popf.c.inl │ │ │ ├── ret.c.inl │ │ │ ├── rorx.c.inl │ │ │ ├── sahf-lahf.c.inl │ │ │ ├── salc.c.inl │ │ │ ├── scas.c.inl │ │ │ ├── shift.c.inl │ │ │ ├── shift2.c.inl │ │ │ ├── shiftx.c.inl │ │ │ ├── stcf.c.inl │ │ │ ├── stdf.c.inl │ │ │ ├── stif.c.inl │ │ │ ├── stos.c.inl │ │ │ ├── string-util.h │ │ │ ├── syscall.c.inl │ │ │ ├── sysenter.c.inl │ │ │ ├── sysexit.c.inl │ │ │ ├── sysret.c.inl │ │ │ ├── xadd.c.inl │ │ │ ├── xchg.c.inl │ │ │ ├── xlatb.c.inl │ │ │ └── xop-tbm.c.inl │ │ ├── emu86.c │ │ ├── emu86.h │ │ ├── emulate.c.inl │ │ └── helpers.h │ ├── libgen.h │ ├── libiberty.h │ ├── libiberty │ │ ├── ansidecl.h │ │ ├── dyn-string.h │ │ ├── libiberty.h │ │ ├── objalloc.h │ │ ├── partition.h │ │ ├── sort.h │ │ └── timeval-utils.h │ ├── libiconv │ │ ├── api.h │ │ ├── codec.h │ │ ├── iconv.h │ │ ├── stdiconv.h │ │ └── transliterate.h │ ├── libinstrlen │ │ ├── api.h │ │ ├── bits │ │ │ └── instrlen.h │ │ └── instrlen.h │ ├── libintl.h │ ├── libio.h │ ├── libjson │ │ ├── api.h │ │ ├── generator.h │ │ ├── parser.h │ │ └── writer.h │ ├── libkeymap │ │ ├── api.h │ │ └── keymap.h │ ├── libm │ │ ├── acos.h │ │ ├── acosh.h │ │ ├── api.h │ │ ├── asin.h │ │ ├── asinh.h │ │ ├── asm │ │ │ ├── _builtin.h │ │ │ ├── atan.h │ │ │ ├── atan2.h │ │ │ ├── builtin.h │ │ │ ├── ceil.h │ │ │ ├── exp.h │ │ │ ├── expm1.h │ │ │ ├── fabs.h │ │ │ ├── fcomp.h │ │ │ ├── floor.h │ │ │ ├── inf.h │ │ │ ├── lrint.h │ │ │ ├── lround.h │ │ │ ├── nan.h │ │ │ ├── rint.h │ │ │ ├── round.h │ │ │ ├── significand.h │ │ │ ├── sqrt.h │ │ │ └── trunc.h │ │ ├── atan.h │ │ ├── atan2.h │ │ ├── atanh.h │ │ ├── cbrt.h │ │ ├── ceil.h │ │ ├── copysign.h │ │ ├── cos.h │ │ ├── cosh.h │ │ ├── erf.h │ │ ├── erfc.h │ │ ├── exp.h │ │ ├── exp2.h │ │ ├── expm1.h │ │ ├── fabs.h │ │ ├── fcomp.h │ │ ├── fdlibm.h │ │ ├── finite.h │ │ ├── floor.h │ │ ├── fmod.h │ │ ├── fpclassify.h │ │ ├── frexp.h │ │ ├── hypot.h │ │ ├── ilogb.h │ │ ├── inf.h │ │ ├── iscanonical.h │ │ ├── isinf.h │ │ ├── isnan.h │ │ ├── issignaling.h │ │ ├── j0.h │ │ ├── j1.h │ │ ├── jn.h │ │ ├── kernel_cos.h │ │ ├── kernel_rem_pio2.h │ │ ├── kernel_sin.h │ │ ├── kernel_tan.h │ │ ├── ldexp.h │ │ ├── lgamma.h │ │ ├── log.h │ │ ├── log10.h │ │ ├── log1p.h │ │ ├── log2.h │ │ ├── logb.h │ │ ├── lrint.h │ │ ├── lround.h │ │ ├── matherr.h │ │ ├── modf.h │ │ ├── nan.h │ │ ├── nextafter.h │ │ ├── nexttoward.h │ │ ├── nextup.h │ │ ├── pone.h │ │ ├── pow.h │ │ ├── pzero.h │ │ ├── readme.md │ │ ├── rem_pio2.h │ │ ├── remainder.h │ │ ├── remquo.h │ │ ├── rint.h │ │ ├── round.h │ │ ├── roundeven.h │ │ ├── scalb.h │ │ ├── scalbn.h │ │ ├── signbit.h │ │ ├── significand.h │ │ ├── sin.h │ │ ├── sincos.h │ │ ├── sincos_table.h │ │ ├── sinh.h │ │ ├── sqrt.h │ │ ├── tan.h │ │ ├── tanh.h │ │ ├── tgamma.h │ │ ├── trunc.h │ │ ├── y0.h │ │ ├── y1.h │ │ └── yn.h │ ├── libpciaccess │ │ ├── api.h │ │ ├── config.h │ │ ├── paths.h │ │ └── pciaccess.h │ ├── libphys │ │ ├── api.h │ │ └── phys.h │ ├── libregdump │ │ ├── api.h │ │ ├── printer.h │ │ └── register.h │ ├── libregex │ │ ├── api.h │ │ ├── regcomp.h │ │ └── regexec.h │ ├── libsctrace │ │ ├── api.h │ │ ├── repr-types.h │ │ └── sctrace.h │ ├── libservice │ │ ├── api.h │ │ ├── client.h │ │ ├── server.h │ │ └── types.h │ ├── libsvgadrv │ │ ├── api.h │ │ ├── chipset.h │ │ ├── chipsets │ │ │ ├── bochsvbe.h │ │ │ ├── vesa.h │ │ │ ├── vga.h │ │ │ └── vmware.h │ │ └── util │ │ │ └── vgaio.h │ ├── libterm │ │ ├── api.h │ │ └── termio.h │ ├── libunwind │ │ ├── api.h │ │ ├── asm │ │ │ ├── features.h │ │ │ └── isa.h │ │ ├── cfi.h │ │ ├── cfi │ │ │ ├── arm.h │ │ │ ├── i386.h │ │ │ └── x86_64.h │ │ ├── dwarf.h │ │ ├── eh_frame.h │ │ ├── errno.h │ │ ├── except.h │ │ ├── register.h │ │ └── unwind.h │ ├── libutil.h │ ├── libvideo │ │ ├── README.md │ │ ├── cline.h │ │ ├── color.h │ │ ├── compositor │ │ │ ├── api.h │ │ │ ├── compositor.h │ │ │ └── serial.h │ │ ├── cpoint.h │ │ ├── crect.h │ │ ├── driver │ │ │ ├── adapter.h │ │ │ ├── api.h │ │ │ └── monitor.h │ │ ├── float.h │ │ ├── gfx │ │ │ ├── anim.h │ │ │ ├── api.h │ │ │ ├── blend.h │ │ │ ├── blendcolors.h │ │ │ ├── buffer.h │ │ │ ├── buffer │ │ │ │ ├── empty.h │ │ │ │ ├── rambuffer.h │ │ │ │ ├── ramfdbuffer.h │ │ │ │ └── rle.h │ │ │ ├── codec │ │ │ │ ├── codec-extra.h │ │ │ │ ├── codec.h │ │ │ │ ├── converter.h │ │ │ │ └── palette.h │ │ │ ├── display.h │ │ │ ├── font.h │ │ │ ├── fonts │ │ │ │ └── tlft.h │ │ │ ├── gfx-flags.h │ │ │ ├── gfx.h │ │ │ ├── gfx │ │ │ │ └── swgfx.h │ │ │ ├── polygon.h │ │ │ ├── serial.h │ │ │ ├── serial │ │ │ │ └── packet.h │ │ │ ├── surface-defs.h │ │ │ └── surface.h │ │ ├── line.h │ │ ├── point.h │ │ ├── rect.h │ │ └── types.h │ ├── libvio │ │ ├── access.h │ │ ├── api.h │ │ ├── userviofd.h │ │ └── vio.h │ ├── libviocore │ │ ├── api.h │ │ ├── bits │ │ │ └── viocore.h │ │ └── viocore.h │ ├── libvm86 │ │ ├── api.h │ │ └── emulator.h │ ├── libzlib │ │ ├── api.h │ │ ├── error.h │ │ └── inflate.h │ ├── limits.h │ ├── link.h │ ├── linux │ │ ├── agpgart.h │ │ ├── bits │ │ │ └── posix_types.h │ │ ├── byteorder │ │ │ ├── _common.h │ │ │ ├── big_endian.h │ │ │ └── little_endian.h │ │ ├── capability.h │ │ ├── close_range.h │ │ ├── fcntl.h │ │ ├── fd.h │ │ ├── fs.h │ │ ├── futex.h │ │ ├── hdreg.h │ │ ├── if_arp.h │ │ ├── if_ether.h │ │ ├── if_fddi.h │ │ ├── inotify.h │ │ ├── ioctl.h │ │ ├── kcmp.h │ │ ├── kd.h │ │ ├── kernel.h │ │ ├── limits.h │ │ ├── magic.h │ │ ├── msdos_fs.h │ │ ├── net.h │ │ ├── param.h │ │ ├── pci.h │ │ ├── posix_types.h │ │ ├── prctl.h │ │ ├── socket.h │ │ ├── sockios.h │ │ ├── stddef.h │ │ ├── swab.h │ │ ├── sysinfo.h │ │ ├── termios.h │ │ ├── timerfd.h │ │ ├── types.h │ │ ├── unistd.h │ │ ├── vt.h │ │ └── xattr.h │ ├── locale.h │ ├── lock-intern.h │ ├── machine-sp.h │ ├── machine │ │ ├── _default_types.h │ │ ├── _endian.h │ │ ├── _time.h │ │ ├── _types.h │ │ ├── ansi.h │ │ ├── endian.h │ │ ├── ieeefp.h │ │ ├── malloc.h │ │ ├── param.h │ │ ├── setjmp-dj.h │ │ ├── setjmp.h │ │ ├── stdlib.h │ │ ├── termios.h │ │ ├── time.h │ │ └── types.h │ ├── malloc.h │ ├── malloc_np.h │ ├── malloca.h │ ├── math.h │ ├── mbctype.h │ ├── mbstring.h │ ├── mem.h │ ├── memory │ ├── memory.h │ ├── minmax.h │ ├── mntent.h │ ├── monetary.h │ ├── mqueue.h │ ├── mutex │ ├── nan.h │ ├── ndir.h │ ├── net │ │ ├── bits │ │ │ └── types.h │ │ ├── ethernet.h │ │ ├── if.h │ │ ├── if_arp.h │ │ └── if_packet.h │ ├── netdb.h │ ├── netinet │ │ ├── asm │ │ │ ├── in.h │ │ │ ├── ipport.h │ │ │ └── ipproto.h │ │ ├── bits │ │ │ ├── group_req.h │ │ │ ├── in6_addr.h │ │ │ ├── in6_pktinfo.h │ │ │ ├── in_addr.h │ │ │ ├── in_addr_t.h │ │ │ ├── in_pktinfo.h │ │ │ ├── ip6_mtuinfo.h │ │ │ ├── ip_mreq.h │ │ │ ├── ip_mreqn.h │ │ │ ├── ip_msfilter.h │ │ │ ├── ip_opts.h │ │ │ ├── ipv6_mreq.h │ │ │ ├── sockaddr_in.h │ │ │ └── sockaddr_in6.h │ │ ├── ether.h │ │ ├── icmp6.h │ │ ├── if_ether.h │ │ ├── if_fddi.h │ │ ├── if_tr.h │ │ ├── igmp.h │ │ ├── in.h │ │ ├── in_systm.h │ │ ├── ip.h │ │ ├── ip6.h │ │ ├── ip_icmp.h │ │ ├── ipport.h │ │ ├── ipproto.h │ │ ├── tcp.h │ │ └── udp.h │ ├── netpacket │ │ └── packet.h │ ├── new │ ├── new.h │ ├── newlib.h │ ├── nl_types.h │ ├── nt │ │ ├── README.md │ │ ├── __stdinc.h │ │ ├── debugapi.h │ │ ├── errhandlingapi.h │ │ ├── fileapi.h │ │ ├── guid.h │ │ ├── handleapi.h │ │ ├── heapapi.h │ │ ├── interlockedapi.h │ │ ├── libloaderapi.h │ │ ├── memoryapi.h │ │ ├── messages.h │ │ ├── namedpipeapi.h │ │ ├── pe.h │ │ ├── poppack.h │ │ ├── processenv.h │ │ ├── processthreadsapi.h │ │ ├── profileapi.h │ │ ├── pshpack1.h │ │ ├── pshpack2.h │ │ ├── pshpack4.h │ │ ├── pshpack8.h │ │ ├── startup.h │ │ ├── stringapiset.h │ │ ├── synchapi.h │ │ ├── sysinfoapi.h │ │ ├── tib.h │ │ ├── timezoneapi.h │ │ ├── types.h │ │ ├── wincon.h │ │ ├── wingdi.h │ │ └── winnls.h │ ├── objalloc.h │ ├── obstack.h │ ├── optimized │ │ ├── error.h │ │ ├── ssp.string.h │ │ ├── string.h │ │ └── unistd.h │ ├── osfcn.h │ ├── partition.h │ ├── parts │ │ ├── assert-failed.h │ │ ├── assert.h │ │ ├── malloca.h │ │ ├── printf-config.h │ │ ├── redirect-exec.h │ │ ├── timespec-cxx-support.h │ │ ├── timeval-cxx-support.h │ │ ├── uchar │ │ │ ├── direct.h │ │ │ ├── fcntl.h │ │ │ ├── format-printer.h │ │ │ ├── inttypes.h │ │ │ ├── io.h │ │ │ ├── process.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ │ ├── mman.h │ │ │ │ └── stat.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── utime.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── waitmacros.h │ │ └── wchar │ │ │ ├── fcntl.h │ │ │ ├── format-printer.h │ │ │ ├── process.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── sys │ │ │ └── stat.h │ │ │ ├── unistd.h │ │ │ └── utime.h │ ├── paths.h │ ├── pciaccess.h │ ├── poll.h │ ├── printf.h │ ├── process.h │ ├── pthread.h │ ├── pthread_np.h │ ├── pty.h │ ├── pwd.h │ ├── random.h │ ├── re_comp.h │ ├── readpassphrase.h │ ├── regex.h │ ├── regexp.h │ ├── resolv.h │ ├── rpc │ │ └── netdb.h │ ├── sal.h │ ├── sched.h │ ├── search.h │ ├── semaphore.h │ ├── setjmp.h │ ├── sgtty.h │ ├── shadow.h │ ├── share.h │ ├── siginfo.h │ ├── signal.h │ ├── sort.h │ ├── spawn.h │ ├── spin-lock.h │ ├── ssp │ │ ├── chk.h │ │ ├── ssp.h │ │ └── string.h │ ├── stack_unwind.h │ ├── std.h │ ├── stdalign.h │ ├── stdarg.h │ ├── stdatomic.h │ ├── stdbit.h │ ├── stdbool.h │ ├── stdc-predef.h │ ├── stdckdint.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdio_ext.h │ ├── stdlib.h │ ├── stdnoreturn.h │ ├── string.h │ ├── stringlist.h │ ├── strings.h │ ├── stropts.h │ ├── struct.h │ ├── symcat.h │ ├── sys │ │ ├── _default_fcntl.h │ │ ├── _intsup.h │ │ ├── _iovec.h │ │ ├── _null.h │ │ ├── _pthreadtypes.h │ │ ├── _sigset.h │ │ ├── _sockaddr_storage.h │ │ ├── _stdarg.h │ │ ├── _stdint.h │ │ ├── _timespec.h │ │ ├── _timeval.h │ │ ├── _types.h │ │ ├── acct.h │ │ ├── aiocb.h │ │ ├── ansi.h │ │ ├── atomic.h │ │ ├── auxv.h │ │ ├── bitstring.h │ │ ├── bitypes.h │ │ ├── bsdtypes.h │ │ ├── bswap.h │ │ ├── byteorder.h │ │ ├── capability.h │ │ ├── cdefs.h │ │ ├── common_ansi.h │ │ ├── common_int_const.h │ │ ├── common_int_fmtio.h │ │ ├── common_int_limits.h │ │ ├── common_int_mwgwtypes.h │ │ ├── common_int_types.h │ │ ├── common_limits.h │ │ ├── common_wchar_limits.h │ │ ├── config.h │ │ ├── dir.h │ │ ├── dirent.h │ │ ├── elf.h │ │ ├── elf_386.h │ │ ├── elf_SPARC.h │ │ ├── elf_amd64.h │ │ ├── elf_notes.h │ │ ├── elftypes.h │ │ ├── endian.h │ │ ├── epoll.h │ │ ├── errno.h │ │ ├── eventfd.h │ │ ├── exec_elf.h │ │ ├── fcntl.h │ │ ├── fcntlcom.h │ │ ├── feature_tests.h │ │ ├── features.h │ │ ├── featuretest.h │ │ ├── file.h │ │ ├── filio.h │ │ ├── fsuid.h │ │ ├── inotify.h │ │ ├── int_const.h │ │ ├── int_fmtio.h │ │ ├── int_limits.h │ │ ├── int_types.h │ │ ├── inttypes.h │ │ ├── io.h │ │ ├── ioccom.h │ │ ├── ioctl.h │ │ ├── ipc.h │ │ ├── isa_defs.h │ │ ├── kd.h │ │ ├── klog.h │ │ ├── link.h │ │ ├── loadavg.h │ │ ├── mkdev.h │ │ ├── mman.h │ │ ├── mmio.h │ │ ├── mount.h │ │ ├── msg.h │ │ ├── ndir.h │ │ ├── null.h │ │ ├── param.h │ │ ├── pci.h │ │ ├── perm.h │ │ ├── poll.h │ │ ├── prctl.h │ │ ├── procfs.h │ │ ├── profil.h │ │ ├── ptrace.h │ │ ├── queue.h │ │ ├── random.h │ │ ├── reboot.h │ │ ├── resource.h │ │ ├── sched.h │ │ ├── select.h │ │ ├── sem.h │ │ ├── sendfile.h │ │ ├── setjmp.h │ │ ├── shm.h │ │ ├── signal.h │ │ ├── signalfd.h │ │ ├── single_threaded.h │ │ ├── socket.h │ │ ├── socketvar.h │ │ ├── sockio.h │ │ ├── stat.h │ │ ├── statfs.h │ │ ├── statvfs.h │ │ ├── stdarg.h │ │ ├── stdbool.h │ │ ├── stdint.h │ │ ├── stdtypes.h │ │ ├── stropts.h │ │ ├── swap.h │ │ ├── syscall-proto.h │ │ ├── syscall.h │ │ ├── sysinfo.h │ │ ├── syslimits.h │ │ ├── syslog.h │ │ ├── sysmacros.h │ │ ├── systeminfo.h │ │ ├── termio.h │ │ ├── termios.h │ │ ├── termiox.h │ │ ├── time.h │ │ ├── timeb.h │ │ ├── timerfd.h │ │ ├── times.h │ │ ├── timespec.h │ │ ├── timex.h │ │ ├── ttychars.h │ │ ├── ttycom.h │ │ ├── ttydefaults.h │ │ ├── ttydev.h │ │ ├── types.h │ │ ├── ucontext.h │ │ ├── uio.h │ │ ├── un.h │ │ ├── unistd.h │ │ ├── user.h │ │ ├── ustat.h │ │ ├── utime.h │ │ ├── utsname.h │ │ ├── vfs.h │ │ ├── vlimit.h │ │ ├── vt.h │ │ ├── vtimes.h │ │ ├── wait.h │ │ └── xattr.h │ ├── syscall.h │ ├── sysexits.h │ ├── syslimits.h │ ├── syslog.h │ ├── system-test │ │ ├── api.h │ │ └── ctest.h │ ├── tar.h │ ├── tchar.h │ ├── termio.h │ ├── termios.h │ ├── tgmath.h │ ├── thread.h │ ├── threads.h │ ├── time.h │ ├── timeval-utils.h │ ├── ttyent.h │ ├── type_traits │ ├── typeinfo │ ├── uchar.h │ ├── ucontext.h │ ├── ulimit.h │ ├── unicode.h │ ├── unistd.h │ ├── unwind.h │ ├── ustat.h │ ├── util.h │ ├── utility │ ├── utime.h │ ├── utmp.h │ ├── utmpx.h │ ├── vadefs.h │ ├── values.h │ ├── vcruntime.h │ ├── vcruntime_startup.h │ ├── vcruntime_string.h │ ├── vfork.h │ ├── vis.h │ ├── wait.h │ ├── waitflags.h │ ├── waitstatus.h │ ├── wchar.h │ ├── wctype.h │ ├── wordexp.h │ └── xlocale.h ├── misc │ ├── README.md │ ├── build │ │ ├── autoconfig.dee │ │ ├── editorconfig.dee │ │ ├── make-vs-proj-update-mioptions.dee │ │ ├── make-vs-proj.dee │ │ └── vsautoconfig.dee │ ├── config │ │ ├── README.md │ │ ├── configs.dee │ │ ├── files.dee │ │ ├── options-db.dee │ │ ├── options-db.txt │ │ ├── options.dee │ │ └── utils.dee │ ├── doc │ │ └── terms.md │ ├── fonts │ │ └── tlft │ │ │ ├── .gitignore │ │ │ └── build_u_vga16.dee │ ├── gallery │ │ ├── Xorg-first-time.png │ │ ├── dbg_disasm.png │ │ ├── dbg_eval.png │ │ ├── dbg_hex.png │ │ ├── dbg_trace.png │ │ └── lsbin.png │ ├── gdbridge │ │ ├── .gitignore │ │ ├── gdbridge.c │ │ └── gdbridge.dee │ ├── git-hooks │ │ ├── pre-commit │ │ └── pre-commit.dee │ ├── libgen │ │ ├── assert_offsetof.dee │ │ ├── autom8.dee │ │ ├── autom8 │ │ │ ├── autogen.dee │ │ │ ├── cfi.dee │ │ │ ├── config.dee │ │ │ ├── enum.dee │ │ │ ├── fdirent_hash.dee │ │ │ ├── rpc.dee │ │ │ └── warning.dee │ │ ├── c │ │ │ ├── cheaders.dee │ │ │ ├── escape.dee │ │ │ ├── gccncx.dee │ │ │ ├── generator.dee │ │ │ ├── globals.dee │ │ │ ├── loader.dee │ │ │ ├── namespace.dee │ │ │ ├── parser.dee │ │ │ ├── ppexpr.dee │ │ │ ├── typeclass.dee │ │ │ ├── usersource.dee │ │ │ ├── wchar.dee │ │ │ └── writer.dee │ │ ├── cfi │ │ │ ├── arch │ │ │ │ ├── arm.dee │ │ │ │ ├── i386.dee │ │ │ │ └── x86_64.dee │ │ │ ├── comp.dee │ │ │ ├── disasm.dee │ │ │ └── rpc.dee │ │ ├── checker │ │ │ ├── checker.dee │ │ │ ├── cparser.dee │ │ │ ├── ctype.dee │ │ │ └── cvalue.dee │ │ ├── cimpplify │ │ │ ├── def │ │ │ │ ├── gcc.h │ │ │ │ ├── generic.h │ │ │ │ ├── i386-gcc.h │ │ │ │ ├── i386-kos-userspace.h │ │ │ │ ├── kos-userspace.h │ │ │ │ ├── kos.h │ │ │ │ └── x86_64-gcc.h │ │ │ └── simplify.dee │ │ ├── converter.dee │ │ ├── crtfeatures │ │ │ ├── cfile.dee │ │ │ ├── crtfeatures.dee │ │ │ └── crtgen.dee │ │ ├── exceptinfo.dee │ │ ├── fdirent_hash.dee │ │ ├── gitignore.dee │ │ ├── libkeymap │ │ │ ├── compiler.dee │ │ │ ├── linker.dee │ │ │ └── parser.dee │ │ ├── libtlft │ │ │ └── compiler.dee │ │ ├── llrbtree.dee │ │ ├── optiexpr.dee │ │ ├── optiprintf.dee │ │ ├── rbtree.dee │ │ ├── strendN.dee │ │ └── stringswitch.dee │ ├── libmagic │ │ ├── libmagic.dee │ │ ├── steps │ │ │ ├── c.dee │ │ │ ├── custom.dee │ │ │ ├── elf.dee │ │ │ ├── elf_dilink.dee │ │ │ ├── keymap.dee │ │ │ ├── mtools-install-sh.dee │ │ │ ├── mtools.dee │ │ │ └── util.dee │ │ └── toolchain │ │ │ ├── checker.dee │ │ │ ├── clang_tidy.dee │ │ │ ├── gcc.dee │ │ │ └── lint.dee │ ├── magicemulator │ │ ├── _common.dee │ │ ├── _options.dee │ │ ├── _reopenhandle.dee │ │ ├── _shadow.dee │ │ ├── _vboxgdb.dee │ │ ├── _vboxgdbinfo.dee │ │ ├── _vboxgdbkos.dee │ │ ├── bochs.dee │ │ ├── qemu.dee │ │ └── vbox.dee │ ├── magicgenerator │ │ ├── generate_headers.dee │ │ ├── generate_syscalls.dee │ │ ├── generate_syscalls_arch.dee │ │ └── ondemand.dee │ ├── make_tool.sh │ ├── make_toolchain.sh │ ├── make_utility.sh │ ├── patches │ │ ├── binutils-2.32.patch │ │ ├── binutils-2.38.patch │ │ ├── binutils-2.45.patch │ │ ├── bochs-2.6.11.patch │ │ ├── busybox-1.31.0.patch │ │ ├── busybox.config │ │ ├── fontconfig-2.13.92.patch │ │ ├── gcc-12.1.0.patch │ │ ├── gcc-15.2.0.patch │ │ ├── gcc-9.1.0.patch │ │ ├── glproto-1.4.15.patch │ │ ├── libdrm-2.4.100.patch │ │ ├── libdrm-2.4.82.patch │ │ ├── libncurses-6.1.patch │ │ ├── libreadline-8.1.patch │ │ ├── libstdc++-12.1.0-arm-kos.patch │ │ ├── libstdc++-12.1.0-i386-kos.patch │ │ ├── libstdc++-12.1.0-x86_64-kos.patch │ │ ├── libstdc++-12.1.0.patch │ │ ├── libstdc++-15.2.0-i386-kos.patch │ │ ├── libstdc++-15.2.0-x86_64-kos.patch │ │ ├── libstdc++-15.2.0.patch │ │ ├── libstdc++-9.1.0-i386-kos.patch │ │ ├── libstdc++-9.1.0-x86_64-kos.patch │ │ ├── libstdc++-9.1.0.patch │ │ ├── libxshmfence-1.3.patch │ │ ├── mtools-4.0.23.patch │ │ ├── myman-2009-10-30.patch │ │ ├── nano-4.4.patch │ │ ├── openssl-1.1.1g.patch │ │ ├── tcc-0.9.27.patch │ │ ├── tree.patch │ │ ├── tty-solitaire-0268d6df09990cbb85682b1ad947b8d602acb097.patch │ │ ├── xf86-input-keyboard-1.6.1.patch │ │ ├── xf86-video-vesa-2.5.0.patch │ │ ├── xinit-1.3.2.patch │ │ ├── xinit-1.4.1.patch │ │ ├── xorg-server-1.12.2.patch │ │ ├── xorg-server-1.20.9.patch │ │ ├── xorgproto-2020.1.patch │ │ ├── xproto-7.0.23.patch │ │ ├── xproto-7.0.31.patch │ │ ├── xtrans-1.2.7.patch │ │ └── xtrans-1.4.0.patch │ ├── scripts │ │ ├── .gitignore │ │ ├── gcc_builtins │ │ │ ├── .gitignore │ │ │ ├── gcc_builtins.dee │ │ │ ├── gcc_builtins_known │ │ │ └── gcc_warnings.dee │ │ ├── libdisasm-x86-veccompress.dee │ │ ├── libdisasm-x86-veccompressvex.dee │ │ ├── libdisasm-x86-vecfmt.dee │ │ ├── libdisasm-x86-veclong.dee │ │ ├── libfreetype2-fix-headers.dee │ │ ├── libglib-fix-headers.dee │ │ ├── libstdc++-fix-identifiers.dee │ │ ├── libstdc++-fix-identifiers.md │ │ ├── printroutes.dee │ │ ├── sysport.dee │ │ └── udpecho.dee │ ├── targets │ │ ├── arm.dee │ │ ├── i386.dee │ │ └── x86_64.dee │ ├── tool-configs │ │ ├── README.md │ │ ├── i386-kos-drivers.cppcheck │ │ ├── i386-kos-kernel.cppcheck │ │ ├── i386-kos-userspace.cppcheck │ │ ├── usertype.dat │ │ ├── vs-launch.vs.json │ │ └── vscode-launch.json │ └── utilities │ │ ├── 2048.sh │ │ ├── README.md │ │ ├── Xorg │ │ ├── libICE.sh │ │ ├── libSM.sh │ │ ├── libX11.sh │ │ ├── libXau.sh │ │ ├── libXaw.sh │ │ ├── libXext.sh │ │ ├── libXfont2.sh │ │ ├── libXft.sh │ │ ├── libXmu.sh │ │ ├── libXpm.sh │ │ ├── libXrender.sh │ │ ├── libXt.sh │ │ ├── libfontenc.sh │ │ ├── libxcb.sh │ │ ├── libxkbfile.sh │ │ ├── libxshmfence.sh │ │ ├── misc │ │ │ ├── video-driver.sh │ │ │ └── xorg-macros.sh │ │ ├── xcb-proto.sh │ │ ├── xclock.sh │ │ ├── xf86-video-vesa.sh │ │ ├── xinit.sh │ │ ├── xkbcomp.sh │ │ ├── xkeyboard-config.sh │ │ ├── xorg-server.sh │ │ ├── xorgproto.sh │ │ └── xtrans.sh │ │ ├── bash.sh │ │ ├── binutils.sh │ │ ├── bsdgames.sh │ │ ├── busybox.sh │ │ ├── coreutils.sh │ │ ├── deemon.sh │ │ ├── deprecated.libXxf86dga.sh │ │ ├── deprecated.twm.sh │ │ ├── deprecated.xf86-input-keyboard.sh │ │ ├── file.sh │ │ ├── fontconfig.sh │ │ ├── fonts.sh │ │ ├── gcc.sh │ │ ├── kos-headers.sh │ │ ├── libbzip2.sh │ │ ├── libdrm.sh │ │ ├── libexpat.sh │ │ ├── libffi.sh │ │ ├── libfreetype2.sh │ │ ├── libglib.sh │ │ ├── libgmp.sh │ │ ├── libjpeg.sh │ │ ├── libjson-c.sh │ │ ├── liblzma.sh │ │ ├── libmpc.sh │ │ ├── libmpfr.sh │ │ ├── libncurses.sh │ │ ├── libpcre.sh │ │ ├── libpixman.sh │ │ ├── libpng.sh │ │ ├── libreadline.sh │ │ ├── libuuid.sh │ │ ├── libzlib.sh │ │ ├── make.sh │ │ ├── mc.sh │ │ ├── minecurses.sh │ │ ├── misc │ │ ├── cmake.sh │ │ ├── gcc_hack.c │ │ ├── gcc_hack.sh │ │ ├── gnu_make.sh │ │ ├── install-DESTDIR.sh │ │ ├── install-sh-prefix.sh │ │ ├── meson.sh │ │ └── target-info.sh │ │ ├── myman.sh │ │ ├── nano.sh │ │ ├── nudoku.sh │ │ ├── nyancat.sh │ │ ├── openssl.sh │ │ ├── pci.ids.sh │ │ ├── python.sh │ │ ├── tcc.sh │ │ ├── testexe.sh │ │ ├── tree.sh │ │ ├── tty-solitaire.sh │ │ └── vitetris.sh └── src │ ├── .sources │ ├── _verify │ ├── arch │ │ ├── arm │ │ │ └── assert_offsets.c │ │ └── i386 │ │ │ ├── assert_error_register_state_type_struct.c │ │ │ └── assert_offsets.c │ ├── assert_types.c │ ├── include-ccompat.c │ ├── include-everything-c++.c │ ├── include-everything-c.c │ ├── include-everything-es-c++.c │ ├── include-everything-es-c.c │ ├── include-everything-es-pure-c++.c │ ├── include-everything-es-pure-c.c │ ├── include-everything-free-c++.c │ ├── include-everything-free-c.c │ ├── include-everything-free-es-c++.c │ ├── include-everything-free-es-c.c │ ├── include-everything-pure-c++.c │ ├── include-everything-pure-c.c │ └── include-everything.h │ ├── apps │ ├── .sources │ ├── getconf │ │ └── getconf.c │ ├── gfx │ │ └── main.c │ ├── init │ │ └── main.c │ ├── insmod │ │ ├── insmod.c │ │ ├── lsmod.c │ │ └── rmmod.c │ ├── keymap │ │ └── main.c │ ├── misc │ │ ├── cc.c │ │ ├── false.c │ │ ├── leaks.c │ │ └── true.c │ ├── playground │ │ └── main.c │ ├── scanpci │ │ └── main.c │ ├── showpic │ │ └── main.c │ ├── snake │ │ └── main.c │ ├── system-test │ │ ├── arch │ │ │ ├── arm │ │ │ │ └── _linker.ld │ │ │ └── i386 │ │ │ │ ├── _linker32.ld │ │ │ │ └── _linker64.ld │ │ ├── main.c │ │ ├── test-cc.c │ │ ├── test-dosabi.c │ │ ├── test-epoll-rpc.c │ │ ├── test-epoll.c │ │ ├── test-fat-symlinks.c │ │ ├── test-fault.c │ │ ├── test-fd.c │ │ ├── test-fifo.c │ │ ├── test-flock.c │ │ ├── test-fs.c │ │ ├── test-ftruncate-after-mmap.c │ │ ├── test-hybrid-bits-nobuiltin.c │ │ ├── test-hybrid-bits.c │ │ ├── test-idata.c │ │ ├── test-inotify-procfs-fd.c │ │ ├── test-inotify-procfs-task.c │ │ ├── test-inotify-procfs.c │ │ ├── test-inotify.c │ │ ├── test-ioperm.c │ │ ├── test-llrbtree.c │ │ ├── test-memfd.c │ │ ├── test-mman.c │ │ ├── test-o_direct.c │ │ ├── test-open-anon-inode.c │ │ ├── test-positional-printf.c │ │ ├── test-pty.c │ │ ├── test-ramfs.c │ │ ├── test-rbtree.c │ │ ├── test-rpc.c │ │ ├── test-signal.c │ │ ├── test-sigsuspend.c │ │ ├── test-sysexcept.c │ │ ├── test-system-rtld-ro.c │ │ ├── test-threads.c │ │ ├── test-timerfd.c │ │ ├── test-unix-socket.c │ │ └── test-vio.c │ └── vconf │ │ └── main.c │ ├── crt0 │ ├── arm │ │ ├── crt0.S │ │ └── crt0S.S │ └── i386 │ │ ├── crt032.S │ │ ├── crt064.S │ │ ├── crt0S32.S │ │ └── crt0S64.S │ ├── kernel │ ├── .sources │ ├── core │ │ ├── .sources │ │ ├── _kernel.ld │ │ ├── arch │ │ │ ├── arm │ │ │ │ ├── exec │ │ │ │ │ └── libdl.S.incbin │ │ │ │ └── syscall │ │ │ │ │ └── wrappers.S │ │ │ └── i386 │ │ │ │ ├── README.md │ │ │ │ ├── boot │ │ │ │ ├── _boot0.S │ │ │ │ ├── _objects.S │ │ │ │ ├── _start32.S │ │ │ │ ├── _start64.S │ │ │ │ ├── acpi.c │ │ │ │ ├── boot.c │ │ │ │ ├── multiboot.c │ │ │ │ └── start.h │ │ │ │ ├── debug │ │ │ │ ├── coredump-impl.c.inl │ │ │ │ ├── coredump.c │ │ │ │ ├── debugtrap-impl.c.inl │ │ │ │ ├── debugtrap.c │ │ │ │ ├── debugtrap32-impl.S │ │ │ │ ├── debugtrap32.S │ │ │ │ ├── debugtrap64-impl.S │ │ │ │ ├── debugtrap64.S │ │ │ │ ├── panic32.S │ │ │ │ └── panic64.S │ │ │ │ ├── debugger │ │ │ │ ├── gdt.c │ │ │ │ ├── input.c │ │ │ │ ├── intrin.c │ │ │ │ ├── isr.S │ │ │ │ ├── isr32.S │ │ │ │ ├── isr64.S │ │ │ │ ├── output.c │ │ │ │ ├── ps2-keymaps.h │ │ │ │ ├── register.c │ │ │ │ ├── rt.c │ │ │ │ ├── rt32-enter.S.inl │ │ │ │ ├── rt32.S │ │ │ │ ├── rt64-enter.S.inl │ │ │ │ └── rt64.S │ │ │ │ ├── except.c │ │ │ │ ├── exec │ │ │ │ ├── core-symbols32.S │ │ │ │ ├── core-symbols64.S │ │ │ │ ├── libdl-compat.S.incbin │ │ │ │ └── libdl.S.incbin │ │ │ │ ├── fault │ │ │ │ ├── decode.c │ │ │ │ ├── decode.h │ │ │ │ ├── emulock.c │ │ │ │ ├── handle_bad_usage.c │ │ │ │ ├── handle_bound_range.c │ │ │ │ ├── handle_breakpoint.c │ │ │ │ ├── handle_divide_by_zero.c │ │ │ │ ├── handle_double_fault.c │ │ │ │ ├── handle_invalid_tss.c │ │ │ │ ├── handle_ms_fastfail.c │ │ │ │ ├── handle_overflow.c │ │ │ │ ├── handle_pagefault.c │ │ │ │ ├── handle_segment_not_present.c │ │ │ │ └── handle_unhandled_idt.c │ │ │ │ ├── idt │ │ │ │ ├── foreach.h │ │ │ │ ├── idt.c │ │ │ │ ├── idt.ld │ │ │ │ ├── idt32-dynamic.S │ │ │ │ ├── idt32-exception.S │ │ │ │ ├── idt32-unused.S │ │ │ │ ├── idt32.S │ │ │ │ ├── idt64-dynamic.S │ │ │ │ ├── idt64-exception.S │ │ │ │ ├── idt64-unused.S │ │ │ │ └── idt64.S │ │ │ │ ├── memory │ │ │ │ ├── breakpoint.c │ │ │ │ ├── detect.c │ │ │ │ ├── mman.c │ │ │ │ ├── paging.S │ │ │ │ ├── paging.c │ │ │ │ ├── paging.h │ │ │ │ ├── paging32-com.h │ │ │ │ ├── paging32-p32.c.inl │ │ │ │ ├── paging32-pae.c.inl │ │ │ │ ├── paging32-share.h │ │ │ │ ├── paging32.S │ │ │ │ ├── paging32.c.inl │ │ │ │ ├── paging64.S │ │ │ │ ├── paging64.c.inl │ │ │ │ ├── phys2virt64.c │ │ │ │ ├── poison-heap.c │ │ │ │ └── slab.c │ │ │ │ ├── misc │ │ │ │ ├── alternatives.c │ │ │ │ ├── arch_prctl.c │ │ │ │ ├── atomic64.c │ │ │ │ ├── atomic64_32.S │ │ │ │ ├── except-handler.c │ │ │ │ ├── except-personality.S │ │ │ │ ├── except-personality.c │ │ │ │ ├── except-personality32.S │ │ │ │ ├── except-personality64.S │ │ │ │ ├── fsgsbase.c │ │ │ │ ├── fsgsbase64-impl.S.inl │ │ │ │ ├── fsgsbase64.S │ │ │ │ ├── gdt.c │ │ │ │ ├── predict32.S │ │ │ │ ├── predict64.S │ │ │ │ ├── rand.c │ │ │ │ ├── restart-interrupt.S │ │ │ │ ├── restart-interrupt32.S │ │ │ │ ├── restart-interrupt64.S │ │ │ │ ├── syslog.c │ │ │ │ ├── vboxgdb.c │ │ │ │ ├── vboxgdb32.S │ │ │ │ ├── vboxgdb64.S │ │ │ │ └── vm86.c │ │ │ │ ├── perm │ │ │ │ ├── iobm.c │ │ │ │ ├── ioperm.c │ │ │ │ └── iopl.c │ │ │ │ ├── sched │ │ │ │ ├── apic.S │ │ │ │ ├── apic.c │ │ │ │ ├── apic32.S │ │ │ │ ├── apic64.S │ │ │ │ ├── cmos.c │ │ │ │ ├── cpuid.c │ │ │ │ ├── fpu.S │ │ │ │ ├── fpu.c │ │ │ │ ├── fpu32.S │ │ │ │ ├── fpu64.S │ │ │ │ ├── ipi.c │ │ │ │ ├── posix-signal-call.c.inl │ │ │ │ ├── posix-signal.c │ │ │ │ ├── rpc-task_serve.S.inl │ │ │ │ ├── rpc.S │ │ │ │ ├── rpc.c │ │ │ │ ├── rpc32.S │ │ │ │ ├── rpc64.S │ │ │ │ ├── sched.S │ │ │ │ ├── sched.c │ │ │ │ ├── sched32.S │ │ │ │ ├── sched64.S │ │ │ │ ├── smp.S │ │ │ │ ├── smp.c │ │ │ │ ├── smp32.S │ │ │ │ ├── smp64.S │ │ │ │ ├── task-clone.c │ │ │ │ ├── task-registers.c │ │ │ │ ├── tsc.S │ │ │ │ ├── tsc.c │ │ │ │ ├── tsc.h │ │ │ │ ├── tsc32.S │ │ │ │ ├── tsc64.S │ │ │ │ ├── tss.c │ │ │ │ ├── tss32.S │ │ │ │ ├── tss64.S │ │ │ │ ├── userkern-rw.c.inl │ │ │ │ └── userkern.c │ │ │ │ └── syscall │ │ │ │ ├── emulate.S │ │ │ │ ├── emulate.c │ │ │ │ ├── emulate32.S │ │ │ │ ├── emulate64.S │ │ │ │ ├── fastpass-impl.S │ │ │ │ ├── fastpass32.S │ │ │ │ ├── fastpass64.S │ │ │ │ ├── router32.S │ │ │ │ ├── router64.S │ │ │ │ ├── syscall-break32.S │ │ │ │ ├── syscall-break64.S │ │ │ │ ├── syscall-int80h-32.S │ │ │ │ ├── syscall-int80h-64.S │ │ │ │ ├── syscall-int80h.S │ │ │ │ ├── syscall-syscall-64.S │ │ │ │ ├── syscall-sysenter-32.S │ │ │ │ ├── syscall-sysenter-64.S │ │ │ │ ├── syscall-sysenter.S │ │ │ │ ├── syscall.c │ │ │ │ ├── sysexit32.S │ │ │ │ ├── sysret64.S │ │ │ │ ├── wrappers32.S │ │ │ │ └── wrappers64.S │ │ ├── debugger-apps │ │ │ ├── asmview.c │ │ │ ├── build-config.c │ │ │ ├── dbg-main.c │ │ │ ├── dmesg.c │ │ │ ├── hexedit.c │ │ │ ├── io.c │ │ │ ├── locals.c │ │ │ ├── thread.c │ │ │ └── util.c │ │ ├── debugger │ │ │ ├── edit.c │ │ │ ├── entry.c │ │ │ ├── eval.c │ │ │ ├── hook.c │ │ │ ├── memory.c │ │ │ ├── output.c │ │ │ ├── rt.c │ │ │ └── util.c │ │ ├── dev │ │ │ ├── aio.c │ │ │ ├── ansitty.c │ │ │ ├── at_scancodes.c │ │ │ ├── at_scancodes.h │ │ │ ├── interrupt.c │ │ │ ├── iovec-aio-buffer.c.inl │ │ │ ├── iovec.c │ │ │ ├── keyboard.c │ │ │ ├── mktty.c │ │ │ ├── mouse.c │ │ │ ├── nic.c │ │ │ ├── pty.c │ │ │ ├── tty.c │ │ │ └── video.c │ │ ├── fd │ │ │ ├── dbg.c │ │ │ ├── fcntl.c │ │ │ ├── handles.c │ │ │ ├── handman.c │ │ │ ├── ioctl.c │ │ │ ├── poll.c │ │ │ ├── readwrite.c │ │ │ ├── router.c │ │ │ ├── sendfile.c │ │ │ ├── syscalls.c │ │ │ └── utils.c │ │ ├── filesys │ │ │ ├── allnodes.c │ │ │ ├── blkdev.c │ │ │ ├── constdir.c │ │ │ ├── devfs-defs.c │ │ │ ├── devfs-disk.c │ │ │ ├── devfs-diskrules.c │ │ │ ├── devfs-spec.c │ │ │ ├── devfs-spec.h │ │ │ ├── devfs.c │ │ │ ├── devnode.c │ │ │ ├── dirent.c │ │ │ ├── dirhandle.c │ │ │ ├── dirhandlex.c │ │ │ ├── dirnode.c │ │ │ ├── fifohandle.c │ │ │ ├── fifonode.c │ │ │ ├── filehandle.c │ │ │ ├── filesys.c │ │ │ ├── flat.c │ │ │ ├── fs.c │ │ │ ├── lnknode.c │ │ │ ├── node.c │ │ │ ├── notify.c │ │ │ ├── null.c │ │ │ ├── nulldefs.c │ │ │ ├── path.c │ │ │ ├── pathdefs.c │ │ │ ├── pathhandle.c │ │ │ ├── pathio.c │ │ │ ├── printnode.c │ │ │ ├── ramfs.c │ │ │ ├── rootfs.c │ │ │ ├── socknode.c │ │ │ ├── super-oobio.c.inl │ │ │ ├── super.c │ │ │ ├── syscalls.c │ │ │ └── vfs.c │ │ ├── memory │ │ │ ├── execabi.c │ │ │ ├── futex-syscalls-impl.c.inl │ │ │ ├── futex-syscalls.c │ │ │ ├── heap-impl.c.inl │ │ │ ├── heap.c │ │ │ ├── malloc-impl.c.inl │ │ │ ├── malloc.c │ │ │ ├── malloc.h │ │ │ ├── meminfo.c │ │ │ ├── memory-zonealloc-impl.c.inl │ │ │ ├── memory.c │ │ │ ├── mman │ │ │ │ ├── cc.c │ │ │ │ ├── debugger.c │ │ │ │ ├── dma.c │ │ │ │ ├── driver-callbacks.c │ │ │ │ ├── driver-handle.c │ │ │ │ ├── driver-kernel_sections.def │ │ │ │ ├── driver-relocate.c.inl │ │ │ │ ├── driver.c │ │ │ │ ├── exec.c │ │ │ │ ├── execabi.c │ │ │ │ ├── fault.c │ │ │ │ ├── futexfd-new.c.inl │ │ │ │ ├── futexfd.c │ │ │ │ ├── kram-map.c │ │ │ │ ├── kram-map.c.inl │ │ │ │ ├── kram-unmap.c │ │ │ │ ├── mbuilder-apply.c │ │ │ │ ├── mbuilder-lock.c │ │ │ │ ├── mbuilder-mapinto.c │ │ │ │ ├── mbuilder-peb.c │ │ │ │ ├── mbuilder-peb.c.inl │ │ │ │ ├── mbuilder.c │ │ │ │ ├── mcoreheap.c │ │ │ │ ├── memfd.c │ │ │ │ ├── mfile-anon.c │ │ │ │ ├── mfile-handle.c │ │ │ │ ├── mfile-lock.c │ │ │ │ ├── mfile-map.c │ │ │ │ ├── mfile-misaligned.c │ │ │ │ ├── mfile-parts.c │ │ │ │ ├── mfile-rw-vio.c.inl │ │ │ │ ├── mfile-rw.c │ │ │ │ ├── mfile-rw.c.inl │ │ │ │ ├── mfile-subregion.c │ │ │ │ ├── mfile-trunc.c │ │ │ │ ├── mfile.c │ │ │ │ ├── mfilemeta.c │ │ │ │ ├── mman-enum-impl.c.inl │ │ │ │ ├── mman-enum.c │ │ │ │ ├── mman-findunmapped.c │ │ │ │ ├── mman-fork.c │ │ │ │ ├── mman-map.c │ │ │ │ ├── mman-map.c.inl │ │ │ │ ├── mman-mlock.c │ │ │ │ ├── mman-msync.c │ │ │ │ ├── mman-remap.c │ │ │ │ ├── mman-rw.c │ │ │ │ ├── mman-rw.c.inl │ │ │ │ ├── mman-unmap.c │ │ │ │ ├── mman-unmap.c.inl │ │ │ │ ├── mman.c │ │ │ │ ├── mnode-advise.c │ │ │ │ ├── mnode-merge.c │ │ │ │ ├── mnode.c │ │ │ │ ├── module-section-cache.c │ │ │ │ ├── module-userelf.c │ │ │ │ ├── module-userelf.h │ │ │ │ ├── module.c │ │ │ │ ├── mpart-blocks.c │ │ │ │ ├── mpart-ll-rw.c.inl │ │ │ │ ├── mpart-ll.c │ │ │ │ ├── mpart-lock.c │ │ │ │ ├── mpart-map-force.c.inl │ │ │ │ ├── mpart-map-node.c.inl │ │ │ │ ├── mpart-map.c │ │ │ │ ├── mpart-map.c.inl │ │ │ │ ├── mpart-rw.c │ │ │ │ ├── mpart-rw.c.inl │ │ │ │ ├── mpart-split.c │ │ │ │ ├── mpart-trim.c │ │ │ │ ├── mpart-unload.c │ │ │ │ ├── mpart.c │ │ │ │ ├── mpartmeta.c │ │ │ │ ├── phys.c │ │ │ │ ├── rangelock.c │ │ │ │ ├── stat.c │ │ │ │ ├── sync.c │ │ │ │ ├── syscalls-maplibrary.c.inl │ │ │ │ └── syscalls.c │ │ │ ├── paging.c │ │ │ ├── poison-heap.c │ │ │ ├── rtm.c │ │ │ ├── slab-impl.c.inl │ │ │ ├── slab.c │ │ │ ├── swap.c │ │ │ ├── trace-malloc-heap.c.inl │ │ │ ├── trace-malloc-kmalloc.inl │ │ │ ├── trace-malloc.c │ │ │ ├── trace-malloc.h │ │ │ └── uvio.c │ │ ├── misc │ │ │ ├── addr2line.c │ │ │ ├── cmdline.c │ │ │ ├── coredump.c │ │ │ ├── dmesg.c │ │ │ ├── entropy.c │ │ │ ├── except-handler-userexcept.c.inl │ │ │ ├── except-handler.c │ │ │ ├── except-libc.c │ │ │ ├── except-syscall.c │ │ │ ├── except-unhandled.c │ │ │ ├── ksysctl.c │ │ │ ├── linux-readdir.c │ │ │ ├── panic.c │ │ │ ├── personality.c │ │ │ ├── pipe.c │ │ │ ├── printk.c │ │ │ ├── profiler.c │ │ │ ├── rand.c │ │ │ ├── refcountable.c │ │ │ ├── selftest.c │ │ │ ├── syscall-properties.c │ │ │ ├── syscall-trace.c │ │ │ ├── syslog.c │ │ │ ├── tb.c │ │ │ ├── uname.c │ │ │ ├── user.c │ │ │ └── validate.c │ │ ├── network │ │ │ ├── arp.c │ │ │ ├── ethernet.c │ │ │ ├── ip.c │ │ │ ├── network.c │ │ │ ├── packet.c │ │ │ ├── socket-create.c │ │ │ ├── socket-syscall.c │ │ │ ├── socket.c │ │ │ ├── udp-socket.c │ │ │ ├── udp.c │ │ │ └── unix-socket.c │ │ └── sched │ │ │ ├── async-threads.c │ │ │ ├── async-worker.c │ │ │ ├── async.c │ │ │ ├── atomic64.c │ │ │ ├── comm.c │ │ │ ├── cpu.c │ │ │ ├── cred.c │ │ │ ├── enum.c │ │ │ ├── epoll.c │ │ │ ├── eventfd.c │ │ │ ├── group.c │ │ │ ├── ipi-task-wake.c.inl │ │ │ ├── ipi.c │ │ │ ├── limit.c │ │ │ ├── pid.c │ │ │ ├── posix-signal.c │ │ │ ├── posix-signalfd.c │ │ │ ├── prctl.c │ │ │ ├── private.c │ │ │ ├── rpc-program-schedule.c.inl │ │ │ ├── rpc-program.c │ │ │ ├── rpc-task_serve.c.inl │ │ │ ├── rpc.c │ │ │ ├── scheduler.c │ │ │ ├── semaphore.c │ │ │ ├── sig-addcon.c.inl │ │ │ ├── sig-numcon.c.inl │ │ │ ├── sig-remcon.c.inl │ │ │ ├── sig-send.c.inl │ │ │ ├── sig-waitfor.c.inl │ │ │ ├── sig.c │ │ │ ├── sigaction.c │ │ │ ├── sigmask.c │ │ │ ├── super-override.c │ │ │ ├── syscalls.c │ │ │ ├── task-clone-pid.c.inl │ │ │ ├── task-clone.c │ │ │ ├── task-exit.c │ │ │ ├── task-handle.c │ │ │ ├── task.c │ │ │ ├── time.c │ │ │ ├── timer.c │ │ │ ├── tsc.c │ │ │ ├── userkern-rw.c.inl │ │ │ └── userkern.c │ ├── include │ │ ├── arm-kos │ │ │ ├── debugger │ │ │ │ └── arch │ │ │ │ │ └── rt.h │ │ │ ├── kernel │ │ │ │ ├── arch │ │ │ │ │ └── compiler.h │ │ │ │ └── arm │ │ │ │ │ └── tls.h │ │ │ └── sched │ │ │ │ └── arch │ │ │ │ └── atomic64.h │ │ ├── debugger │ │ │ ├── arch │ │ │ │ └── rt.h │ │ │ ├── config.h │ │ │ ├── debugger.h │ │ │ ├── entry.h │ │ │ ├── hook.h │ │ │ ├── input.h │ │ │ ├── io.h │ │ │ ├── output.h │ │ │ ├── rt.h │ │ │ └── util.h │ │ ├── dev │ │ │ ├── ansitty.h │ │ │ ├── keyboard.h │ │ │ ├── mktty.h │ │ │ ├── mouse.h │ │ │ ├── nic.h │ │ │ ├── pty.h │ │ │ ├── tty.h │ │ │ └── video.h │ │ ├── drivers │ │ │ └── usb.h │ │ ├── i386-kos │ │ │ ├── debugger │ │ │ │ └── arch │ │ │ │ │ └── rt.h │ │ │ ├── kernel │ │ │ │ ├── arch │ │ │ │ │ ├── boot.h │ │ │ │ │ ├── compat.h │ │ │ │ │ ├── compiler-branch-tracer.h │ │ │ │ │ ├── driver-param.h │ │ │ │ │ ├── driver.h │ │ │ │ │ ├── except.h │ │ │ │ │ ├── fpu.h │ │ │ │ │ ├── isr.h │ │ │ │ │ ├── mman │ │ │ │ │ │ └── rtm.h │ │ │ │ │ ├── paging.h │ │ │ │ │ ├── paging32-p32.h │ │ │ │ │ ├── paging32-pae.h │ │ │ │ │ ├── paging32.h │ │ │ │ │ ├── paging64.h │ │ │ │ │ ├── poison-heap.h │ │ │ │ │ ├── profiler.h │ │ │ │ │ ├── rt │ │ │ │ │ │ ├── except-handler.h │ │ │ │ │ │ └── except-personality.h │ │ │ │ │ ├── syscall-properties.h │ │ │ │ │ ├── syscall.h │ │ │ │ │ └── syslog.h │ │ │ │ └── x86 │ │ │ │ │ ├── acpi.h │ │ │ │ │ ├── alternatives.h │ │ │ │ │ ├── apic.h │ │ │ │ │ ├── breakpoint.h │ │ │ │ │ ├── cpuid.h │ │ │ │ │ ├── emulock.h │ │ │ │ │ ├── fault.h │ │ │ │ │ ├── fsgsbase.h │ │ │ │ │ ├── gdt.h │ │ │ │ │ ├── idt-foreach.h │ │ │ │ │ ├── idt-names.h │ │ │ │ │ ├── idt.h │ │ │ │ │ ├── multiboot.h │ │ │ │ │ ├── nopf.h │ │ │ │ │ ├── phys2virt64.h │ │ │ │ │ ├── pic.h │ │ │ │ │ ├── pit.h │ │ │ │ │ ├── syscall-info.h │ │ │ │ │ ├── syscall-tables.h │ │ │ │ │ └── vm86.h │ │ │ └── sched │ │ │ │ ├── arch │ │ │ │ ├── atomic64.h │ │ │ │ ├── cred.h │ │ │ │ ├── pertask.h │ │ │ │ ├── task-clone.h │ │ │ │ ├── task.h │ │ │ │ └── userkern.h │ │ │ │ └── x86 │ │ │ │ ├── cmos.h │ │ │ │ ├── cpureg.h │ │ │ │ ├── eflags-mask.h │ │ │ │ ├── iobm.h │ │ │ │ ├── iopl.h │ │ │ │ ├── smp.h │ │ │ │ └── tss.h │ │ ├── kernel │ │ │ ├── addr2line.h │ │ │ ├── aio.h │ │ │ ├── arch │ │ │ │ ├── boot.h │ │ │ │ ├── compat.h │ │ │ │ ├── compiler-branch-tracer.h │ │ │ │ ├── compiler.h │ │ │ │ ├── driver-param.h │ │ │ │ ├── driver.h │ │ │ │ ├── except.h │ │ │ │ ├── execabi.h │ │ │ │ ├── fpu.h │ │ │ │ ├── isr.h │ │ │ │ ├── memory.h │ │ │ │ ├── mman │ │ │ │ │ └── rtm.h │ │ │ │ ├── paging.h │ │ │ │ ├── poison-heap.h │ │ │ │ ├── profiler.h │ │ │ │ ├── restart-interrupt.h │ │ │ │ ├── rt │ │ │ │ │ ├── except-handler.h │ │ │ │ │ └── except-personality.h │ │ │ │ ├── syscall-properties.h │ │ │ │ ├── syscall.h │ │ │ │ └── syslog.h │ │ │ ├── boot.h │ │ │ ├── compat.h │ │ │ ├── compiler-branch-tracer.h │ │ │ ├── compiler.h │ │ │ ├── coredump.h │ │ │ ├── debugtrap.h │ │ │ ├── dmesg.h │ │ │ ├── driver-callbacks.h │ │ │ ├── driver-param.h │ │ │ ├── driver.h │ │ │ ├── entropy.h │ │ │ ├── except.h │ │ │ ├── execabi.h │ │ │ ├── fpu.h │ │ │ ├── fs │ │ │ │ ├── allnodes.h │ │ │ │ ├── blkdev.h │ │ │ │ ├── chrdev.h │ │ │ │ ├── clnknode.h │ │ │ │ ├── constdir.h │ │ │ │ ├── devfs-disk.h │ │ │ │ ├── devfs-spec.h │ │ │ │ ├── devfs.h │ │ │ │ ├── devnode.h │ │ │ │ ├── dirent.h │ │ │ │ ├── dirhandle.h │ │ │ │ ├── dirhandlex.h │ │ │ │ ├── dirnode.h │ │ │ │ ├── fifohandle.h │ │ │ │ ├── fifonode.h │ │ │ │ ├── filehandle.h │ │ │ │ ├── filesys.h │ │ │ │ ├── flat.h │ │ │ │ ├── fs.h │ │ │ │ ├── lnknode.h │ │ │ │ ├── node.h │ │ │ │ ├── notify-config.h │ │ │ │ ├── notify.h │ │ │ │ ├── null.h │ │ │ │ ├── path.h │ │ │ │ ├── printnode.h │ │ │ │ ├── ramfs.h │ │ │ │ ├── regnode.h │ │ │ │ ├── socknode.h │ │ │ │ ├── super.h │ │ │ │ └── vfs.h │ │ │ ├── handle-proto.h │ │ │ ├── handle.h │ │ │ ├── handman.h │ │ │ ├── heap.h │ │ │ ├── iovec.h │ │ │ ├── isr.h │ │ │ ├── malloc-defs.h │ │ │ ├── malloc.h │ │ │ ├── memory.h │ │ │ ├── mman.h │ │ │ ├── mman │ │ │ │ ├── _archinit.h │ │ │ │ ├── cc.h │ │ │ │ ├── dma.h │ │ │ │ ├── driver.h │ │ │ │ ├── enum.h │ │ │ │ ├── event.h │ │ │ │ ├── exec.h │ │ │ │ ├── execinfo.h │ │ │ │ ├── fault.h │ │ │ │ ├── flags.h │ │ │ │ ├── futexfd.h │ │ │ │ ├── kram.h │ │ │ │ ├── map.h │ │ │ │ ├── mbuilder.h │ │ │ │ ├── mcoreheap.h │ │ │ │ ├── memfd.h │ │ │ │ ├── mfile-map.h │ │ │ │ ├── mfile-misaligned.h │ │ │ │ ├── mfile-subregion.h │ │ │ │ ├── mfile.h │ │ │ │ ├── mfilemeta.h │ │ │ │ ├── mlock.h │ │ │ │ ├── mnode.h │ │ │ │ ├── module-section-cache.h │ │ │ │ ├── module.h │ │ │ │ ├── mpart-blkst.h │ │ │ │ ├── mpart.h │ │ │ │ ├── mpartmeta.h │ │ │ │ ├── msync.h │ │ │ │ ├── phys-access.h │ │ │ │ ├── phys.h │ │ │ │ ├── ramfile.h │ │ │ │ ├── rangelock.h │ │ │ │ ├── remap.h │ │ │ │ ├── rtm.h │ │ │ │ ├── rw.h │ │ │ │ ├── stat.h │ │ │ │ ├── sync.h │ │ │ │ ├── unmapped.h │ │ │ │ └── uvio.h │ │ │ ├── paging.h │ │ │ ├── panic.h │ │ │ ├── personality.h │ │ │ ├── pipe.h │ │ │ ├── poison-heap.h │ │ │ ├── printk.h │ │ │ ├── profiler.h │ │ │ ├── rand.h │ │ │ ├── refcountable.h │ │ │ ├── restart-interrupt.h │ │ │ ├── rt │ │ │ │ ├── except-handler.h │ │ │ │ ├── except-personality.h │ │ │ │ └── except-syscall.h │ │ │ ├── selftest.h │ │ │ ├── slab.h │ │ │ ├── swap.h │ │ │ ├── syscall-properties.h │ │ │ ├── syscall-trace.h │ │ │ ├── syscall.h │ │ │ ├── syslog.h │ │ │ ├── tb.h │ │ │ ├── types.h │ │ │ ├── uname.h │ │ │ ├── user.h │ │ │ ├── vboxgdb.h │ │ │ └── version.h │ │ ├── misc │ │ │ ├── pointer-set.h │ │ │ └── unlockinfo.h │ │ ├── network │ │ │ ├── arp.h │ │ │ ├── ethernet.h │ │ │ ├── ip.h │ │ │ ├── network.h │ │ │ ├── packet.h │ │ │ ├── socket.h │ │ │ ├── udp-socket.h │ │ │ ├── udp.h │ │ │ └── unix-socket.h │ │ └── sched │ │ │ ├── arch │ │ │ ├── atomic64.h │ │ │ ├── cred.h │ │ │ ├── pertask.h │ │ │ ├── task-clone.h │ │ │ ├── task.h │ │ │ └── userkern.h │ │ │ ├── async-intern.h │ │ │ ├── async.h │ │ │ ├── atomic64.h │ │ │ ├── comm.h │ │ │ ├── cpu.h │ │ │ ├── cred.h │ │ │ ├── enum.h │ │ │ ├── epoll.h │ │ │ ├── eventfd.h │ │ │ ├── group.h │ │ │ ├── pertask.h │ │ │ ├── pid.h │ │ │ ├── posix-signal.h │ │ │ ├── posix-signalfd.h │ │ │ ├── private.h │ │ │ ├── rpc-internal.h │ │ │ ├── rpc.h │ │ │ ├── scheduler.h │ │ │ ├── semaphore.h │ │ │ ├── sig-config.dee │ │ │ ├── sig.h │ │ │ ├── sig.md │ │ │ ├── sigaction.h │ │ │ ├── sigcomp.h │ │ │ ├── sigcomp.md │ │ │ ├── sigmask.h │ │ │ ├── task-clone.h │ │ │ ├── task.h │ │ │ ├── timer.h │ │ │ ├── tsc.h │ │ │ └── userkern.h │ ├── moddbx │ │ ├── ccall.c │ │ ├── ceval.c │ │ ├── cexpr.c │ │ ├── cmodule.c │ │ ├── cparser.c │ │ ├── cprinter.c │ │ ├── ctype.c │ │ ├── error.c │ │ ├── include │ │ │ ├── ceval.h │ │ │ ├── cexpr.h │ │ │ ├── cmodule.h │ │ │ ├── cparser.h │ │ │ ├── cprinter.h │ │ │ ├── ctype.h │ │ │ ├── error.h │ │ │ ├── malloc.h │ │ │ └── obnote.h │ │ ├── init.c │ │ ├── malloc.c │ │ └── obnote.c │ ├── modelf │ │ ├── arch │ │ │ ├── arm │ │ │ │ └── README.md │ │ │ └── i386 │ │ │ │ ├── elf.c │ │ │ │ └── elf.h │ │ ├── elf-exec.c.inl │ │ ├── elf.c │ │ └── elf.h │ ├── modext2 │ │ ├── ext2.c │ │ └── ext2.h │ ├── modfat │ │ ├── fat.c │ │ └── fat.h │ ├── modgdbserver │ │ ├── arch │ │ │ ├── arm │ │ │ │ └── README.md │ │ │ └── i386 │ │ │ │ ├── altstack32.S │ │ │ │ ├── altstack64.S │ │ │ │ ├── breakpoint.c │ │ │ │ ├── interrupt-handler.c │ │ │ │ ├── interrupt.c │ │ │ │ ├── interrupt32.S │ │ │ │ ├── interrupt64.S │ │ │ │ ├── kill.c │ │ │ │ ├── register-impl.c.inl │ │ │ │ ├── register.c │ │ │ │ ├── register32-impl.c.inl │ │ │ │ └── register64-impl.c.inl │ │ ├── breakpoint.c │ │ ├── fsio.c │ │ ├── fsio.h │ │ ├── gdb-info.c │ │ ├── gdb-info.h │ │ ├── gdb.h │ │ ├── hex.c │ │ ├── init.c │ │ ├── memory-crc32.c │ │ ├── memory.c │ │ ├── os-register.c │ │ ├── packet.c │ │ ├── register.c │ │ ├── remote.c │ │ ├── serial.c │ │ ├── server.c │ │ ├── server.h │ │ ├── thread-enum.c │ │ ├── thread-enum.h │ │ ├── thread.c │ │ └── trap.c │ ├── modide │ │ ├── ata.c │ │ ├── ata.h │ │ └── ataio.c.inl │ ├── modiso9660 │ │ ├── iso9660.c │ │ └── iso9660.h │ ├── modne2k │ │ ├── ne2k.c │ │ ├── ne2k.h │ │ └── util.c │ ├── modpe │ │ ├── pe.c │ │ └── pe.h │ ├── modprocfs │ │ ├── files-perproc.c │ │ ├── files.c │ │ ├── perproc.c │ │ ├── perproc.def │ │ ├── procfs.c │ │ ├── procfs.def │ │ ├── procfs.h │ │ └── procfsdefs.c │ ├── modps2 │ │ ├── keyboard-scansets.c │ │ ├── keyboard-scansets.h │ │ ├── keyboard.c │ │ ├── keyboard.h │ │ ├── mouse.c │ │ ├── mouse.h │ │ ├── ps2.c │ │ └── ps2.h │ ├── modrtm │ │ ├── arch │ │ │ ├── arm │ │ │ │ └── README.md │ │ │ └── i386 │ │ │ │ └── rtm.c │ │ ├── memory.c │ │ ├── memory.h │ │ ├── rtm.c │ │ └── rtm.h │ ├── modsctrace │ │ ├── sctrace.c │ │ └── sctrace.h │ ├── modshebang │ │ ├── shebang.c │ │ └── shebang.h │ ├── modsvga │ │ ├── basefont.c │ │ ├── gfxtty.c │ │ ├── gfxtty.c.inl │ │ ├── mode.c │ │ ├── svga.c │ │ ├── svga.h │ │ └── tty.c │ ├── modtar │ │ ├── tar.c │ │ └── tar.h │ ├── modusb-hid │ │ ├── usb-hid.c │ │ ├── usb-kbd.c │ │ └── usb-kbd.h │ ├── modusb-storage │ │ ├── scsi.c │ │ ├── scsi.h │ │ └── usb-storage.c │ └── modusb │ │ ├── hub.c │ │ ├── hub.h │ │ ├── init.c │ │ ├── ohci.c │ │ ├── ohci.h │ │ ├── uhci.c │ │ ├── uhci.h │ │ └── usb.c │ ├── libansitty │ ├── ansitty.c │ ├── ansitty.h │ ├── api.h │ ├── cp.c │ ├── cp.def │ └── cp.h │ ├── libbios86 │ ├── api.h │ ├── bios.c │ └── bios.h │ ├── libbuffer │ ├── api.h │ ├── linebuffer.c │ ├── linebuffer.h │ ├── packetbuffer.c │ ├── packetbuffer.h │ ├── ringbuffer.c │ └── ringbuffer.h │ ├── libc │ ├── .sources │ ├── README.md │ ├── api.h │ ├── auto │ │ ├── aio.h │ │ ├── aliases.h │ │ ├── argp.c │ │ ├── argp.h │ │ ├── argz.c │ │ ├── argz.h │ │ ├── arpa.inet.c │ │ ├── arpa.inet.h │ │ ├── arpa.nameser.c │ │ ├── arpa.nameser.h │ │ ├── attr.attributes.c │ │ ├── attr.attributes.h │ │ ├── attr.libattr.c │ │ ├── attr.libattr.h │ │ ├── bsd.libutil.c │ │ ├── bsd.libutil.h │ │ ├── complex.c │ │ ├── complex.h │ │ ├── conio.c │ │ ├── conio.h │ │ ├── corecrt_malloc.c │ │ ├── corecrt_malloc.h │ │ ├── corecrt_startup.c │ │ ├── corecrt_startup.h │ │ ├── corecrt_wconio.c │ │ ├── corecrt_wconio.h │ │ ├── corecrt_wdirect.c │ │ ├── corecrt_wdirect.h │ │ ├── corecrt_wio.c │ │ ├── corecrt_wio.h │ │ ├── corecrt_wstdio.c │ │ ├── corecrt_wstdio.h │ │ ├── corecrt_wstdlib.c │ │ ├── corecrt_wstdlib.h │ │ ├── corecrt_wstring.c │ │ ├── corecrt_wstring.h │ │ ├── corecrt_wtime.c │ │ ├── corecrt_wtime.h │ │ ├── crtdbg.c │ │ ├── crtdbg.h │ │ ├── crypt.h │ │ ├── cthreads.c │ │ ├── cthreads.h │ │ ├── ctype.c │ │ ├── ctype.h │ │ ├── direct.c │ │ ├── direct.h │ │ ├── dirent.h │ │ ├── dyn-string.c │ │ ├── dyn-string.h │ │ ├── envz.c │ │ ├── envz.h │ │ ├── err.c │ │ ├── err.h │ │ ├── errno.c │ │ ├── errno.h │ │ ├── error.c │ │ ├── error.h │ │ ├── execinfo.c │ │ ├── execinfo.h │ │ ├── fcntl.c │ │ ├── fcntl.h │ │ ├── fenv.c │ │ ├── fenv.h │ │ ├── float.c │ │ ├── float.h │ │ ├── fmtmsg.h │ │ ├── fnmatch.c │ │ ├── fnmatch.h │ │ ├── format-printer.c │ │ ├── format-printer.h │ │ ├── fstab.c │ │ ├── fstab.h │ │ ├── fts.h │ │ ├── ftw.h │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── glob.h │ │ ├── grp.c │ │ ├── grp.h │ │ ├── ifaddrs.h │ │ ├── inttypes.c │ │ ├── inttypes.h │ │ ├── io.c │ │ ├── io.h │ │ ├── kos.dosfs.h │ │ ├── kos.except-handler.h │ │ ├── kos.except.c │ │ ├── kos.except.h │ │ ├── kos.fcntl.h │ │ ├── kos.fd.h │ │ ├── kos.futex.c │ │ ├── kos.futex.h │ │ ├── kos.futexexpr.c │ │ ├── kos.futexexpr.h │ │ ├── kos.lockop.c │ │ ├── kos.lockop.h │ │ ├── kos.malloc.h │ │ ├── kos.nopf.c │ │ ├── kos.nopf.h │ │ ├── kos.rpc.h │ │ ├── kos.rtm.h │ │ ├── kos.sched.shared-lock.c │ │ ├── kos.sched.shared-lock.h │ │ ├── kos.sched.shared-recursive-lock.c │ │ ├── kos.sched.shared-recursive-lock.h │ │ ├── kos.sched.shared-recursive-rwlock.c │ │ ├── kos.sched.shared-recursive-rwlock.h │ │ ├── kos.sched.shared-rwlock.c │ │ ├── kos.sched.shared-rwlock.h │ │ ├── kos.sys.ioctl.h │ │ ├── kos.sys.mman.c │ │ ├── kos.sys.mman.h │ │ ├── kos.unistd.c │ │ ├── kos.unistd.h │ │ ├── kos.uuid.c │ │ ├── kos.uuid.h │ │ ├── langinfo.c │ │ ├── langinfo.h │ │ ├── libgen.c │ │ ├── libgen.h │ │ ├── libiberty.c │ │ ├── libiberty.h │ │ ├── libintl.c │ │ ├── libintl.h │ │ ├── locale.c │ │ ├── locale.h │ │ ├── lock-intern.c │ │ ├── lock-intern.h │ │ ├── malloc.h │ │ ├── math.c │ │ ├── math.h │ │ ├── mbctype.c │ │ ├── mbctype.h │ │ ├── mbstring.c │ │ ├── mbstring.h │ │ ├── mntent.c │ │ ├── mntent.h │ │ ├── mqueue.h │ │ ├── net.if.c │ │ ├── net.if.h │ │ ├── netdb.h │ │ ├── netinet.ether.c │ │ ├── netinet.ether.h │ │ ├── netinet.in.c │ │ ├── netinet.in.h │ │ ├── nl_types.h │ │ ├── objalloc.c │ │ ├── objalloc.h │ │ ├── obstack.c │ │ ├── obstack.h │ │ ├── partition.c │ │ ├── partition.h │ │ ├── parts.wchar.fcntl.c │ │ ├── parts.wchar.fcntl.h │ │ ├── parts.wchar.format-printer.c │ │ ├── parts.wchar.format-printer.h │ │ ├── parts.wchar.process.c │ │ ├── parts.wchar.process.h │ │ ├── parts.wchar.stdio.c │ │ ├── parts.wchar.stdio.h │ │ ├── parts.wchar.stdlib.c │ │ ├── parts.wchar.stdlib.h │ │ ├── parts.wchar.sys.stat.c │ │ ├── parts.wchar.sys.stat.h │ │ ├── parts.wchar.unistd.c │ │ ├── parts.wchar.unistd.h │ │ ├── parts.wchar.utime.c │ │ ├── parts.wchar.utime.h │ │ ├── process.c │ │ ├── process.h │ │ ├── pthread.c │ │ ├── pthread.h │ │ ├── pthread_np.c │ │ ├── pthread_np.h │ │ ├── pty.c │ │ ├── pty.h │ │ ├── pwd.c │ │ ├── pwd.h │ │ ├── readpassphrase.c │ │ ├── readpassphrase.h │ │ ├── regex.c │ │ ├── regex.h │ │ ├── regexp.c │ │ ├── regexp.h │ │ ├── resolv.c │ │ ├── resolv.h │ │ ├── rpc.netdb.h │ │ ├── sched.h │ │ ├── search.c │ │ ├── search.h │ │ ├── semaphore.h │ │ ├── sgtty.h │ │ ├── shadow.c │ │ ├── shadow.h │ │ ├── signal.c │ │ ├── signal.h │ │ ├── sort.c │ │ ├── sort.h │ │ ├── spawn.c │ │ ├── spawn.h │ │ ├── ssp.string.c │ │ ├── ssp.string.h │ │ ├── stdbit.c │ │ ├── stdbit.h │ │ ├── stdio.c │ │ ├── stdio.h │ │ ├── stdio_ext.h │ │ ├── stdlib.c │ │ ├── stdlib.h │ │ ├── string.c │ │ ├── string.h │ │ ├── stringlist.c │ │ ├── stringlist.h │ │ ├── strings.c │ │ ├── strings.h │ │ ├── stropts.h │ │ ├── sys.acct.h │ │ ├── sys.auxv.h │ │ ├── sys.capability.h │ │ ├── sys.epoll.h │ │ ├── sys.eventfd.c │ │ ├── sys.eventfd.h │ │ ├── sys.file.h │ │ ├── sys.fsuid.h │ │ ├── sys.inotify.h │ │ ├── sys.ioctl.h │ │ ├── sys.ipc.h │ │ ├── sys.klog.h │ │ ├── sys.mkdev.c │ │ ├── sys.mkdev.h │ │ ├── sys.mman.c │ │ ├── sys.mman.h │ │ ├── sys.mount.h │ │ ├── sys.msg.h │ │ ├── sys.perm.h │ │ ├── sys.poll.h │ │ ├── sys.prctl.h │ │ ├── sys.profil.h │ │ ├── sys.ptrace.h │ │ ├── sys.random.h │ │ ├── sys.reboot.h │ │ ├── sys.resource.h │ │ ├── sys.select.c │ │ ├── sys.select.h │ │ ├── sys.sem.h │ │ ├── sys.sendfile.h │ │ ├── sys.shm.h │ │ ├── sys.signalfd.h │ │ ├── sys.socket.c │ │ ├── sys.socket.h │ │ ├── sys.stat.c │ │ ├── sys.stat.h │ │ ├── sys.statfs.h │ │ ├── sys.statvfs.h │ │ ├── sys.swap.h │ │ ├── sys.sysinfo.c │ │ ├── sys.sysinfo.h │ │ ├── sys.syslog.c │ │ ├── sys.syslog.h │ │ ├── sys.systeminfo.h │ │ ├── sys.time.h │ │ ├── sys.timeb.h │ │ ├── sys.timerfd.h │ │ ├── sys.times.h │ │ ├── sys.timex.h │ │ ├── sys.uio.h │ │ ├── sys.ustat.h │ │ ├── sys.utsname.h │ │ ├── sys.vlimit.c │ │ ├── sys.vlimit.h │ │ ├── sys.vtimes.c │ │ ├── sys.vtimes.h │ │ ├── sys.wait.h │ │ ├── sys.xattr.h │ │ ├── termios.c │ │ ├── termios.h │ │ ├── thread.c │ │ ├── thread.h │ │ ├── threads.c │ │ ├── threads.h │ │ ├── time.c │ │ ├── time.h │ │ ├── timeval-utils.c │ │ ├── timeval-utils.h │ │ ├── ttyent.c │ │ ├── ttyent.h │ │ ├── uchar.c │ │ ├── uchar.h │ │ ├── ucontext.h │ │ ├── ulimit.h │ │ ├── unicode.c │ │ ├── unicode.h │ │ ├── unistd.c │ │ ├── unistd.h │ │ ├── util.c │ │ ├── util.h │ │ ├── utime.h │ │ ├── utmp.c │ │ ├── utmp.h │ │ ├── utmpx.h │ │ ├── vis.c │ │ ├── vis.h │ │ ├── wchar.c │ │ ├── wchar.h │ │ ├── wctype.c │ │ ├── wctype.h │ │ ├── wordexp.c │ │ └── wordexp.h │ ├── crt-features.h │ ├── crt-order.h │ ├── hybrid │ │ ├── arch │ │ │ ├── arm │ │ │ │ ├── alloca.S │ │ │ │ ├── assert.S │ │ │ │ ├── config.h │ │ │ │ ├── except.S │ │ │ │ ├── nopf.S │ │ │ │ ├── nopf.h │ │ │ │ └── restart-block.h │ │ │ └── i386 │ │ │ │ ├── alloca.S │ │ │ │ ├── alloca32.S │ │ │ │ ├── alloca64.S │ │ │ │ ├── assert-fail.S.inl │ │ │ │ ├── assert.S │ │ │ │ ├── assert32.S │ │ │ │ ├── assert64.S │ │ │ │ ├── config.h │ │ │ │ ├── except.S │ │ │ │ ├── except32.S │ │ │ │ ├── except64.S │ │ │ │ ├── nopf.S │ │ │ │ ├── nopf.h │ │ │ │ ├── nopf32.S │ │ │ │ ├── nopf64.S │ │ │ │ ├── string-template.S │ │ │ │ ├── string32-template.S │ │ │ │ ├── string32.S │ │ │ │ ├── string64-template.S │ │ │ │ └── string64.S │ │ ├── except-personality.c │ │ ├── except.c │ │ ├── except.h │ │ ├── unicode.c │ │ └── unicode.h │ ├── libc │ │ ├── _libc.ld │ │ ├── aio.ctest │ │ ├── arch │ │ │ ├── arm │ │ │ │ ├── clone.S │ │ │ │ ├── pthread.S │ │ │ │ ├── rpc.S │ │ │ │ ├── rpc.c │ │ │ │ ├── setjmp.S │ │ │ │ ├── signal.S │ │ │ │ ├── syscalls.S │ │ │ │ ├── ucontext.S │ │ │ │ ├── ucontext.c │ │ │ │ └── vfork.S │ │ │ └── i386 │ │ │ │ ├── clone32.S │ │ │ │ ├── clone64.S │ │ │ │ ├── errno.c │ │ │ │ ├── misc.S │ │ │ │ ├── misc32.S │ │ │ │ ├── misc64.S │ │ │ │ ├── msabi64.S │ │ │ │ ├── msabi64.h │ │ │ │ ├── pthread.S │ │ │ │ ├── pthread32.S │ │ │ │ ├── pthread64.S │ │ │ │ ├── rpc.S │ │ │ │ ├── rpc.c │ │ │ │ ├── rpc32.S │ │ │ │ ├── rpc64.S │ │ │ │ ├── rtm.h │ │ │ │ ├── rtm32.S │ │ │ │ ├── rtm64.S │ │ │ │ ├── setjmp32.S │ │ │ │ ├── setjmp64.S │ │ │ │ ├── signal.S │ │ │ │ ├── signal32.S │ │ │ │ ├── signal64.S │ │ │ │ ├── syscall-base32.S │ │ │ │ ├── syscall-base64.S │ │ │ │ ├── syscalls32.S │ │ │ │ ├── syscalls64.S │ │ │ │ ├── ucontext.S │ │ │ │ ├── ucontext.c │ │ │ │ ├── ucontext.h │ │ │ │ ├── ucontext32.S │ │ │ │ ├── ucontext64.S │ │ │ │ ├── vfork.S │ │ │ │ ├── vfork32.S │ │ │ │ └── vfork64.S │ │ ├── assert.c │ │ ├── assert.h │ │ ├── compat.c │ │ ├── compat.h │ │ ├── crt.ctest │ │ ├── ctype.ctest │ │ ├── cxx.c │ │ ├── cxx.h │ │ ├── dl.c │ │ ├── dl.h │ │ ├── dlmalloc_heap.c │ │ ├── dos-compat.h │ │ ├── dosabi-exports.h │ │ ├── dosabi-functions.h │ │ ├── errno-convert-cyg.c │ │ ├── errno-convert-dos.c │ │ ├── errno.c │ │ ├── errno.h │ │ ├── except-libunwind.h │ │ ├── except.c │ │ ├── except.ctest │ │ ├── except.h │ │ ├── fparseln.ctest │ │ ├── globals.c │ │ ├── globals.h │ │ ├── init.c │ │ ├── init.h │ │ ├── libgen.ctest │ │ ├── mapfile.ctest │ │ ├── math.ctest │ │ ├── matherr.c │ │ ├── memory.ctest │ │ ├── memory.ctest.n.inl │ │ ├── printf.ctest │ │ ├── pthread-key.ctest │ │ ├── pwd.ctest │ │ ├── sigreturn.h │ │ ├── ssp.c │ │ ├── stdlib.ctest │ │ ├── strtol.ctest │ │ ├── syscalls-ammend.S.inl │ │ ├── syscalls.c │ │ ├── syscalls.h │ │ ├── tls-globals.c │ │ ├── tls-globals.h │ │ ├── tls.c │ │ ├── tls.h │ │ ├── ucontext.ctest │ │ ├── unicode.ctest │ │ └── wordexp.ctest │ ├── magic │ │ ├── README.md │ │ ├── TODO.md │ │ ├── aio.c │ │ ├── aliases.c │ │ ├── argp.c │ │ ├── argz.c │ │ ├── arpa.inet.c │ │ ├── arpa.nameser.c │ │ ├── attr.attributes.c │ │ ├── attr.libattr.c │ │ ├── bits.crt.sys_errlist.c │ │ ├── bits.posix_opt.c │ │ ├── bits.std_abs.c │ │ ├── bsd.err.c │ │ ├── bsd.grp.c │ │ ├── bsd.inttypes.c │ │ ├── bsd.libutil.c │ │ ├── bsd.pwd.c │ │ ├── bsd.signal.c │ │ ├── bsd.stdio.c │ │ ├── bsd.stdlib.c │ │ ├── bsd.string.c │ │ ├── bsd.stringlist.c │ │ ├── bsd.unistd.c │ │ ├── bsd.wchar.c │ │ ├── complex.c │ │ ├── conio.c │ │ ├── corecrt_malloc.c │ │ ├── corecrt_memcpy_s.c │ │ ├── corecrt_memory.c │ │ ├── corecrt_startup.c │ │ ├── corecrt_wconio.c │ │ ├── corecrt_wdirect.c │ │ ├── corecrt_wio.c │ │ ├── corecrt_wprocess.c │ │ ├── corecrt_wstdio.c │ │ ├── corecrt_wstdlib.c │ │ ├── corecrt_wstring.c │ │ ├── corecrt_wtime.c │ │ ├── crtdbg.c │ │ ├── crypt.c │ │ ├── cthreads.c │ │ ├── ctype.c │ │ ├── direct.c │ │ ├── dirent.c │ │ ├── dos.c │ │ ├── dyn-string.c │ │ ├── envz.c │ │ ├── err.c │ │ ├── errno.c │ │ ├── error.c │ │ ├── execinfo.c │ │ ├── fcntl.c │ │ ├── fenv.c │ │ ├── float.c │ │ ├── fmtmsg.c │ │ ├── fnmatch.c │ │ ├── format-printer.c │ │ ├── fstab.c │ │ ├── fts.c │ │ ├── ftw.c │ │ ├── getopt.c │ │ ├── glob.c │ │ ├── grp.c │ │ ├── ifaddrs.c │ │ ├── inttypes.c │ │ ├── io.c │ │ ├── kos.dosfs.c │ │ ├── kos.except-handler.c │ │ ├── kos.except.c │ │ ├── kos.fcntl.c │ │ ├── kos.fd.c │ │ ├── kos.futex.c │ │ ├── kos.futexexpr.c │ │ ├── kos.lockop.c │ │ ├── kos.malloc.c │ │ ├── kos.nopf.c │ │ ├── kos.rpc.c │ │ ├── kos.rtm.c │ │ ├── kos.sched.shared-lock.c │ │ ├── kos.sched.shared-recursive-lock.c │ │ ├── kos.sched.shared-recursive-rwlock.c │ │ ├── kos.sched.shared-rwlock.c │ │ ├── kos.sys.epoll.c │ │ ├── kos.sys.ioctl.c │ │ ├── kos.sys.mman.c │ │ ├── kos.sys.socket.c │ │ ├── kos.sys.stat.c │ │ ├── kos.unistd.c │ │ ├── kos.uuid.c │ │ ├── langinfo.c │ │ ├── libgen.c │ │ ├── libiberty.c │ │ ├── libintl.c │ │ ├── libio.c │ │ ├── linux.close_range.c │ │ ├── locale.c │ │ ├── lock-intern.c │ │ ├── malloc.c │ │ ├── math.c │ │ ├── mbctype.c │ │ ├── mbstring.c │ │ ├── mntent.c │ │ ├── monetary.c │ │ ├── mqueue.c │ │ ├── net.if.c │ │ ├── netdb.c │ │ ├── netinet.ether.c │ │ ├── netinet.in.c │ │ ├── new.c │ │ ├── nl_types.c │ │ ├── objalloc.c │ │ ├── obstack.c │ │ ├── partition.c │ │ ├── parts.uchar.direct.c │ │ ├── parts.uchar.fcntl.c │ │ ├── parts.uchar.format-printer.c │ │ ├── parts.uchar.inttypes.c │ │ ├── parts.uchar.io.c │ │ ├── parts.uchar.process.c │ │ ├── parts.uchar.stdio.c │ │ ├── parts.uchar.stdlib.c │ │ ├── parts.uchar.string.c │ │ ├── parts.uchar.sys.mman.c │ │ ├── parts.uchar.sys.stat.c │ │ ├── parts.uchar.time.c │ │ ├── parts.uchar.unistd.c │ │ ├── parts.uchar.utime.c │ │ ├── parts.uchar.wchar.c │ │ ├── parts.uchar.wctype.c │ │ ├── parts.wchar.fcntl.c │ │ ├── parts.wchar.format-printer.c │ │ ├── parts.wchar.process.c │ │ ├── parts.wchar.stdio.c │ │ ├── parts.wchar.stdlib.c │ │ ├── parts.wchar.sys.stat.c │ │ ├── parts.wchar.unistd.c │ │ ├── parts.wchar.utime.c │ │ ├── printf.c │ │ ├── process.c │ │ ├── pthread.c │ │ ├── pthread_np.c │ │ ├── pty.c │ │ ├── pwd.c │ │ ├── readpassphrase.c │ │ ├── regex.c │ │ ├── regexp.c │ │ ├── resolv.c │ │ ├── rpc.netdb.c │ │ ├── sched.c │ │ ├── search.c │ │ ├── semaphore.c │ │ ├── sgtty.c │ │ ├── shadow.c │ │ ├── siginfo.c │ │ ├── signal.c │ │ ├── sort.c │ │ ├── spawn.c │ │ ├── spin-lock.c │ │ ├── ssp.string.c │ │ ├── stdbit.c │ │ ├── stdio.c │ │ ├── stdio_ext.c │ │ ├── stdlib.c │ │ ├── string.c │ │ ├── stringlist.c │ │ ├── strings.c │ │ ├── stropts.c │ │ ├── sys.acct.c │ │ ├── sys.auxv.c │ │ ├── sys.byteorder.c │ │ ├── sys.capability.c │ │ ├── sys.config.c │ │ ├── sys.epoll.c │ │ ├── sys.eventfd.c │ │ ├── sys.file.c │ │ ├── sys.fsuid.c │ │ ├── sys.inotify.c │ │ ├── sys.ioctl.c │ │ ├── sys.ipc.c │ │ ├── sys.klog.c │ │ ├── sys.loadavg.c │ │ ├── sys.mkdev.c │ │ ├── sys.mman.c │ │ ├── sys.mount.c │ │ ├── sys.msg.c │ │ ├── sys.perm.c │ │ ├── sys.poll.c │ │ ├── sys.prctl.c │ │ ├── sys.profil.c │ │ ├── sys.ptrace.c │ │ ├── sys.random.c │ │ ├── sys.reboot.c │ │ ├── sys.resource.c │ │ ├── sys.select.c │ │ ├── sys.sem.c │ │ ├── sys.sendfile.c │ │ ├── sys.shm.c │ │ ├── sys.signal.c │ │ ├── sys.signalfd.c │ │ ├── sys.socket.c │ │ ├── sys.stat.c │ │ ├── sys.statfs.c │ │ ├── sys.statvfs.c │ │ ├── sys.swap.c │ │ ├── sys.sysinfo.c │ │ ├── sys.syslog.c │ │ ├── sys.systeminfo.c │ │ ├── sys.time.c │ │ ├── sys.timeb.c │ │ ├── sys.timerfd.c │ │ ├── sys.times.c │ │ ├── sys.timex.c │ │ ├── sys.uio.c │ │ ├── sys.ustat.c │ │ ├── sys.utsname.c │ │ ├── sys.vlimit.c │ │ ├── sys.vtimes.c │ │ ├── sys.wait.c │ │ ├── sys.xattr.c │ │ ├── termios.c │ │ ├── thread.c │ │ ├── threads.c │ │ ├── time.c │ │ ├── timeval-utils.c │ │ ├── ttyent.c │ │ ├── uchar.c │ │ ├── ucontext.c │ │ ├── ulimit.c │ │ ├── unicode.c │ │ ├── unistd.c │ │ ├── util.c │ │ ├── utime.c │ │ ├── utmp.c │ │ ├── utmpx.c │ │ ├── vcruntime_string.c │ │ ├── vfork.c │ │ ├── vis.c │ │ ├── wchar.c │ │ ├── wctype.c │ │ └── wordexp.c │ └── user │ │ ├── aio.c │ │ ├── aio.h │ │ ├── aliases.c │ │ ├── aliases.h │ │ ├── argp.c │ │ ├── argp.h │ │ ├── arpa.inet.c │ │ ├── arpa.inet.h │ │ ├── arpa.nameser.c │ │ ├── arpa.nameser.h │ │ ├── attr.attributes.c │ │ ├── attr.attributes.h │ │ ├── bits.crt.sys_errlist.c │ │ ├── bits.crt.sys_errlist.h │ │ ├── conio.c │ │ ├── conio.h │ │ ├── corecrt_startup.c │ │ ├── corecrt_startup.h │ │ ├── corecrt_wio.c │ │ ├── corecrt_wio.h │ │ ├── corecrt_wstdio.c │ │ ├── corecrt_wstdio.h │ │ ├── crtdbg.c │ │ ├── crtdbg.h │ │ ├── crypt.c │ │ ├── crypt.h │ │ ├── cthreads.c │ │ ├── cthreads.h │ │ ├── ctype.c │ │ ├── ctype.h │ │ ├── direct.c │ │ ├── direct.h │ │ ├── dirent.c │ │ ├── dirent.h │ │ ├── errno.c │ │ ├── errno.h │ │ ├── execinfo.c │ │ ├── execinfo.h │ │ ├── fcntl.c │ │ ├── fcntl.h │ │ ├── float.c │ │ ├── float.h │ │ ├── fmtmsg.c │ │ ├── fmtmsg.h │ │ ├── fstab.c │ │ ├── fstab.h │ │ ├── fts.c │ │ ├── fts.h │ │ ├── ftw.c │ │ ├── ftw.h │ │ ├── glob.c │ │ ├── glob.h │ │ ├── grp.c │ │ ├── grp.h │ │ ├── ifaddrs.c │ │ ├── ifaddrs.h │ │ ├── io.c │ │ ├── io.h │ │ ├── kos.dosfs.c │ │ ├── kos.dosfs.h │ │ ├── kos.except-handler.c │ │ ├── kos.except-handler.h │ │ ├── kos.except.c │ │ ├── kos.except.h │ │ ├── kos.fcntl.c │ │ ├── kos.fcntl.h │ │ ├── kos.fd.c │ │ ├── kos.fd.h │ │ ├── kos.futex.c │ │ ├── kos.futex.h │ │ ├── kos.futexexpr.c │ │ ├── kos.futexexpr.h │ │ ├── kos.malloc.c │ │ ├── kos.malloc.h │ │ ├── kos.rpc.c │ │ ├── kos.rpc.h │ │ ├── kos.rtm.c │ │ ├── kos.rtm.h │ │ ├── kos.sys.epoll.c │ │ ├── kos.sys.epoll.h │ │ ├── kos.sys.ioctl.c │ │ ├── kos.sys.ioctl.h │ │ ├── kos.sys.mman.c │ │ ├── kos.sys.mman.h │ │ ├── kos.sys.socket.c │ │ ├── kos.sys.socket.h │ │ ├── kos.sys.stat.c │ │ ├── kos.sys.stat.h │ │ ├── kos.unistd.c │ │ ├── kos.unistd.h │ │ ├── libiberty.c │ │ ├── libiberty.h │ │ ├── libintl.c │ │ ├── libintl.h │ │ ├── locale.c │ │ ├── locale.h │ │ ├── malloc.c │ │ ├── malloc.h │ │ ├── math.c │ │ ├── math.h │ │ ├── mbctype.c │ │ ├── mbctype.h │ │ ├── mbstring.c │ │ ├── mbstring.h │ │ ├── monetary.c │ │ ├── monetary.h │ │ ├── mqueue.c │ │ ├── mqueue.h │ │ ├── net.if.c │ │ ├── net.if.h │ │ ├── netdb.c │ │ ├── netdb.h │ │ ├── netinet.in.c │ │ ├── netinet.in.h │ │ ├── new.c │ │ ├── new.h │ │ ├── nl_types.c │ │ ├── nl_types.h │ │ ├── printf.c │ │ ├── printf.h │ │ ├── process.c │ │ ├── process.h │ │ ├── pthread.c │ │ ├── pthread.h │ │ ├── pty.c │ │ ├── pty.h │ │ ├── pwd.c │ │ ├── pwd.h │ │ ├── regex.c │ │ ├── regex.h │ │ ├── resolv.c │ │ ├── resolv.h │ │ ├── rpc.netdb.c │ │ ├── rpc.netdb.h │ │ ├── sched.c │ │ ├── sched.h │ │ ├── semaphore.c │ │ ├── semaphore.h │ │ ├── sgtty.c │ │ ├── sgtty.h │ │ ├── shadow.c │ │ ├── shadow.h │ │ ├── signal.c │ │ ├── signal.h │ │ ├── spawn.c │ │ ├── spawn.h │ │ ├── stdio-api.h │ │ ├── stdio.c │ │ ├── stdio.h │ │ ├── stdio_ext.c │ │ ├── stdio_ext.h │ │ ├── stdlib.c │ │ ├── stdlib.h │ │ ├── stropts.c │ │ ├── stropts.h │ │ ├── sys.acct.c │ │ ├── sys.acct.h │ │ ├── sys.auxv.c │ │ ├── sys.auxv.h │ │ ├── sys.capability.c │ │ ├── sys.capability.h │ │ ├── sys.epoll.c │ │ ├── sys.epoll.h │ │ ├── sys.eventfd.c │ │ ├── sys.eventfd.h │ │ ├── sys.file.c │ │ ├── sys.file.h │ │ ├── sys.fsuid.c │ │ ├── sys.fsuid.h │ │ ├── sys.inotify.c │ │ ├── sys.inotify.h │ │ ├── sys.ioctl.c │ │ ├── sys.ioctl.h │ │ ├── sys.ipc.c │ │ ├── sys.ipc.h │ │ ├── sys.klog.c │ │ ├── sys.klog.h │ │ ├── sys.mman.c │ │ ├── sys.mman.h │ │ ├── sys.mount.c │ │ ├── sys.mount.h │ │ ├── sys.msg.c │ │ ├── sys.msg.h │ │ ├── sys.perm.c │ │ ├── sys.perm.h │ │ ├── sys.poll.c │ │ ├── sys.poll.h │ │ ├── sys.prctl.c │ │ ├── sys.prctl.h │ │ ├── sys.profil.c │ │ ├── sys.profil.h │ │ ├── sys.ptrace.c │ │ ├── sys.ptrace.h │ │ ├── sys.random.c │ │ ├── sys.random.h │ │ ├── sys.reboot.c │ │ ├── sys.reboot.h │ │ ├── sys.resource.c │ │ ├── sys.resource.h │ │ ├── sys.select.c │ │ ├── sys.select.h │ │ ├── sys.sem.c │ │ ├── sys.sem.h │ │ ├── sys.sendfile.c │ │ ├── sys.sendfile.h │ │ ├── sys.shm.c │ │ ├── sys.shm.h │ │ ├── sys.signal.c │ │ ├── sys.signal.h │ │ ├── sys.signalfd.c │ │ ├── sys.signalfd.h │ │ ├── sys.socket.c │ │ ├── sys.socket.h │ │ ├── sys.stat.c │ │ ├── sys.stat.h │ │ ├── sys.statfs.c │ │ ├── sys.statfs.h │ │ ├── sys.statvfs.c │ │ ├── sys.statvfs.h │ │ ├── sys.swap.c │ │ ├── sys.swap.h │ │ ├── sys.sysinfo.c │ │ ├── sys.sysinfo.h │ │ ├── sys.syslog.c │ │ ├── sys.syslog.h │ │ ├── sys.systeminfo.c │ │ ├── sys.systeminfo.h │ │ ├── sys.time.c │ │ ├── sys.time.h │ │ ├── sys.timeb.c │ │ ├── sys.timeb.h │ │ ├── sys.timerfd.c │ │ ├── sys.timerfd.h │ │ ├── sys.times.c │ │ ├── sys.times.h │ │ ├── sys.timex.c │ │ ├── sys.timex.h │ │ ├── sys.uio.c │ │ ├── sys.uio.h │ │ ├── sys.ustat.c │ │ ├── sys.ustat.h │ │ ├── sys.utsname.c │ │ ├── sys.utsname.h │ │ ├── sys.wait.c │ │ ├── sys.wait.h │ │ ├── sys.xattr.c │ │ ├── sys.xattr.h │ │ ├── threads.c │ │ ├── threads.h │ │ ├── time.c │ │ ├── time.h │ │ ├── ttyent.c │ │ ├── ttyent.h │ │ ├── ucontext.c │ │ ├── ucontext.h │ │ ├── ulimit.c │ │ ├── ulimit.h │ │ ├── unicode.c │ │ ├── unicode.h │ │ ├── unicode │ │ ├── .gitignore │ │ ├── ctype.dee │ │ └── db.dat │ │ ├── unistd.c │ │ ├── unistd.h │ │ ├── util.c │ │ ├── util.h │ │ ├── utime.c │ │ ├── utime.h │ │ ├── utmp.c │ │ ├── utmp.h │ │ ├── utmpx.c │ │ ├── utmpx.h │ │ ├── wchar.c │ │ ├── wchar.h │ │ ├── wordexp.c │ │ └── wordexp.h │ ├── libcmdline │ ├── api.h │ ├── decode.c │ ├── decode.h │ ├── encode.c │ └── encode.h │ ├── libcpustate │ ├── api.h │ ├── arch │ │ ├── arm │ │ │ └── README.md │ │ └── i386 │ │ │ ├── apply32.S │ │ │ ├── apply64.S │ │ │ └── register.c │ ├── register.c │ └── register.h │ ├── libdebuginfo │ ├── addr2line.c │ ├── addr2line.h │ ├── api.h │ ├── cfi_entry.c │ ├── cfi_entry.h │ ├── debug_aranges.c │ ├── debug_aranges.h │ ├── debug_frame.c │ ├── debug_frame.h │ ├── debug_info-debug_rnglists.c.inl │ ├── debug_info.c │ ├── debug_info.h │ ├── debug_line.c │ ├── debug_line.h │ ├── dwarf.c │ ├── dwarf.h │ ├── repr.c │ ├── repr.h │ ├── symtab.c │ ├── symtab.h │ ├── unwind.c │ └── unwind.h │ ├── libdemangle │ ├── api.h │ ├── demangle.c │ ├── demangle.h │ ├── gcc.c │ └── gcc.h │ ├── libdisasm │ ├── _binstr.h │ ├── api.h │ ├── arm-db │ ├── arm-db.dee │ ├── arm-db.h │ ├── arm.c │ ├── arm.h │ ├── common.c │ ├── common.h │ ├── x86-db.h │ ├── x86-longops.def │ ├── x86.c │ └── x86.h │ ├── libdl-pe │ ├── api.h │ ├── pe.c │ └── pe.h │ ├── libdl │ ├── .sources │ ├── README.md │ ├── _rtld.ld │ ├── api.h │ ├── arch │ │ ├── arm │ │ │ ├── _start.S │ │ │ ├── rt.S │ │ │ └── ucall.h │ │ └── i386 │ │ │ ├── _start32.S │ │ │ ├── _start64.S │ │ │ ├── rt32.S │ │ │ ├── rt64.S │ │ │ └── ucall.h │ ├── builtin.c │ ├── builtin.h │ ├── dl.h │ ├── exports.c │ ├── extension.c │ ├── libdl.ctest │ ├── main.c │ ├── module-init.c │ ├── module-open.c │ ├── module-reloc-impl.c.inl │ ├── module-reloc.c │ ├── module-symbol.c │ ├── module.c │ ├── tls-get-addr.c.inl │ ├── tls.c │ └── ucall.h │ ├── libdlmalloc │ ├── config.h │ └── dlmalloc.c │ ├── libemu86 │ ├── api.h │ └── emu86.c │ ├── libinstrlen │ ├── api.h │ ├── arch │ │ ├── arm │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ └── instrlen.c │ │ └── i386 │ │ │ ├── config.h │ │ │ ├── db.h │ │ │ ├── instrlen.c │ │ │ └── instrlen.ctest │ ├── instrlen.c │ ├── instrlen.ctest │ └── instrlen.h │ ├── libkernel32 │ ├── api.h │ ├── debugapi.c │ ├── errhandlingapi.c │ ├── fileapi.c │ ├── handleapi.c │ ├── heapapi.c │ ├── interlockedapi.c │ ├── libloaderapi.c │ ├── memoryapi.c │ ├── messages.c │ ├── namedpipeapi.c │ ├── processenv.c │ ├── processthreadsapi.c │ ├── profileapi.c │ ├── startup.c │ ├── stringapiset.c │ ├── syncapi.c │ ├── sysinfoapi.c │ ├── timezoneapi.c │ ├── wincon.c │ └── winnls.c │ ├── libkeymap │ ├── api.h │ ├── en_US.c │ ├── en_US.h │ ├── keymap.c │ ├── keymap.ctest │ └── keymap.h │ ├── libm │ ├── api.h │ └── placeholder.c │ ├── libpciaccess │ ├── api.h │ ├── pci.ids.c.inl │ ├── pciaccess.c │ └── pciaccess.h │ ├── libphys │ ├── api.h │ ├── phys.c │ └── phys.h │ ├── libregdump │ ├── api.h │ └── arch │ │ ├── arm │ │ └── README.md │ │ └── i386 │ │ ├── cpu-state.c │ │ ├── cpu-state.h │ │ ├── register.c │ │ ├── register.h │ │ ├── x86.c │ │ └── x86.h │ ├── libsctrace │ ├── api.h │ ├── sc_getdesc.c │ ├── sc_printvalue.c │ └── sctrace.h │ ├── libservice │ ├── api.h │ ├── arch │ │ ├── arm │ │ │ └── README.md │ │ └── i386 │ │ │ ├── wrapper.c │ │ │ └── wrapper.h │ ├── client-impl.c.inl │ ├── client.c │ ├── client.h │ ├── com-shmbuf-alloc.c.inl │ ├── com.c │ ├── com.h │ ├── server.c │ └── server.h │ ├── libssp │ └── ssp.c │ ├── libsvgadrv │ ├── api.h │ ├── basevga.c │ ├── basevga.h │ ├── chipset.c │ ├── chipset.h │ ├── cs-bochsvbe.c │ ├── cs-bochsvbe.h │ ├── cs-vesa.c │ ├── cs-vesa.h │ ├── cs-vga.c │ ├── cs-vga.h │ ├── cs-vmware.c │ ├── cs-vmware.h │ ├── svga.c │ └── svga.h │ ├── libterm │ ├── api.h │ ├── termio.c │ └── termio.h │ ├── libunwind │ ├── api.h │ ├── arch │ │ ├── arm │ │ │ ├── ARM.extab.c │ │ │ ├── ARM.extab.h │ │ │ └── register.c │ │ └── i386 │ │ │ ├── compat.c.inl │ │ │ └── register.c │ ├── cfi.c │ ├── cfi.h │ ├── dwarf.c │ ├── dwarf.h │ ├── eh_frame-cfa_apply.c.inl │ ├── eh_frame-fde_exec.c.inl │ ├── eh_frame-find_fde.c.inl │ ├── eh_frame.c │ ├── eh_frame.h │ ├── register.h │ ├── unwind.c │ └── unwind.h │ ├── libvideo │ ├── compositor │ │ ├── api.h │ │ ├── compositor.c │ │ └── compositor.h │ ├── driver │ │ ├── adapter.c │ │ ├── adapter.h │ │ ├── adapter │ │ │ ├── svga.c │ │ │ └── svga.h │ │ └── api.h │ └── gfx │ │ ├── anim-writer.c │ │ ├── anim-writer.h │ │ ├── anim.c │ │ ├── anim.h │ │ ├── api.h │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── buffer │ │ ├── custom.c │ │ ├── custom.h │ │ ├── empty.c │ │ ├── empty.h │ │ ├── lockable.c │ │ ├── lockable.h │ │ ├── region.c │ │ └── region.h │ │ ├── codec │ │ ├── codec-extra.c │ │ ├── codec-specs.c │ │ ├── codec-specs.h │ │ ├── codec-utils.h │ │ ├── codec.c │ │ ├── codec.h │ │ ├── codecs-pixel-lt8.c.inl │ │ ├── converter.c │ │ ├── converter.h │ │ ├── palette.c │ │ └── palette.h │ │ ├── display.c │ │ ├── display.h │ │ ├── font.c │ │ ├── font.h │ │ ├── fonts │ │ ├── tlft.c │ │ └── tlft.h │ │ ├── gfx-debug.h │ │ ├── gfx-palettize.c │ │ ├── gfx-palettize.h │ │ ├── gfx-utils.h │ │ ├── gfx.c │ │ ├── gfx.h │ │ ├── io-utils.h │ │ ├── io.c │ │ ├── io.h │ │ ├── io │ │ ├── bmp.c.inl │ │ ├── gif.c.inl │ │ ├── jpg.c.inl │ │ ├── lodepng │ │ │ ├── LICENSE │ │ │ ├── lodepng.c │ │ │ └── lodepng.h │ │ ├── png-lodepng.c.inl │ │ └── png.c.inl │ │ ├── polygon.c │ │ ├── polygon.h │ │ ├── ramdomain-gfx.c │ │ ├── ramdomain.c │ │ ├── ramdomain.h │ │ ├── ramfddomain.c │ │ ├── ramfddomain.h │ │ ├── serial.c │ │ ├── serial.h │ │ ├── swgfx-hl-blit.c │ │ ├── swgfx-hl-xyswap.c │ │ ├── swgfx-hl.c │ │ ├── swgfx-ll-noblend.c │ │ ├── swgfx-ll.c │ │ ├── swgfx.h │ │ └── swgfx │ │ ├── hl_blit-nowrap.c.inl │ │ ├── hl_blit.c.inl │ │ ├── hl_generic.c.inl │ │ ├── ll.h │ │ ├── ll_blit.c.inl │ │ ├── ll_blit3-mask1msb.c.inl │ │ ├── ll_blit3.c.inl │ │ ├── ll_generic.c.inl │ │ ├── ll_noblend-blit.c.inl │ │ └── ll_noblend.c.inl │ ├── libvio │ ├── access-arith-impl.c.inl │ ├── access-copy.c.inl │ ├── access-write.c.inl │ ├── access.c │ ├── access.h │ ├── api.h │ ├── vio.c │ └── vio.h │ ├── libviocore │ ├── api.h │ ├── arch │ │ ├── arm │ │ │ └── README.md │ │ └── i386 │ │ │ └── viocore.c │ └── viocore.h │ ├── libvm86 │ ├── api.h │ ├── emuinstr.c │ ├── emulator.c │ └── emulator.h │ ├── libzlib │ ├── api.h │ ├── inflate.c │ └── inflate.h │ └── misc │ ├── .sources │ ├── bin │ └── ldd │ └── keymaps │ ├── de_DE │ └── en_US ├── magic.dee └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * -crlf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/Makefile -------------------------------------------------------------------------------- /kos/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/.clang-format -------------------------------------------------------------------------------- /kos/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/.clang-tidy -------------------------------------------------------------------------------- /kos/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/.editorconfig -------------------------------------------------------------------------------- /kos/.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/.sources -------------------------------------------------------------------------------- /kos/.vs/tasks.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/.vs/tasks.vs.json -------------------------------------------------------------------------------- /kos/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/.vscode/settings.json -------------------------------------------------------------------------------- /kos/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/.vscode/tasks.json -------------------------------------------------------------------------------- /kos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/README.md -------------------------------------------------------------------------------- /kos/cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/cpp.hint -------------------------------------------------------------------------------- /kos/include/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/README.md -------------------------------------------------------------------------------- /kos/include/__crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/__crt.h -------------------------------------------------------------------------------- /kos/include/__stdcxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/__stdcxx.h -------------------------------------------------------------------------------- /kos/include/__stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/__stdinc.h -------------------------------------------------------------------------------- /kos/include/_ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/_ansi.h -------------------------------------------------------------------------------- /kos/include/_lfs_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/_lfs_64.h -------------------------------------------------------------------------------- /kos/include/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/aio.h -------------------------------------------------------------------------------- /kos/include/aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/aliases.h -------------------------------------------------------------------------------- /kos/include/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/alloc.h -------------------------------------------------------------------------------- /kos/include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/alloca.h -------------------------------------------------------------------------------- /kos/include/ansidecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ansidecl.h -------------------------------------------------------------------------------- /kos/include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ar.h -------------------------------------------------------------------------------- /kos/include/argp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/argp.h -------------------------------------------------------------------------------- /kos/include/argz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/argz.h -------------------------------------------------------------------------------- /kos/include/arpa/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/arpa/ftp.h -------------------------------------------------------------------------------- /kos/include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/arpa/inet.h -------------------------------------------------------------------------------- /kos/include/arpa/nameser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/arpa/nameser.h -------------------------------------------------------------------------------- /kos/include/arpa/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/arpa/telnet.h -------------------------------------------------------------------------------- /kos/include/arpa/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/arpa/tftp.h -------------------------------------------------------------------------------- /kos/include/asm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/README.md -------------------------------------------------------------------------------- /kos/include/asm/__stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/__stdinc.h -------------------------------------------------------------------------------- /kos/include/asm/asmword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/asmword.h -------------------------------------------------------------------------------- /kos/include/asm/auxvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/auxvec.h -------------------------------------------------------------------------------- /kos/include/asm/cfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/cfi.h -------------------------------------------------------------------------------- /kos/include/asm/crt/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/crt/aio.h -------------------------------------------------------------------------------- /kos/include/asm/crt/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/crt/fenv.h -------------------------------------------------------------------------------- /kos/include/asm/crt/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/crt/glob.h -------------------------------------------------------------------------------- /kos/include/asm/crt/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/crt/time.h -------------------------------------------------------------------------------- /kos/include/asm/crt/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/crt/util.h -------------------------------------------------------------------------------- /kos/include/asm/crt/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/crt/vis.h -------------------------------------------------------------------------------- /kos/include/asm/defsym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/defsym.h -------------------------------------------------------------------------------- /kos/include/asm/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/errno.h -------------------------------------------------------------------------------- /kos/include/asm/farptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/farptr.h -------------------------------------------------------------------------------- /kos/include/asm/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/fcntl.h -------------------------------------------------------------------------------- /kos/include/asm/gas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/gas.h -------------------------------------------------------------------------------- /kos/include/asm/intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/intrin.h -------------------------------------------------------------------------------- /kos/include/asm/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/ioctl.h -------------------------------------------------------------------------------- /kos/include/asm/ioctls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/ioctls.h -------------------------------------------------------------------------------- /kos/include/asm/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/isa.h -------------------------------------------------------------------------------- /kos/include/asm/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/mman.h -------------------------------------------------------------------------------- /kos/include/asm/nomem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/nomem.h -------------------------------------------------------------------------------- /kos/include/asm/os/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/block.h -------------------------------------------------------------------------------- /kos/include/asm/os/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/clock.h -------------------------------------------------------------------------------- /kos/include/asm/os/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/epoll.h -------------------------------------------------------------------------------- /kos/include/asm/os/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/errno.h -------------------------------------------------------------------------------- /kos/include/asm/os/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/fcntl.h -------------------------------------------------------------------------------- /kos/include/asm/os/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/ipc.h -------------------------------------------------------------------------------- /kos/include/asm/os/mkdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/mkdev.h -------------------------------------------------------------------------------- /kos/include/asm/os/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/mman.h -------------------------------------------------------------------------------- /kos/include/asm/os/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/mount.h -------------------------------------------------------------------------------- /kos/include/asm/os/msq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/msq.h -------------------------------------------------------------------------------- /kos/include/asm/os/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/paths.h -------------------------------------------------------------------------------- /kos/include/asm/os/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/poll.h -------------------------------------------------------------------------------- /kos/include/asm/os/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/sched.h -------------------------------------------------------------------------------- /kos/include/asm/os/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/sem.h -------------------------------------------------------------------------------- /kos/include/asm/os/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/shm.h -------------------------------------------------------------------------------- /kos/include/asm/os/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/stat.h -------------------------------------------------------------------------------- /kos/include/asm/os/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/stdio.h -------------------------------------------------------------------------------- /kos/include/asm/os/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/swap.h -------------------------------------------------------------------------------- /kos/include/asm/os/timex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/timex.h -------------------------------------------------------------------------------- /kos/include/asm/os/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/tty.h -------------------------------------------------------------------------------- /kos/include/asm/os/vfork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/vfork.h -------------------------------------------------------------------------------- /kos/include/asm/os/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/wait.h -------------------------------------------------------------------------------- /kos/include/asm/os/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/os/xattr.h -------------------------------------------------------------------------------- /kos/include/asm/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/page.h -------------------------------------------------------------------------------- /kos/include/asm/pageid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/pageid.h -------------------------------------------------------------------------------- /kos/include/asm/pagesize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/pagesize.h -------------------------------------------------------------------------------- /kos/include/asm/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/param.h -------------------------------------------------------------------------------- /kos/include/asm/pkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/pkey.h -------------------------------------------------------------------------------- /kos/include/asm/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/poll.h -------------------------------------------------------------------------------- /kos/include/asm/prctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/prctl.h -------------------------------------------------------------------------------- /kos/include/asm/redirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/redirect.h -------------------------------------------------------------------------------- /kos/include/asm/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/resource.h -------------------------------------------------------------------------------- /kos/include/asm/sar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/sar.h -------------------------------------------------------------------------------- /kos/include/asm/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/setup.h -------------------------------------------------------------------------------- /kos/include/asm/siginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/siginfo.h -------------------------------------------------------------------------------- /kos/include/asm/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/signal.h -------------------------------------------------------------------------------- /kos/include/asm/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/socket.h -------------------------------------------------------------------------------- /kos/include/asm/sockios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/sockios.h -------------------------------------------------------------------------------- /kos/include/asm/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/stat.h -------------------------------------------------------------------------------- /kos/include/asm/statfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/statfs.h -------------------------------------------------------------------------------- /kos/include/asm/swab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/swab.h -------------------------------------------------------------------------------- /kos/include/asm/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/syscalls.h -------------------------------------------------------------------------------- /kos/include/asm/termbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/termbits.h -------------------------------------------------------------------------------- /kos/include/asm/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/termios.h -------------------------------------------------------------------------------- /kos/include/asm/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/types.h -------------------------------------------------------------------------------- /kos/include/asm/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/ucontext.h -------------------------------------------------------------------------------- /kos/include/asm/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/asm/unistd.h -------------------------------------------------------------------------------- /kos/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/assert.h -------------------------------------------------------------------------------- /kos/include/atomic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/atomic -------------------------------------------------------------------------------- /kos/include/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/atomic.h -------------------------------------------------------------------------------- /kos/include/attr/libattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/attr/libattr.h -------------------------------------------------------------------------------- /kos/include/attr/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/attr/xattr.h -------------------------------------------------------------------------------- /kos/include/bits/crt/div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/crt/div.h -------------------------------------------------------------------------------- /kos/include/bits/crt/fts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/crt/fts.h -------------------------------------------------------------------------------- /kos/include/bits/crt/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/crt/ftw.h -------------------------------------------------------------------------------- /kos/include/bits/crt/tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/crt/tm.h -------------------------------------------------------------------------------- /kos/include/bits/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/elf.h -------------------------------------------------------------------------------- /kos/include/bits/os/acct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/os/acct.h -------------------------------------------------------------------------------- /kos/include/bits/os/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/os/ipc.h -------------------------------------------------------------------------------- /kos/include/bits/os/msq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/os/msq.h -------------------------------------------------------------------------------- /kos/include/bits/os/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/os/sem.h -------------------------------------------------------------------------------- /kos/include/bits/os/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/os/shm.h -------------------------------------------------------------------------------- /kos/include/bits/os/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/os/stat.h -------------------------------------------------------------------------------- /kos/include/bits/os/tms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/os/tms.h -------------------------------------------------------------------------------- /kos/include/bits/os/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/os/wait.h -------------------------------------------------------------------------------- /kos/include/bits/sigset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/sigset.h -------------------------------------------------------------------------------- /kos/include/bits/std_abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/std_abs.h -------------------------------------------------------------------------------- /kos/include/bits/timex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/timex.h -------------------------------------------------------------------------------- /kos/include/bits/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/types.h -------------------------------------------------------------------------------- /kos/include/bits/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bits/wchar.h -------------------------------------------------------------------------------- /kos/include/bitstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bitstring.h -------------------------------------------------------------------------------- /kos/include/bsd/bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/bsd.h -------------------------------------------------------------------------------- /kos/include/bsd/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/err.h -------------------------------------------------------------------------------- /kos/include/bsd/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/errno.h -------------------------------------------------------------------------------- /kos/include/bsd/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/getopt.h -------------------------------------------------------------------------------- /kos/include/bsd/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/grp.h -------------------------------------------------------------------------------- /kos/include/bsd/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/inttypes.h -------------------------------------------------------------------------------- /kos/include/bsd/libutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/libutil.h -------------------------------------------------------------------------------- /kos/include/bsd/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/pwd.h -------------------------------------------------------------------------------- /kos/include/bsd/sgtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/sgtty.h -------------------------------------------------------------------------------- /kos/include/bsd/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/signal.h -------------------------------------------------------------------------------- /kos/include/bsd/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/stdio.h -------------------------------------------------------------------------------- /kos/include/bsd/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/stdlib.h -------------------------------------------------------------------------------- /kos/include/bsd/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/string.h -------------------------------------------------------------------------------- /kos/include/bsd/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/sys/poll.h -------------------------------------------------------------------------------- /kos/include/bsd/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/sys/time.h -------------------------------------------------------------------------------- /kos/include/bsd/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/tzfile.h -------------------------------------------------------------------------------- /kos/include/bsd/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/unistd.h -------------------------------------------------------------------------------- /kos/include/bsd/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/vis.h -------------------------------------------------------------------------------- /kos/include/bsd/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bsd/wchar.h -------------------------------------------------------------------------------- /kos/include/bstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bstring.h -------------------------------------------------------------------------------- /kos/include/bytesex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/bytesex.h -------------------------------------------------------------------------------- /kos/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/byteswap.h -------------------------------------------------------------------------------- /kos/include/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cassert -------------------------------------------------------------------------------- /kos/include/ccomplex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ccomplex -------------------------------------------------------------------------------- /kos/include/cctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cctype -------------------------------------------------------------------------------- /kos/include/cerrno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cerrno -------------------------------------------------------------------------------- /kos/include/cfenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cfenv -------------------------------------------------------------------------------- /kos/include/cfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cfi.h -------------------------------------------------------------------------------- /kos/include/cfloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cfloat -------------------------------------------------------------------------------- /kos/include/cinttypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cinttypes -------------------------------------------------------------------------------- /kos/include/ciso646: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ciso646 -------------------------------------------------------------------------------- /kos/include/climits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/climits -------------------------------------------------------------------------------- /kos/include/clocale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/clocale -------------------------------------------------------------------------------- /kos/include/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cmath -------------------------------------------------------------------------------- /kos/include/compiler/c++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/compiler/c++.h -------------------------------------------------------------------------------- /kos/include/compiler/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/compiler/c.h -------------------------------------------------------------------------------- /kos/include/compiler/gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/compiler/gcc.h -------------------------------------------------------------------------------- /kos/include/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/complex.h -------------------------------------------------------------------------------- /kos/include/confname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/confname.h -------------------------------------------------------------------------------- /kos/include/confstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/confstr.h -------------------------------------------------------------------------------- /kos/include/conio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/conio.h -------------------------------------------------------------------------------- /kos/include/corecrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/corecrt.h -------------------------------------------------------------------------------- /kos/include/corecrt_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/corecrt_io.h -------------------------------------------------------------------------------- /kos/include/corecrt_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/corecrt_math.h -------------------------------------------------------------------------------- /kos/include/corecrt_wio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/corecrt_wio.h -------------------------------------------------------------------------------- /kos/include/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cpio.h -------------------------------------------------------------------------------- /kos/include/crtdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/crtdbg.h -------------------------------------------------------------------------------- /kos/include/crtdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/crtdefs.h -------------------------------------------------------------------------------- /kos/include/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/crypt.h -------------------------------------------------------------------------------- /kos/include/csetjmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/csetjmp -------------------------------------------------------------------------------- /kos/include/csignal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/csignal -------------------------------------------------------------------------------- /kos/include/cstdalign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cstdalign -------------------------------------------------------------------------------- /kos/include/cstdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cstdarg -------------------------------------------------------------------------------- /kos/include/cstdbool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cstdbool -------------------------------------------------------------------------------- /kos/include/cstddef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cstddef -------------------------------------------------------------------------------- /kos/include/cstdint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cstdint -------------------------------------------------------------------------------- /kos/include/cstdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cstdio -------------------------------------------------------------------------------- /kos/include/cstdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cstdlib -------------------------------------------------------------------------------- /kos/include/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cstring -------------------------------------------------------------------------------- /kos/include/ctgmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ctgmath -------------------------------------------------------------------------------- /kos/include/cthreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cthreads.h -------------------------------------------------------------------------------- /kos/include/ctime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ctime -------------------------------------------------------------------------------- /kos/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ctype.h -------------------------------------------------------------------------------- /kos/include/cuchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cuchar -------------------------------------------------------------------------------- /kos/include/cwchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cwchar -------------------------------------------------------------------------------- /kos/include/cwctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/cwctype -------------------------------------------------------------------------------- /kos/include/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/daemon.h -------------------------------------------------------------------------------- /kos/include/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/dir.h -------------------------------------------------------------------------------- /kos/include/direct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/direct.h -------------------------------------------------------------------------------- /kos/include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/dirent.h -------------------------------------------------------------------------------- /kos/include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/dlfcn.h -------------------------------------------------------------------------------- /kos/include/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/dos.h -------------------------------------------------------------------------------- /kos/include/dyn-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/dyn-string.h -------------------------------------------------------------------------------- /kos/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/elf.h -------------------------------------------------------------------------------- /kos/include/elf_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/elf_abi.h -------------------------------------------------------------------------------- /kos/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/endian.h -------------------------------------------------------------------------------- /kos/include/envz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/envz.h -------------------------------------------------------------------------------- /kos/include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/err.h -------------------------------------------------------------------------------- /kos/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/errno.h -------------------------------------------------------------------------------- /kos/include/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/error.h -------------------------------------------------------------------------------- /kos/include/exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/exception -------------------------------------------------------------------------------- /kos/include/execinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/execinfo.h -------------------------------------------------------------------------------- /kos/include/fastmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/fastmath.h -------------------------------------------------------------------------------- /kos/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/fcntl.h -------------------------------------------------------------------------------- /kos/include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/features.h -------------------------------------------------------------------------------- /kos/include/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/fenv.h -------------------------------------------------------------------------------- /kos/include/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/file.h -------------------------------------------------------------------------------- /kos/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/float.h -------------------------------------------------------------------------------- /kos/include/fmtmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/fmtmsg.h -------------------------------------------------------------------------------- /kos/include/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/fnmatch.h -------------------------------------------------------------------------------- /kos/include/fpu_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/fpu_control.h -------------------------------------------------------------------------------- /kos/include/fstab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/fstab.h -------------------------------------------------------------------------------- /kos/include/fts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/fts.h -------------------------------------------------------------------------------- /kos/include/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ftw.h -------------------------------------------------------------------------------- /kos/include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/getopt.h -------------------------------------------------------------------------------- /kos/include/getpagesize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/getpagesize.h -------------------------------------------------------------------------------- /kos/include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/glob.h -------------------------------------------------------------------------------- /kos/include/gnu-versions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/gnu-versions.h -------------------------------------------------------------------------------- /kos/include/gnu/stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/gnu/stubs.h -------------------------------------------------------------------------------- /kos/include/gppconio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/gppconio.h -------------------------------------------------------------------------------- /kos/include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/grp.h -------------------------------------------------------------------------------- /kos/include/huge_val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/huge_val.h -------------------------------------------------------------------------------- /kos/include/hw/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hw/README.txt -------------------------------------------------------------------------------- /kos/include/hw/bus/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hw/bus/pci.h -------------------------------------------------------------------------------- /kos/include/hw/disk/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hw/disk/ata.h -------------------------------------------------------------------------------- /kos/include/hw/disk/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hw/disk/scsi.h -------------------------------------------------------------------------------- /kos/include/hw/hid/ps2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hw/hid/ps2.h -------------------------------------------------------------------------------- /kos/include/hw/ic/apic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hw/ic/apic.h -------------------------------------------------------------------------------- /kos/include/hw/ic/pic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hw/ic/pic.h -------------------------------------------------------------------------------- /kos/include/hw/net/ne2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hw/net/ne2k.h -------------------------------------------------------------------------------- /kos/include/hw/rtc/cmos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hw/rtc/cmos.h -------------------------------------------------------------------------------- /kos/include/hw/timer/pit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hw/timer/pit.h -------------------------------------------------------------------------------- /kos/include/hw/usb/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hw/usb/class.h -------------------------------------------------------------------------------- /kos/include/hw/usb/hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hw/usb/hub.h -------------------------------------------------------------------------------- /kos/include/hw/usb/ohci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hw/usb/ohci.h -------------------------------------------------------------------------------- /kos/include/hw/usb/uhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hw/usb/uhci.h -------------------------------------------------------------------------------- /kos/include/hw/usb/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hw/usb/usb.h -------------------------------------------------------------------------------- /kos/include/hw/video/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hw/video/vga.h -------------------------------------------------------------------------------- /kos/include/hybrid/__asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hybrid/__asm.h -------------------------------------------------------------------------------- /kos/include/hybrid/__bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hybrid/__bit.h -------------------------------------------------------------------------------- /kos/include/hybrid/align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hybrid/align.h -------------------------------------------------------------------------------- /kos/include/hybrid/bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hybrid/bit.h -------------------------------------------------------------------------------- /kos/include/hybrid/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/hybrid/host.h -------------------------------------------------------------------------------- /kos/include/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/iconv.h -------------------------------------------------------------------------------- /kos/include/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ieee754.h -------------------------------------------------------------------------------- /kos/include/ieee854.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ieee854.h -------------------------------------------------------------------------------- /kos/include/ieeefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ieeefp.h -------------------------------------------------------------------------------- /kos/include/ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ifaddrs.h -------------------------------------------------------------------------------- /kos/include/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/int128.h -------------------------------------------------------------------------------- /kos/include/intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/intrin.h -------------------------------------------------------------------------------- /kos/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/inttypes.h -------------------------------------------------------------------------------- /kos/include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/io.h -------------------------------------------------------------------------------- /kos/include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/iso646.h -------------------------------------------------------------------------------- /kos/include/iterator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/iterator -------------------------------------------------------------------------------- /kos/include/jmp_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/jmp_buf.h -------------------------------------------------------------------------------- /kos/include/kos/anno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/anno.h -------------------------------------------------------------------------------- /kos/include/kos/aref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/aref.h -------------------------------------------------------------------------------- /kos/include/kos/asm/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/asm/rpc.h -------------------------------------------------------------------------------- /kos/include/kos/asm/rtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/asm/rtm.h -------------------------------------------------------------------------------- /kos/include/kos/bits/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/bits/rpc.h -------------------------------------------------------------------------------- /kos/include/kos/bits/rtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/bits/rtm.h -------------------------------------------------------------------------------- /kos/include/kos/coredump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/coredump.h -------------------------------------------------------------------------------- /kos/include/kos/dosfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/dosfs.h -------------------------------------------------------------------------------- /kos/include/kos/except.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/except.h -------------------------------------------------------------------------------- /kos/include/kos/exec/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/exec/elf.h -------------------------------------------------------------------------------- /kos/include/kos/exec/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/exec/pe.h -------------------------------------------------------------------------------- /kos/include/kos/exec/peb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/exec/peb.h -------------------------------------------------------------------------------- /kos/include/kos/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/fcntl.h -------------------------------------------------------------------------------- /kos/include/kos/fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/fd.h -------------------------------------------------------------------------------- /kos/include/kos/futex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/futex.h -------------------------------------------------------------------------------- /kos/include/kos/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/io.h -------------------------------------------------------------------------------- /kos/include/kos/ioctl/fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/ioctl/fd.h -------------------------------------------------------------------------------- /kos/include/kos/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/keyboard.h -------------------------------------------------------------------------------- /kos/include/kos/ksysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/ksysctl.h -------------------------------------------------------------------------------- /kos/include/kos/lockop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/lockop.h -------------------------------------------------------------------------------- /kos/include/kos/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/malloc.h -------------------------------------------------------------------------------- /kos/include/kos/malloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/malloca.h -------------------------------------------------------------------------------- /kos/include/kos/nopf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/nopf.h -------------------------------------------------------------------------------- /kos/include/kos/refcnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/refcnt.h -------------------------------------------------------------------------------- /kos/include/kos/refptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/refptr.h -------------------------------------------------------------------------------- /kos/include/kos/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/rpc.h -------------------------------------------------------------------------------- /kos/include/kos/rpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/rpc.md -------------------------------------------------------------------------------- /kos/include/kos/rtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/rtm.h -------------------------------------------------------------------------------- /kos/include/kos/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/sys/mman.h -------------------------------------------------------------------------------- /kos/include/kos/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/sys/stat.h -------------------------------------------------------------------------------- /kos/include/kos/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/syscalls.h -------------------------------------------------------------------------------- /kos/include/kos/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/thread.h -------------------------------------------------------------------------------- /kos/include/kos/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/types.h -------------------------------------------------------------------------------- /kos/include/kos/ukern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/ukern.h -------------------------------------------------------------------------------- /kos/include/kos/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/unistd.h -------------------------------------------------------------------------------- /kos/include/kos/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/kos/uuid.h -------------------------------------------------------------------------------- /kos/include/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/langinfo.h -------------------------------------------------------------------------------- /kos/include/lastlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/lastlog.h -------------------------------------------------------------------------------- /kos/include/libc/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libc/ctype.h -------------------------------------------------------------------------------- /kos/include/libc/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libc/errno.h -------------------------------------------------------------------------------- /kos/include/libc/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libc/error.h -------------------------------------------------------------------------------- /kos/include/libc/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libc/fenv.h -------------------------------------------------------------------------------- /kos/include/libc/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libc/malloc.h -------------------------------------------------------------------------------- /kos/include/libc/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libc/signal.h -------------------------------------------------------------------------------- /kos/include/libc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libc/stdlib.h -------------------------------------------------------------------------------- /kos/include/libc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libc/string.h -------------------------------------------------------------------------------- /kos/include/libc/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libc/strings.h -------------------------------------------------------------------------------- /kos/include/libc/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libc/unicode.h -------------------------------------------------------------------------------- /kos/include/libc/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libc/unistd.h -------------------------------------------------------------------------------- /kos/include/libdl/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libdl/api.h -------------------------------------------------------------------------------- /kos/include/libdl/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libdl/module.h -------------------------------------------------------------------------------- /kos/include/libdl/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libdl/tls.h -------------------------------------------------------------------------------- /kos/include/libemu86/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libemu86/api.h -------------------------------------------------------------------------------- /kos/include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libgen.h -------------------------------------------------------------------------------- /kos/include/libiberty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libiberty.h -------------------------------------------------------------------------------- /kos/include/libiconv/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libiconv/api.h -------------------------------------------------------------------------------- /kos/include/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libintl.h -------------------------------------------------------------------------------- /kos/include/libio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libio.h -------------------------------------------------------------------------------- /kos/include/libjson/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libjson/api.h -------------------------------------------------------------------------------- /kos/include/libm/acos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/acos.h -------------------------------------------------------------------------------- /kos/include/libm/acosh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/acosh.h -------------------------------------------------------------------------------- /kos/include/libm/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/api.h -------------------------------------------------------------------------------- /kos/include/libm/asin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/asin.h -------------------------------------------------------------------------------- /kos/include/libm/asinh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/asinh.h -------------------------------------------------------------------------------- /kos/include/libm/asm/exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/asm/exp.h -------------------------------------------------------------------------------- /kos/include/libm/asm/inf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/asm/inf.h -------------------------------------------------------------------------------- /kos/include/libm/asm/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/asm/nan.h -------------------------------------------------------------------------------- /kos/include/libm/atan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/atan.h -------------------------------------------------------------------------------- /kos/include/libm/atan2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/atan2.h -------------------------------------------------------------------------------- /kos/include/libm/atanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/atanh.h -------------------------------------------------------------------------------- /kos/include/libm/cbrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/cbrt.h -------------------------------------------------------------------------------- /kos/include/libm/ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/ceil.h -------------------------------------------------------------------------------- /kos/include/libm/cos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/cos.h -------------------------------------------------------------------------------- /kos/include/libm/cosh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/cosh.h -------------------------------------------------------------------------------- /kos/include/libm/erf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/erf.h -------------------------------------------------------------------------------- /kos/include/libm/erfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/erfc.h -------------------------------------------------------------------------------- /kos/include/libm/exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/exp.h -------------------------------------------------------------------------------- /kos/include/libm/exp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/exp2.h -------------------------------------------------------------------------------- /kos/include/libm/expm1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/expm1.h -------------------------------------------------------------------------------- /kos/include/libm/fabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/fabs.h -------------------------------------------------------------------------------- /kos/include/libm/fcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/fcomp.h -------------------------------------------------------------------------------- /kos/include/libm/fdlibm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/fdlibm.h -------------------------------------------------------------------------------- /kos/include/libm/finite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/finite.h -------------------------------------------------------------------------------- /kos/include/libm/floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/floor.h -------------------------------------------------------------------------------- /kos/include/libm/fmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/fmod.h -------------------------------------------------------------------------------- /kos/include/libm/frexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/frexp.h -------------------------------------------------------------------------------- /kos/include/libm/hypot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/hypot.h -------------------------------------------------------------------------------- /kos/include/libm/ilogb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/ilogb.h -------------------------------------------------------------------------------- /kos/include/libm/inf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/inf.h -------------------------------------------------------------------------------- /kos/include/libm/isinf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/isinf.h -------------------------------------------------------------------------------- /kos/include/libm/isnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/isnan.h -------------------------------------------------------------------------------- /kos/include/libm/j0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/j0.h -------------------------------------------------------------------------------- /kos/include/libm/j1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/j1.h -------------------------------------------------------------------------------- /kos/include/libm/jn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/jn.h -------------------------------------------------------------------------------- /kos/include/libm/ldexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/ldexp.h -------------------------------------------------------------------------------- /kos/include/libm/lgamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/lgamma.h -------------------------------------------------------------------------------- /kos/include/libm/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/log.h -------------------------------------------------------------------------------- /kos/include/libm/log10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/log10.h -------------------------------------------------------------------------------- /kos/include/libm/log1p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/log1p.h -------------------------------------------------------------------------------- /kos/include/libm/log2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/log2.h -------------------------------------------------------------------------------- /kos/include/libm/logb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/logb.h -------------------------------------------------------------------------------- /kos/include/libm/lrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/lrint.h -------------------------------------------------------------------------------- /kos/include/libm/lround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/lround.h -------------------------------------------------------------------------------- /kos/include/libm/matherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/matherr.h -------------------------------------------------------------------------------- /kos/include/libm/modf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/modf.h -------------------------------------------------------------------------------- /kos/include/libm/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/nan.h -------------------------------------------------------------------------------- /kos/include/libm/nextup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/nextup.h -------------------------------------------------------------------------------- /kos/include/libm/pone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/pone.h -------------------------------------------------------------------------------- /kos/include/libm/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/pow.h -------------------------------------------------------------------------------- /kos/include/libm/pzero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/pzero.h -------------------------------------------------------------------------------- /kos/include/libm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/readme.md -------------------------------------------------------------------------------- /kos/include/libm/remquo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/remquo.h -------------------------------------------------------------------------------- /kos/include/libm/rint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/rint.h -------------------------------------------------------------------------------- /kos/include/libm/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/round.h -------------------------------------------------------------------------------- /kos/include/libm/scalb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/scalb.h -------------------------------------------------------------------------------- /kos/include/libm/scalbn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/scalbn.h -------------------------------------------------------------------------------- /kos/include/libm/signbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/signbit.h -------------------------------------------------------------------------------- /kos/include/libm/sin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/sin.h -------------------------------------------------------------------------------- /kos/include/libm/sincos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/sincos.h -------------------------------------------------------------------------------- /kos/include/libm/sinh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/sinh.h -------------------------------------------------------------------------------- /kos/include/libm/sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/sqrt.h -------------------------------------------------------------------------------- /kos/include/libm/tan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/tan.h -------------------------------------------------------------------------------- /kos/include/libm/tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/tanh.h -------------------------------------------------------------------------------- /kos/include/libm/tgamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/tgamma.h -------------------------------------------------------------------------------- /kos/include/libm/trunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/trunc.h -------------------------------------------------------------------------------- /kos/include/libm/y0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/y0.h -------------------------------------------------------------------------------- /kos/include/libm/y1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/y1.h -------------------------------------------------------------------------------- /kos/include/libm/yn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libm/yn.h -------------------------------------------------------------------------------- /kos/include/libphys/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libphys/api.h -------------------------------------------------------------------------------- /kos/include/libphys/phys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libphys/phys.h -------------------------------------------------------------------------------- /kos/include/libregex/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libregex/api.h -------------------------------------------------------------------------------- /kos/include/libterm/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libterm/api.h -------------------------------------------------------------------------------- /kos/include/libutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libutil.h -------------------------------------------------------------------------------- /kos/include/libvio/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libvio/api.h -------------------------------------------------------------------------------- /kos/include/libvio/vio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libvio/vio.h -------------------------------------------------------------------------------- /kos/include/libvm86/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libvm86/api.h -------------------------------------------------------------------------------- /kos/include/libzlib/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/libzlib/api.h -------------------------------------------------------------------------------- /kos/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/limits.h -------------------------------------------------------------------------------- /kos/include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/link.h -------------------------------------------------------------------------------- /kos/include/linux/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/fcntl.h -------------------------------------------------------------------------------- /kos/include/linux/fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/fd.h -------------------------------------------------------------------------------- /kos/include/linux/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/fs.h -------------------------------------------------------------------------------- /kos/include/linux/futex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/futex.h -------------------------------------------------------------------------------- /kos/include/linux/hdreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/hdreg.h -------------------------------------------------------------------------------- /kos/include/linux/if_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/if_arp.h -------------------------------------------------------------------------------- /kos/include/linux/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/ioctl.h -------------------------------------------------------------------------------- /kos/include/linux/kcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/kcmp.h -------------------------------------------------------------------------------- /kos/include/linux/kd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/kd.h -------------------------------------------------------------------------------- /kos/include/linux/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/kernel.h -------------------------------------------------------------------------------- /kos/include/linux/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/limits.h -------------------------------------------------------------------------------- /kos/include/linux/magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/magic.h -------------------------------------------------------------------------------- /kos/include/linux/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/net.h -------------------------------------------------------------------------------- /kos/include/linux/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/param.h -------------------------------------------------------------------------------- /kos/include/linux/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/pci.h -------------------------------------------------------------------------------- /kos/include/linux/prctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/prctl.h -------------------------------------------------------------------------------- /kos/include/linux/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/socket.h -------------------------------------------------------------------------------- /kos/include/linux/stddef.h: -------------------------------------------------------------------------------- 1 | 2 | /* (#) Portability: Linux (/usr/include/linux/stddef.h) */ 3 | -------------------------------------------------------------------------------- /kos/include/linux/swab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/swab.h -------------------------------------------------------------------------------- /kos/include/linux/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/types.h -------------------------------------------------------------------------------- /kos/include/linux/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/unistd.h -------------------------------------------------------------------------------- /kos/include/linux/vt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/vt.h -------------------------------------------------------------------------------- /kos/include/linux/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/linux/xattr.h -------------------------------------------------------------------------------- /kos/include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/locale.h -------------------------------------------------------------------------------- /kos/include/lock-intern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/lock-intern.h -------------------------------------------------------------------------------- /kos/include/machine-sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/machine-sp.h -------------------------------------------------------------------------------- /kos/include/machine/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/machine/ansi.h -------------------------------------------------------------------------------- /kos/include/machine/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/machine/time.h -------------------------------------------------------------------------------- /kos/include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/malloc.h -------------------------------------------------------------------------------- /kos/include/malloc_np.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/malloc_np.h -------------------------------------------------------------------------------- /kos/include/malloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/malloca.h -------------------------------------------------------------------------------- /kos/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/math.h -------------------------------------------------------------------------------- /kos/include/mbctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/mbctype.h -------------------------------------------------------------------------------- /kos/include/mbstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/mbstring.h -------------------------------------------------------------------------------- /kos/include/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/mem.h -------------------------------------------------------------------------------- /kos/include/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/memory -------------------------------------------------------------------------------- /kos/include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/memory.h -------------------------------------------------------------------------------- /kos/include/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/minmax.h -------------------------------------------------------------------------------- /kos/include/mntent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/mntent.h -------------------------------------------------------------------------------- /kos/include/monetary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/monetary.h -------------------------------------------------------------------------------- /kos/include/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/mqueue.h -------------------------------------------------------------------------------- /kos/include/mutex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/mutex -------------------------------------------------------------------------------- /kos/include/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nan.h -------------------------------------------------------------------------------- /kos/include/ndir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ndir.h -------------------------------------------------------------------------------- /kos/include/net/ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/net/ethernet.h -------------------------------------------------------------------------------- /kos/include/net/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/net/if.h -------------------------------------------------------------------------------- /kos/include/net/if_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/net/if_arp.h -------------------------------------------------------------------------------- /kos/include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/netdb.h -------------------------------------------------------------------------------- /kos/include/netinet/igmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/netinet/igmp.h -------------------------------------------------------------------------------- /kos/include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/netinet/in.h -------------------------------------------------------------------------------- /kos/include/netinet/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/netinet/ip.h -------------------------------------------------------------------------------- /kos/include/netinet/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/netinet/ip6.h -------------------------------------------------------------------------------- /kos/include/netinet/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/netinet/tcp.h -------------------------------------------------------------------------------- /kos/include/netinet/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/netinet/udp.h -------------------------------------------------------------------------------- /kos/include/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/new -------------------------------------------------------------------------------- /kos/include/new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/new.h -------------------------------------------------------------------------------- /kos/include/newlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/newlib.h -------------------------------------------------------------------------------- /kos/include/nl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nl_types.h -------------------------------------------------------------------------------- /kos/include/nt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/README.md -------------------------------------------------------------------------------- /kos/include/nt/__stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/__stdinc.h -------------------------------------------------------------------------------- /kos/include/nt/debugapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/debugapi.h -------------------------------------------------------------------------------- /kos/include/nt/fileapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/fileapi.h -------------------------------------------------------------------------------- /kos/include/nt/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/guid.h -------------------------------------------------------------------------------- /kos/include/nt/handleapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/handleapi.h -------------------------------------------------------------------------------- /kos/include/nt/heapapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/heapapi.h -------------------------------------------------------------------------------- /kos/include/nt/memoryapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/memoryapi.h -------------------------------------------------------------------------------- /kos/include/nt/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/messages.h -------------------------------------------------------------------------------- /kos/include/nt/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/pe.h -------------------------------------------------------------------------------- /kos/include/nt/poppack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/poppack.h -------------------------------------------------------------------------------- /kos/include/nt/pshpack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/pshpack1.h -------------------------------------------------------------------------------- /kos/include/nt/pshpack2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/pshpack2.h -------------------------------------------------------------------------------- /kos/include/nt/pshpack4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/pshpack4.h -------------------------------------------------------------------------------- /kos/include/nt/pshpack8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/pshpack8.h -------------------------------------------------------------------------------- /kos/include/nt/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/startup.h -------------------------------------------------------------------------------- /kos/include/nt/synchapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/synchapi.h -------------------------------------------------------------------------------- /kos/include/nt/tib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/tib.h -------------------------------------------------------------------------------- /kos/include/nt/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/types.h -------------------------------------------------------------------------------- /kos/include/nt/wincon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/wincon.h -------------------------------------------------------------------------------- /kos/include/nt/wingdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/wingdi.h -------------------------------------------------------------------------------- /kos/include/nt/winnls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/nt/winnls.h -------------------------------------------------------------------------------- /kos/include/objalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/objalloc.h -------------------------------------------------------------------------------- /kos/include/obstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/obstack.h -------------------------------------------------------------------------------- /kos/include/osfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/osfcn.h -------------------------------------------------------------------------------- /kos/include/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/partition.h -------------------------------------------------------------------------------- /kos/include/parts/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/parts/assert.h -------------------------------------------------------------------------------- /kos/include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/paths.h -------------------------------------------------------------------------------- /kos/include/pciaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/pciaccess.h -------------------------------------------------------------------------------- /kos/include/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/poll.h -------------------------------------------------------------------------------- /kos/include/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/printf.h -------------------------------------------------------------------------------- /kos/include/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/process.h -------------------------------------------------------------------------------- /kos/include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/pthread.h -------------------------------------------------------------------------------- /kos/include/pthread_np.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/pthread_np.h -------------------------------------------------------------------------------- /kos/include/pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/pty.h -------------------------------------------------------------------------------- /kos/include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/pwd.h -------------------------------------------------------------------------------- /kos/include/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/random.h -------------------------------------------------------------------------------- /kos/include/re_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/re_comp.h -------------------------------------------------------------------------------- /kos/include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/regex.h -------------------------------------------------------------------------------- /kos/include/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/regexp.h -------------------------------------------------------------------------------- /kos/include/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/resolv.h -------------------------------------------------------------------------------- /kos/include/rpc/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/rpc/netdb.h -------------------------------------------------------------------------------- /kos/include/sal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sal.h -------------------------------------------------------------------------------- /kos/include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sched.h -------------------------------------------------------------------------------- /kos/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/search.h -------------------------------------------------------------------------------- /kos/include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/semaphore.h -------------------------------------------------------------------------------- /kos/include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/setjmp.h -------------------------------------------------------------------------------- /kos/include/sgtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sgtty.h -------------------------------------------------------------------------------- /kos/include/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/shadow.h -------------------------------------------------------------------------------- /kos/include/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/share.h -------------------------------------------------------------------------------- /kos/include/siginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/siginfo.h -------------------------------------------------------------------------------- /kos/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/signal.h -------------------------------------------------------------------------------- /kos/include/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sort.h -------------------------------------------------------------------------------- /kos/include/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/spawn.h -------------------------------------------------------------------------------- /kos/include/spin-lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/spin-lock.h -------------------------------------------------------------------------------- /kos/include/ssp/chk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ssp/chk.h -------------------------------------------------------------------------------- /kos/include/ssp/ssp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ssp/ssp.h -------------------------------------------------------------------------------- /kos/include/ssp/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ssp/string.h -------------------------------------------------------------------------------- /kos/include/stack_unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/stack_unwind.h -------------------------------------------------------------------------------- /kos/include/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/std.h -------------------------------------------------------------------------------- /kos/include/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/stdalign.h -------------------------------------------------------------------------------- /kos/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/stdarg.h -------------------------------------------------------------------------------- /kos/include/stdatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/stdatomic.h -------------------------------------------------------------------------------- /kos/include/stdbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/stdbit.h -------------------------------------------------------------------------------- /kos/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/stdbool.h -------------------------------------------------------------------------------- /kos/include/stdc-predef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/stdc-predef.h -------------------------------------------------------------------------------- /kos/include/stdckdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/stdckdint.h -------------------------------------------------------------------------------- /kos/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/stddef.h -------------------------------------------------------------------------------- /kos/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/stdint.h -------------------------------------------------------------------------------- /kos/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/stdio.h -------------------------------------------------------------------------------- /kos/include/stdio_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/stdio_ext.h -------------------------------------------------------------------------------- /kos/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/stdlib.h -------------------------------------------------------------------------------- /kos/include/stdnoreturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/stdnoreturn.h -------------------------------------------------------------------------------- /kos/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/string.h -------------------------------------------------------------------------------- /kos/include/stringlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/stringlist.h -------------------------------------------------------------------------------- /kos/include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/strings.h -------------------------------------------------------------------------------- /kos/include/stropts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/stropts.h -------------------------------------------------------------------------------- /kos/include/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/struct.h -------------------------------------------------------------------------------- /kos/include/symcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/symcat.h -------------------------------------------------------------------------------- /kos/include/sys/_intsup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/_intsup.h -------------------------------------------------------------------------------- /kos/include/sys/_iovec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/_iovec.h -------------------------------------------------------------------------------- /kos/include/sys/_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/_null.h -------------------------------------------------------------------------------- /kos/include/sys/_sigset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/_sigset.h -------------------------------------------------------------------------------- /kos/include/sys/_stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/_stdarg.h -------------------------------------------------------------------------------- /kos/include/sys/_stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/_stdint.h -------------------------------------------------------------------------------- /kos/include/sys/_timeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/_timeval.h -------------------------------------------------------------------------------- /kos/include/sys/_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/_types.h -------------------------------------------------------------------------------- /kos/include/sys/acct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/acct.h -------------------------------------------------------------------------------- /kos/include/sys/aiocb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/aiocb.h -------------------------------------------------------------------------------- /kos/include/sys/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/ansi.h -------------------------------------------------------------------------------- /kos/include/sys/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/atomic.h -------------------------------------------------------------------------------- /kos/include/sys/auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/auxv.h -------------------------------------------------------------------------------- /kos/include/sys/bitypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/bitypes.h -------------------------------------------------------------------------------- /kos/include/sys/bsdtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/bsdtypes.h -------------------------------------------------------------------------------- /kos/include/sys/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/bswap.h -------------------------------------------------------------------------------- /kos/include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/cdefs.h -------------------------------------------------------------------------------- /kos/include/sys/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/config.h -------------------------------------------------------------------------------- /kos/include/sys/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/dir.h -------------------------------------------------------------------------------- /kos/include/sys/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/dirent.h -------------------------------------------------------------------------------- /kos/include/sys/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/elf.h -------------------------------------------------------------------------------- /kos/include/sys/elf_386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/elf_386.h -------------------------------------------------------------------------------- /kos/include/sys/elftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/elftypes.h -------------------------------------------------------------------------------- /kos/include/sys/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/endian.h -------------------------------------------------------------------------------- /kos/include/sys/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/epoll.h -------------------------------------------------------------------------------- /kos/include/sys/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/errno.h -------------------------------------------------------------------------------- /kos/include/sys/eventfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/eventfd.h -------------------------------------------------------------------------------- /kos/include/sys/exec_elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/exec_elf.h -------------------------------------------------------------------------------- /kos/include/sys/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/fcntl.h -------------------------------------------------------------------------------- /kos/include/sys/fcntlcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/fcntlcom.h -------------------------------------------------------------------------------- /kos/include/sys/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/features.h -------------------------------------------------------------------------------- /kos/include/sys/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/file.h -------------------------------------------------------------------------------- /kos/include/sys/filio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/filio.h -------------------------------------------------------------------------------- /kos/include/sys/fsuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/fsuid.h -------------------------------------------------------------------------------- /kos/include/sys/inotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/inotify.h -------------------------------------------------------------------------------- /kos/include/sys/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/inttypes.h -------------------------------------------------------------------------------- /kos/include/sys/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/io.h -------------------------------------------------------------------------------- /kos/include/sys/ioccom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/ioccom.h -------------------------------------------------------------------------------- /kos/include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/ioctl.h -------------------------------------------------------------------------------- /kos/include/sys/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/ipc.h -------------------------------------------------------------------------------- /kos/include/sys/isa_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/isa_defs.h -------------------------------------------------------------------------------- /kos/include/sys/kd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/kd.h -------------------------------------------------------------------------------- /kos/include/sys/klog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/klog.h -------------------------------------------------------------------------------- /kos/include/sys/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/link.h -------------------------------------------------------------------------------- /kos/include/sys/loadavg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/loadavg.h -------------------------------------------------------------------------------- /kos/include/sys/mkdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/mkdev.h -------------------------------------------------------------------------------- /kos/include/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/mman.h -------------------------------------------------------------------------------- /kos/include/sys/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/mmio.h -------------------------------------------------------------------------------- /kos/include/sys/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/mount.h -------------------------------------------------------------------------------- /kos/include/sys/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/msg.h -------------------------------------------------------------------------------- /kos/include/sys/ndir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/ndir.h -------------------------------------------------------------------------------- /kos/include/sys/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/null.h -------------------------------------------------------------------------------- /kos/include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/param.h -------------------------------------------------------------------------------- /kos/include/sys/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/pci.h -------------------------------------------------------------------------------- /kos/include/sys/perm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/perm.h -------------------------------------------------------------------------------- /kos/include/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/poll.h -------------------------------------------------------------------------------- /kos/include/sys/prctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/prctl.h -------------------------------------------------------------------------------- /kos/include/sys/procfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/procfs.h -------------------------------------------------------------------------------- /kos/include/sys/profil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/profil.h -------------------------------------------------------------------------------- /kos/include/sys/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/ptrace.h -------------------------------------------------------------------------------- /kos/include/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/queue.h -------------------------------------------------------------------------------- /kos/include/sys/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/random.h -------------------------------------------------------------------------------- /kos/include/sys/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/reboot.h -------------------------------------------------------------------------------- /kos/include/sys/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/resource.h -------------------------------------------------------------------------------- /kos/include/sys/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/sched.h -------------------------------------------------------------------------------- /kos/include/sys/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/select.h -------------------------------------------------------------------------------- /kos/include/sys/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/sem.h -------------------------------------------------------------------------------- /kos/include/sys/sendfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/sendfile.h -------------------------------------------------------------------------------- /kos/include/sys/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/setjmp.h -------------------------------------------------------------------------------- /kos/include/sys/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/shm.h -------------------------------------------------------------------------------- /kos/include/sys/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/signal.h -------------------------------------------------------------------------------- /kos/include/sys/signalfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/signalfd.h -------------------------------------------------------------------------------- /kos/include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/socket.h -------------------------------------------------------------------------------- /kos/include/sys/sockio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/sockio.h -------------------------------------------------------------------------------- /kos/include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/stat.h -------------------------------------------------------------------------------- /kos/include/sys/statfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/statfs.h -------------------------------------------------------------------------------- /kos/include/sys/statvfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/statvfs.h -------------------------------------------------------------------------------- /kos/include/sys/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/stdarg.h -------------------------------------------------------------------------------- /kos/include/sys/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/stdbool.h -------------------------------------------------------------------------------- /kos/include/sys/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/stdint.h -------------------------------------------------------------------------------- /kos/include/sys/stdtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/stdtypes.h -------------------------------------------------------------------------------- /kos/include/sys/stropts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/stropts.h -------------------------------------------------------------------------------- /kos/include/sys/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/swap.h -------------------------------------------------------------------------------- /kos/include/sys/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/syscall.h -------------------------------------------------------------------------------- /kos/include/sys/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/sysinfo.h -------------------------------------------------------------------------------- /kos/include/sys/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/syslog.h -------------------------------------------------------------------------------- /kos/include/sys/termio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/termio.h -------------------------------------------------------------------------------- /kos/include/sys/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/termios.h -------------------------------------------------------------------------------- /kos/include/sys/termiox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/termiox.h -------------------------------------------------------------------------------- /kos/include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/time.h -------------------------------------------------------------------------------- /kos/include/sys/timeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/timeb.h -------------------------------------------------------------------------------- /kos/include/sys/timerfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/timerfd.h -------------------------------------------------------------------------------- /kos/include/sys/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/times.h -------------------------------------------------------------------------------- /kos/include/sys/timespec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/timespec.h -------------------------------------------------------------------------------- /kos/include/sys/timex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/timex.h -------------------------------------------------------------------------------- /kos/include/sys/ttychars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/ttychars.h -------------------------------------------------------------------------------- /kos/include/sys/ttycom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/ttycom.h -------------------------------------------------------------------------------- /kos/include/sys/ttydev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/ttydev.h -------------------------------------------------------------------------------- /kos/include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/types.h -------------------------------------------------------------------------------- /kos/include/sys/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/ucontext.h -------------------------------------------------------------------------------- /kos/include/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/uio.h -------------------------------------------------------------------------------- /kos/include/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/un.h -------------------------------------------------------------------------------- /kos/include/sys/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/unistd.h -------------------------------------------------------------------------------- /kos/include/sys/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/user.h -------------------------------------------------------------------------------- /kos/include/sys/ustat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/ustat.h -------------------------------------------------------------------------------- /kos/include/sys/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/utime.h -------------------------------------------------------------------------------- /kos/include/sys/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/utsname.h -------------------------------------------------------------------------------- /kos/include/sys/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/vfs.h -------------------------------------------------------------------------------- /kos/include/sys/vlimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/vlimit.h -------------------------------------------------------------------------------- /kos/include/sys/vt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/vt.h -------------------------------------------------------------------------------- /kos/include/sys/vtimes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/vtimes.h -------------------------------------------------------------------------------- /kos/include/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/wait.h -------------------------------------------------------------------------------- /kos/include/sys/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sys/xattr.h -------------------------------------------------------------------------------- /kos/include/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/syscall.h -------------------------------------------------------------------------------- /kos/include/sysexits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/sysexits.h -------------------------------------------------------------------------------- /kos/include/syslimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/syslimits.h -------------------------------------------------------------------------------- /kos/include/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/syslog.h -------------------------------------------------------------------------------- /kos/include/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/tar.h -------------------------------------------------------------------------------- /kos/include/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/tchar.h -------------------------------------------------------------------------------- /kos/include/termio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/termio.h -------------------------------------------------------------------------------- /kos/include/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/termios.h -------------------------------------------------------------------------------- /kos/include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/tgmath.h -------------------------------------------------------------------------------- /kos/include/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/thread.h -------------------------------------------------------------------------------- /kos/include/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/threads.h -------------------------------------------------------------------------------- /kos/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/time.h -------------------------------------------------------------------------------- /kos/include/ttyent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ttyent.h -------------------------------------------------------------------------------- /kos/include/type_traits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/type_traits -------------------------------------------------------------------------------- /kos/include/typeinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/typeinfo -------------------------------------------------------------------------------- /kos/include/uchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/uchar.h -------------------------------------------------------------------------------- /kos/include/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ucontext.h -------------------------------------------------------------------------------- /kos/include/ulimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ulimit.h -------------------------------------------------------------------------------- /kos/include/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/unicode.h -------------------------------------------------------------------------------- /kos/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/unistd.h -------------------------------------------------------------------------------- /kos/include/unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/unwind.h -------------------------------------------------------------------------------- /kos/include/ustat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/ustat.h -------------------------------------------------------------------------------- /kos/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/util.h -------------------------------------------------------------------------------- /kos/include/utility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/utility -------------------------------------------------------------------------------- /kos/include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/utime.h -------------------------------------------------------------------------------- /kos/include/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/utmp.h -------------------------------------------------------------------------------- /kos/include/utmpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/utmpx.h -------------------------------------------------------------------------------- /kos/include/vadefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/vadefs.h -------------------------------------------------------------------------------- /kos/include/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/values.h -------------------------------------------------------------------------------- /kos/include/vcruntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/vcruntime.h -------------------------------------------------------------------------------- /kos/include/vfork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/vfork.h -------------------------------------------------------------------------------- /kos/include/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/vis.h -------------------------------------------------------------------------------- /kos/include/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/wait.h -------------------------------------------------------------------------------- /kos/include/waitflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/waitflags.h -------------------------------------------------------------------------------- /kos/include/waitstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/waitstatus.h -------------------------------------------------------------------------------- /kos/include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/wchar.h -------------------------------------------------------------------------------- /kos/include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/wctype.h -------------------------------------------------------------------------------- /kos/include/wordexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/wordexp.h -------------------------------------------------------------------------------- /kos/include/xlocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/include/xlocale.h -------------------------------------------------------------------------------- /kos/misc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/README.md -------------------------------------------------------------------------------- /kos/misc/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/config/README.md -------------------------------------------------------------------------------- /kos/misc/config/files.dee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/config/files.dee -------------------------------------------------------------------------------- /kos/misc/config/utils.dee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/config/utils.dee -------------------------------------------------------------------------------- /kos/misc/doc/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/doc/terms.md -------------------------------------------------------------------------------- /kos/misc/gallery/lsbin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/gallery/lsbin.png -------------------------------------------------------------------------------- /kos/misc/gdbridge/.gitignore: -------------------------------------------------------------------------------- 1 | gdbridge.exe 2 | io.log 3 | -------------------------------------------------------------------------------- /kos/misc/libgen/autom8.dee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/libgen/autom8.dee -------------------------------------------------------------------------------- /kos/misc/libgen/rbtree.dee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/libgen/rbtree.dee -------------------------------------------------------------------------------- /kos/misc/make_tool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/make_tool.sh -------------------------------------------------------------------------------- /kos/misc/make_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/make_toolchain.sh -------------------------------------------------------------------------------- /kos/misc/make_utility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/make_utility.sh -------------------------------------------------------------------------------- /kos/misc/scripts/gcc_builtins/.gitignore: -------------------------------------------------------------------------------- 1 | gcc_features 2 | gcc_warnings 3 | -------------------------------------------------------------------------------- /kos/misc/targets/arm.dee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/targets/arm.dee -------------------------------------------------------------------------------- /kos/misc/targets/i386.dee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/targets/i386.dee -------------------------------------------------------------------------------- /kos/misc/utilities/2048.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/utilities/2048.sh -------------------------------------------------------------------------------- /kos/misc/utilities/bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/utilities/bash.sh -------------------------------------------------------------------------------- /kos/misc/utilities/file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/utilities/file.sh -------------------------------------------------------------------------------- /kos/misc/utilities/gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/utilities/gcc.sh -------------------------------------------------------------------------------- /kos/misc/utilities/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/utilities/make.sh -------------------------------------------------------------------------------- /kos/misc/utilities/mc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/utilities/mc.sh -------------------------------------------------------------------------------- /kos/misc/utilities/nano.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/utilities/nano.sh -------------------------------------------------------------------------------- /kos/misc/utilities/tcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/utilities/tcc.sh -------------------------------------------------------------------------------- /kos/misc/utilities/tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/misc/utilities/tree.sh -------------------------------------------------------------------------------- /kos/src/.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/.sources -------------------------------------------------------------------------------- /kos/src/apps/.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/apps/.sources -------------------------------------------------------------------------------- /kos/src/apps/gfx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/apps/gfx/main.c -------------------------------------------------------------------------------- /kos/src/apps/init/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/apps/init/main.c -------------------------------------------------------------------------------- /kos/src/apps/keymap/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/apps/keymap/main.c -------------------------------------------------------------------------------- /kos/src/apps/misc/cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/apps/misc/cc.c -------------------------------------------------------------------------------- /kos/src/apps/misc/false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/apps/misc/false.c -------------------------------------------------------------------------------- /kos/src/apps/misc/leaks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/apps/misc/leaks.c -------------------------------------------------------------------------------- /kos/src/apps/misc/true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/apps/misc/true.c -------------------------------------------------------------------------------- /kos/src/apps/snake/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/apps/snake/main.c -------------------------------------------------------------------------------- /kos/src/apps/vconf/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/apps/vconf/main.c -------------------------------------------------------------------------------- /kos/src/crt0/arm/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/crt0/arm/crt0.S -------------------------------------------------------------------------------- /kos/src/crt0/arm/crt0S.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/crt0/arm/crt0S.S -------------------------------------------------------------------------------- /kos/src/crt0/i386/crt032.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/crt0/i386/crt032.S -------------------------------------------------------------------------------- /kos/src/crt0/i386/crt064.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/crt0/i386/crt064.S -------------------------------------------------------------------------------- /kos/src/kernel/.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/kernel/.sources -------------------------------------------------------------------------------- /kos/src/kernel/modelf/arch/arm/README.md: -------------------------------------------------------------------------------- 1 | 2 | ### WIP / Placeholder 3 | -------------------------------------------------------------------------------- /kos/src/kernel/modgdbserver/arch/arm/README.md: -------------------------------------------------------------------------------- 1 | 2 | ### WIP / Placeholder 3 | -------------------------------------------------------------------------------- /kos/src/kernel/modpe/pe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/kernel/modpe/pe.c -------------------------------------------------------------------------------- /kos/src/kernel/modpe/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/kernel/modpe/pe.h -------------------------------------------------------------------------------- /kos/src/kernel/modrtm/arch/arm/README.md: -------------------------------------------------------------------------------- 1 | 2 | ### WIP / Placeholder 3 | -------------------------------------------------------------------------------- /kos/src/libansitty/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libansitty/api.h -------------------------------------------------------------------------------- /kos/src/libansitty/cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libansitty/cp.c -------------------------------------------------------------------------------- /kos/src/libansitty/cp.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libansitty/cp.def -------------------------------------------------------------------------------- /kos/src/libansitty/cp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libansitty/cp.h -------------------------------------------------------------------------------- /kos/src/libbios86/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libbios86/api.h -------------------------------------------------------------------------------- /kos/src/libbios86/bios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libbios86/bios.c -------------------------------------------------------------------------------- /kos/src/libbios86/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libbios86/bios.h -------------------------------------------------------------------------------- /kos/src/libbuffer/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libbuffer/api.h -------------------------------------------------------------------------------- /kos/src/libc/.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/.sources -------------------------------------------------------------------------------- /kos/src/libc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/README.md -------------------------------------------------------------------------------- /kos/src/libc/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/api.h -------------------------------------------------------------------------------- /kos/src/libc/auto/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/aio.h -------------------------------------------------------------------------------- /kos/src/libc/auto/argp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/argp.c -------------------------------------------------------------------------------- /kos/src/libc/auto/argp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/argp.h -------------------------------------------------------------------------------- /kos/src/libc/auto/argz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/argz.c -------------------------------------------------------------------------------- /kos/src/libc/auto/argz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/argz.h -------------------------------------------------------------------------------- /kos/src/libc/auto/conio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/conio.c -------------------------------------------------------------------------------- /kos/src/libc/auto/conio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/conio.h -------------------------------------------------------------------------------- /kos/src/libc/auto/crtdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/crtdbg.c -------------------------------------------------------------------------------- /kos/src/libc/auto/crtdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/crtdbg.h -------------------------------------------------------------------------------- /kos/src/libc/auto/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/crypt.h -------------------------------------------------------------------------------- /kos/src/libc/auto/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/ctype.c -------------------------------------------------------------------------------- /kos/src/libc/auto/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/ctype.h -------------------------------------------------------------------------------- /kos/src/libc/auto/direct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/direct.c -------------------------------------------------------------------------------- /kos/src/libc/auto/direct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/direct.h -------------------------------------------------------------------------------- /kos/src/libc/auto/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/dirent.h -------------------------------------------------------------------------------- /kos/src/libc/auto/envz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/envz.c -------------------------------------------------------------------------------- /kos/src/libc/auto/envz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/envz.h -------------------------------------------------------------------------------- /kos/src/libc/auto/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/err.c -------------------------------------------------------------------------------- /kos/src/libc/auto/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/err.h -------------------------------------------------------------------------------- /kos/src/libc/auto/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/errno.c -------------------------------------------------------------------------------- /kos/src/libc/auto/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/errno.h -------------------------------------------------------------------------------- /kos/src/libc/auto/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/error.c -------------------------------------------------------------------------------- /kos/src/libc/auto/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/error.h -------------------------------------------------------------------------------- /kos/src/libc/auto/fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/fcntl.c -------------------------------------------------------------------------------- /kos/src/libc/auto/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/fcntl.h -------------------------------------------------------------------------------- /kos/src/libc/auto/fenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/fenv.c -------------------------------------------------------------------------------- /kos/src/libc/auto/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/fenv.h -------------------------------------------------------------------------------- /kos/src/libc/auto/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/float.c -------------------------------------------------------------------------------- /kos/src/libc/auto/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/float.h -------------------------------------------------------------------------------- /kos/src/libc/auto/fmtmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/fmtmsg.h -------------------------------------------------------------------------------- /kos/src/libc/auto/fstab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/fstab.c -------------------------------------------------------------------------------- /kos/src/libc/auto/fstab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/fstab.h -------------------------------------------------------------------------------- /kos/src/libc/auto/fts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/fts.h -------------------------------------------------------------------------------- /kos/src/libc/auto/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/ftw.h -------------------------------------------------------------------------------- /kos/src/libc/auto/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/getopt.c -------------------------------------------------------------------------------- /kos/src/libc/auto/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/getopt.h -------------------------------------------------------------------------------- /kos/src/libc/auto/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/glob.h -------------------------------------------------------------------------------- /kos/src/libc/auto/grp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/grp.c -------------------------------------------------------------------------------- /kos/src/libc/auto/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/grp.h -------------------------------------------------------------------------------- /kos/src/libc/auto/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/io.c -------------------------------------------------------------------------------- /kos/src/libc/auto/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/io.h -------------------------------------------------------------------------------- /kos/src/libc/auto/kos.fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/kos.fd.h -------------------------------------------------------------------------------- /kos/src/libc/auto/libgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/libgen.c -------------------------------------------------------------------------------- /kos/src/libc/auto/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/libgen.h -------------------------------------------------------------------------------- /kos/src/libc/auto/locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/locale.c -------------------------------------------------------------------------------- /kos/src/libc/auto/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/locale.h -------------------------------------------------------------------------------- /kos/src/libc/auto/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/malloc.h -------------------------------------------------------------------------------- /kos/src/libc/auto/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/math.c -------------------------------------------------------------------------------- /kos/src/libc/auto/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/math.h -------------------------------------------------------------------------------- /kos/src/libc/auto/mntent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/mntent.c -------------------------------------------------------------------------------- /kos/src/libc/auto/mntent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/mntent.h -------------------------------------------------------------------------------- /kos/src/libc/auto/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/mqueue.h -------------------------------------------------------------------------------- /kos/src/libc/auto/net.if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/net.if.c -------------------------------------------------------------------------------- /kos/src/libc/auto/net.if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/net.if.h -------------------------------------------------------------------------------- /kos/src/libc/auto/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/netdb.h -------------------------------------------------------------------------------- /kos/src/libc/auto/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/pty.c -------------------------------------------------------------------------------- /kos/src/libc/auto/pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/pty.h -------------------------------------------------------------------------------- /kos/src/libc/auto/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/pwd.c -------------------------------------------------------------------------------- /kos/src/libc/auto/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/pwd.h -------------------------------------------------------------------------------- /kos/src/libc/auto/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/regex.c -------------------------------------------------------------------------------- /kos/src/libc/auto/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/regex.h -------------------------------------------------------------------------------- /kos/src/libc/auto/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/regexp.c -------------------------------------------------------------------------------- /kos/src/libc/auto/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/regexp.h -------------------------------------------------------------------------------- /kos/src/libc/auto/resolv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/resolv.c -------------------------------------------------------------------------------- /kos/src/libc/auto/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/resolv.h -------------------------------------------------------------------------------- /kos/src/libc/auto/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/sched.h -------------------------------------------------------------------------------- /kos/src/libc/auto/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/search.c -------------------------------------------------------------------------------- /kos/src/libc/auto/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/search.h -------------------------------------------------------------------------------- /kos/src/libc/auto/sgtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/sgtty.h -------------------------------------------------------------------------------- /kos/src/libc/auto/shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/shadow.c -------------------------------------------------------------------------------- /kos/src/libc/auto/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/shadow.h -------------------------------------------------------------------------------- /kos/src/libc/auto/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/signal.c -------------------------------------------------------------------------------- /kos/src/libc/auto/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/signal.h -------------------------------------------------------------------------------- /kos/src/libc/auto/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/sort.c -------------------------------------------------------------------------------- /kos/src/libc/auto/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/sort.h -------------------------------------------------------------------------------- /kos/src/libc/auto/spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/spawn.c -------------------------------------------------------------------------------- /kos/src/libc/auto/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/spawn.h -------------------------------------------------------------------------------- /kos/src/libc/auto/stdbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/stdbit.c -------------------------------------------------------------------------------- /kos/src/libc/auto/stdbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/stdbit.h -------------------------------------------------------------------------------- /kos/src/libc/auto/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/stdio.c -------------------------------------------------------------------------------- /kos/src/libc/auto/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/stdio.h -------------------------------------------------------------------------------- /kos/src/libc/auto/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/stdlib.c -------------------------------------------------------------------------------- /kos/src/libc/auto/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/stdlib.h -------------------------------------------------------------------------------- /kos/src/libc/auto/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/string.c -------------------------------------------------------------------------------- /kos/src/libc/auto/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/string.h -------------------------------------------------------------------------------- /kos/src/libc/auto/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/thread.c -------------------------------------------------------------------------------- /kos/src/libc/auto/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/thread.h -------------------------------------------------------------------------------- /kos/src/libc/auto/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/time.c -------------------------------------------------------------------------------- /kos/src/libc/auto/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/time.h -------------------------------------------------------------------------------- /kos/src/libc/auto/ttyent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/ttyent.c -------------------------------------------------------------------------------- /kos/src/libc/auto/ttyent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/ttyent.h -------------------------------------------------------------------------------- /kos/src/libc/auto/vis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/vis.c -------------------------------------------------------------------------------- /kos/src/libc/auto/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/auto/vis.h -------------------------------------------------------------------------------- /kos/src/libc/libc/cxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/libc/cxx.c -------------------------------------------------------------------------------- /kos/src/libc/libc/cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/libc/cxx.h -------------------------------------------------------------------------------- /kos/src/libc/libc/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/libc/dl.c -------------------------------------------------------------------------------- /kos/src/libc/libc/dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/libc/dl.h -------------------------------------------------------------------------------- /kos/src/libc/libc/ssp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/libc/ssp.c -------------------------------------------------------------------------------- /kos/src/libc/libc/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/libc/tls.c -------------------------------------------------------------------------------- /kos/src/libc/libc/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/libc/tls.h -------------------------------------------------------------------------------- /kos/src/libc/magic/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/magic/io.c -------------------------------------------------------------------------------- /kos/src/libc/user/aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/user/aio.c -------------------------------------------------------------------------------- /kos/src/libc/user/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/user/aio.h -------------------------------------------------------------------------------- /kos/src/libc/user/fts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/user/fts.c -------------------------------------------------------------------------------- /kos/src/libc/user/fts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/user/fts.h -------------------------------------------------------------------------------- /kos/src/libc/user/ftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/user/ftw.c -------------------------------------------------------------------------------- /kos/src/libc/user/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/user/ftw.h -------------------------------------------------------------------------------- /kos/src/libc/user/grp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/user/grp.c -------------------------------------------------------------------------------- /kos/src/libc/user/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/user/grp.h -------------------------------------------------------------------------------- /kos/src/libc/user/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/user/io.c -------------------------------------------------------------------------------- /kos/src/libc/user/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/user/io.h -------------------------------------------------------------------------------- /kos/src/libc/user/new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/user/new.c -------------------------------------------------------------------------------- /kos/src/libc/user/new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/user/new.h -------------------------------------------------------------------------------- /kos/src/libc/user/pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/user/pty.c -------------------------------------------------------------------------------- /kos/src/libc/user/pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/user/pty.h -------------------------------------------------------------------------------- /kos/src/libc/user/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/user/pwd.c -------------------------------------------------------------------------------- /kos/src/libc/user/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libc/user/pwd.h -------------------------------------------------------------------------------- /kos/src/libcpustate/arch/arm/README.md: -------------------------------------------------------------------------------- 1 | 2 | ### WIP / Placeholder 3 | -------------------------------------------------------------------------------- /kos/src/libdisasm/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdisasm/api.h -------------------------------------------------------------------------------- /kos/src/libdisasm/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdisasm/arm.c -------------------------------------------------------------------------------- /kos/src/libdisasm/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdisasm/arm.h -------------------------------------------------------------------------------- /kos/src/libdisasm/x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdisasm/x86.c -------------------------------------------------------------------------------- /kos/src/libdisasm/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdisasm/x86.h -------------------------------------------------------------------------------- /kos/src/libdl-pe/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdl-pe/api.h -------------------------------------------------------------------------------- /kos/src/libdl-pe/pe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdl-pe/pe.c -------------------------------------------------------------------------------- /kos/src/libdl-pe/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdl-pe/pe.h -------------------------------------------------------------------------------- /kos/src/libdl/.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdl/.sources -------------------------------------------------------------------------------- /kos/src/libdl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdl/README.md -------------------------------------------------------------------------------- /kos/src/libdl/_rtld.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdl/_rtld.ld -------------------------------------------------------------------------------- /kos/src/libdl/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdl/api.h -------------------------------------------------------------------------------- /kos/src/libdl/builtin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdl/builtin.c -------------------------------------------------------------------------------- /kos/src/libdl/builtin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdl/builtin.h -------------------------------------------------------------------------------- /kos/src/libdl/dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdl/dl.h -------------------------------------------------------------------------------- /kos/src/libdl/exports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdl/exports.c -------------------------------------------------------------------------------- /kos/src/libdl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdl/main.c -------------------------------------------------------------------------------- /kos/src/libdl/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdl/module.c -------------------------------------------------------------------------------- /kos/src/libdl/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdl/tls.c -------------------------------------------------------------------------------- /kos/src/libdl/ucall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libdl/ucall.h -------------------------------------------------------------------------------- /kos/src/libemu86/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libemu86/api.h -------------------------------------------------------------------------------- /kos/src/libinstrlen/arch/arm/README.md: -------------------------------------------------------------------------------- 1 | 2 | ### WIP / Placeholder 3 | -------------------------------------------------------------------------------- /kos/src/libkeymap/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libkeymap/api.h -------------------------------------------------------------------------------- /kos/src/libm/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libm/api.h -------------------------------------------------------------------------------- /kos/src/libphys/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libphys/api.h -------------------------------------------------------------------------------- /kos/src/libphys/phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libphys/phys.c -------------------------------------------------------------------------------- /kos/src/libphys/phys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libphys/phys.h -------------------------------------------------------------------------------- /kos/src/libregdump/arch/arm/README.md: -------------------------------------------------------------------------------- 1 | 2 | ### WIP / Placeholder 3 | -------------------------------------------------------------------------------- /kos/src/libservice/arch/arm/README.md: -------------------------------------------------------------------------------- 1 | 2 | ### WIP / Placeholder 3 | -------------------------------------------------------------------------------- /kos/src/libssp/ssp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libssp/ssp.c -------------------------------------------------------------------------------- /kos/src/libterm/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libterm/api.h -------------------------------------------------------------------------------- /kos/src/libunwind/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libunwind/api.h -------------------------------------------------------------------------------- /kos/src/libunwind/cfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libunwind/cfi.c -------------------------------------------------------------------------------- /kos/src/libunwind/cfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libunwind/cfi.h -------------------------------------------------------------------------------- /kos/src/libvio/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libvio/access.c -------------------------------------------------------------------------------- /kos/src/libvio/access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libvio/access.h -------------------------------------------------------------------------------- /kos/src/libvio/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libvio/api.h -------------------------------------------------------------------------------- /kos/src/libvio/vio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libvio/vio.c -------------------------------------------------------------------------------- /kos/src/libvio/vio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libvio/vio.h -------------------------------------------------------------------------------- /kos/src/libviocore/arch/arm/README.md: -------------------------------------------------------------------------------- 1 | 2 | ### WIP / Placeholder 3 | -------------------------------------------------------------------------------- /kos/src/libvm86/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libvm86/api.h -------------------------------------------------------------------------------- /kos/src/libzlib/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/libzlib/api.h -------------------------------------------------------------------------------- /kos/src/misc/.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/misc/.sources -------------------------------------------------------------------------------- /kos/src/misc/bin/ldd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/kos/src/misc/bin/ldd -------------------------------------------------------------------------------- /magic.dee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/magic.dee -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrieferAtWork/KOSmk4/HEAD/readme.md --------------------------------------------------------------------------------